1 #ifndef _NET_IF_POLL_H_
2 #define _NET_IF_POLL_H_
9 #define IFPOLL_CTX_MAX 32
11 typedef void (*ifpoll_iofn_t
)(struct ifnet
*, void *, int);
12 typedef void (*ifpoll_stfn_t
)(struct ifnet
*, int);
14 struct ifpoll_status
{
15 struct lwkt_serialize
*serializer
;
16 ifpoll_stfn_t status_func
;
20 struct lwkt_serialize
*serializer
;
22 ifpoll_iofn_t poll_func
;
26 struct ifnet
*ifpi_ifp
;
27 struct ifpoll_status ifpi_status
;
28 struct ifpoll_io ifpi_rx
[IFPOLL_CTX_MAX
];
29 struct ifpoll_io ifpi_tx
[IFPOLL_CTX_MAX
];
34 #endif /* !_NET_IF_POLL_H_ */