On 11/13/2017 9:58 PM, Jason Gunthorpe wrote:
On Sun, Nov 12, 2017 at 11:41:39PM +0200, Yishai Hadas wrote:
+struct ibv_td {
+ struct ibv_context *context;
+};
As much as possible, I would like to see any new objects be 'opaque'
to the application, so this should just be
struct ibv_td;
And ibv_td should be defined in driver.h or something
This avoids leaking internal details and means we don't have to commit
to an ABI for the insides of these structs.
ibv_td should expose in verbs.h the 'context' as the inline function
ibv_alloc_td() needs it to get the verbs_context and call the driver
function if was set. Further extensions if will come should be 'opaque'
as you pointed.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html