From: adilger Date: Wed, 28 Aug 2002 21:34:42 +0000 (+0000) Subject: We get 64-bit xids over the wire, so we should store 64 bits on disk. X-Git-Tag: 0.5.5~33 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ab77929bfcc771d909fb4ec2639a7f1ac0811e76;p=fs%2Flustre-release.git We get 64-bit xids over the wire, so we should store 64 bits on disk. --- 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 */