diff options
author | Guoqing Jiang <guoqing.jiang@linux.dev> | 2023-12-03 17:26:52 +0800 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2023-12-04 20:13:30 -0400 |
commit | 84de14baf81675a98dc0fe617a93eacf9a417de3 (patch) | |
tree | 8a87cfca019d1bb2017a124e06812a28bdb74607 /drivers/infiniband | |
parent | 50af5d12f7e24b85fc10270d7700f4aa1b20b8e4 (diff) | |
download | lwn-84de14baf81675a98dc0fe617a93eacf9a417de3.tar.gz lwn-84de14baf81675a98dc0fe617a93eacf9a417de3.zip |
RDMA/siw: Move tx_cpu ahead
We can reduce one cacheline for the usage of struct siw_qp.
Before,
/* size: 1928, cachelines: 31, members: 38 */
/* sum members: 1920, holes: 2, sum holes: 8 */
/* paddings: 4, sum paddings: 13 */
/* forced alignments: 3 */
after
/* size: 1920, cachelines: 30, members: 38 */
/* paddings: 4, sum paddings: 13 */
/* forced alignments: 3 */
Link: https://lore.kernel.org/r/20231203092655.28102-2-guoqing.jiang@linux.dev
Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/sw/siw/siw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/siw/siw.h b/drivers/infiniband/sw/siw/siw.h index b36d1ec25327..d14bb965af75 100644 --- a/drivers/infiniband/sw/siw/siw.h +++ b/drivers/infiniband/sw/siw/siw.h @@ -417,10 +417,10 @@ struct siw_iwarp_tx { struct siw_qp { struct ib_qp base_qp; struct siw_device *sdev; + int tx_cpu; struct kref ref; struct completion qp_free; struct list_head devq; - int tx_cpu; struct siw_qp_attrs attrs; struct siw_cep *cep; |