From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yun Wang Subject: Re: [RFC PATCH 07/11] IB/Verbs: Use management helper has_mcast() and, cap_mcast() for mcast-check Date: Fri, 27 Mar 2015 19:09:27 +0100 Message-ID: References: <551579CA.4030901@profitbricks.com> <55157B71.6040505@profitbricks.com> <20150327162820.GC28412@obsidianresearch.com> <20150327170508.GB27862@phlsvsds.ph.intel.com> <20150327174941.GC28901@obsidianresearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: In-Reply-To: <20150327174941.GC28901@obsidianresearch.com> Sender: linux-kernel-owner@vger.kernel.org To: Jason Gunthorpe Cc: "ira.weiny" , Roland Dreier , Sean Hefty , Hal Rosenstock , "linux-rdma@vger.kernel.org" , linux-kernel , linux-nfs@vger.kernel.org, netdev@vger.kernel.org, "J. Bruce Fields" , Trond Myklebust , "David S. Miller" , Or Gerlitz , Moni Shoua , PJ Waskiewicz , Tatyana Nikolova , Yan Burman , Jack Morgenstein , Bart Van Assche , Yann Droneaud , Colin Ian King , Majd Dibbiny , Jiri Kosina Matan Barak List-Id: linux-rdma@vger.kernel.org On Fri, Mar 27, 2015 at 6:49 PM, Jason Gunthorpe wrote: > On Fri, Mar 27, 2015 at 06:31:26PM +0100, Yun Wang wrote: > >> Maybe we can temporarily reserve the old logical, and gradually solve >> these problems? > > It is best to make behavioral changes in small patches, yes. > > I think it is best to address these sorts of problems before trying to > tackle the driver interface side - that will avoid complexity. > > ie how does a driver set has_ipoib? It isn't even a sensible question > when it is a per port capability. I used to imaging it would like: init_device_mgmt_attributs(device) { for_each_port(device) if (port support XX) { port.mgmt_attribute |= CAP_XX if !(device.mgmt_attribute & HAS_XX) device.mgmt_attribute |= HAS_XX } } That is incase if a device got one port have some capability, the device have it too, so has_XX() will check on device level that if it has any port support XX, and cap_XX() to check on port level. But if has_XX() is only for optimizing the init/exit path, then it doesn't make sense to me any more... Regards, Michael Wang > > Jason From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753638AbbC0SJc (ORCPT ); Fri, 27 Mar 2015 14:09:32 -0400 Received: from mail-ob0-f180.google.com ([209.85.214.180]:33650 "EHLO mail-ob0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753039AbbC0SJ1 (ORCPT ); Fri, 27 Mar 2015 14:09:27 -0400 MIME-Version: 1.0 In-Reply-To: <20150327174941.GC28901@obsidianresearch.com> References: <551579CA.4030901@profitbricks.com> <55157B71.6040505@profitbricks.com> <20150327162820.GC28412@obsidianresearch.com> <20150327170508.GB27862@phlsvsds.ph.intel.com> <20150327174941.GC28901@obsidianresearch.com> Date: Fri, 27 Mar 2015 19:09:27 +0100 Message-ID: Subject: Re: [RFC PATCH 07/11] IB/Verbs: Use management helper has_mcast() and, cap_mcast() for mcast-check From: Yun Wang To: Jason Gunthorpe Cc: "ira.weiny" , Roland Dreier , Sean Hefty , Hal Rosenstock , "linux-rdma@vger.kernel.org" , linux-kernel , linux-nfs@vger.kernel.org, netdev@vger.kernel.org, "J. Bruce Fields" , Trond Myklebust , "David S. Miller" , Or Gerlitz , Moni Shoua , PJ Waskiewicz , Tatyana Nikolova , Yan Burman , Jack Morgenstein , Bart Van Assche , Yann Droneaud , Colin Ian King , Majd Dibbiny , Jiri Kosina , Matan Barak , Alex Estrin , Doug Ledford , Eric Dumazet , Erez Shitrit , Sagi Grimberg , Haggai Eran , Shachar Raindel , Mike Marciniszyn , Steve Wise , Tom Tucker , Chuck Lever Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 27, 2015 at 6:49 PM, Jason Gunthorpe wrote: > On Fri, Mar 27, 2015 at 06:31:26PM +0100, Yun Wang wrote: > >> Maybe we can temporarily reserve the old logical, and gradually solve >> these problems? > > It is best to make behavioral changes in small patches, yes. > > I think it is best to address these sorts of problems before trying to > tackle the driver interface side - that will avoid complexity. > > ie how does a driver set has_ipoib? It isn't even a sensible question > when it is a per port capability. I used to imaging it would like: init_device_mgmt_attributs(device) { for_each_port(device) if (port support XX) { port.mgmt_attribute |= CAP_XX if !(device.mgmt_attribute & HAS_XX) device.mgmt_attribute |= HAS_XX } } That is incase if a device got one port have some capability, the device have it too, so has_XX() will check on device level that if it has any port support XX, and cap_XX() to check on port level. But if has_XX() is only for optimizing the init/exit path, then it doesn't make sense to me any more... Regards, Michael Wang > > Jason From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yun Wang Subject: Re: [RFC PATCH 07/11] IB/Verbs: Use management helper has_mcast() and, cap_mcast() for mcast-check Date: Fri, 27 Mar 2015 19:09:27 +0100 Message-ID: References: <551579CA.4030901@profitbricks.com> <55157B71.6040505@profitbricks.com> <20150327162820.GC28412@obsidianresearch.com> <20150327170508.GB27862@phlsvsds.ph.intel.com> <20150327174941.GC28901@obsidianresearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: "ira.weiny" , Roland Dreier , Sean Hefty , Hal Rosenstock , "linux-rdma@vger.kernel.org" , linux-kernel , linux-nfs@vger.kernel.org, netdev@vger.kernel.org, "J. Bruce Fields" , Trond Myklebust , "David S. Miller" , Or Gerlitz , Moni Shoua , PJ Waskiewicz , Tatyana Nikolova , Yan Burman , Jack Morgenstein , Bart Van Assche , Yann Droneaud , Colin Ian King , Majd Dibbiny , Jiri Kosina , Matan Barak Return-path: In-Reply-To: <20150327174941.GC28901@obsidianresearch.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, Mar 27, 2015 at 6:49 PM, Jason Gunthorpe wrote: > On Fri, Mar 27, 2015 at 06:31:26PM +0100, Yun Wang wrote: > >> Maybe we can temporarily reserve the old logical, and gradually solve >> these problems? > > It is best to make behavioral changes in small patches, yes. > > I think it is best to address these sorts of problems before trying to > tackle the driver interface side - that will avoid complexity. > > ie how does a driver set has_ipoib? It isn't even a sensible question > when it is a per port capability. I used to imaging it would like: init_device_mgmt_attributs(device) { for_each_port(device) if (port support XX) { port.mgmt_attribute |= CAP_XX if !(device.mgmt_attribute & HAS_XX) device.mgmt_attribute |= HAS_XX } } That is incase if a device got one port have some capability, the device have it too, so has_XX() will check on device level that if it has any port support XX, and cap_XX() to check on port level. But if has_XX() is only for optimizing the init/exit path, then it doesn't make sense to me any more... Regards, Michael Wang > > Jason