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 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.23/include/linux/fs.h =================================================================== --- linux-2.6.23.orig/include/linux/fs.h 2007-10-23 15:34:21.000000000 -0700 +++ linux-2.6.23/include/linux/fs.h 2007-10-23 15:42:14.000000000 -0700 @@ -599,7 +599,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;