Return-Path: Received: from mail-wi0-f181.google.com ([209.85.212.181]:37145 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751864AbbCZQER (ORCPT ); Thu, 26 Mar 2015 12:04:17 -0400 Received: by wiaa2 with SMTP id a2so29207062wia.0 for ; Thu, 26 Mar 2015 09:04:16 -0700 (PDT) Message-ID: <55142DFD.2060100@profitbricks.com> Date: Thu, 26 Mar 2015 17:04:13 +0100 From: Michael Wang MIME-Version: 1.0 To: Doug Ledford CC: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org, linux-nfs@vger.kernel.org, netdev@vger.kernel.org, Roland Dreier , Sean Hefty , Hal Rosenstock , Ira Weiny , Trond Myklebust , "J. Bruce Fields" , "David S. Miller" , Moni Shoua , Or Gerlitz , Tatyana Nikolova , Steve Wise , Yan Burman , Jack Morgenstein , Bart Van Assche , Yann Droneaud , Colin Ian King , Jiri Kosina , Matan Barak , Majd Dibbiny , Dan Carpenter , Mel Gorman , Alex Estrin , Eric Dumazet , Erez Shitrit , Sagi Grimberg , Haggai Eran , Shachar Raindel , Mike Marciniszyn , Tom Tucker , Chuck Lever Subject: Re: [PATCH 0/2 RESEND] IB/Verbs: Use helpers to refine the checking on transport and link layer References: <5512CFB0.1050108@profitbricks.com> <1427378940.21101.100.camel@redhat.com> In-Reply-To: <1427378940.21101.100.camel@redhat.com> Content-Type: text/plain; charset=utf-8 Sender: linux-nfs-owner@vger.kernel.org List-ID: Hi, Doug Thanks for the excellent comments :-) On 03/26/2015 03:09 PM, Doug Ledford wrote: > On Wed, 2015-03-25 at 16:09 +0100, Michael Wang wrote: >> [snip] >> > [snip] > > So, I would suggest that we fix things up thusly: > > enum transport { > TRANSPORT_IB=1, > TRANSPORT_IWARP=2, > TRANSPORT_ROCE=4, > TRANSPORT_OPA=8, > TRANSPORT_USNIC=10, > }; > > #define HAS_SA(ibdev) ((ibdev)->transport & (TRANSPORT_IB|TRANSPORT_OPA)) > #define HAS_JUMBO_SA(ibdev) ((ibdev)->transport & TRANSPORT_OPA)) > > or possibly > > static bool ib_dev_has_sa(struct ibv_device *ibdev) > { > return ibdev->transport & (TRANSPORT_IB | TRANSPORT_OPA); > } The idea sounds interesting, and here my silly questions come :-P So are you suggesting that we add a new bitmask 'transport' into 'struct ib_device' in kernel, and setup it at very beginning? Few more questions here is: 1. when to setup? (maybe inside ib_register_device() before doing client->add() callback?) 2. how to setup? (still infer from the transport and link layer like we currently do?) 3. in case if a device has ports with different link layer type (please correct me if this will never happen), then only one bitmask may not be enough to present the transport of all the ports? (maybe create a bitmask per port?) Regards, Michael Wang > > If we do this, then the only thing we have to fix up to preserve ABI > with user space is to make sure that any time we export an ibv_device > struct and any time we import the same, we convert from our new internal > representation to the old representation that user space expects. And > we also need to make a few changes in the sysfs code to display the > properties as things expect. But, that would allow us to fix up what I > see as a problem right now, which is that we hide the information we > need to know what sort of device we are working on in two different > fields: the transport and the link layer. Instead, just use one field > with enough variants that we can store all of the relevant information > we need in that one field. This has the benefit that any comparisons > that happen in hot paths will now always be a single bitwise comparison > and will no longer need to hit two separate variables for two separate > compares. > > >