diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-03-01 15:26:32 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-03-07 21:04:40 +0000 |
commit | 60e205a551f07882ed18a33fa192ad7cefe548a0 (patch) | |
tree | 89dce4b91d85dc435aca2047262e10c18a3e3ef2 /src/include/ipxe/infiniband.h | |
parent | fcf3b0354428df2e8237b7d0fca2457ff7d87fac (diff) | |
download | ipxe-60e205a551f07882ed18a33fa192ad7cefe548a0.tar.gz |
[infiniband] Remove concept of whole-device owner data
Remove the implicit assumption that the IPoIB protocol owns the whole
Infiniband device.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/infiniband.h')
-rw-r--r-- | src/include/ipxe/infiniband.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/include/ipxe/infiniband.h b/src/include/ipxe/infiniband.h index 87cfe5082..6a99865f2 100644 --- a/src/include/ipxe/infiniband.h +++ b/src/include/ipxe/infiniband.h @@ -450,8 +450,6 @@ struct ib_device { /** Driver private data */ void *drv_priv; - /** Owner private data */ - void *owner_priv; }; /** An Infiniband upper-layer driver */ @@ -695,26 +693,4 @@ ib_get_drvdata ( struct ib_device *ibdev ) { return ibdev->drv_priv; } -/** - * Set Infiniband device owner-private data - * - * @v ibdev Infiniband device - * @v priv Private data - */ -static inline __always_inline void -ib_set_ownerdata ( struct ib_device *ibdev, void *priv ) { - ibdev->owner_priv = priv; -} - -/** - * Get Infiniband device owner-private data - * - * @v ibdev Infiniband device - * @ret priv Private data - */ -static inline __always_inline void * -ib_get_ownerdata ( struct ib_device *ibdev ) { - return ibdev->owner_priv; -} - #endif /* _IPXE_INFINIBAND_H */ |