This patch converts the 32-bit i_version in the generic inode to a 64-bit From: Jean Noel Cordenner i_version field. Signed-off-by: Mingming Cao Signed-off-by: Jean Noel Cordenner Signed-off-by: Kalpak Shah --- include/linux/fs.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 16421f6..a63c86c 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -541,7 +541,7 @@ struct inode { uid_t i_uid; gid_t i_gid; dev_t i_rdev; - unsigned long i_version; + u64 i_version; loff_t i_size; #ifdef __NEED_I_SIZE_ORDERED seqcount_t i_size_seqcount;