I'll let Yishai and Tzahi respond in more detail, but see below.
> > void ibv_register_driver(const char *name, ibv_driver_init_func init_func);
> > +void verbs_register_driver(const char *name, ibv_driver_init_func
> > init_func);
>
> This should be using a new init_func signature.
>
> typedef struct verbs_device *(*ibv_driver_init_func_ex)(const char
> *uverbs_sys_path,
> int abi_version);
>
> To document/check that calls through that path are guarenteed to
> return an extended struct with the size member.
>
> > +struct verbs_device {
> > + struct ibv_device device; /* Must be first */
> > + size_t sz;
> > + size_t size_of_context;
> > + int (*init_context)(struct verbs_device *device,
> > + struct ibv_context *ctx, int cmd_fd);
> > + void (*uninit_context)(struct verbs_device *device,
> > + struct ibv_context *ctx);
> > + /* future fields added here */
> > +};
>
> Relying on the return value of alloc_context to tell if this is a
> new/old verbs_device means there is no way to tell from a ibv_device *
> pointer if it is extended or not.
>
> IMHO, it is better if the driver always returns a working legacy
> alloc_context and libverbs will set it to 0 if the new verbs_register
> entry point is used and verbs extension is supported. Drivers that call
> into verbs_register must supply init_context.
>
> This makes compatability with old verbs easier, and means you can
> detect if the verbs_device is present based only on an 'ibv_device
> *' pointer, this is more flexible going forward.
ibverbs could always export an extended device through a compatibility layer,
similar to what I added in patch 2.
>
> > +static inline struct verbs_device *verbs_get_device(
> > + const struct ibv_device *dev)
> > +{
> > + return container_of(dev, struct verbs_device, device);
> > +}
>
> This needs to return null when an extended device is not present, see
> above.
I don't think we even need to expose this function at this point. It's only
used internally.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html