* netisr CPU affinity lookup routine for use by protocols. */
| 396 | * netisr CPU affinity lookup routine for use by protocols. |
| 397 | */ |
| 398 | struct mbuf * |
| 399 | rss_m2cpuid(struct mbuf *m, uintptr_t source, u_int *cpuid) |
| 400 | { |
| 401 | |
| 402 | M_ASSERTPKTHDR(m); |
| 403 | *cpuid = rss_hash2cpuid(m->m_pkthdr.flowid, M_HASHTYPE_GET(m)); |
| 404 | return (m); |
| 405 | } |
| 406 | |
| 407 | int |
| 408 | rss_m2bucket(struct mbuf *m, uint32_t *bucket_id) |
nothing calls this directly
no test coverage detected