Home
last modified time | relevance | path

Searched refs:protocol (Results 76 – 100 of 3462) sorted by relevance

12345678910>>...139

/openbmc/linux/include/trace/events/
H A Dsock.h153 __field(__u16, protocol)
170 __entry->protocol = sk->sk_protocol;
198 show_inet_protocol_name(__entry->protocol),
217 __field(__u16, protocol)
231 __entry->protocol = sk->sk_protocol;
259 show_inet_protocol_name(__entry->protocol),
275 __field(__u16, protocol)
282 __entry->protocol = sk->sk_protocol;
302 __field(__u16, protocol)
310 __entry->protocol = sk->sk_protocol;
[all …]
/openbmc/linux/net/bridge/netfilter/
H A Debt_log.c53 print_ports(const struct sk_buff *skb, uint8_t protocol, int offset) in print_ports() argument
55 if (protocol == IPPROTO_TCP || in print_ports()
56 protocol == IPPROTO_UDP || in print_ports()
57 protocol == IPPROTO_UDPLITE || in print_ports()
58 protocol == IPPROTO_SCTP || in print_ports()
59 protocol == IPPROTO_DCCP) { in print_ports()
108 &ih->saddr, &ih->daddr, ih->tos, ih->protocol); in ebt_log_packet()
109 print_ports(skb, ih->protocol, ih->ihl*4); in ebt_log_packet()
H A Debt_ip6.c70 if (NF_INVF(info, EBT_IP6_PROTO, info->protocol != nexthdr)) in ebt_ip6_mt()
118 if (info->protocol != IPPROTO_TCP && in ebt_ip6_mt_check()
119 info->protocol != IPPROTO_UDP && in ebt_ip6_mt_check()
120 info->protocol != IPPROTO_UDPLITE && in ebt_ip6_mt_check()
121 info->protocol != IPPROTO_SCTP && in ebt_ip6_mt_check()
122 info->protocol != IPPROTO_DCCP) in ebt_ip6_mt_check()
131 info->protocol != IPPROTO_ICMPV6) in ebt_ip6_mt_check()
/openbmc/linux/include/media/
H A Drc-core.h281 void rc_keydown(struct rc_dev *dev, enum rc_proto protocol, u64 scancode,
283 void rc_keydown_notimeout(struct rc_dev *dev, enum rc_proto protocol,
320 int ir_raw_encode_scancode(enum rc_proto protocol, u32 scancode,
322 int ir_raw_encode_carrier(enum rc_proto protocol);
351 enum rc_proto *protocol) in ir_nec_bytes_to_scancode() argument
363 *protocol = RC_PROTO_NEC32; in ir_nec_bytes_to_scancode()
369 *protocol = RC_PROTO_NECX; in ir_nec_bytes_to_scancode()
373 *protocol = RC_PROTO_NEC; in ir_nec_bytes_to_scancode()
/openbmc/linux/tools/testing/selftests/net/forwarding/
H A Dtc_shblocks.sh53 tc filter add block 22 protocol ip pref 1 handle 101 flower \
68 tc filter del block 22 protocol ip pref 1 handle 101 flower
77 tc filter add block 22 protocol ip pref 1 handle 101 flower \
79 tc filter add block 22 protocol ip pref 2 handle 102 flower \
94 tc filter del block 22 protocol ip pref 1 handle 101 flower
95 tc filter del block 22 protocol ip pref 2 handle 102 flower
/openbmc/openbmc/meta-arm/meta-arm/recipes-bsp/trusted-firmware-m/
H A Dtrusted-firmware-m-2.0.0-src.inc10 SRC_URI_TRUSTED_FIRMWARE_M ?= "git://git.trustedfirmware.org/TF-M/trusted-firmware-m.git;protocol=h…
11 SRC_URI_TRUSTED_FIRMWARE_M_EXTRAS ?= "git://git.trustedfirmware.org/TF-M/tf-m-extras.git;protocol=h…
12 SRC_URI_TRUSTED_FIRMWARE_M_TESTS ?= "git://git.trustedfirmware.org/TF-M/tf-m-tests.git;protocol=htt…
13 SRC_URI_TRUSTED_FIRMWARE_M_MBEDTLS ?= "git://github.com/ARMmbed/mbedtls.git;protocol=https"
14 SRC_URI_TRUSTED_FIRMWARE_M_MCUBOOT ?= "git://github.com/mcu-tools/mcuboot.git;protocol=https"
15 SRC_URI_TRUSTED_FIRMWARE_M_QCBOR ?= "git://github.com/laurencelundblade/QCBOR.git;protocol=https"
/openbmc/linux/Documentation/userspace-api/netlink/
H A Dnetlink-raw.rst8 families such as ``NETLINK_ROUTE`` which use the ``netlink-raw`` protocol
15 schema with properties that are needed to specify the protocol numbers and
25 The ``protonum`` property is used to specify the protocol number to use when
33 protocol: netlink-raw
34 protonum: 0 # part of the NETLINK_ROUTE protocol
/openbmc/linux/drivers/acpi/
H A Dsbshc.c105 static int acpi_smbus_transaction(struct acpi_smb_hc *hc, u8 protocol, in acpi_smbus_transaction() argument
125 if (!(protocol & 0x01)) { in acpi_smbus_transaction()
131 smb_hc_write(hc, ACPI_SMB_PROTOCOL, protocol); in acpi_smbus_transaction()
137 if (ret || !(protocol & 0x01)) in acpi_smbus_transaction()
139 switch (protocol) { in acpi_smbus_transaction()
162 int acpi_smbus_read(struct acpi_smb_hc *hc, u8 protocol, u8 address, in acpi_smbus_read() argument
165 return acpi_smbus_transaction(hc, protocol, address, command, data, 0); in acpi_smbus_read()
170 int acpi_smbus_write(struct acpi_smb_hc *hc, u8 protocol, u8 address, in acpi_smbus_write() argument
173 return acpi_smbus_transaction(hc, protocol, address, command, data, length); in acpi_smbus_write()
/openbmc/linux/include/linux/
H A Dif_vlan.h377 veth->h_vlan_encapsulated_proto = skb->protocol; in __vlan_insert_inner_tag()
471 skb->protocol = vlan_proto; in vlan_insert_tag_set_proto()
637 return __vlan_get_protocol(skb, skb->protocol, NULL); in vlan_get_protocol()
684 skb->protocol = proto; in vlan_set_encap_proto()
697 skb->protocol = htons(ETH_P_802_3); in vlan_set_encap_proto()
702 skb->protocol = htons(ETH_P_802_2); in vlan_set_encap_proto()
736 likely(!eth_type_vlan(skb->protocol))) in skb_vlan_tagged()
751 __be16 protocol = skb->protocol; in skb_vlan_tagged_multi() local
756 if (likely(!eth_type_vlan(protocol))) in skb_vlan_tagged_multi()
763 protocol = veh->h_vlan_encapsulated_proto; in skb_vlan_tagged_multi()
[all …]
H A Dpnp.h209 struct pnp_protocol *protocol; member
254 struct pnp_protocol *protocol; member
309 #define pnp_can_read(dev) (((dev)->protocol->get) && \
311 #define pnp_can_write(dev) (((dev)->protocol->set) && \
313 #define pnp_can_disable(dev) (((dev)->protocol->disable) && \
319 #define pnp_can_suspend(dev) (((dev)->protocol->suspend) && \
346 if (dev->protocol == &pnpacpi_protocol) in pnp_acpi_device()
433 #define protocol_for_each_card(protocol, card) \ argument
434 list_for_each_entry(card, &(protocol)->cards, protocol_list)
435 #define protocol_for_each_dev(protocol, dev) \ argument
[all …]
/openbmc/linux/net/nsh/
H A Dnsh.c24 next_proto = tun_p_from_eth_p(skb->protocol); in nsh_push()
39 skb->protocol = htons(ETH_P_NSH); in nsh_push()
71 skb->protocol = inner_proto; in nsh_pop()
87 outer_proto = skb->protocol; in nsh_gso_segment()
107 skb->protocol = proto; in nsh_gso_segment()
118 skb->protocol = outer_proto; in nsh_gso_segment()
/openbmc/linux/tools/testing/selftests/net/
H A Dnet_helper.sh10 local protocol="${3}"
17 [ ${protocol} = "tcp" ] && pattern="${pattern}0A"
20 /proc/net/"${protocol}"* | grep -q "${pattern}"; then
H A Dsocket.c15 int protocol; member
49 fd = socket(s->domain, s->type, s->protocol); in run_tests()
64 s->domain, s->type, s->protocol, in run_tests()
77 s->domain, s->type, s->protocol, in run_tests()
/openbmc/linux/sound/firewire/digi00x/
H A Damdtp-dot.c116 struct amdtp_dot *p = s->protocol; in amdtp_dot_set_parameters()
149 struct amdtp_dot *p = s->protocol; in write_pcm_s32()
181 struct amdtp_dot *p = s->protocol; in read_pcm_s32()
211 struct amdtp_dot *p = s->protocol; in write_pcm_silence()
226 struct amdtp_dot *p = s->protocol; in midi_ratelimit_per_packet()
243 struct amdtp_dot *p = s->protocol; in midi_use_bytes()
251 struct amdtp_dot *p = s->protocol; in write_midi_messages()
295 struct amdtp_dot *p = s->protocol; in read_midi_messages()
338 struct amdtp_dot *p = s->protocol; in amdtp_dot_midi_trigger()
407 struct amdtp_dot *p = s->protocol; in amdtp_dot_reset()
/openbmc/linux/drivers/usb/class/
H A Dusblp.c151 } protocol[USBLP_MAX_PROTOCOLS]; member
181 usblp->protocol[p].alt_setting); in usblp_dump()
183 usblp->protocol[p].epwrite); in usblp_dump()
185 usblp->protocol[p].epread); in usblp_dump()
1130 int protocol; in usblp_probe() local
1182 if (protocol < 0) { in usblp_probe()
1337 if (protocol < USBLP_FIRST_PROTOCOL || protocol > USBLP_LAST_PROTOCOL) in usblp_set_protocol()
1342 alts = usblp->protocol[protocol].alt_setting; in usblp_set_protocol()
1353 usblp->bidir = (usblp->protocol[protocol].epread != NULL); in usblp_set_protocol()
1354 usblp->current_protocol = protocol; in usblp_set_protocol()
[all …]
/openbmc/linux/fs/nfs/
H A DKconfig10 computers using Sun's Network File System protocol. To compile
21 Below you can choose which versions of the NFS protocol are
38 This option enables support for version 2 of the NFS protocol
48 This option enables support for version 3 of the NFS protocol
54 bool "NFS client support for the NFSv3 ACL protocol extension"
57 Some NFS servers support an auxiliary NFSv3 ACL protocol that
59 NFS version 3 protocol. This protocol extension allows
65 protocol extension and you want your NFS client to allow
68 Most NFS servers don't support the Solaris NFSv3 ACL protocol
71 ACL protocol.
[all …]
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Ddevlink_trap_acl_drops.sh98 tc filter add dev $swp2 egress protocol ip pref 1 handle 101 \
101 tc filter add dev $swp1 ingress protocol ip pref 1 handle 101 \
114 tc filter del dev $swp1 ingress protocol ip pref 1 handle 101 flower
123 tc filter add dev $swp2 egress protocol ip pref 2 handle 102 \
126 tc filter add dev $swp2 egress protocol ip pref 1 handle 101 \
139 tc filter del dev $swp2 egress protocol ip pref 1 handle 101 flower
/openbmc/linux/drivers/media/i2c/
H A Dir-kbd-i2c.c100 *protocol = RC_PROTO_RC5; in get_key_haup_common()
112 *protocol = RC_PROTO_RC6_MCE; in get_key_haup_common()
119 *protocol = RC_PROTO_RC6_6A_32; in get_key_haup_common()
173 *protocol = RC_PROTO_OTHER; in get_key_pixelview()
201 *protocol = RC_PROTO_UNKNOWN; in get_key_fusionhdtv()
235 *protocol = RC_PROTO_UNKNOWN; in get_key_knc1()
272 *protocol = RC_PROTO_RC5; in get_key_geniatech()
312 *protocol = RC_PROTO_UNKNOWN; in get_key_avermedia_cardbus()
324 enum rc_proto protocol; in ir_key_poll() local
338 __func__, protocol, scancode); in ir_key_poll()
[all …]
/openbmc/linux/net/can/
H A DKconfig10 communications protocol. Development of the CAN bus started in
11 1983 at Robert Bosch GmbH, and the protocol was officially
14 applications. More information on the CAN network protocol family
27 The raw CAN protocol option offers access to the CAN bus via
29 most cases where no higher level protocol is being used. The raw
31 To receive/send raw CAN messages, use AF_CAN with protocol CAN_RAW.
43 To use the Broadcast Manager, use AF_CAN with protocol CAN_BCM.
59 tristate "ISO 15765-2:2016 CAN transport protocol"
68 This protocol driver implements data transfers according to
/openbmc/openbmc-test-automation/ffdc/
H A Dffdc_collector.py431 if protocol == "SSH" or protocol == "SCP":
436 protocol == "REDFISH"
437 or protocol == "IPMI"
466 if protocol == "SCP":
531 % (self.hostname, protocol)
991 for protocol in protocol_list:
998 protocol == "SSH"
999 or protocol == "SCP"
1010 if protocol == "TELNET":
1014 if protocol == "REDFISH":
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_l4lb_noinline.c273 pckt->proto = iph->protocol; in parse_icmp()
341 __u8 protocol; in process_packet() local
352 protocol = ip6h->nexthdr; in process_packet()
353 pckt.proto = protocol; in process_packet()
356 if (protocol == IPPROTO_FRAGMENT) { in process_packet()
374 protocol = iph->protocol; in process_packet()
375 pckt.proto = protocol; in process_packet()
381 if (protocol == IPPROTO_ICMP) { in process_packet()
391 protocol = pckt.proto; in process_packet()
393 if (protocol == IPPROTO_TCP) { in process_packet()
[all …]
H A Dtest_l4lb.c274 pckt->proto = iph->protocol; in parse_icmp()
342 __u8 protocol; in process_packet() local
353 protocol = ip6h->nexthdr; in process_packet()
354 pckt.proto = protocol; in process_packet()
357 if (protocol == IPPROTO_FRAGMENT) { in process_packet()
375 protocol = iph->protocol; in process_packet()
376 pckt.proto = protocol; in process_packet()
382 if (protocol == IPPROTO_ICMP) { in process_packet()
392 protocol = pckt.proto; in process_packet()
394 if (protocol == IPPROTO_TCP) { in process_packet()
[all …]
/openbmc/linux/drivers/hwtracing/stm/
H A DKconfig15 tristate "Basic STM framing protocol driver"
18 This is a simple framing protocol for sending data over STM
19 devices. This was the protocol that the STM framework used
24 STP protocol in order to extract the data.
26 If you want to be able to use the basic protocol or want the
30 tristate "MIPI SyS-T STM framing protocol driver"
33 This is an implementation of MIPI SyS-T protocol to be used
38 The receiving side must be able to decode this protocol in
/openbmc/linux/net/netfilter/ipvs/
H A Dip_vs_conn.c277 p->protocol == cp->protocol && in __ip_vs_conn_in_get()
304 ip_vs_proto_name(p->protocol), in ip_vs_conn_in_get()
376 p->protocol == cp->protocol && in ip_vs_ct_in_get()
429 p->protocol == cp->protocol && in ip_vs_conn_out_get()
596 if (cp->protocol != IPPROTO_UDP) in ip_vs_bind_dest()
947 p->protocol); in ip_vs_conn_new()
960 cp->protocol = p->protocol; in ip_vs_conn_new()
1155 ip_vs_proto_name(cp->protocol), in ip_vs_conn_seq_show()
1168 ip_vs_proto_name(cp->protocol), in ip_vs_conn_seq_show()
1221 ip_vs_proto_name(cp->protocol), in ip_vs_conn_sync_seq_show()
[all …]
/openbmc/openbmc-test-automation/lib/
H A Dffdc_cli_robot_script.py138 protocol = None
164 protocol = dict_of_parm[key]
187 if not protocol:
188 protocol = "ALL"
212 protocol,
242 protocol,

12345678910>>...139