| 44 | #include "ff_host_interface.h" |
| 45 | |
| 46 | static __inline int |
| 47 | hash_mflags(int flags) |
| 48 | { |
| 49 | return ((flags & HASH_NOWAIT) ? M_NOWAIT : M_WAITOK); |
| 50 | } |
| 51 | |
| 52 | /* |
| 53 | * General routine to allocate a hash table with control of memory flags. |
no outgoing calls
no test coverage detected