netif_napi_add(9)
NAME
netif_napi_add - initialize a napi context
SYNOPSIS
void netif_napi_add(struct net_device * dev, struct napi_struct * napi,
int (*poll) (struct napi_struct *, int),
int weight);
ARGUMENTS
- dev
- network device
- napi
- napi context
- poll
- polling function
- weight
- default weight
DESCRIPTION
netif_napi_add must be used to initialize a napi context prior to
calling *any* of the other napi related functions.