mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 07:41:45 +00:00
Added netdev_priv() to ease Linux driver compatibility.
This commit is contained in:
parent
eecf71e4a0
commit
99411e36da
@ -326,6 +326,17 @@ netdev_put ( struct net_device *netdev ) {
|
||||
ref_put ( &netdev->refcnt );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get driver private area for this network device
|
||||
*
|
||||
* @v netdev Network device
|
||||
* @ret priv Driver private area for this network device
|
||||
*/
|
||||
static inline __attribute__ (( always_inline )) void *
|
||||
netdev_priv ( struct net_device *netdev ) {
|
||||
return netdev->priv;
|
||||
}
|
||||
|
||||
extern int netdev_tx ( struct net_device *netdev, struct io_buffer *iobuf );
|
||||
extern void netdev_tx_complete_err ( struct net_device *netdev,
|
||||
struct io_buffer *iobuf, int rc );
|
||||
|
Loading…
Reference in New Issue
Block a user