Lines Matching defs:ethX
28 XIF_START, /* (ethX), called on 'ifup', start receiver thread */
29 XIF_STOP, /* (ethX), called on 'ifdown', stop the thread */
30 XIF_READLENGTH, /* (ethX), return size of network data block to read */
31 XIF_READBLOCK, /* (ethX, buffer, size), read block of network data */
32 XIF_WRITEBLOCK, /* (ethX, buffer, size), write block of network data */
33 XIF_GET_MAC, /* (ethX, buffer, size), return MAC HW addr in buffer */
34 XIF_GET_IPHOST, /* (ethX, buffer, size), return IP address of host */
35 XIF_GET_IPATARI,/* (ethX, buffer, size), return IP address of atari */
36 XIF_GET_NETMASK /* (ethX, buffer, size), return IP netmask */
56 int ethX;
66 res = nf_call(nfEtherID + XIF_START, priv->ethX);
82 nf_call(nfEtherID + XIF_STOP, priv->ethX);
97 pktlen = nf_call(nfEtherID + XIF_READLENGTH, priv->ethX);
118 nf_call(nfEtherID + XIF_READBLOCK, priv->ethX, virt_to_phys(skb->data),
160 nf_call(nfEtherID + XIF_WRITEBLOCK, priv->ethX, virt_to_phys(data),
206 priv->ethX = unit;