Commit 3bf4fb82 authored by Roland Dreier's avatar Roland Dreier Committed by Linus Torvalds

[PATCH] IB: fix endianness of path record MTU field

Make MTU field in SA PathRecord and MCMemberRecord a u8 rather than an enum
to avoid complications with endianness.
Signed-off-by: default avatarRoland Dreier <roland@topspin.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 561e148e
...@@ -147,7 +147,7 @@ struct ib_sa_path_rec { ...@@ -147,7 +147,7 @@ struct ib_sa_path_rec {
/* reserved */ /* reserved */
u8 sl; u8 sl;
u8 mtu_selector; u8 mtu_selector;
enum ib_mtu mtu; u8 mtu;
u8 rate_selector; u8 rate_selector;
u8 rate; u8 rate;
u8 packet_life_time_selector; u8 packet_life_time_selector;
...@@ -180,7 +180,7 @@ struct ib_sa_mcmember_rec { ...@@ -180,7 +180,7 @@ struct ib_sa_mcmember_rec {
u32 qkey; u32 qkey;
u16 mlid; u16 mlid;
u8 mtu_selector; u8 mtu_selector;
enum ib_mtu mtu; u8 mtu;
u8 traffic_class; u8 traffic_class;
u16 pkey; u16 pkey;
u8 rate_selector; u8 rate_selector;
......
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