/openbmc/linux/tools/testing/selftests/net/ |
H A D | test_ingress_egress_chaining.sh | 57 tc filter add dev $veth2 ingress prio 1 proto all flower \ 59 tc filter add dev $veth1 ingress prio 1 proto all flower \ 64 tc filter add dev $peer1 egress prio 20 proto ip flower \
|
H A D | rtnetlink.sh | 1358 local proto 1365 proto=$(address_get_proto "$addr3") 1366 [[ "$proto" == null ]] 1372 [[ "$proto" == 0x99 ]] 1377 proto=$(address_get_proto "$addr") 1378 [[ "$proto" == 0xab ]] 1382 proto=$(address_get_proto "$addr") 1384 [[ "$proto" == 0x11 ]] 1392 count=$(address_count proto 0) 1397 count=$(address_count proto 0x11) [all …]
|
/openbmc/linux/arch/hexagon/lib/ |
H A D | checksum.c | 51 __u32 len, __u8 proto, __wsum sum) in csum_tcpudp_magic() argument 55 (__force u64)sum + ((len + proto) << 8)); in csum_tcpudp_magic() 59 __u32 len, __u8 proto, __wsum sum) in csum_tcpudp_nofold() argument 64 (__force u64)sum + ((len + proto) << 8); in csum_tcpudp_nofold()
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | svn.py | 73 proto = ud.parm.get('protocol', 'svn') 76 if proto == "svn+ssh" and "ssh" in ud.parm: 92 … svncmd = "%s info %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) 94 …s log --limit 1 --quiet %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.modul… 111 …svncmd = "%s co %s %s://%s%s/%s%s %s" % (ud.basecmd, " ".join(options), proto, transportuser, svnr…
|
H A D | repo.py | 38 ud.proto = ud.parm.get('protocol', 'git') 65 …nit -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, username, ud.host… 66 …nit -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, username, ud.host…
|
H A D | clearcase.py | 79 ud.proto = "https" 81 ud.proto = ud.parm['protocol'] 82 if not ud.proto in ('http', 'https'): 105 ud.server = "%s://%s%s" % (ud.proto, ud.host, ud.path) 121 self.debug("proto = %s" % ud.proto)
|
/openbmc/linux/include/uapi/linux/netfilter/ |
H A D | xt_policy.h | 27 proto:1, member 60 __u8 proto; member
|
/openbmc/linux/arch/arc/include/asm/ |
H A D | checksum.h | 71 __u8 proto, __wsum sum) in csum_tcpudp_nofold() argument 86 "r"(htons(proto)) in csum_tcpudp_nofold()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_tc_peer.c | 46 __u16 proto = skb->protocol; in tc_src_l3() local 57 if (bpf_skb_store_bytes(skb, ETH_ALEN + ETH_ALEN, &proto, sizeof(__u16), 0) != 0) in tc_src_l3()
|
H A D | bpf_flow.c | 51 __be16 proto; member 116 static __always_inline int parse_eth_proto(struct __sk_buff *skb, __be16 proto) in parse_eth_proto() argument 120 switch (proto) { in parse_eth_proto() 165 static __always_inline int parse_ip_proto(struct __sk_buff *skb, __u8 proto) in parse_ip_proto() argument 175 switch (proto) { in parse_ip_proto() 214 if (gre->proto == bpf_htons(ETH_P_TEB)) { in parse_ip_proto() 224 return parse_eth_proto(skb, gre->proto); in parse_ip_proto()
|
/openbmc/linux/include/linux/dsa/ |
H A D | sja1105.h | 69 BUG_ON(ds->dst->tag_ops->proto != DSA_TAG_PROTO_SJA1105 && in sja1105_tagger_data() 70 ds->dst->tag_ops->proto != DSA_TAG_PROTO_SJA1110); in sja1105_tagger_data()
|
/openbmc/linux/net/hsr/ |
H A D | hsr_forward.c | 516 int hsr_fill_frame_info(__be16 proto, struct sk_buff *skb, in hsr_fill_frame_info() argument 523 if ((!hsr->prot_version && proto == htons(ETH_P_PRP)) || in hsr_fill_frame_info() 524 proto == htons(ETH_P_HSR)) { in hsr_fill_frame_info() 543 int prp_fill_frame_info(__be16 proto, struct sk_buff *skb, in prp_fill_frame_info() argument 568 __be16 proto; in fill_frame_info() local 585 proto = ethhdr->h_proto; in fill_frame_info() 587 if (proto == htons(ETH_P_8021Q)) in fill_frame_info() 594 proto = vlan_hdr->vlanhdr.h_vlan_encapsulated_proto; in fill_frame_info() 602 ret = hsr->proto_ops->fill_frame_info(proto, skb, frame); in fill_frame_info()
|
/openbmc/linux/net/batman-adv/ |
H A D | trace.h | 24 #define TRACE_EVENT(name, proto, ...) \ argument 25 static inline void trace_ ## name(proto) {}
|
/openbmc/linux/drivers/net/wireless/ath/ |
H A D | trace.h | 29 #define TRACE_EVENT(name, proto, ...) static inline void trace_ ## name(proto) {} argument
|
/openbmc/linux/include/trace/ |
H A D | define_custom_trace.h | 27 #define TRACE_CUSTOM_EVENT(name, proto, args, tstruct, assign, print) argument 30 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) argument
|
/openbmc/linux/net/ipv4/ |
H A D | ipip.c | 202 .proto = htons(ETH_P_IP), 208 .proto = htons(ETH_P_MPLS_UC), 238 if (iptunnel_pull_header(skb, 0, tpi->proto, false)) in ipip_tunnel_rcv() 395 u8 proto; in ipip_tunnel_validate() local 400 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]); in ipip_tunnel_validate() 401 if (proto != IPPROTO_IPIP && proto != IPPROTO_MPLS && proto != 0) in ipip_tunnel_validate()
|
H A D | tcp_ulp.c | 103 void tcp_update_ulp(struct sock *sk, struct proto *proto, in tcp_update_ulp() argument 109 icsk->icsk_ulp_ops->update(sk, proto, write_space); in tcp_update_ulp()
|
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/ |
H A D | serdes.c | 47 void fsl_setup_serdes(u32 offset, char proto, u32 rfcks, char vdd) in fsl_setup_serdes() argument 66 switch (proto) { in fsl_setup_serdes() 121 if (proto == FSL_SERDES_PROTO_PEX_X2) in fsl_setup_serdes()
|
/openbmc/linux/net/netfilter/ |
H A D | nf_nat_ovs.c | 15 __be16 proto = skb_protocol(skb, true); in nf_ct_nat_execute() local 27 if (proto == htons(ETH_P_IP) && in nf_ct_nat_execute() 33 } else if (IS_ENABLED(CONFIG_IPV6) && proto == htons(ETH_P_IPV6)) { in nf_ct_nat_execute()
|
/openbmc/linux/drivers/net/wan/ |
H A D | hdlc_cisco.c | 296 static struct hdlc_proto proto = { variable 319 if (dev_to_hdlc(dev)->proto != &proto) in cisco_ioctl() 349 result = attach_hdlc_protocol(dev, &proto, in cisco_ioctl() 369 register_hdlc_protocol(&proto); in hdlc_cisco_init() 375 unregister_hdlc_protocol(&proto); in hdlc_cisco_exit()
|
/openbmc/linux/Documentation/userspace-api/media/rc/ |
H A D | rc-sysfs-nodes.rst | 43 Writing "+proto" will add a protocol to the list of enabled protocols. 45 Writing "-proto" will remove a protocol from the list of enabled 48 Writing "proto" will enable only "proto". 106 Writing "proto" will use "proto" for wakeup events.
|
/openbmc/linux/include/uapi/linux/ |
H A D | xfrm.h | 28 __u8 proto; member 59 __u8 proto; member 402 __u8 proto; member 463 __u8 proto; member 467 __u8 proto; member 485 __u8 proto; member
|
/openbmc/linux/drivers/scsi/ |
H A D | ps3rom.c | 45 u32 proto; /* transfer mode */ member 105 atapi_cmnd.proto = DMA_PROTO; in ps3rom_atapi_request() 107 atapi_cmnd.proto = PIO_DATA_IN_PROTO; in ps3rom_atapi_request() 113 atapi_cmnd.proto = DMA_PROTO; in ps3rom_atapi_request() 115 atapi_cmnd.proto = PIO_DATA_OUT_PROTO; in ps3rom_atapi_request() 121 atapi_cmnd.proto = NON_DATA_PROTO; in ps3rom_atapi_request()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/postfix/files/ |
H A D | 0002-Change-fixed-postconf-to-a-variable-for-cross-compil.patch | 18 @@ -22,7 +22,7 @@ META = meta/main.cf.proto meta/master.cf.proto meta/postfix-files \ 51 @@ -454,7 +454,7 @@ template files main.cf.proto and master.cf.proto."
|
/openbmc/openbmc-test-automation/lib/ |
H A D | bmc_ipv6_utils.robot | 80 # 2xxx:xxxx:0:1::/64 dev eth0 proto kernel metric 256 81 # fe80::/64 dev eth1 proto kernel metric 256 82 # fe80::/64 dev eth0 proto kernel metric 256 83 # fe80::/64 dev eth2 proto kernel metric 256
|