Skip to content

Commit

Permalink
prov/rxm: Correct pad in RXM wire protocol structure (#35)
Browse files Browse the repository at this point in the history
Pad causes wasteful alignment. The Verbs experimental XRC implementation
uses some of the wasted space.

Signed-off-by: Steve Welch <swelch@systemfabricworks.com>
  • Loading branch information
swelch committed Oct 12, 2018
1 parent e0f0187 commit bfd8cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prov/rxm/src/rxm.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct rxm_ep_wire_proto {
uint8_t ctrl_version;
uint8_t op_version;
uint8_t endianness;
uint8_t padding[6];
uint8_t padding[5];
uint64_t eager_size;
};

Expand Down

0 comments on commit bfd8cf2

Please sign in to comment.