diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-10-19 17:47:48 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2017-10-31 19:56:53 +0300 |
commit | 34be4dbf87fc3e474a842305394534216d428f5d (patch) | |
tree | eff6a52a4aa4d9d6e9260203b3e7fba574a11e06 /fs/isofs/rock.h | |
parent | 89a4d970ef2a74e921dcd717965a55baefd26eed (diff) | |
download | linux-34be4dbf87fc3e474a842305394534216d428f5d.tar.xz |
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>
Diffstat (limited to 'fs/isofs/rock.h')
-rw-r--r-- | fs/isofs/rock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/rock.h b/fs/isofs/rock.h index ed09e2b08637..f835976ce033 100644 --- a/fs/isofs/rock.h +++ b/fs/isofs/rock.h @@ -65,7 +65,7 @@ struct RR_PL_s { }; struct stamp { - char time[7]; + __u8 time[7]; /* actually 6 unsigned, 1 signed */ } __attribute__ ((packed)); struct RR_TF_s { |