From patchwork Fri Jul 6 17:17:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 10512189 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id CF2A860545 for ; Fri, 6 Jul 2018 17:17:51 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B1FC428720 for ; Fri, 6 Jul 2018 17:17:51 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A658228734; Fri, 6 Jul 2018 17:17:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5C5B528720 for ; Fri, 6 Jul 2018 17:17:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933525AbeGFRRs (ORCPT ); Fri, 6 Jul 2018 13:17:48 -0400 Received: from esa5.hgst.iphmx.com ([216.71.153.144]:14084 "EHLO esa5.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933452AbeGFRRl (ORCPT ); Fri, 6 Jul 2018 13:17:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wdc.com; i=@wdc.com; q=dns/txt; s=dkim.wdc.com; t=1530897462; x=1562433462; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=w1LziPwzy4+unsFvheR7mi8XylWrr/GtcrBSTblvrPk=; b=epHNqPD0bNJmpjl8t60ZLiFeoK2aLQ+7qEnl+IwwJqhvHyS+aowbgMV7 lBZQGrnfMt9eE1JuNdmgVJDqzhmWIupx9k4OZ83RQh9h8DXUQfE6En7TT l5UezKjzA0ybm77tIO/i/HFOQ6JQw4uUCo5Bh5y98OqBzYdrddCT0GJXL mHV94p7HhedX8gRp8XgVbrBzDiBK2IJE40gaD2nd56RRFovR2Ra5tcBGW EpM3OwS3rQdYZI4irlVt9YLm9nVaQH/yMJ044FyO5CepSgA8ccO1Pg9Op FuuBD88NqWiJuIpFKFh44ejweq8wTl+upPFfMswF9Cjj/xJtBFKAT0oYD Q==; X-IronPort-AV: E=Sophos;i="5.51,317,1526313600"; d="scan'208";a="84076260" Received: from uls-op-cesaip01.wdc.com (HELO uls-op-cesaep01.wdc.com) ([199.255.45.14]) by ob1.hgst.iphmx.com with ESMTP; 07 Jul 2018 01:17:40 +0800 Received: from uls-op-cesaip02.wdc.com ([10.248.3.37]) by uls-op-cesaep01.wdc.com with ESMTP; 06 Jul 2018 10:06:51 -0700 Received: from thinkpad-bart.sdcorp.global.sandisk.com ([10.111.67.248]) by uls-op-cesaip02.wdc.com with ESMTP; 06 Jul 2018 10:17:40 -0700 From: Bart Van Assche To: Jason Gunthorpe Cc: Doug Ledford , linux-rdma@vger.kernel.org, Bart Van Assche , Faisal Latif Subject: [PATCH 09/13] IB/nes: Declare work request pointers that are not modified const Date: Fri, 6 Jul 2018 10:17:32 -0700 Message-Id: <20180706171736.14543-10-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180706171736.14543-1-bart.vanassche@wdc.com> References: <20180706171736.14543-1-bart.vanassche@wdc.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Bart Van Assche Cc: Faisal Latif --- drivers/infiniband/hw/nes/nes_verbs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/nes/nes_verbs.c b/drivers/infiniband/hw/nes/nes_verbs.c index 82b8f9630ee8..8b1f114062e5 100644 --- a/drivers/infiniband/hw/nes/nes_verbs.c +++ b/drivers/infiniband/hw/nes/nes_verbs.c @@ -3040,7 +3040,8 @@ static int nes_process_mad(struct ib_device *ibdev, int mad_flags, } static inline void -fill_wqe_sg_send(struct nes_hw_qp_wqe *wqe, struct ib_send_wr *ib_wr, u32 uselkey) +fill_wqe_sg_send(struct nes_hw_qp_wqe *wqe, const struct ib_send_wr *ib_wr, + u32 uselkey) { int sge_index; int total_payload_length = 0;