Home
last modified time | relevance | path

Searched refs:out_batch (Results 1 – 9 of 9) sorted by relevance

/linux/tools/lib/bpf/
H A Dbpf.c527 void *out_batch, void *keys, void *values, in bpf_map_batch_common() argument
541 attr.batch.out_batch = ptr_to_u64(out_batch); in bpf_map_batch_common()
561 int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch, void *keys, in bpf_map_lookup_batch() argument
566 out_batch, keys, values, count, opts); in bpf_map_lookup_batch()
569 int bpf_map_lookup_and_delete_batch(int fd, void *in_batch, void *out_batch, in bpf_map_lookup_and_delete_batch() argument
574 fd, in_batch, out_batch, keys, values, in bpf_map_lookup_and_delete_batch()
H A Dbpf.h200 * read. *out_batch* is an output parameter that should be passed as *in_batch*
203 * the map. Both *in_batch* and *out_batch* must point to memory large enough to
216 * @param out_batch output parameter that should be passed to next call as *in_batch*
229 LIBBPF_API int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch,
239 * get address of the first element in *out_batch*. If not NULL, must be large
243 * @param out_batch output parameter that should be passed to next call as *in_batch*
259 void *out_batch, void *keys,
/linux/tools/testing/selftests/bpf/map_tests/
H A Dmap_percpu_stats.c66 void *in_batch = NULL, *out_batch; in delete_and_lookup_batch() local
71 &in_batch, &out_batch, in delete_and_lookup_batch()
/linux/drivers/gpu/drm/i915/selftests/
H A Di915_request.c1064 goto out_batch; in live_empty_request()
1073 goto out_batch; in live_empty_request()
1086 goto out_batch; in live_empty_request()
1103 goto out_batch; in live_empty_request()
1109 out_batch: in live_empty_request()
/linux/include/uapi/linux/
H A Dbpf.h650 * *in_batch* and *out_batch*. Initially, *in_batch* must be set
653 * *out_batch* as the *in_batch* for the next operation to
655 * *out_batch* must point to memory large enough to hold a key,
719 * and *out_batch* parameters are ignored and should be zeroed.
767 * *in_batch*, *out_batch*, and *values* parameters are ignored
1573 __aligned_u64 out_batch; /* output: next start batch */
1551 __aligned_u64 out_batch; /* output: next start batch */ global() member
/linux/tools/include/uapi/linux/
H A Dbpf.h650 * *in_batch* and *out_batch*. Initially, *in_batch* must be set
653 * *out_batch* as the *in_batch* for the next operation to
655 * *out_batch* must point to memory large enough to hold a key,
719 * and *out_batch* parameters are ignored and should be zeroed.
767 * *in_batch*, *out_batch*, and *values* parameters are ignored
1573 __aligned_u64 out_batch; /* output: next start batch */
1551 __aligned_u64 out_batch; /* output: next start batch */ global() member
/linux/drivers/gpu/drm/i915/gt/
H A Dselftest_execlists.c3182 goto out_batch; in create_gpr_client()
3201 out_batch: in create_gpr_client()
/linux/kernel/bpf/
H A Dhashtab.c1995 ubatch = u64_to_user_ptr(attr->batch.out_batch); in __htab_map_lookup_and_delete_batch()
H A Dsyscall.c2053 void __user *uobatch = u64_to_user_ptr(attr->batch.out_batch); in generic_map_lookup_batch()