From mboxrd@z Thu Jan 1 00:00:00 1970 From: Faisal Latif Subject: Re: [PATCH V1 08/16] i40iw: add files for iwarp interface Date: Thu, 24 Dec 2015 13:36:33 -0600 Message-ID: <20151224193633.GA19560@flatif-MOBL1> References: <1450739596-23276-3-git-send-email-faisal.latif@intel.com> <1450739596-23276-4-git-send-email-faisal.latif@intel.com> <1450739596-23276-5-git-send-email-faisal.latif@intel.com> <1450739596-23276-6-git-send-email-faisal.latif@intel.com> <1450739596-23276-7-git-send-email-faisal.latif@intel.com> <1450739596-23276-8-git-send-email-faisal.latif@intel.com> <1450739596-23276-9-git-send-email-faisal.latif@intel.com> <567ACED9.2040701@mellanox.com> <20151224073137.GB35696@flatif-MOBL1> <567BABE4.8080302@mellanox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <567BABE4.8080302@mellanox.com> Sender: netdev-owner@vger.kernel.org To: Or Gerlitz Cc: "dledford@redhat.com" , "linux-rdma@vger.kernel.org" , "netdev@vger.kernel.org" , "Kirsher, Jeffrey T" , "e1000-rdma@lists.sourceforge.net" List-Id: linux-rdma@vger.kernel.org On Thu, Dec 24, 2015 at 10:25:08AM +0200, Or Gerlitz wrote: > On 12/24/2015 9:31 AM, Faisal Latif wrote: > >On Wed, Dec 23, 2015 at 08:42:01AM -0800, Or Gerlitz wrote: > >>On 12/22/2015 1:13 AM, Faisal Latif wrote: > >>>+ > >>>+enum i40iw_memreg_type { > >>>+ IW_MEMREG_TYPE_MEM = 0x0000, > >>>+ IW_MEMREG_TYPE_QP = 0x0001, > >>>+ IW_MEMREG_TYPE_CQ = 0x0002, > >>>+ IW_MEMREG_TYPE_MW = 0x0003, > >>>+ IW_MEMREG_TYPE_FMR = 0x0004, > >>>+ IW_MEMREG_TYPE_FMEM = 0x0005, > >>>+}; > >>Can't you re-use IB core values or derive that from the actual uverbs > >>command? > >I did not see anything which will have types that I needed. > > what do you need? what is the role of this enum? We register register memory from user library for qp and cq rings as well as user memory registration and do need to distinguish in the driver. > > >It will be confusing otherwise. > > > >I will be reducing number of types from here though. > > so why some of it can go? is that deal values which aren't used by the code Yes, had added all different types for user requests. But For the time being, we will just keep MEM, CQ, QP and add other as needed like Memory Windows. > > Or. > > >Thanks > >Faisal >