]> git.baikalelectronics.ru Git - kernel.git/commit
isofs: fix timestamps beyond 2027
authorArnd Bergmann <arnd@arndb.de>
Thu, 19 Oct 2017 14:47:48 +0000 (16:47 +0200)
committerJan Kara <jack@suse.cz>
Tue, 31 Oct 2017 16:56:53 +0000 (17:56 +0100)
commit2367806c8148935902ca2d617964162c2b89ce01
treeeff6a52a4aa4d9d6e9260203b3e7fba574a11e06
parentfcfe9b20ae5646eaef7757b5b055b34e3c1dd5b7
isofs: fix timestamps beyond 2027

isofs uses a 'char' variable to load the number of years since
1900 for an inode timestamp. On architectures that use a signed
char type by default, this results in an invalid date for
anything beyond 2027.

This changes the function argument to a 'u8' array, which
is defined the same way on all architectures, and unambiguously
lets us use years until 2155.

This should be backported to all kernels that might still be
in use by that date.

Cc: stable@vger.kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/isofs/isofs.h
fs/isofs/rock.h
fs/isofs/util.c