| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | cgroup_mprog_opts.c | 7 static void assert_mprog_count(int cg, int atype, int expected) in assert_mprog_count() argument 12 err = bpf_prog_query(cg, atype, 0, &attach_flags, in assert_mprog_count() 18 static void test_prog_attach_detach(int atype) in test_prog_attach_detach() argument 46 assert_mprog_count(cg, atype, 0); in test_prog_attach_detach() 54 err = bpf_prog_attach_opts(fd1, cg, atype, &opta); in test_prog_attach_detach() 58 assert_mprog_count(cg, atype, 1); in test_prog_attach_detach() 66 err = bpf_prog_attach_opts(fd2, cg, atype, &opta); in test_prog_attach_detach() 70 assert_mprog_count(cg, atype, 2); in test_prog_attach_detach() 79 err = bpf_prog_attach_opts(fd3, cg, atype, &opta); in test_prog_attach_detach() 83 assert_mprog_count(cg, atype, 3); in test_prog_attach_detach() [all …]
|
| H A D | cgroup_preorder.c | 120 enum bpf_attach_type atype; in run_link_replace_test() local 132 atype = bpf_program__expected_attach_type(skel->progs.child); in run_link_replace_test() 136 cgroup_fd, atype, &create_opts); in run_link_replace_test() 144 cgroup_fd, atype, &create_opts); in run_link_replace_test()
|
| H A D | test_sysctl.c | 1533 enum bpf_attach_type atype = test->attach_type; in run_test_case() local 1551 if (bpf_prog_attach(progfd, cgfd, atype, BPF_F_ALLOW_OVERRIDE) < 0) { in run_test_case() 1577 bpf_prog_detach(cgfd, atype); in run_test_case()
|
| H A D | sockmap_listen.c | 313 enum bpf_attach_type atype; in test_destroy_orphan_child() member 323 xbpf_prog_attach(t->progfd, mapfd, t->atype, 0) != 0) in test_destroy_orphan_child() 329 xbpf_prog_detach2(t->progfd, mapfd, t->atype); in test_destroy_orphan_child()
|
| /linux/kernel/bpf/ |
| H A D | cgroup.c | 67 static bool cgroup_bpf_hook_returns_errno(enum cgroup_bpf_attach_type atype) in cgroup_bpf_hook_returns_errno() argument 69 if (atype >= CGROUP_LSM_START && atype <= CGROUP_LSM_END) in cgroup_bpf_hook_returns_errno() 70 return READ_ONCE(cgroup_lsm_atype[atype - CGROUP_LSM_START].returns_errno); in cgroup_bpf_hook_returns_errno() 74 static bool cgroup_bpf_hook_returns_errno(enum cgroup_bpf_attach_type atype) in cgroup_bpf_hook_returns_errno() argument 85 enum cgroup_bpf_attach_type atype, in bpf_prog_run_array_cg() argument 98 array = rcu_dereference(cgrp->effective[atype]); in bpf_prog_run_array_cg() 108 if (!func_ret && cgroup_bpf_hook_returns_errno(atype) && in bpf_prog_run_array_cg() 333 unsigned int atype; in cgroup_bpf_release() local 337 for (atype = 0; atype < ARRAY_SIZE(cgrp->bpf.progs); atype++) { in cgroup_bpf_release() 338 struct hlist_head *progs = &cgrp->bpf.progs[atype]; in cgroup_bpf_release() [all …]
|
| H A D | btf.c | 6618 enum bpf_attach_type atype = prog->expected_attach_type; in prog_args_trusted() local 6622 return atype == BPF_TRACE_RAW_TP || atype == BPF_TRACE_ITER; in prog_args_trusted() 7374 int off, int size, enum bpf_access_type atype __maybe_unused, in btf_struct_access()
|
| H A D | verifier.c | 5943 enum bpf_access_type atype, in check_ptr_to_btf_access() argument 5999 if (atype != BPF_READ && bpf_may_fault_on_deref(reg->type)) { in check_ptr_to_btf_access() 6004 if (env->ops->btf_struct_access && !type_is_alloc(reg->type) && atype == BPF_WRITE) { in check_ptr_to_btf_access() 6018 if (atype != BPF_READ && !type_is_ptr_alloc_obj(reg->type)) { in check_ptr_to_btf_access() 6029 ret = btf_struct_access(&env->log, reg, off, size, atype, &btf_id, &flag, &field_name); in check_ptr_to_btf_access() 6095 if (atype == BPF_READ && value_regno >= 0) { in check_ptr_to_btf_access() 6107 enum bpf_access_type atype, in check_ptr_to_map_access() argument 6145 if (atype != BPF_READ) { in check_ptr_to_map_access() 6156 ret = btf_struct_access(&env->log, &map_reg, off, size, atype, &btf_id, &flag, NULL); in check_ptr_to_map_access()
|
| H A D | syscall.c | 4545 static bool is_cgroup_prog_type(enum bpf_prog_type ptype, enum bpf_attach_type atype, in is_cgroup_prog_type() argument 4558 return check_atype ? atype == BPF_LSM_CGROUP : true; in is_cgroup_prog_type()
|
| /linux/arch/m68k/include/asm/ |
| H A D | bootstd.h | 60 #define _bsc1(type,name,atype,a) \ argument 61 type name(atype a) \ 72 #define _bsc2(type,name,atype,a,btype,b) \ argument 73 type name(atype a, btype b) \ 85 #define _bsc3(type,name,atype,a,btype,b,ctype,c) \ argument 86 type name(atype a, btype b, ctype c) \ 100 #define _bsc4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ argument 101 type name(atype a, btype b, ctype c, dtype d) \ 116 #define _bsc5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ argument 117 type name(atype a, btype b, ctype c, dtype d, etype e) \
|
| /linux/include/linux/surface_aggregator/ |
| H A D | controller.h | 395 #define SSAM_DEFINE_SYNC_REQUEST_W(name, atype, spec...) \ argument 396 static int name(struct ssam_controller *ctrl, const atype *arg) \ 406 rqst.length = sizeof(atype); \ 410 sizeof(atype)); \ 497 #define SSAM_DEFINE_SYNC_REQUEST_WR(name, atype, rtype, spec...) \ argument 498 static int name(struct ssam_controller *ctrl, const atype *arg, rtype *ret) \ 510 rqst.length = sizeof(atype); \ 517 status = ssam_request_do_sync_onstack(ctrl, &rqst, &rsp, sizeof(atype)); \ 598 #define SSAM_DEFINE_SYNC_REQUEST_MD_W(name, atype, spec...) \ argument 599 static int name(struct ssam_controller *ctrl, u8 tid, u8 iid, const atype *arg) \ [all …]
|
| H A D | device.h | 488 #define SSAM_DEFINE_SYNC_REQUEST_CL_W(name, atype, spec...) \ argument 489 SSAM_DEFINE_SYNC_REQUEST_MD_W(__raw_##name, atype, spec) \ 490 static int name(struct ssam_device *sdev, const atype *arg) \ 558 #define SSAM_DEFINE_SYNC_REQUEST_CL_WR(name, atype, rtype, spec...) \ argument 559 SSAM_DEFINE_SYNC_REQUEST_MD_WR(__raw_##name, atype, rtype, spec) \ 560 static int name(struct ssam_device *sdev, const atype *arg, rtype *ret) \
|
| /linux/fs/ntfs3/ |
| H A D | record.c | 392 u32 atype; in mi_find_attr() local 399 atype = le32_to_cpu(attr->type); in mi_find_attr() 400 if (atype > type_in) in mi_find_attr() 403 if (atype < type_in) in mi_find_attr()
|
| /linux/arch/s390/include/uapi/asm/ |
| H A D | chsc.h | 113 } atype; member
|
| /linux/net/tipc/ |
| H A D | socket.c | 718 u32 atype = ua->addrtype; in tipc_bind() local 723 if (atype == TIPC_SOCKET_ADDR) in tipc_bind() 1423 int atype, mtu, rc; in __tipc_sendmsg() local 1431 atype = ua->addrtype; in __tipc_sendmsg() 1438 if (atype == TIPC_SERVICE_ADDR) in __tipc_sendmsg() 1440 if (atype == TIPC_SOCKET_ADDR) in __tipc_sendmsg() 1442 if (atype == TIPC_SERVICE_RANGE) in __tipc_sendmsg() 1451 atype = ua->addrtype; in __tipc_sendmsg() 1461 if (atype == TIPC_SERVICE_ADDR) in __tipc_sendmsg() 1462 tsk->conn_addrtype = atype; in __tipc_sendmsg() [all …]
|
| H A D | udp_media.c | 604 int atype; in tipc_parse_udp_addr() local 606 atype = ipv6_addr_type(&ip6->sin6_addr); in tipc_parse_udp_addr() 607 if (__ipv6_addr_needs_scope_id(atype) && in tipc_parse_udp_addr()
|
| /linux/drivers/net/ipvlan/ |
| H A D | ipvlan.h | 85 ipvl_hdr_type atype; member
|
| H A D | ipvlan_l3s.c | 108 if (addr->atype == IPVL_IPV6) in ipvlan_nf_input()
|
| H A D | ipvlan_main.c | 921 addr->atype = IPVL_IPV4; in ipvlan_add_addr() 925 addr->atype = IPVL_IPV6; in ipvlan_add_addr()
|
| /linux/drivers/dma/ti/ |
| H A D | k3-udma.c | 212 u32 atype; member 257 u32 atype; member 1900 req_tx.tx_atype = ud->atype; in udma_tisci_m2m_channel_config() 1918 req_rx.rx_atype = ud->atype; in udma_tisci_m2m_channel_config() 1991 req_tx.tx_atype = uc->config.atype; in udma_tisci_tx_channel_config() 2064 req_rx.rx_atype = uc->config.atype; in udma_tisci_rx_channel_config() 4134 u32 atype; member 4157 if (filter_param->atype > 2) { in udma_dma_filter_fn() 4159 filter_param->atype); in udma_dma_filter_fn() 4170 ucc->atype = filter_param->atype; in udma_dma_filter_fn() [all …]
|
| /linux/drivers/s390/cio/ |
| H A D | chsc_sch.c | 788 u32 atype : 8; in chsc_ioctl_dcal() member 813 sdcal_area->atype = dcal->req.atype; in chsc_ioctl_dcal()
|
| H A D | chsc.c | 1216 u8 atype; in chsc_get_cssid_iid() member 1234 sdcal_area->atype = 4; in chsc_get_cssid_iid()
|
| /linux/kernel/trace/ |
| H A D | trace_probe.h | 218 #define ASSIGN_FETCH_TYPE_ALIAS(ptype, atype, ftype, sign) \ argument 219 _ASSIGN_FETCH_TYPE(#ptype, ptype, ftype, sizeof(ftype), sign, atype)
|
| /linux/net/netfilter/ipvs/ |
| H A D | ip_vs_ctl.c | 1448 unsigned int atype; in ip_vs_new_dest() local 1453 atype = ipv6_addr_type(&udest->addr.in6); in ip_vs_new_dest() 1454 if ((!(atype & IPV6_ADDR_UNICAST) || in ip_vs_new_dest() 1455 atype & IPV6_ADDR_LINKLOCAL) && in ip_vs_new_dest() 1465 atype = inet_addr_type(svc->ipvs->net, udest->addr.ip); in ip_vs_new_dest() 1466 if (atype != RTN_LOCAL && atype != RTN_UNICAST) in ip_vs_new_dest()
|
| /linux/tools/testing/selftests/net/ |
| H A D | nettest.c | 762 enum addr_type atype) in convert_addr() argument 777 switch (atype) { in convert_addr()
|
| /linux/include/linux/ |
| H A D | bpf.h | 3149 int off, int size, enum bpf_access_type atype, 3499 int off, int size, enum bpf_access_type atype, in btf_struct_access() argument
|