Commit c55459a2 authored by wang di's avatar wang di Committed by Greg Kroah-Hartman

staging: lustre: ptlrpc: remove wirecheck for struct lmv_stripe_md

Remove the wiretest check for this data structure.
Signed-off-by: default avatarwang di <di.wang@intel.com>
Reviewed-on: http://review.whamcloud.com/7043
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3531Reviewed-by: default avatarJohn L. Hammond <john.hammond@intel.com>
Reviewed-by: default avatarJinshan Xiong <jinshan.xiong@intel.com>
Reviewed-by: default avatarAndreas Dilger <andreas.dilger@intel.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f6718d1d
......@@ -2617,35 +2617,6 @@ void lustre_assert_wire_constants(void)
LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_uuid) == 40, "found %lld\n",
(long long)(int)sizeof(((struct lmv_desc *)0)->ld_uuid));
/* Checks for struct lmv_stripe_md */
LASSERTF((int)sizeof(struct lmv_stripe_md) == 32, "found %lld\n",
(long long)(int)sizeof(struct lmv_stripe_md));
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_magic) == 0, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_magic));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_magic) == 4, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_magic));
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_count) == 4, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_count));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_count) == 4, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_count));
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_master) == 8, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_master));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_master) == 4, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_master));
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_padding) == 12, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_padding));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_padding) == 4, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_padding));
CLASSERT(LOV_MAXPOOLNAME == 16);
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_pool_name[16]) == 32, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_pool_name[16]));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_pool_name[16]) == 1, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_pool_name[16]));
LASSERTF((int)offsetof(struct lmv_stripe_md, mea_ids[0]) == 32, "found %lld\n",
(long long)(int)offsetof(struct lmv_stripe_md, mea_ids[0]));
LASSERTF((int)sizeof(((struct lmv_stripe_md *)0)->mea_ids[0]) == 16, "found %lld\n",
(long long)(int)sizeof(((struct lmv_stripe_md *)0)->mea_ids[0]));
/* Checks for struct lov_desc */
LASSERTF((int)sizeof(struct lov_desc) == 88, "found %lld\n",
(long long)(int)sizeof(struct lov_desc));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment