Home
last modified time | relevance | path

Searched refs:batch_size (Results 1 – 21 of 21) sorted by relevance

/linux/tools/testing/selftests/bpf/
H A Dtest_lru_map.c256 unsigned int batch_size; in test_lru_sanity1() local
269 batch_size = tgt_free / 2; in test_lru_sanity1()
270 assert(batch_size * 2 == tgt_free); in test_lru_sanity1()
272 map_size = __map_size(tgt_free) + batch_size; in test_lru_sanity1()
288 end_key = 1 + batch_size; in test_lru_sanity1()
325 unsigned int batch_size; in test_lru_sanity2() local
338 batch_size = tgt_free / 2; in test_lru_sanity2()
339 assert(batch_size * 2 == tgt_free); in test_lru_sanity2()
341 map_size = __map_size(tgt_free) + batch_size; in test_lru_sanity2()
378 end_key = 1 + batch_size; in test_lru_sanity2()
[all …]
H A Dxskxceiver.h95 u32 batch_size; global() member
/linux/tools/testing/selftests/bpf/map_tests/
H A Dmap_in_map_batch_ops.c123 __u32 batch_size, bool delete_entries, in fetch_and_validate() argument
128 __u32 batch_key = 0, fetch_count, step_size = batch_size; in fetch_and_validate()
158 step_size += batch_size; in fetch_and_validate()
181 delete_entries ? "LOOKUP_AND_DELETE" : "LOOKUP", batch_size); in fetch_and_validate()
195 int batch_size[2] = {5, 10}; in _map_in_map_batch_ops() local
242 batch_size[op_index], false, in _map_in_map_batch_ops()
/linux/drivers/gpu/drm/xe/
H A Dxe_migrate.c906 u32 batch_size = 1; /* MI_BATCH_BUFFER_END */ in xe_migrate_copy() local
928 batch_size += pte_update_size(m, pte_flags, src, &src_it, &src_L0, in xe_migrate_copy()
935 batch_size += pte_update_size(m, pte_flags, dst, in xe_migrate_copy()
944 batch_size += pte_update_size(m, 0, NULL, &ccs_it, &ccs_size, in xe_migrate_copy()
952 batch_size += ((copy_only_ccs) ? 0 : EMIT_COPY_DW) + in xe_migrate_copy()
955 bb = xe_bb_new(gt, batch_size, usm); in xe_migrate_copy()
1103 u32 batch_size, batch_size_allocated; in xe_migrate_ccs_rw_copy() local
1119 batch_size = 0; in xe_migrate_ccs_rw_copy()
1121 batch_size += 10; /* Flush + ggtt addr + 2 NOP */ in xe_migrate_ccs_rw_copy()
1129 batch_size += pte_update_size(m, false, src, &src_it, &src_L0, in xe_migrate_ccs_rw_copy()
[all …]
/linux/net/bpf/
H A Dtest_run.c108 u32 batch_size; member
157 .pool_size = xdp->batch_size, in xdp_test_run_setup()
163 xdp->frames = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL); in xdp_test_run_setup()
167 xdp->skbs = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL); in xdp_test_run_setup()
287 batch_sz = min_t(u32, repeat, xdp->batch_size); in xdp_test_run_batch()
362 u32 repeat, u32 batch_size, u32 *time) in bpf_test_run_xdp_live() argument
365 struct xdp_test_data xdp = { .batch_size = batch_size }; in bpf_test_run_xdp_live()
682 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size) in bpf_prog_test_run_tracing()
758 kattr->test.repeat || kattr->test.batch_size) in bpf_prog_test_run_raw_tp()
1003 kattr->test.cpu || kattr->test.batch_size) in bpf_prog_test_run_skb()
[all …]
/linux/drivers/gpu/drm/i915/gt/
H A Dintel_renderstate.h40 u32 batch_size; member
/linux/drivers/net/ethernet/sfc/falcon/
H A Drx.c334 unsigned int fill_level, batch_size; in ef4_fast_push_rx_descriptors() local
352 batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page; in ef4_fast_push_rx_descriptors()
354 EF4_BUG_ON_PARANOID(space < batch_size); in ef4_fast_push_rx_descriptors()
371 } while ((space -= batch_size) >= batch_size); in ef4_fast_push_rx_descriptors()
/linux/drivers/net/ethernet/sfc/
H A Drx_common.c460 unsigned int fill_level, batch_size; in efx_fast_push_rx_descriptors() local
478 batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page; in efx_fast_push_rx_descriptors()
480 EFX_WARN_ON_ONCE_PARANOID(space < batch_size); in efx_fast_push_rx_descriptors()
495 } while ((space -= batch_size) >= batch_size); in efx_fast_push_rx_descriptors()
/linux/drivers/net/ethernet/sfc/siena/
H A Drx_common.c458 unsigned int fill_level, batch_size; in efx_siena_fast_push_rx_descriptors() local
476 batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page; in efx_siena_fast_push_rx_descriptors()
478 EFX_WARN_ON_ONCE_PARANOID(space < batch_size); in efx_siena_fast_push_rx_descriptors()
493 } while ((space -= batch_size) >= batch_size); in efx_siena_fast_push_rx_descriptors()
/linux/mm/
H A Dshrinker.c380 long batch_size = shrinker->batch ? shrinker->batch in do_shrink_slab() local
430 while (total_scan >= batch_size || in do_shrink_slab()
433 unsigned long nr_to_scan = min(batch_size, total_scan); in do_shrink_slab()
H A Dmemory.c2374 const int batch_size = min_t(int, pages_to_write_in_pmd, 8); in insert_pages() local
2381 for (pte = start_pte; pte_idx < batch_size; ++pte, ++pte_idx) { in insert_pages()
2394 pages_to_write_in_pmd -= batch_size; in insert_pages()
2395 remaining_pages_total -= batch_size; in insert_pages()
H A Dvmscan.c7764 unsigned long batch_size = (nr_to_reclaim - nr_reclaimed) / 4; in user_proactive_reclaim() local
7783 batch_size, gfp_mask, in user_proactive_reclaim()
7793 .nr_to_reclaim = max(batch_size, SWAP_CLUSTER_MAX), in user_proactive_reclaim()
7804 batch_size, &sc); in user_proactive_reclaim()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dxdp_do_redirect.c114 .batch_size = 64, in test_xdp_do_redirect()
/linux/drivers/dma/idxd/
H A Dsysfs.c1049 u64 batch_size; in wq_max_batch_size_store() local
1058 rc = __get_sysfs_u64(buf, &batch_size); in wq_max_batch_size_store()
1062 if (batch_size > idxd->max_batch_size) in wq_max_batch_size_store()
1065 idxd_wq_set_max_batch_size(idxd->data->type, wq, (u32)batch_size); in wq_max_batch_size_store()
/linux/Documentation/bpf/
H A Dbpf_prog_run.rst94 the ``batch_size`` parameter, up to a maximum of 256 packets. For each batch,
/linux/Documentation/networking/
H A Daf_xdp.rst684 int batch_size)
688 xsk_ring_prod__reserve(&xsk->tx, batch_size, &idx);
690 for (i = 0; i < batch_size;) {
711 if (i == batch_size) {
/linux/drivers/net/wireless/mediatek/mt76/
H A Dmt76_connac_mcu.c2152 int i, n_chan, batch_size, idx = 0, tx_power, last_ch, err = 0; in mt76_connac_mcu_rate_txpower_band() local
2176 batch_size = DIV_ROUND_UP(n_chan, batch_len); in mt76_connac_mcu_rate_txpower_band()
2185 for (i = 0; i < batch_size; i++) { in mt76_connac_mcu_rate_txpower_band()
2190 num_ch = i == batch_size - 1 ? n_chan - i * batch_len : batch_len; in mt76_connac_mcu_rate_txpower_band()
/linux/include/uapi/linux/
H A Dbpf.h1680 __u32 batch_size;
1676 __u32 batch_size; global() member
/linux/tools/include/uapi/linux/
H A Dbpf.h1680 __u32 batch_size;
1676 __u32 batch_size; global() member
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py2623 def FetchBatch(self, batch_size): argument
2625 while batch_size > fetched:
2644 batch_size = min(glb_chunk_sz, target - self.fetched)
2645 self.FetchBatch(batch_size)
/linux/kernel/bpf/
H A Dsyscall.c4679 #define BPF_PROG_TEST_RUN_LAST_FIELD test.batch_size