From patchwork Tue Sep 20 14:16:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Wise X-Patchwork-Id: 9341763 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 1B0E06077A for ; Tue, 20 Sep 2016 14:19:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0DD02297C2 for ; Tue, 20 Sep 2016 14:19:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 025E229C2E; Tue, 20 Sep 2016 14:19:28 +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=-6.9 required=2.0 tests=BAYES_00,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 CCE3A297C2 for ; Tue, 20 Sep 2016 14:19:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753804AbcITOTX (ORCPT ); Tue, 20 Sep 2016 10:19:23 -0400 Received: from smtp.opengridcomputing.com ([72.48.136.20]:54500 "EHLO smtp.opengridcomputing.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752272AbcITOTX (ORCPT ); Tue, 20 Sep 2016 10:19:23 -0400 Received: from smtp.ogc.us (build2.ogc.int [10.10.0.32]) by smtp.opengridcomputing.com (Postfix) with ESMTP id C15C329E37; Tue, 20 Sep 2016 09:19:17 -0500 (CDT) Received: by smtp.ogc.us (Postfix, from userid 503) id AFE07E0BC1; Tue, 20 Sep 2016 09:19:17 -0500 (CDT) From: Steve Wise Date: Tue, 20 Sep 2016 07:16:38 -0700 Subject: [PATCH v2 perftest] Support for Chelsio T6 devices To: Gil Rockah Cc: linux-rdma@vger.kernel.org Message-Id: <20160920141917.AFE07E0BC1@smtp.ogc.us> 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: Steve Wise --- Changes since v1: fixed nit suggested by Leon --- src/perftest_parameters.c | 1 + src/perftest_parameters.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/perftest_parameters.c b/src/perftest_parameters.c index a21b6eb..0d1ea2f 100755 --- a/src/perftest_parameters.c +++ b/src/perftest_parameters.c @@ -1326,6 +1326,7 @@ enum ctx_device ib_dev_name(struct ibv_context *context) case 4 : dev_fname = CHELSIO_T4; break; case 11 : case 5 : dev_fname = CHELSIO_T5; break; + case 6 : dev_fname = CHELSIO_T6; break; default : dev_fname = UNKNOWN; break; } diff --git a/src/perftest_parameters.h b/src/perftest_parameters.h index 448e398..dc57efb 100755 --- a/src/perftest_parameters.h +++ b/src/perftest_parameters.h @@ -269,7 +269,8 @@ enum ctx_device { CONNECTX4 = 10, CONNECTX4LX = 11, QLOGIC_E4 = 12, - QLOGIC_AH = 13 + QLOGIC_AH = 13, + CHELSIO_T6 = 14, }; /* Units for rate limiter */