Searched refs:nr_alloc (Results 1 – 9 of 9) sorted by relevance
/linux-6.1.9/tools/lib/api/fd/ |
D | array.c | 17 fda->nr = fda->nr_alloc = 0; in fdarray__init() 24 int nr_alloc = fda->nr_alloc + nr; in fdarray__grow() local 25 size_t psize = sizeof(fda->priv[0]) * nr_alloc; in fdarray__grow() 26 size_t size = sizeof(struct pollfd) * nr_alloc; in fdarray__grow() 38 memset(&entries[fda->nr_alloc], 0, sizeof(struct pollfd) * nr); in fdarray__grow() 39 memset(&priv[fda->nr_alloc], 0, sizeof(fda->priv[0]) * nr); in fdarray__grow() 41 fda->nr_alloc = nr_alloc; in fdarray__grow() 47 struct fdarray *fdarray__new(int nr_alloc, int nr_autogrow) in fdarray__new() argument 52 if (fdarray__grow(fda, nr_alloc)) { in fdarray__new() 80 if (fda->nr == fda->nr_alloc && in fdarray__add()
|
D | array.h | 21 int nr_alloc; member 42 struct fdarray *fdarray__new(int nr_alloc, int nr_autogrow); 56 return fda->nr_alloc - fda->nr; in fdarray__available_entries()
|
/linux-6.1.9/mm/ |
D | percpu-internal.h | 36 int nr_alloc; /* # of allocations */ member 139 u64 nr_alloc; /* lifetime # of allocations */ member 175 pcpu_stats.nr_alloc++; in pcpu_stats_area_alloc() 184 chunk->nr_alloc++; in pcpu_stats_area_alloc() 202 chunk->nr_alloc--; in pcpu_stats_area_dealloc()
|
D | percpu-stats.c | 41 max_nr_alloc = max(max_nr_alloc, chunk->nr_alloc); in find_max_nr_alloc() 121 P("nr_alloc", chunk->nr_alloc); in chunk_map_stats() 183 PU(nr_alloc); in percpu_stats_show()
|
/linux-6.1.9/tools/perf/tests/ |
D | fdarray.c | 11 fda->nr = fda->nr_alloc; in fdarray__init_revents() 43 if (nr_fds != fda->nr_alloc) { in test__fdarray__filter() 45 nr_fds, fda->nr_alloc); in test__fdarray__filter() 53 nr_fds, fda->nr_alloc); in test__fdarray__filter()
|
/linux-6.1.9/tools/perf/ |
D | builtin-kmem.c | 298 int nr_alloc; member 841 pstat->nr_alloc++; in evsel__process_page_alloc_event() 850 pstat->nr_alloc++; in evsel__process_page_alloc_event() 860 pstat->nr_alloc++; in evsel__process_page_alloc_event() 924 pstat->nr_alloc--; in evsel__process_page_free_event() 927 if (pstat->nr_alloc == 0) { in evsel__process_page_free_event() 1093 data->nr_alloc, data->order, in __print_page_alloc_result() 1135 data->nr_alloc, data->order, in __print_page_caller_result() 1567 if (l->nr_alloc < r->nr_alloc) in page_hit_cmp() 1569 else if (l->nr_alloc > r->nr_alloc) in page_hit_cmp()
|
/linux-6.1.9/fs/fuse/ |
D | dax.c | 257 int ret, i = 0, nr_alloc; in dmap_removemapping_list() local 259 nr_alloc = min_t(unsigned int, num, FUSE_REMOVEMAPPING_MAX_ENTRY); in dmap_removemapping_list() 260 remove_one = kmalloc_array(nr_alloc, sizeof(*remove_one), GFP_NOFS); in dmap_removemapping_list() 271 if (i >= nr_alloc || num == 0) { in dmap_removemapping_list()
|
/linux-6.1.9/kernel/power/ |
D | snapshot.c | 1561 unsigned long nr_alloc = 0; in preallocate_image_pages() local 1575 nr_alloc++; in preallocate_image_pages() 1578 return nr_alloc; in preallocate_image_pages()
|
/linux-6.1.9/drivers/net/ethernet/ |
D | jme.c | 1937 int idx, nr_alloc, mask = jme->tx_ring_mask; in jme_alloc_txdesc() local 1940 nr_alloc = skb_shinfo(skb)->nr_frags + 2; in jme_alloc_txdesc() 1942 if (unlikely(atomic_read(&txring->nr_free) < nr_alloc)) in jme_alloc_txdesc() 1945 atomic_sub(nr_alloc, &txring->nr_free); in jme_alloc_txdesc() 1947 txring->next_to_use = (txring->next_to_use + nr_alloc) & mask; in jme_alloc_txdesc()
|