From ab77929bfcc771d909fb4ec2639a7f1ac0811e76 Mon Sep 17 00:00:00 2001 From: adilger Date: Wed, 28 Aug 2002 21:34:42 +0000 Subject: [PATCH] We get 64-bit xids over the wire, so we should store 64 bits on disk. --- lustre/include/linux/lustre_mds.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/include/linux/lustre_mds.h b/lustre/include/linux/lustre_mds.h index ac0cf68..96ddd4f 100644 --- a/lustre/include/linux/lustre_mds.h +++ b/lustre/include/linux/lustre_mds.h @@ -75,8 +75,8 @@ struct mds_client_data { __u8 uuid_padding[3]; /* unused */ __u64 mcd_last_rcvd; /* last completed transaction ID */ __u64 mcd_mount_count; /* MDS incarnation number */ - __u32 mcd_last_xid; /* client RPC xid for the last transaction */ - __u8 padding[MDS_LR_SIZE - 60]; + __u64 mcd_last_xid; /* client RPC xid for the last transaction */ + __u8 padding[MDS_LR_SIZE - 64]; }; /* In-memory access to client data from MDS struct */ -- 1.8.3.1