From: Norbert Ciosek Date: Thu, 28 Jan 2021 18:17:02 +0000 (-0800) Subject: virtchnl: Fix layout of RSS structures X-Git-Tag: accepted/tizen/unified/20230118.172025~7507^2~68^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22f8b5df881e9f1302514bbbbbb8649c2051de55;p=platform%2Fkernel%2Flinux-rpi.git virtchnl: Fix layout of RSS structures Remove padding from RSS structures. Previous layout could lead to unwanted compiler optimizations in loops when iterating over key and lut arrays. Fixes: 65ece6de0114 ("virtchnl: Add missing explicit padding to structures") Signed-off-by: Norbert Ciosek Tested-by: Konrad Jankowski Signed-off-by: Tony Nguyen --- diff --git a/include/linux/avf/virtchnl.h b/include/linux/avf/virtchnl.h index 40bad71..532bcbf 100644 --- a/include/linux/avf/virtchnl.h +++ b/include/linux/avf/virtchnl.h @@ -476,7 +476,6 @@ struct virtchnl_rss_key { u16 vsi_id; u16 key_len; u8 key[1]; /* RSS hash key, packed bytes */ - u8 pad[1]; }; VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_key); @@ -485,7 +484,6 @@ struct virtchnl_rss_lut { u16 vsi_id; u16 lut_entries; u8 lut[1]; /* RSS lookup table */ - u8 pad[1]; }; VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_lut);