Displaying 20 results from an estimated 7000 matches similar to: "Re: tests/misc/ls-time"
2023 Jun 21
3
[PATCH 00/79] fs: new accessors for inode->i_ctime
I've been working on a patchset to change how the inode->i_ctime is
accessed in order to give us conditional, high-res timestamps for the
ctime and mtime. struct timespec64 has unused bits in it that we can use
to implement this. In order to do that however, we need to wrap all
accesses of inode->i_ctime to ensure that bits used as flags are
appropriately handled.
This patchset first
2011 Nov 29
3
[PATCH] fs: push file_update_time into ->page_mkwrite
The fault code has been calling file_update_time after ->page_mkwrite after it
drops the page lock, but this is annoying because this calls mark_inode_dirty
which can fail in Btrfs, so we want to be able to do these updates in
->page_mkwrite so we can get an error back to the user. So get rid of the
file_update_time calls in the fault code and push it into everybody who has a
2009 Dec 24
6
benchmark results
I've had the chance to use a testsystem here and couldn't resist running a
few benchmark programs on them: bonnie++, tiobench, dbench and a few
generic ones (cp/rm/tar/etc...) on ext{234}, btrfs, jfs, ufs, xfs, zfs.
All with standard mkfs/mount options and +noatime for all of them.
Here are the results, no graphs - sorry:
http://nerdbynature.de/benchmarks/v40z/2009-12-22/
Reiserfs
2009 Dec 24
6
benchmark results
I've had the chance to use a testsystem here and couldn't resist running a
few benchmark programs on them: bonnie++, tiobench, dbench and a few
generic ones (cp/rm/tar/etc...) on ext{234}, btrfs, jfs, ufs, xfs, zfs.
All with standard mkfs/mount options and +noatime for all of them.
Here are the results, no graphs - sorry:
http://nerdbynature.de/benchmarks/v40z/2009-12-22/
Reiserfs
2023 Jun 21
4
[PATCH 01/79] fs: add ctime accessors infrastructure
struct timespec64 has unused bits in the tv_nsec field that can be used
for other purposes. In future patches, we're going to change how the
inode->i_ctime is accessed in certain inodes in order to make use of
them. In order to do that safely though, we'll need to eradicate raw
accesses of the inode->i_ctime field from the kernel.
Add new accessor functions for the ctime that we can
2002 Apr 22
1
symlinks?
I'm trying to switch to using rsync for updating a huge software library
containing binaries, text files, symlinks, and so on. We've been using
something homegrown which I'm not that happy with - it's a perl script
that systems cp and chmod and such.
The problem I'm seeing is:
target computer:
directories ctime-5 and ctime-5b3 are distinct directories
source computer:
2008 Dec 19
1
Does file.info man page describe ctime corrrectly?
(R 2.8.0 on Debian GNU/Linux sid)
?file.info contains:
mtime, ctime, atime: integer of class '"POSIXct"': file modification,
creation and last access times.
This implies that ctime is "file [...] creation [...] time"
Has R implemented ctime differently to Unix?
I understand, on Linux at least, that ctime is the last change time
(not the creation time).
2015 Sep 08
2
mtime vs ctime
On 8 September 2015 at 13:57, Kevin Korb <kmk at sanitarium.net> wrote:
Hi Kevin.
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> The ctime will always be newer or the same as the mtime. This is
> because changing the mtime also changes the ctime as does other things
> like changing the permissions.
>
> Rsync only pays attention to the mtime because rsync can
2004 Oct 26
1
[Fwd: question for file attributes (atime, ctime)]
It looks like I need to elaborate further to get a feedback.
I checked the rsync source code and it is using utime() to restore
atime file attribute. It is fine to change ctime for that transferred
file in this case.
What we are having problem is that when rsync gets kicked off and
transfers one file to the destination, this action changes ctime of
"all" files in the same
2009 Jun 06
2
expire-tool --test: timestamps
$ /usr/sbin/dovecot --exec-mail ext expire-tool --test
Info: Trash: timestamp 1243963680 (Tue Jun 2 19:28:00 2009
) -> 1244307774 (Tue Jun 2 19:28:00 2009
)
Both human readable timestamps are equal as ctime() returns a pointer
to a static buffer. In addition there are some newline characters added
by ctime(). The following patch is a try to fix this for 1.2.rc5.
--- expire-tool.c.orig
2019 Jan 02
6
[Bug 13735] New: Synchronize files when the sending side has newer change times while modification times and sizes are identical on both sides
https://bugzilla.samba.org/show_bug.cgi?id=13735
Bug ID: 13735
Summary: Synchronize files when the sending side has newer
change times while modification times and sizes are
identical on both sides
Product: rsync
Version: 3.1.3
Hardware: All
OS: All
Status: NEW
2013 Oct 25
2
btrfs send/receive do not keep inode ctimes
Hello insiders
is there low level support to change inode ctimes somehow?
(on ext[234] it can be done using debugfs)
It would be nice to make received snapshots as similar as
possible to their send source. (I am not talking about
uuids and such, just ls -lc output)
creative ideas are welcome,
Karl
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body
2017 Nov 23
1
RFE: ctime byte-for-byte reproducible qcow2 ext2/3/4 FS
Problem: Want to be able to produce a qcow2 file with multiple ext4
File Systems.
Days later want to reproduce the production of the qcow2 and have the
exact same byte-for-byte file, to prove my build is reproducible.
Currently the ctime attributes of the inodes will differ and thus the
qcow2 files will differ. Since the file times are subsecond the trick
of setting the system time and chmoding
2004 Oct 08
2
Ext 2/3 overwriting remnant data & use of data blocks - security
Greetings all-
I am conducting security testing on a device that uses Linux 2.4 with ext3. I am testing secure overwrite of remnant data in temporary files, but have run into a real good stumpper in the way Ext allocates data blocks. I've got 10 yrs of *NIX behind me, several with Linux, and this has really got me perplexed as I can't find any documentation explaining the subject
2005 May 25
2
rsync file sync by priority
Hello All -
I'm looking for a switch(es) to ensure rsync indexes the pull of files from
remotedir, LIFO (last in first out) and then by .ext type where file basenames
are similar.
example)
file_a.xml ctime of 09:01:07
file_a.jar ctime of 09:01:02
get transfered before
file_b.xml ctime of 09:01:45
file_b.jar ctime of 09:01:45
and the .xml of basename $file would always be transferred
2019 Feb 13
4
rsync rewrites all blocks of large files although it uses delta transfer
Hi All,
For a backup purpose I'm trying to transfer only the changed blocks of
large files. Thus I've run "rsync" with the appropriate options:
RSYNC_BKPDIR=`mktemp -d`
rsync \
--archive \
--no-whole-file \
--inplace \
--backup \
--backup-dir="$RSYNC_BKPDIR" \
--verbose \
--stats \
/var/backups/mysql-dbs/. \
/mnt/bkp/var/backups/mysql-dbs/.
The
2007 Jun 30
2
checksum-xattr.diff [CVS update: rsync/patches]
On 6/30/07, Wayne Davison <wayned@samba.org> committed:
> Added Files:
> checksum-xattr.diff
> Log Message:
> A simple patch that lets rsync use cached checksum values stored in
> each file's extended attributes. A perl script is provided to create
> and update the values.
Wayne,
You should be aware of two drawbacks of caching checksums in xattrs:
First,
2009 Jul 22
3
time difference
Dear R People:
I am looking at the ctime attribute of two different files. It
contains the year, month, day, time of creation and time zone.
Is there a way to determine the difference between the ctimes of two
files, please?
I looked in the chron package and nothing seemed to work.
Thanks in advance,
Sincerely,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and
2016 Feb 19
2
problem cloning storage pool volume
I'm trying to clone a volume in a storage pool and I'm following the steps
described here:
http://libvirt.org/docs/libvirt-appdev-guide-python/en-US/html/libvirt_application_development_guide_using_python-Storage_Pools-Cloning.html
My code looks like:
destXML = """
<volume>
2001 Mar 20
2
ext3_rename ctime handling
Hi,
Arthur found out that ext3 is not changing the ctime on the "old_dir" (the
object that is being renamed), but ext2 does. It looks to me like this is
simply an omission of the following little patch from namei.c
- Peter -
--- fs/ext3/namei.c.orig Mon Mar 19 22:55:03 2001
+++ fs/ext3/namei.c Mon Mar 19 22:53:40 2001
@@ -985,6 +985,13 @@
new_dir->i_version =