mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-16 15:39:42 -04:00
RDMA: Use __packed annotation instead of __attribute__ ((packed))
"__attribute__" set of macros has been standardized, have became more
potentially portable and consistent code back in v2.6.21 by commit
82ddcb040 ("[PATCH] extend the set of "__attribute__" shortcut macros").
Moreover, nowadays checkpatch.pl warns about using __attribute__((packed))
instead of __packed.
This patch converts all the "__attribute__ ((packed))" annotations to
"__packed" within the RDMA subsystem.
Signed-off-by: Erez Alfasi <ereza@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
committed by
Jason Gunthorpe
parent
d0a935563b
commit
19b1a294b0
@@ -198,7 +198,7 @@ struct ib_sa_hdr {
|
||||
__be16 attr_offset;
|
||||
__be16 reserved;
|
||||
ib_sa_comp_mask comp_mask;
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
struct ib_mad {
|
||||
struct ib_mad_hdr mad_hdr;
|
||||
@@ -227,7 +227,7 @@ struct ib_sa_mad {
|
||||
struct ib_rmpp_hdr rmpp_hdr;
|
||||
struct ib_sa_hdr sa_hdr;
|
||||
u8 data[IB_MGMT_SA_DATA];
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
struct ib_vendor_mad {
|
||||
struct ib_mad_hdr mad_hdr;
|
||||
|
||||
@@ -61,7 +61,7 @@ struct ib_smp {
|
||||
u8 data[IB_SMP_DATA_SIZE];
|
||||
u8 initial_path[IB_SMP_MAX_PATH_HOPS];
|
||||
u8 return_path[IB_SMP_MAX_PATH_HOPS];
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
#define IB_SMP_DIRECTION cpu_to_be16(0x8000)
|
||||
|
||||
|
||||
@@ -413,6 +413,6 @@ struct opa_port_info {
|
||||
u8 local_port_num;
|
||||
u8 reserved12;
|
||||
u8 reserved13; /* was guid_cap */
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
#endif /* OPA_PORT_INFO_H */
|
||||
|
||||
@@ -98,7 +98,7 @@ struct opa_smp {
|
||||
|
||||
struct opa_node_description {
|
||||
u8 data[64];
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
struct opa_node_info {
|
||||
u8 base_version;
|
||||
@@ -114,7 +114,7 @@ struct opa_node_info {
|
||||
__be32 revision;
|
||||
u8 local_port_num;
|
||||
u8 vendor_id[3]; /* network byte order */
|
||||
} __attribute__ ((packed));
|
||||
} __packed;
|
||||
|
||||
#define OPA_PARTITION_TABLE_BLK_SIZE 32
|
||||
|
||||
|
||||
Reference in New Issue
Block a user