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-rc5/include/linux/fs.h =================================================================== --- linux-2.6.23-rc5.orig/include/linux/fs.h 2007-09-11 18:15:52.000000000 -0700 +++ linux-2.6.23-rc5/include/linux/fs.h 2007-09-12 16:13:30.000000000 -0700 @@ -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;