mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 09:56:00 +00:00
staging: lustre: obd: reserve connection flag OBD_CONNECT_FLAGS2
This is a feature for the client and server to use obd_connect_flags2 to communicate future feature flags. The client should set this flag whenever any flags in that field are requested, and the server should mask unsupported features from this field (assuming it understands OBD_CONNECT_FLAGS2). When checking if an OBD_CONNECT2_xxxx feature is supported, the client/server needs to firstly check if OBD_CONNECT_FLAGS2 is supported, since this field is also beyond the end of the old obd_connect_data. Land the connection flags to upstream client earlier for reserving the slot to avoid potential conflict with others. Signed-off-by: Fan Yong <fan.yong@intel.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-7543 Reviewed-on: http://review.whamcloud.com/17647 Reviewed-by: Andreas Dilger <andreas.dilger@intel.com> Reviewed-by: Patrick Farrell <paf@cray.com> Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
59b6693aea
commit
3ce173a162
@ -1194,6 +1194,7 @@ void lustre_swab_ptlrpc_body(struct ptlrpc_body *pb);
|
|||||||
/** bulk matchbits is sent within ptlrpc_body */
|
/** bulk matchbits is sent within ptlrpc_body */
|
||||||
#define OBD_CONNECT_BULK_MBITS 0x2000000000000000ULL
|
#define OBD_CONNECT_BULK_MBITS 0x2000000000000000ULL
|
||||||
#define OBD_CONNECT_OBDOPACK 0x4000000000000000ULL /* compact OUT obdo */
|
#define OBD_CONNECT_OBDOPACK 0x4000000000000000ULL /* compact OUT obdo */
|
||||||
|
#define OBD_CONNECT_FLAGS2 0x8000000000000000ULL /* second flags word */
|
||||||
|
|
||||||
/* XXX README XXX:
|
/* XXX README XXX:
|
||||||
* Please DO NOT add flag values here before first ensuring that this same
|
* Please DO NOT add flag values here before first ensuring that this same
|
||||||
@ -1249,7 +1250,7 @@ struct obd_connect_data {
|
|||||||
__u16 ocd_maxmodrpcs; /* Maximum modify RPCs in parallel */
|
__u16 ocd_maxmodrpcs; /* Maximum modify RPCs in parallel */
|
||||||
__u16 padding0; /* added 2.1.0. also fix lustre_swab_connect */
|
__u16 padding0; /* added 2.1.0. also fix lustre_swab_connect */
|
||||||
__u32 padding1; /* added 2.1.0. also fix lustre_swab_connect */
|
__u32 padding1; /* added 2.1.0. also fix lustre_swab_connect */
|
||||||
__u64 padding2; /* added 2.1.0. also fix lustre_swab_connect */
|
__u64 ocd_connect_flags2;
|
||||||
__u64 padding3; /* added 2.1.0. also fix lustre_swab_connect */
|
__u64 padding3; /* added 2.1.0. also fix lustre_swab_connect */
|
||||||
__u64 padding4; /* added 2.1.0. also fix lustre_swab_connect */
|
__u64 padding4; /* added 2.1.0. also fix lustre_swab_connect */
|
||||||
__u64 padding5; /* added 2.1.0. also fix lustre_swab_connect */
|
__u64 padding5; /* added 2.1.0. also fix lustre_swab_connect */
|
||||||
|
@ -106,6 +106,7 @@ static const char * const obd_connect_names[] = {
|
|||||||
"lock_ahead",
|
"lock_ahead",
|
||||||
"bulk_mbits",
|
"bulk_mbits",
|
||||||
"compact_obdo",
|
"compact_obdo",
|
||||||
|
"second_flags",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1566,7 +1566,8 @@ void lustre_swab_connect(struct obd_connect_data *ocd)
|
|||||||
__swab16s(&ocd->ocd_maxmodrpcs);
|
__swab16s(&ocd->ocd_maxmodrpcs);
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding0));
|
CLASSERT(offsetof(typeof(*ocd), padding0));
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding1) != 0);
|
CLASSERT(offsetof(typeof(*ocd), padding1) != 0);
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding2) != 0);
|
if (ocd->ocd_connect_flags & OBD_CONNECT_FLAGS2)
|
||||||
|
__swab64s(&ocd->ocd_connect_flags2);
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding3) != 0);
|
CLASSERT(offsetof(typeof(*ocd), padding3) != 0);
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding4) != 0);
|
CLASSERT(offsetof(typeof(*ocd), padding4) != 0);
|
||||||
CLASSERT(offsetof(typeof(*ocd), padding5) != 0);
|
CLASSERT(offsetof(typeof(*ocd), padding5) != 0);
|
||||||
|
@ -935,10 +935,10 @@ void lustre_assert_wire_constants(void)
|
|||||||
(long long)(int)offsetof(struct obd_connect_data, padding1));
|
(long long)(int)offsetof(struct obd_connect_data, padding1));
|
||||||
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding1) == 4, "found %lld\n",
|
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding1) == 4, "found %lld\n",
|
||||||
(long long)(int)sizeof(((struct obd_connect_data *)0)->padding1));
|
(long long)(int)sizeof(((struct obd_connect_data *)0)->padding1));
|
||||||
LASSERTF((int)offsetof(struct obd_connect_data, padding2) == 80, "found %lld\n",
|
LASSERTF((int)offsetof(struct obd_connect_data, ocd_connect_flags2) == 80, "found %lld\n",
|
||||||
(long long)(int)offsetof(struct obd_connect_data, padding2));
|
(long long)(int)offsetof(struct obd_connect_data, ocd_connect_flags2));
|
||||||
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding2) == 8, "found %lld\n",
|
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags2) == 8, "found %lld\n",
|
||||||
(long long)(int)sizeof(((struct obd_connect_data *)0)->padding2));
|
(long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags2));
|
||||||
LASSERTF((int)offsetof(struct obd_connect_data, padding3) == 88, "found %lld\n",
|
LASSERTF((int)offsetof(struct obd_connect_data, padding3) == 88, "found %lld\n",
|
||||||
(long long)(int)offsetof(struct obd_connect_data, padding3));
|
(long long)(int)offsetof(struct obd_connect_data, padding3));
|
||||||
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding3) == 8, "found %lld\n",
|
LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding3) == 8, "found %lld\n",
|
||||||
@ -1111,6 +1111,8 @@ void lustre_assert_wire_constants(void)
|
|||||||
OBD_CONNECT_LOCK_AHEAD);
|
OBD_CONNECT_LOCK_AHEAD);
|
||||||
LASSERTF(OBD_CONNECT_OBDOPACK == 0x4000000000000000ULL, "found 0x%.16llxULL\n",
|
LASSERTF(OBD_CONNECT_OBDOPACK == 0x4000000000000000ULL, "found 0x%.16llxULL\n",
|
||||||
OBD_CONNECT_OBDOPACK);
|
OBD_CONNECT_OBDOPACK);
|
||||||
|
LASSERTF(OBD_CONNECT_FLAGS2 == 0x8000000000000000ULL, "found 0x%.16llxULL\n",
|
||||||
|
OBD_CONNECT_FLAGS2);
|
||||||
LASSERTF(OBD_CKSUM_CRC32 == 0x00000001UL, "found 0x%.8xUL\n",
|
LASSERTF(OBD_CKSUM_CRC32 == 0x00000001UL, "found 0x%.8xUL\n",
|
||||||
(unsigned)OBD_CKSUM_CRC32);
|
(unsigned)OBD_CKSUM_CRC32);
|
||||||
LASSERTF(OBD_CKSUM_ADLER == 0x00000002UL, "found 0x%.8xUL\n",
|
LASSERTF(OBD_CKSUM_ADLER == 0x00000002UL, "found 0x%.8xUL\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user