On Fri, Aug 14, 2020 at 01:54:08PM -0300, Jason Gunthorpe wrote: > On Mon, Aug 10, 2020 at 11:19:18PM +0300, Kamal Heib wrote: > > On Wed, Aug 05, 2020 at 07:17:42PM -0300, Jason Gunthorpe wrote: > > > On Thu, Aug 06, 2020 at 12:00:51AM +0300, Kamal Heib wrote: > > > > Make sure to report the right max_pkeys attribute value to indicate the > > > > maximum number of partitions supported by the usnic device. > > > > > > Why does usnic support pkeys? This needs more explanation > > > > > > Jason > > > > Looks like the usnic provider is acting like the RoCE providers by returning > > the default pkey when calling the query_pkey() callback, Do you think that > > this needs to removed like what was done for iWarp providers? > > > > int usnic_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index, > > u16 *pkey) > > { > > if (index > 0) > > return -EINVAL; > > > > *pkey = 0xffff; > > return 0; > > } > > You'd have to check the libfabric provider to see if it cares or not > > Jason Looks like the usnic provider under libfabric doesn't care about pkey/query_pkey, I'll prepare a patch that will remove the query_pkey() callback. kheib master ~ git upstream libfabric git grep -n query_pkey prov/usnic/ kheib master ~ git upstream libfabric git grep -n pkey prov/usnic/ kheib master ~ git upstream libfabric Thanks, Kamal