/freebsd/tools/test/stress2/misc/ |
H A D | uma_zalloc_arg.sh | 46 s2=`sysctl -n debug.fail_point.uma_zalloc_arg` 49 sysctl debug.fail_point.uma_zalloc_arg="$s2" > /dev/null 53 sysctl debug.fail_point.uma_zalloc_arg='1%return' 108 @@ -2148,6 +2149,23 @@ uma_zalloc_arg(uma_zone_t zone, void *udata, int flags) 113 + KFAIL_POINT_CODE(DEBUG_FP, uma_zalloc_arg, {
|
/freebsd/sys/kern/ |
H A D | kern_mbuf.c | 760 if (uma_zalloc_arg(zone_clust, m, how) == NULL || in mb_zinit_pack() 1321 uma_zalloc_arg(zone_clust, m, how); in m_clget() 1328 uma_zalloc_arg(zone_clust, m, how); in m_clget() 1354 retval = uma_zalloc_arg(zone, m, how); in m_cljget() 1374 return (uma_zalloc_arg(zone_mbuf, &args, how)); in m_get2() 1376 return (uma_zalloc_arg(zone_pack, &args, how)); in m_get2() 1381 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_get2() 1385 n = uma_zalloc_arg(zone_jumbop, m, how); in m_get2() 1414 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_get3() 1423 n = uma_zalloc_arg(zone, m, how); in m_get3() [all …]
|
H A D | kern_malloc.c | 663 va = uma_zalloc_arg(zone, zone, flags);
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_slab.c | 68 return (uma_zalloc_arg(c->cache_zone, c, in lkpi_kmem_cache_alloc() 75 return (uma_zalloc_arg(c->cache_zone, c, in lkpi_kmem_cache_zalloc()
|
H A D | linux_pci.c | 1884 obj = uma_zalloc_arg(pool->pool_zone, pool, mem_flags & GFP_NATIVE_MASK); in linux_dma_pool_alloc()
|
/freebsd/sys/vm/ |
H A D | uma.h | 335 void *uma_zalloc_arg(uma_zone_t zone, void *arg, int flags); 368 return uma_zalloc_arg(zone, NULL, flags); in uma_zalloc()
|
H A D | uma_core.c | 497 bucket = uma_zalloc_arg(ubz->ubz_zone, udata, flags); in bucket_alloc() 3459 item = uma_zalloc_arg(zone, udata, flags & ~M_ZERO); in uma_zalloc_pcpu_arg() 3741 uma_zalloc_arg(uma_zone_t zone, void *udata, int flags) in uma_zalloc_arg() function 3902 return (uma_zalloc_arg(zone, udata, flags)); in uma_zalloc_domain() 3937 return (uma_zalloc_arg(zone, udata, flags)); in uma_zalloc_domain()
|
/freebsd/sys/sys/ |
H A D | mbuf.h | 987 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_get_raw() 1000 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_get() 1013 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_gethdr_raw() 1026 m = uma_zalloc_arg(zone_mbuf, &args, how); in m_gethdr() 1039 m = uma_zalloc_arg(zone_pack, &args, how); in m_getcl()
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
H A D | spl_kmem.c | 194 return (uma_zalloc_arg(cache->kc_zone, cache, flags)); in kmem_cache_alloc()
|
/freebsd/sys/security/audit/ |
H A D | audit.c | 428 ar = uma_zalloc_arg(audit_record_zone, td, M_WAITOK); in audit_new()
|
/freebsd/sys/netgraph/netflow/ |
H A D | netflow.c | 329 fle = uma_zalloc_arg(priv->zone, priv, M_NOWAIT); in hash_insert() 406 fle6 = uma_zalloc_arg(priv->zone6, priv, M_NOWAIT); in hash6_insert()
|
/freebsd/sys/fs/fuse/ |
H A D | fuse_ipc.c | 369 return uma_zalloc_arg(ticket_zone, data, M_WAITOK); in fticket_alloc()
|
/freebsd/share/man/man9/ |
H A D | Makefile | 2475 zone.9 uma_zalloc_arg.9 \
|
/freebsd/sys/geom/raid3/ |
H A D | g_raid3.c | 191 ptr = uma_zalloc_arg(sc->sc_zones[zone].sz_zone, in g_raid3_alloc()
|