/linux/include/trace/ |
H A D | define_trace.h | 27 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument 28 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 31 #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \ argument 33 PARAMS(proto), \ 40 #define TRACE_EVENT_FN(name, proto, args, tstruct, \ argument 42 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 45 #define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \ argument 47 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 50 #define TRACE_EVENT_SYSCALL(name, proto, args, struct, assign, print, reg, unreg) \ argument 51 DEFINE_TRACE_SYSCALL(name, reg, unreg, PARAMS(proto), PARAMS(args)) [all …]
|
H A D | bpf_probe.h | 45 #define __BPF_DECLARE_TRACE(call, proto, args) \ argument 47 __bpf_trace_##call(void *__data, proto) \ 53 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 54 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args)) 56 #define __BPF_DECLARE_TRACE_SYSCALL(call, proto, args) \ argument 58 __bpf_trace_##call(void *__data, proto) \ 67 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument 68 __BPF_DECLARE_TRACE_SYSCALL(call, PARAMS(proto), PARAMS(args)) 75 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument 80 typedef void (*btf_trace_##call)(void *__data, proto); \ [all …]
|
H A D | trace_events.h | 39 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument 41 PARAMS(proto), \ 46 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args)); 49 #define TRACE_EVENT_SYSCALL(name, proto, args, tstruct, assign, print, reg, unreg) \ argument 51 PARAMS(proto), \ 56 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args)); 61 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument 74 #define DEFINE_EVENT(template, name, proto, args) \ argument 79 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \ argument 80 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) [all …]
|
H A D | trace_custom_events.h | 27 #define TRACE_CUSTOM_EVENT(name, proto, args, tstruct, assign, print) \ argument 29 PARAMS(proto), \ 34 DEFINE_CUSTOM_EVENT(name, name, PARAMS(proto), PARAMS(args)); 41 #define DECLARE_CUSTOM_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument 51 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) \ argument 62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 68 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) argument 77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 108 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, func, print) \ argument 120 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument [all …]
|
H A D | perf.h | 16 #define __DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 18 do_perf_trace_##call(void *__data, proto) \ 65 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 66 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \ 69 perf_trace_##call(void *__data, proto) \ 78 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument 79 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \ 82 perf_trace_##call(void *__data, proto) \ 99 #define DEFINE_EVENT(template, call, proto, args) \ argument 107 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument [all …]
|
/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | proto.c | 15 #include "proto.h" 22 struct brcmf_proto *proto; in brcmf_proto_attach() local 26 proto = kzalloc(sizeof(*proto), GFP_ATOMIC); in brcmf_proto_attach() 27 if (!proto) in brcmf_proto_attach() 30 drvr->proto = proto; in brcmf_proto_attach() 39 bphy_err(drvr, "Unsupported proto type %d\n", in brcmf_proto_attach() 43 if (!proto->tx_queue_data || (proto->hdrpull == NULL) || in brcmf_proto_attach() 44 (proto->query_dcmd == NULL) || (proto->set_dcmd == NULL) || in brcmf_proto_attach() 45 (proto->configure_addr_mode == NULL) || in brcmf_proto_attach() 46 (proto->delete_peer == NULL) || (proto->add_tdls_peer == NULL) || in brcmf_proto_attach() [all …]
|
H A D | proto.h | 61 return drvr->proto->hdrpull(drvr, do_fws, skb, ifp); in brcmf_proto_hdrpull() 67 return drvr->proto->query_dcmd(drvr, ifidx, cmd, buf, len,fwerr); in brcmf_proto_query_dcmd() 73 return drvr->proto->set_dcmd(drvr, ifidx, cmd, buf, len, fwerr); in brcmf_proto_set_dcmd() 79 return drvr->proto->tx_queue_data(drvr, ifidx, skb); in brcmf_proto_tx_queue_data() 85 return drvr->proto->txdata(drvr, ifidx, offset, skb); in brcmf_proto_txdata() 91 drvr->proto->configure_addr_mode(drvr, ifidx, addr_mode); in brcmf_proto_configure_addr_mode() 96 drvr->proto->delete_peer(drvr, ifidx, peer); in brcmf_proto_delete_peer() 101 drvr->proto->add_tdls_peer(drvr, ifidx, peer); in brcmf_proto_add_tdls_peer() 114 ifp->drvr->proto->rxreorder(ifp, skb); in brcmf_proto_rxreorder() 120 if (!drvr->proto->add_if) in brcmf_proto_add_if() [all …]
|
H A D | bcdc.c | 22 #include "proto.h" 103 struct brcmf_bcdc *bcdc = drvr->proto->pd; in drvr_to_fws() 112 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd; in brcmf_proto_bcdc_msg() 143 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd; in brcmf_proto_bcdc_cmplt() 161 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd; in brcmf_proto_bcdc_query_dcmd() 219 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd; in brcmf_proto_bcdc_set_dcmd() 337 struct brcmf_bcdc *bcdc = drvr->proto->pd; in brcmf_proto_bcdc_tx_queue_data() 368 struct brcmf_bcdc *bcdc = bus_if->drvr->proto->pd; in brcmf_proto_bcdc_txcomplete() 427 struct brcmf_bcdc *bcdc = drvr->proto->pd; in brcmf_proto_bcdc_init_done() 457 drvr->proto->hdrpull = brcmf_proto_bcdc_hdrpull; in brcmf_proto_bcdc_attach() [all …]
|
/linux/include/linux/ |
H A D | tracepoint.h | 217 #define DEFINE_RUST_DO_TRACE(name, proto, args) argument 218 #define __DEFINE_RUST_DO_TRACE(name, proto, args) \ argument 219 notrace void rust_do_trace_##name(proto) \ 235 #define __DECLARE_TRACE_COMMON(name, proto, args, data_proto) \ argument 239 extern void rust_do_trace_##name(proto); \ 269 #define __DECLARE_TRACE(name, proto, args, cond, data_proto) \ argument 270 __DECLARE_TRACE_COMMON(name, PARAMS(proto), PARAMS(args), PARAMS(data_proto)) \ 271 static inline void __do_trace_##name(proto) \ 278 static inline void trace_##name(proto) \ 288 #define __DECLARE_TRACE_SYSCALL(name, proto, args, data_proto) \ argument [all …]
|
/linux/drivers/ata/pata_parport/ |
H A D | pata_parport.c | 31 pi->proto->connect(pi); in pi_connect() 36 pi->proto->disconnect(pi); in pi_disconnect() 50 pi->proto->write_regr(pi, 0, ATA_REG_DEVICE, tmp); in pata_parport_dev_select() 58 pi->proto->write_regr(pi, 1, 6, ctl); in pata_parport_set_devctl() 68 pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0x55); in pata_parport_devchk() 69 pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0xaa); in pata_parport_devchk() 71 pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0xaa); in pata_parport_devchk() 72 pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0x55); in pata_parport_devchk() 74 pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0x55); in pata_parport_devchk() 75 pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0xaa); in pata_parport_devchk() [all …]
|
/linux/drivers/net/wan/ |
H A D | hdlc.c | 17 * - proto->open(), close(), start(), stop() calls are serialized. 19 * - proto->start() and stop() are called with spin_lock_irq held. 63 BUG_ON(!hdlc->proto->netif_rx); in hdlc_rcv() 64 return hdlc->proto->netif_rx(skb); in hdlc_rcv() 71 if (hdlc->proto->xmit) in hdlc_start_xmit() 72 return hdlc->proto->xmit(skb, dev); in hdlc_start_xmit() 82 if (hdlc->proto->start) in hdlc_proto_start() 83 hdlc->proto->start(dev); in hdlc_proto_start() 90 if (hdlc->proto->stop) in hdlc_proto_stop() 91 hdlc->proto->stop(dev); in hdlc_proto_stop() [all …]
|
H A D | hdlc_ppp.c | 62 struct proto { struct 73 struct proto protos[IDX_COUNT]; argument 110 static inline struct proto *get_proto(struct net_device *dev, u16 pid) in get_proto() 304 struct proto *proto = get_proto(dev, pid); in ppp_cp_event() local 306 old_state = proto->state; in ppp_cp_event() 312 proto_name(pid), event_names[event], state_names[proto->state]); in ppp_cp_event() 317 proto->state = action & STATE_MASK; in ppp_cp_event() 319 mod_timer(&proto->timer, proto->timeout = in ppp_cp_event() 322 proto->restart_counter = 0; in ppp_cp_event() 324 proto->restart_counter = (proto->state == STOPPING) ? in ppp_cp_event() [all …]
|
/linux/net/8021q/ |
H A D | vlan_core.c | 164 __be16 proto; member 169 static bool vlan_hw_filter_capable(const struct net_device *dev, __be16 proto) in vlan_hw_filter_capable() argument 171 if (proto == htons(ETH_P_8021Q) && in vlan_hw_filter_capable() 174 if (proto == htons(ETH_P_8021AD) && in vlan_hw_filter_capable() 181 __be16 proto, u16 vid) in vlan_vid_info_get() argument 186 if (vid_info->proto == proto && vid_info->vid == vid) in vlan_vid_info_get() 192 static struct vlan_vid_info *vlan_vid_info_alloc(__be16 proto, u16 vid) in vlan_vid_info_alloc() argument 199 vid_info->proto = proto; in vlan_vid_info_alloc() 205 static int vlan_add_rx_filter_info(struct net_device *dev, __be16 proto, u16 vid) in vlan_add_rx_filter_info() argument 207 if (!vlan_hw_filter_capable(dev, proto)) in vlan_add_rx_filter_info() [all …]
|
/linux/net/802/ |
H A D | psnap.c | 31 struct datalink_proto *proto = NULL, *p; in find_snap_client() local 35 proto = p; in find_snap_client() 39 return proto; in find_snap_client() 49 struct datalink_proto *proto; in snap_rcv() local 58 proto = find_snap_client(skb->data); in snap_rcv() 59 if (proto) { in snap_rcv() 63 rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev); in snap_rcv() 67 if (unlikely(!proto)) in snap_rcv() 128 struct datalink_proto *proto = NULL; in register_snap_client() local 135 proto = kmalloc(sizeof(*proto), GFP_ATOMIC); in register_snap_client() [all …]
|
H A D | p8022.c |
|
H A D | stp.c | 35 const struct stp_proto *proto; in stp_pdu_rcv() local 43 proto = rcu_dereference(garp_protos[eh->h_dest[5] - in stp_pdu_rcv() 45 if (proto && in stp_pdu_rcv() 46 !ether_addr_equal(eh->h_dest, proto->group_address)) in stp_pdu_rcv() 49 proto = rcu_dereference(stp_proto); in stp_pdu_rcv() 51 if (!proto) in stp_pdu_rcv() 54 proto->rcv(proto, skb, dev); in stp_pdu_rcv() 62 int stp_proto_register(const struct stp_proto *proto) in stp_proto_register() argument 74 if (is_zero_ether_addr(proto->group_address)) in stp_proto_register() 75 rcu_assign_pointer(stp_proto, proto); in stp_proto_register() [all …]
|
/linux/include/net/ |
H A D | proto_memory.h | 17 proto_memory_pressure(const struct proto *prot) in proto_memory_pressure() 42 proto_memory_allocated(const struct proto *prot) in proto_memory_allocated() 53 static inline void proto_memory_pcpu_drain(struct proto *proto) in proto_memory_pcpu_drain() argument 55 int val = this_cpu_xchg(*proto->per_cpu_fw_alloc, 0); in proto_memory_pcpu_drain() 58 atomic_long_add(val, proto->memory_allocated); in proto_memory_pcpu_drain() 64 struct proto *proto = sk->sk_prot; in sk_memory_allocated_add() local 66 val = this_cpu_add_return(*proto->per_cpu_fw_alloc, val); in sk_memory_allocated_add() 69 proto_memory_pcpu_drain(proto); in sk_memory_allocated_add() 75 struct proto *proto = sk->sk_prot; sk_memory_allocated_sub() local [all...] |
/linux/net/netfilter/ |
H A D | nf_conntrack_proto_tcp.c | 271 seq_printf(s, "%s ", tcp_conntrack_names[ct->proto.tcp.state]); in tcp_print_conntrack() 515 struct ip_ct_tcp *state = &ct->proto.tcp; in tcp_in_window() 753 if (ct->proto.tcp.last_dir != dir && in nf_tcp_handle_invalid() 754 (ct->proto.tcp.last_index == TCP_FIN_SET || in nf_tcp_handle_invalid() 755 ct->proto.tcp.last_index == TCP_RST_SET)) { in nf_tcp_handle_invalid() 769 index, dir, ct->proto.tcp.last_index, timeout); in nf_tcp_handle_invalid() 774 ct->proto.tcp.last_index = index; in nf_tcp_handle_invalid() 775 ct->proto.tcp.last_dir = dir; in nf_tcp_handle_invalid() 857 memset(&ct->proto.tcp, 0, sizeof(ct->proto.tcp)); in tcp_new() 859 ct->proto.tcp.seen[0].td_end = in tcp_new() [all …]
|
/linux/net/ipv4/ |
H A D | gre_demux.c | 31 int gre_add_protocol(const struct gre_protocol *proto, u8 version) in gre_add_protocol() argument 36 return (cmpxchg((const struct gre_protocol **)&gre_proto[version], NULL, proto) == NULL) ? in gre_add_protocol() 41 int gre_del_protocol(const struct gre_protocol *proto, u8 version) in gre_del_protocol() argument 48 ret = (cmpxchg((const struct gre_protocol **)&gre_proto[version], proto, NULL) == proto) ? in gre_del_protocol() 63 bool *csum_err, __be16 proto, int nhs) in gre_parse_header() argument 83 tpi->proto = greh->protocol; in gre_parse_header() 114 if (greh->flags == 0 && tpi->proto == htons(ETH_P_WCCP)) { in gre_parse_header() 121 tpi->proto = proto; in gre_parse_header() 148 const struct gre_protocol *proto; gre_rcv() local 176 const struct gre_protocol *proto; gre_err() local [all...] |
/linux/tools/testing/selftests/net/ |
H A D | reuseport_addr_any.c | 29 static void build_rcv_fd(int family, int proto, int *rcv_fds, int count, 70 rcv_fds[i] = socket(family, proto, 0); in build_rcv_fd() 82 if (proto == SOCK_STREAM && listen(rcv_fds[i], 10)) in build_rcv_fd() 87 static int connect_and_send(int family, int proto) in build_rcv_fd() 133 fd = socket(family, proto, 0); in connect_and_send() 149 static int receive_once(int epfd, int proto) in connect_and_send() 159 if (proto == SOCK_STREAM) { in connect_and_send() 175 static void test(int *rcv_fds, int count, int family, int proto, int fd) in receive_once() 191 send_fd = connect_and_send(family, proto); in receive_once() 193 recv_fd = receive_once(epfd, proto); 34 build_rcv_fd(int family,int proto,int * rcv_fds,int count,const char * addr_str) build_rcv_fd() argument 101 connect_and_send(int family,int proto) connect_and_send() argument 168 receive_once(int epfd,int proto) receive_once() argument 194 test(int * rcv_fds,int count,int family,int proto,int fd) test() argument 221 run_one_test(int fam_send,int fam_rcv,int proto,const char * addr_str) run_one_test() argument 244 test_proto(int proto,const char * proto_str) test_proto() argument [all...] |
H A D | sk_so_peek_off.c | 13 static char *afstr(int af, int proto) in afstr() argument 15 if (proto == IPPROTO_TCP) in afstr() 21 int sk_peek_offset_probe(sa_family_t af, int proto) in sk_peek_offset_probe() argument 23 int type = (proto == IPPROTO_TCP ? SOCK_STREAM : SOCK_DGRAM); in sk_peek_offset_probe() 28 s = socket(af, type, proto); in sk_peek_offset_probe() 35 printf("%s does not support SO_PEEK_OFF\n", afstr(af, proto)); in sk_peek_offset_probe() 57 static int sk_peek_offset_test(sa_family_t af, int proto) in sk_peek_offset_test() argument 59 int type = (proto == IPPROTO_TCP ? SOCK_STREAM : SOCK_DGRAM); in sk_peek_offset_test() 75 s[0] = recv_sock = socket(af, type, proto); in sk_peek_offset_test() 76 s[1] = socket(af, type, proto); in sk_peek_offset_test() [all …]
|
/linux/drivers/s390/net/ |
H A D | qeth_l3.h | 33 enum qeth_prot_versions proto; member 48 enum qeth_prot_versions proto) in qeth_l3_init_ipaddr() argument 52 addr->proto = proto; in qeth_l3_init_ipaddr() 60 if (a1->proto != a2->proto) in qeth_l3_addr_match_ip() 62 if (a1->proto == QETH_PROT_IPV6) in qeth_l3_addr_match_ip() 71 * so 'proto' and 'addr' match for sure. in qeth_l3_addr_match_all() 82 if (a1->proto == QETH_PROT_IPV6) in qeth_l3_addr_match_all() 89 if (addr->proto == QETH_PROT_IPV6) in qeth_l3_ipaddr_hash() 97 enum qeth_prot_versions proto; member 104 int qeth_l3_ipaddr_to_string(enum qeth_prot_versions proto, const u8 *addr, [all …]
|
/linux/net/nfc/ |
H A D | af_nfc.c | 18 static int nfc_sock_create(struct net *net, struct socket *sock, int proto, in nfc_sock_create() argument 26 if (proto < 0 || proto >= NFC_SOCKPROTO_MAX) in nfc_sock_create() 30 if (proto_tab[proto] && try_module_get(proto_tab[proto]->owner)) { in nfc_sock_create() 31 rc = proto_tab[proto]->create(net, sock, proto_tab[proto], kern); in nfc_sock_create() 32 module_put(proto_tab[proto]->owner); in nfc_sock_create() 52 rc = proto_register(nfc_proto->proto, 0); in nfc_proto_register() 64 proto_unregister(nfc_proto->proto); in nfc_proto_register() 76 proto_unregister(nfc_proto->proto); in nfc_proto_unregister()
|
/linux/samples/bpf/ |
H A D | sockex2_kern.c | 29 static inline int proto_ports_offset(__u64 proto) in proto_ports_offset() argument 31 switch (proto) { in proto_ports_offset() 104 __u64 proto = load_half(skb, 12); in flow_dissector() 107 if (proto == ETH_P_8021AD) { in flow_dissector() 108 proto = load_half(skb, nhoff + offsetof(struct vlan_hdr, in flow_dissector() 113 if (proto == ETH_P_8021Q) { in flow_dissector() 114 proto = load_half(skb, nhoff + offsetof(struct vlan_hdr, in flow_dissector() 119 if (likely(proto == ETH_P_IP)) in flow_dissector() 121 else if (proto == ETH_P_IPV6) in flow_dissector() 130 __be16 proto; in flow_dissector() 105 __u64 proto = load_half(skb, 12); flow_dissector() local 131 __be16 proto; flow_dissector() member [all...] |
/linux/net/ipv6/ |
H A D | ip6_offload.c | 40 static int ipv6_gro_pull_exthdrs(struct sk_buff *skb, int off, int proto) in ipv6_gro_pull_exthdrs() argument 48 ops = rcu_dereference(inet6_offloads[proto]); in ipv6_gro_pull_exthdrs() 65 proto = opth->nexthdr; in ipv6_gro_pull_exthdrs() 71 return proto; in ipv6_gro_pull_exthdrs() 74 static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto) in ipv6_gso_pull_exthdrs() argument 82 ops = rcu_dereference(inet6_offloads[proto]); in ipv6_gso_pull_exthdrs() 100 proto = opth->nexthdr; in ipv6_gso_pull_exthdrs() 104 return proto; in ipv6_gso_pull_exthdrs() 113 int proto, err; in ipv6_gso_segment() local 139 proto = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr); in ipv6_gso_segment() [all …]
|