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: <1401480116-1973111-14-git-send-email-arnd@arndb.de> Date: Fri, 30 May 2014 22:01:37 +0200 From: Arnd Bergmann <arnd@...db.de> To: linux-kernel@...r.kernel.org Cc: linux-arch@...r.kernel.org, joseph@...esourcery.com, john.stultz@...aro.org, hch@...radead.org, tglx@...utronix.de, geert@...ux-m68k.org, lftan@...era.com, hpa@...or.com, linux-fsdevel@...r.kernel.org, Arnd Bergmann <arnd@...db.de>, Jan Kara <jack@...e.cz>, Andrew Morton <akpm@...ux-foundation.org>, Andreas Dilger <adilger.kernel@...ger.ca>, linux-ext4@...r.kernel.org Subject: [RFC 13/32] ext3: convert to struct inode_time ext3fs uses unsigned 32-bit seconds for inode timestamps, which will work for the next 92 years, but the VFS uses struct timespec for timestamps, which is only good until 2038 on 32-bit CPUs. This gets us one small step closer to lifting the VFS limit by using struct inode_time in ext3. The on-disk format limit is lifted in ext4, which will work until 2514. Signed-off-by: Arnd Bergmann <arnd@...db.de> Cc: Jan Kara <jack@...e.cz> Cc: Andrew Morton <akpm@...ux-foundation.org> Cc: Andreas Dilger <adilger.kernel@...ger.ca> Cc: linux-ext4@...r.kernel.org --- fs/ext3/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c index 4d32133..8b76f80 100644 --- a/fs/ext3/inode.c +++ b/fs/ext3/inode.c @@ -752,7 +752,7 @@ static int ext3_splice_branch(handle_t *handle, struct inode *inode, struct ext3_block_alloc_info *block_i; ext3_fsblk_t current_block; struct ext3_inode_info *ei = EXT3_I(inode); - struct timespec now; + struct inode_time now; block_i = ei->i_block_alloc_info; /* @@ -793,7 +793,7 @@ static int ext3_splice_branch(handle_t *handle, struct inode *inode, /* We are done with atomic stuff, now do the rest of housekeeping */ now = CURRENT_TIME_SEC; - if (!timespec_equal(&inode->i_ctime, &now) || !where->bh) { + if (!inode_time_equal(&inode->i_ctime, &now) || !where->bh) { inode->i_ctime = now; ext3_mark_inode_dirty(handle, inode); } -- 1.8.3.2 -- 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