lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20140507024621.GB6461@thunk.org> Date: Tue, 6 May 2014 22:46:21 -0400 From: Theodore Ts'o <tytso@....edu> To: Lukáš Czerner <lczerner@...hat.com> Cc: Ext4 Developers List <linux-ext4@...r.kernel.org> Subject: Re: [PATCH -v2 2/3] mke2fs: print extra information about existing ext2/3/4 file systems On Tue, May 06, 2014 at 03:42:37PM +0200, Lukáš Czerner wrote: > > + retval = ext2fs_open2(device, 0, 0, 0, 0, unix_io_manager, &fs); > > Sorry for not noticing this earlier, but we might want to pass > EXT2_FLAG_64BITS. Done. > > + } else if (sb->s_mkfs_time) { > > + tm = sb->s_mkfs_time; > > + printf(_("\tcreated on %s"), ctime(&tm)); > > + } else if (sb->s_mkfs_time) { > > This does not seem right, you've already checked for s_mkfs_time and > if was not set if you got here. I guess, it should be something else > ? s_wtime perhaps ? But, can this be set when the fs was not mounted > (like using ext2fs library ?) > > > + tm = sb->s_mtime; > > If you got here, then again this is not set. Yes, that's a cut and paste typo, thanks for spotting it. It should have been: } else if (sb->s_mkfs_time) { tm = sb->s_mkfs_time; printf(_("\tcreated on %s"), ctime(&tm)); } else if (sb->s_mtime) { <======== tm = sb->s_mtime; printf(_("\tlast modified on %s"), ctime(&tm)); } Cheers, - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists