From patchwork Fri Dec 21 18:31:52 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Drung X-Patchwork-Id: 10740875 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B3AE2161F for ; Fri, 21 Dec 2018 18:32:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A3D3428536 for ; Fri, 21 Dec 2018 18:32:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9703F28668; Fri, 21 Dec 2018 18:32:14 +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.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI 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 2801728536 for ; Fri, 21 Dec 2018 18:32:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391422AbeLUScN (ORCPT ); Fri, 21 Dec 2018 13:32:13 -0500 Received: from mx1.ionos.com ([46.16.72.21]:56192 "EHLO mx1.ionos.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725843AbeLUScN (ORCPT ); Fri, 21 Dec 2018 13:32:13 -0500 Received: from mail.pb.local (mail.pb.local [192.168.178.100]) by mx1.ionos.com (Postfix) with ESMTP id 92CF45F5E0 for ; Fri, 21 Dec 2018 18:32:08 +0000 (UTC) Received: from konstrukt.pb.local (konstrukt.pb.local [192.168.88.20]) by mail.pb.local (Postfix) with SMTP id 30C8A3FECE; Fri, 21 Dec 2018 19:32:02 +0100 (CET) Received: (nullmailer pid 19094 invoked by uid 1000); Fri, 21 Dec 2018 18:32:02 -0000 From: Benjamin Drung To: linux-rdma@vger.kernel.org Cc: Benjamin Drung Subject: [PATCH rdma-core 1/6] Fix typo of 'vendor' Date: Fri, 21 Dec 2018 19:31:52 +0100 Message-Id: <20181221183157.12444-2-benjamin.drung@cloud.ionos.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181221183157.12444-1-benjamin.drung@cloud.ionos.com> References: <20181221183157.12444-1-benjamin.drung@cloud.ionos.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: Benjamin Drung --- Documentation/pyverbs.md | 2 +- pyverbs/device.pyx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/pyverbs.md b/Documentation/pyverbs.md index a603f03d..a3e85c26 100644 --- a/Documentation/pyverbs.md +++ b/Documentation/pyverbs.md @@ -47,7 +47,7 @@ Sys image GUID : 9803:9b03:0000:e4c6 Max MR size : 0xffffffffffffffff Page size cap : 0xfffffffffffff000 Vendor ID : 0x2c9 -Vender part ID : 4119 +Vendor part ID : 4119 HW version : 0 Max QP : 262144 Max QP WR : 32768 diff --git a/pyverbs/device.pyx b/pyverbs/device.pyx index 696459f7..a50bd234 100644 --- a/pyverbs/device.pyx +++ b/pyverbs/device.pyx @@ -274,7 +274,7 @@ cdef class DeviceAttr(PyverbsObject): print_format.format('Max MR size', hex(self.max_mr_size).replace('L', '')) +\ print_format.format('Page size cap', hex(self.page_size_cap).replace('L', '')) +\ print_format.format('Vendor ID', hex(self.vendor_id)) +\ - print_format.format('Vender part ID', self.vendor_part_id) +\ + print_format.format('Vendor part ID', self.vendor_part_id) +\ print_format.format('HW version', self.hw_ver) +\ print_format.format('Max QP', self.max_qp) +\ print_format.format('Max QP WR', self.max_qp_wr) +\