Searched refs:malloc_flags (Results 1 – 4 of 4) sorted by relevance
481 malloc2vm_flags(int malloc_flags) in malloc2vm_flags() argument485 KASSERT((malloc_flags & M_USE_RESERVE) == 0 || in malloc2vm_flags()486 (malloc_flags & M_NOWAIT) != 0, in malloc2vm_flags()488 pflags = (malloc_flags & M_USE_RESERVE) != 0 ? VM_ALLOC_INTERRUPT : in malloc2vm_flags()490 if ((malloc_flags & M_ZERO) != 0) in malloc2vm_flags()492 if ((malloc_flags & M_NODUMP) != 0) in malloc2vm_flags()494 if ((malloc_flags & M_NOWAIT)) in malloc2vm_flags()496 if ((malloc_flags & M_WAITOK)) in malloc2vm_flags()
45 int fhanew_realign(struct mbuf **mb, int malloc_flags);127 fhanew_realign(struct mbuf **mb, int malloc_flags) in fhanew_realign() argument129 return (newnfs_realign(mb, malloc_flags)); in fhanew_realign()
74 int malloc_flags; in pfs_alloc_node_flags() local79 malloc_flags = M_NOWAIT | M_ZERO; in pfs_alloc_node_flags()81 malloc_flags = M_WAITOK | M_ZERO; in pfs_alloc_node_flags()82 pn = malloc(sizeof *pn, M_PFSNODES, malloc_flags); in pfs_alloc_node_flags()
94 int (*realign)(struct mbuf **mb, int malloc_flags);