Searched refs:pktrdy (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/sys/mips/nlm/dev/net/ucore/
H A Ducore_app.c40 unsigned int pktrdy; local
46 pktrdy = nlm_read_ucore_rxpktrdy();
48 intf = pktrdy & 0x1f;
49 context = (pktrdy >> 13) & 0x3ff;
50 hw_parser_error = (pktrdy >> 23) & 0x1;
H A Ducore.h176 nlm_ucore_get_rxpkt_poeclassfullvec(unsigned int pktrdy) argument
178 return ((pktrdy >> 24) & 0xff);
185 nlm_ucore_get_rxpkt_hwparsererr(unsigned int pktrdy) argument
187 return ((pktrdy >> 23) & 0x1);
194 nlm_ucore_get_rxpkt_context(unsigned int pktrdy) argument
196 return ((pktrdy >> 13) & 0x3ff);
203 nlm_ucore_get_rxpkt_channel(unsigned int pktrdy) argument
205 return ((pktrdy >> 5) & 0xff);
212 nlm_ucore_get_rxpkt_interface(unsigned int pktrdy) argument
214 return (pktrdy
[all...]

Completed in 59 milliseconds