search for: birthtime

Displaying 7 results from an estimated 7 matches for "birthtime".

2020 Mar 16
0
atimes+ctimes patch
...e caveat that -W has to be run as root and messes with the system clock, and maybe support --ctimes --atimes only st_ctim, etc. is available) If anyone has already done this work or thought about it (or can point to another project which has done this) I'd be glad for advice. [1] and possibly birthtimes (by setting the clock before a creat but that is too ugly even for me to contemplate)
2019 Feb 19
2
Re: [PATCH nbdkit 4/4] Add linuxdisk plugin.
...links_count = 1; > + /* XXX nanosecond times? */ > + inode.i_ctime = statbuf->st_ctime; > + inode.i_atime = statbuf->st_atime; > + inode.i_mtime = statbuf->st_mtime; > + inode.i_size = 0; Not for this patch, but now that newer Linux has the statx() call that can expose birthtime, should we be worrying about that (well, ext4 supports birthtime, but if you are targetting just ext2, it probably doesn't matter). Otherwise looks reasonable. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3226 Virtualization: qemu.org | libvirt.org
2015 Feb 14
2
freenas USB connection error
...b CALL stat(0x800f8e498,0x7fffffffe2d0) 67611 blazer_usb NAMI "/etc/nsswitch.conf" 67611 blazer_usb STRU struct stat {dev=2264989441, ino=703, mode=-rw-r--r-- , nlink=1, uid=0, gid=0, rdev=4294967295, atime=1423937499.241504491, stime=1423498232.822474644, ctime=1423498232.822474644, birthtime=1418850888.497355000, size=133, blksize=4096, blocks=8, flags=0x800 } 67611 blazer_usb RET stat 0 67611 blazer_usb CALL close(0x4) 67611 blazer_usb RET close 0 67611 blazer_usb CALL setgroups(0x2,0x80149c000) 67611 blazer_usb RET setgroups 0 67611 blazer_usb CALL madvise(0x80149b000,...
2020 Nov 01
0
4.13.1 make test failed
....scanner with bigendian(ad_dc_default) samba4.rpc.bench-rpc with bigendian(ad_dc_default) samba4.rpc.countcalls(ad_dc_default:local) samba4.nbt.bench(ad_dc_ntvfs) samba4.nbt.bench-wins(ad_dc_ntvfs) samba4.base.delaywrite(ad_dc_ntvfs) samba4.base.birthtime(ad_dc_ntvfs) samba4.base.defer_open(ad_dc_ntvfs) samba4.base.iometer(ad_dc_ntvfs) samba4.base.winattr(ad_dc_ntvfs) samba4.base.secleak(ad_dc_ntvfs) samba4.base.samba3error(ad_dc_ntvfs) samba4.base.casetable(ad_dc_ntvfs) samba4.base.utab...
2012 Dec 12
20
Solaris 11 System Reboots Continuously Because of a ZFS-Related Panic (7191375)
I''ve hit this bug on four of my Solaris 11 servers. Looking for anyone else who has seen it, as well as comments/speculation on cause. This bug is pretty bad. If you are lucky you can import the pool read-only and migrate it elsewhere. I''ve also tried setting zfs:zfs_recover=1,aok=1 with varying results. http://docs.oracle.com/cd/E26502_01/html/E28978/gmkgj.html#scrolltoc
2019 Feb 19
6
[PATCH nbdkit v2 0/5] Add linuxdisk plugin.
Another interesting thing you can do with this plugin: https://rwmj.wordpress.com/2019/02/19/nbdkit-linuxdisk-plugin/ v2: - Fix inconsistent tab/space. - All 3 plugins now contain a block of text pointing to the other 2 plugins. - TMDIR -> TMPDIR - Unlink the temporary file and other cleanups along error paths. - fclose -> pclose, and check the return value for errors. -
2019 Feb 19
7
[PATCH nbdkit 0/4] New plugin: Add linuxdisk plugin.
Turns out Japanese trains are good for coding! In supermin we have a bunch of code to create the libguestfs appliance. It creates it directly using libext2fs (part of e2fsprogs). We can use the same technique to create ext2 virtual disks in nbdkit, which is what this new plugin does. Why a new plugin instead of modifying the floppy plugin? See the 4/4 commit message for an explanation. The