From patchwork Mon Dec 7 20:43:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dennis Dalessandro X-Patchwork-Id: 7789831 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A08AEBEEE1 for ; Mon, 7 Dec 2015 20:43:34 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C159C204EB for ; Mon, 7 Dec 2015 20:43:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C498320490 for ; Mon, 7 Dec 2015 20:43:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933018AbbLGUnc (ORCPT ); Mon, 7 Dec 2015 15:43:32 -0500 Received: from mga02.intel.com ([134.134.136.20]:51832 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932887AbbLGUnb (ORCPT ); Mon, 7 Dec 2015 15:43:31 -0500 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 07 Dec 2015 12:43:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,396,1444719600"; d="scan'208";a="702040307" Received: from sedona.ch.intel.com ([143.182.228.65]) by orsmga003.jf.intel.com with ESMTP; 07 Dec 2015 12:43:30 -0800 Received: from phlsvsles11.ph.intel.com (phlsvsles11.ph.intel.com [10.228.195.43]) by sedona.ch.intel.com (8.13.6/8.14.3/Standard MailSET/Hub) with ESMTP id tB7KhT3p027832; Mon, 7 Dec 2015 13:43:29 -0700 Received: from phlsvslse11.ph.intel.com (localhost [127.0.0.1]) by phlsvsles11.ph.intel.com with ESMTP id tB7KhSuu010042; Mon, 7 Dec 2015 15:43:28 -0500 Subject: [PATCH 07/37] IB/rdmavt: Add query and modify port stubs To: dledford@redhat.com From: Dennis Dalessandro Cc: linux-rdma@vger.kernel.org, Mike Marciniszyn , Ira Weiny Date: Mon, 07 Dec 2015 15:43:28 -0500 Message-ID: <20151207204327.8144.17959.stgit@phlsvslse11.ph.intel.com> In-Reply-To: <20151207204046.8144.18752.stgit@phlsvslse11.ph.intel.com> References: <20151207204046.8144.18752.stgit@phlsvslse11.ph.intel.com> User-Agent: StGit/0.16 MIME-Version: 1.0 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch adds the query and modify port stubs. The query will mostly entail the driver returning everything in the ib_port_attr which will get handed back to the verbs layer. The modify will need some API helpers in the driver. The send_trap and post_mad_send are still issues to address. Reviewed-by: Mike Marciniszyn Reviewed-by: Ira Weiny Signed-off-by: Dennis Dalessandro --- drivers/infiniband/sw/rdmavt/vt.c | 48 +++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c index b807ee8..513b929 100644 --- a/drivers/infiniband/sw/rdmavt/vt.c +++ b/drivers/infiniband/sw/rdmavt/vt.c @@ -97,6 +97,52 @@ static int rvt_modify_device(struct ib_device *device, return -EINVAL; } +/** + * rvt_query_port: Passes the query port call to the driver + * ibdev: Verbs IB dev + * port: port number + * props: structure to hold returned properties + * + * Returns 0 on success + */ +static int rvt_query_port(struct ib_device *ibdev, u8 port, + struct ib_port_attr *props) +{ + /* + * VT-DRIVER-API: query_port_state() + * driver returns pretty much everything in ib_port_attr + */ + return -EINVAL; +} + +/** + * rvt_modify_port + * @ibdev: Verbs IB dev + * @port: Port number + * @port_modify_mask: How to change the port + * @props: Structure to fill in + * + * Returns 0 on success + */ +static int rvt_modify_port(struct ib_device *ibdev, u8 port, + int port_modify_mask, struct ib_port_modify *props) +{ + /* + * VT-DRIVER-API: set_link_state() + * driver will set the link state using the IB enumeration + * + * VT-DRIVER-API: clear_qkey_violations() + * clears driver private qkey counter + * + * VT-DRIVER-API: get_lid() + * driver needs to return the LID + * + * TBD: send_trap() and post_mad_send() need examined to see where they + * fit in. + */ + return -EINVAL; +} + /* * Check driver override. If driver passes a value use it, otherwise we use our * own value. @@ -112,6 +158,8 @@ int rvt_register_device(struct rvt_dev_info *rdi) /* Dev Ops */ CDR(rdi, query_device); CDR(rdi, modify_device); + CDR(rdi, query_port); + CDR(rdi, modify_port); /* DMA Operations */ rdi->ibdev.dma_ops =