Message ID | 20160920141917.AFE07E0BC1@smtp.ogc.us (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Hey guys, Has this patch been integrated yet? Also, where is the official upstream perftest git repo now? Thanks, Steve. > -----Original Message----- > From: Steve Wise [mailto:swise@opengridcomputing.com] > Sent: Tuesday, October 11, 2016 4:34 PM > To: 'Gil Rockah'; 'Zohar Ben Aharon' > Subject: RE: [PATCH v2 perftest] Support for Chelsio T6 devices > > > > -----Original Message----- > > From: Gil Rockah [mailto:gilr@mellanox.com] > > Sent: Monday, September 26, 2016 2:01 AM > > To: Zohar Ben Aharon; swise@opengridcomputing.com > > Subject: FW: [PATCH v2 perftest] Support for Chelsio T6 devices > > > > Hi Steve, > > Thanks for the patch. > > Please notice that Zohar is the new owner of perftest. > > > > Thanks, > > Gil > > > > Hey Zohar, > > Where is the formal perftest git repo now? > > Thanks, > > Steve. -- 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
On Tue, Oct 25, 2016 at 09:32:55AM -0500, Steve Wise wrote: > Hey guys, > > Has this patch been integrated yet? Also, where is the official upstream > perftest git repo now? Hi Steve, Sorry for the late response, due to the holidays our responses are delaying a little bit. We moved perftest repo to be under github's linux-rdma organization [1] and it is now [2]. I'll remind to Zohar to take it. [1] https://github.com/linux-rdma/ [2] https://github.com/linux-rdma/perftest > > Thanks, > > Steve. > > > > -----Original Message----- > > From: Steve Wise [mailto:swise@opengridcomputing.com] > > Sent: Tuesday, October 11, 2016 4:34 PM > > To: 'Gil Rockah'; 'Zohar Ben Aharon' > > Subject: RE: [PATCH v2 perftest] Support for Chelsio T6 devices > > > > > > > -----Original Message----- > > > From: Gil Rockah [mailto:gilr@mellanox.com] > > > Sent: Monday, September 26, 2016 2:01 AM > > > To: Zohar Ben Aharon; swise@opengridcomputing.com > > > Subject: FW: [PATCH v2 perftest] Support for Chelsio T6 devices > > > > > > Hi Steve, > > > Thanks for the patch. > > > Please notice that Zohar is the new owner of perftest. > > > > > > Thanks, > > > Gil > > > > > > > Hey Zohar, > > > > Where is the formal perftest git repo now? > > > > Thanks, > > > > Steve. > > -- > 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
> > Hey guys, > > > > Has this patch been integrated yet? Also, where is the official upstream > > perftest git repo now? > > Hi Steve, > > Sorry for the late response, due to the holidays our responses are > delaying a little bit. > > We moved perftest repo to be under github's linux-rdma organization [1] > and it is now [2]. > > I'll remind to Zohar to take it. > > [1] https://github.com/linux-rdma/ > [2] https://github.com/linux-rdma/perftest Thanks for the update! Steve. -- 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
On Thu, Oct 27, 2016 at 09:19:40AM -0500, Steve Wise wrote: > > > Hey guys, > > > > > > Has this patch been integrated yet? Also, where is the official upstream > > > perftest git repo now? > > > > Hi Steve, > > > > Sorry for the late response, due to the holidays our responses are > > delaying a little bit. > > > > We moved perftest repo to be under github's linux-rdma organization [1] > > and it is now [2]. > > > > I'll remind to Zohar to take it. > > > > [1] https://github.com/linux-rdma/ > > [2] https://github.com/linux-rdma/perftest > > > Thanks for the update! Hi Steve, I merged both of your patches https://patchwork.kernel.org/patch/9341763/ https://patchwork.kernel.org/patch/9219151/ https://github.com/linux-rdma/perftest/pull/1 Sorry for the delay. > > Steve. > >
> Hi Steve, > I merged both of your patches > https://patchwork.kernel.org/patch/9341763/ > https://patchwork.kernel.org/patch/9219151/ > https://github.com/linux-rdma/perftest/pull/1 > > Sorry for the delay. Thanks all! Steve. -- 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/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 */
Signed-off-by: Steve Wise <swise@opengridcomputing.com> --- 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(-)