Provide pointer from struct ifnet to struct netmap_adapter,
instead of abusing spare field.
This commit is contained in:
parent
91804910e2
commit
997d2d833f
@ -1187,7 +1187,7 @@ extern int netmap_generic_rings;
|
||||
* WNA is used to write it.
|
||||
*/
|
||||
#ifndef WNA
|
||||
#define WNA(_ifp) (_ifp)->if_pspare[0]
|
||||
#define WNA(_ifp) (_ifp)->if_netmap
|
||||
#endif
|
||||
#define NA(_ifp) ((struct netmap_adapter *)WNA(_ifp))
|
||||
|
||||
|
@ -67,6 +67,7 @@ struct ifvlantrunk;
|
||||
struct route; /* if_output */
|
||||
struct vnet;
|
||||
struct ifmedia;
|
||||
struct netmap_adapter;
|
||||
|
||||
#ifdef _KERNEL
|
||||
#include <sys/mbuf.h> /* ifqueue only? */
|
||||
@ -202,6 +203,7 @@ struct ifnet {
|
||||
void *if_pf_kif; /* pf glue */
|
||||
struct carp_if *if_carp; /* carp interface structure */
|
||||
struct label *if_label; /* interface MAC label */
|
||||
struct netmap_adapter *if_netmap; /* netmap(4) softc */
|
||||
|
||||
/* Various procedures of the layer2 encapsulation and drivers. */
|
||||
int (*if_output) /* output routine (enqueue) */
|
||||
|
Loading…
Reference in New Issue
Block a user