Received: by 10.223.185.116 with SMTP id b49csp1011236wrg; Wed, 21 Feb 2018 10:31:50 -0800 (PST) X-Google-Smtp-Source: AH8x226PYF4Bjv2xT8R4bR1CSbupUeKlSq2k7aDOKzTnM0un/iBKvsnFu4Gt8M690WDLuy9OcTSc X-Received: by 10.99.101.69 with SMTP id z66mr3453650pgb.347.1519237909919; Wed, 21 Feb 2018 10:31:49 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519237909; cv=none; d=google.com; s=arc-20160816; b=YfrJcnEFrzjx2/UbNxCd4IOAG4bf2xO7muk8F/7LzYjLD6ufU2xCyWfJ1yUh//DXOf RULKn0rAY3HSlbOmsxTFmxjIYqcsOQmYB/OVgpIYwxwPIkSnfItUhSywEWe/FmazEjuF Z8BsuhLTODgYbiClxAIdAOVh+DZNX14JN+YvKnfZdrg5pAdt5pEpaymDsLwmYtbOB6uZ yCyWYqf7hrrFskax8jlhfX0L/blnhKB9LN4Seu4uZUY2WaT4rbIj53JmWFFC4H6BchzH 4V72sdltV/kwb9ixZ1oNYxpkgbMEctUMSqojr8gmheRPMj0okeEMOsu8+lRT3Qkm2Mrs FyZQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=5ZCQUHq5It75/cUkkT67sOCIEtBAjlvxbld5Uc+whp0=; b=mpUUTocQGERCb2tqlt0JLJUeEuWSvse282diyXvsnAPE9RY3tPODhF122BSRl5OspW Y/ci2z+i/B5MdYhQnnHKx6lxBiHdTGF6U8OkEbjzSFd2ZT/PhoYcMHj9Zqniq0hvomVS UA46nedZZPNfep1JaXokVD5PG2jVgFpR975LdNa4mJSTMgDSLsmOAYDm+/pVXE+gdDyv 1jHE7S23BMjpoqiYEj6yd513J0Elxd1eD/ZHXwX+/+3V9+cVyUNDJzGJ/wR0VN7v1Fw4 GPrUPv4snWz6BH9XIftgOdIpdeVUtibmjhCHDvQgK5hZnhtVhb80l6qkCtgiga/WwBcG QFmQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m62si1159336pfm.41.2018.02.21.10.31.35; Wed, 21 Feb 2018 10:31:49 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965033AbeBUNGb (ORCPT + 99 others); Wed, 21 Feb 2018 08:06:31 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:40844 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964996AbeBUNG1 (ORCPT ); Wed, 21 Feb 2018 08:06:27 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 84D2CBFF; Wed, 21 Feb 2018 13:06:26 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Bodong Wang , Parav Pandit , Leon Romanovsky , Jason Gunthorpe Subject: [PATCH 4.15 006/163] IB/core: Fix ib_wc structure size to remain in 64 bytes boundary Date: Wed, 21 Feb 2018 13:47:15 +0100 Message-Id: <20180221124530.307032354@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180221124529.931834518@linuxfoundation.org> References: <20180221124529.931834518@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bodong Wang commit cd2a6e7d384b043d5d029e39663061cebc949385 upstream. The change of slid from u16 to u32 results in sizeof(struct ib_wc) cross 64B boundary, which causes more cache misses. This patch rearranges the fields and remain the size to 64B. Pahole output before this change: struct ib_wc { union { u64 wr_id; /* 8 */ struct ib_cqe * wr_cqe; /* 8 */ }; /* 0 8 */ enum ib_wc_status status; /* 8 4 */ enum ib_wc_opcode opcode; /* 12 4 */ u32 vendor_err; /* 16 4 */ u32 byte_len; /* 20 4 */ struct ib_qp * qp; /* 24 8 */ union { __be32 imm_data; /* 4 */ u32 invalidate_rkey; /* 4 */ } ex; /* 32 4 */ u32 src_qp; /* 36 4 */ int wc_flags; /* 40 4 */ u16 pkey_index; /* 44 2 */ /* XXX 2 bytes hole, try to pack */ u32 slid; /* 48 4 */ u8 sl; /* 52 1 */ u8 dlid_path_bits; /* 53 1 */ u8 port_num; /* 54 1 */ u8 smac[6]; /* 55 6 */ /* XXX 1 byte hole, try to pack */ u16 vlan_id; /* 62 2 */ /* --- cacheline 1 boundary (64 bytes) --- */ u8 network_hdr_type; /* 64 1 */ /* size: 72, cachelines: 2, members: 17 */ /* sum members: 62, holes: 2, sum holes: 3 */ /* padding: 7 */ /* last cacheline: 8 bytes */ }; Pahole output after this change: struct ib_wc { union { u64 wr_id; /* 8 */ struct ib_cqe * wr_cqe; /* 8 */ }; /* 0 8 */ enum ib_wc_status status; /* 8 4 */ enum ib_wc_opcode opcode; /* 12 4 */ u32 vendor_err; /* 16 4 */ u32 byte_len; /* 20 4 */ struct ib_qp * qp; /* 24 8 */ union { __be32 imm_data; /* 4 */ u32 invalidate_rkey; /* 4 */ } ex; /* 32 4 */ u32 src_qp; /* 36 4 */ u32 slid; /* 40 4 */ int wc_flags; /* 44 4 */ u16 pkey_index; /* 48 2 */ u8 sl; /* 50 1 */ u8 dlid_path_bits; /* 51 1 */ u8 port_num; /* 52 1 */ u8 smac[6]; /* 53 6 */ /* XXX 1 byte hole, try to pack */ u16 vlan_id; /* 60 2 */ u8 network_hdr_type; /* 62 1 */ /* size: 64, cachelines: 1, members: 17 */ /* sum members: 62, holes: 1, sum holes: 1 */ /* padding: 1 */ }; Fixes: 7db20ecd1d97 ("IB/core: Change wc.slid from 16 to 32 bits") Signed-off-by: Bodong Wang Reviewed-by: Parav Pandit Signed-off-by: Leon Romanovsky Signed-off-by: Jason Gunthorpe Signed-off-by: Greg Kroah-Hartman --- include/rdma/ib_verbs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -983,9 +983,9 @@ struct ib_wc { u32 invalidate_rkey; } ex; u32 src_qp; + u32 slid; int wc_flags; u16 pkey_index; - u32 slid; u8 sl; u8 dlid_path_bits; u8 port_num; /* valid only for DR SMPs on switches */