mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
In 4.x, if_ipending is used to track network interrupt state. In 5.x,
it is no longer used, so GC the ifnet.if_ipending field.
This commit is contained in:
parent
c70d9b301f
commit
41a76b481f
1 changed files with 0 additions and 7 deletions
|
|
@ -140,7 +140,6 @@ struct ifnet {
|
|||
int if_flags; /* up/down, broadcast, etc. */
|
||||
int if_capabilities; /* interface capabilities */
|
||||
int if_capenable; /* enabled features */
|
||||
int if_ipending; /* interrupts pending */
|
||||
void *if_linkmib; /* link-type-specific MIB data */
|
||||
size_t if_linkmiblen; /* length of above data */
|
||||
struct if_data if_data;
|
||||
|
|
@ -206,12 +205,6 @@ typedef void if_init_f_t(void *);
|
|||
#define if_addrlist if_addrhead
|
||||
#define if_list if_link
|
||||
|
||||
/*
|
||||
* Bit values in if_ipending
|
||||
*/
|
||||
#define IFI_RECV 1 /* I want to receive */
|
||||
#define IFI_XMIT 2 /* I want to transmit */
|
||||
|
||||
/*
|
||||
* Output queues (ifp->if_snd) and slow device input queues (*ifp->if_slowq)
|
||||
* are queues of messages stored on ifqueue structures
|
||||
|
|
|
|||
Loading…
Reference in a new issue