Home
last modified time | relevance | path

Searched refs:noff (Results 1 – 7 of 7) sorted by relevance

/Linux-v4.19/net/sched/
Dact_nat.c108 int noff; in tcf_nat_act() local
126 noff = skb_network_offset(skb); in tcf_nat_act()
127 if (!pskb_may_pull(skb, sizeof(*iph) + noff)) in tcf_nat_act()
138 if (skb_try_make_writable(skb, sizeof(*iph) + noff)) in tcf_nat_act()
165 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) || in tcf_nat_act()
166 skb_try_make_writable(skb, ihl + sizeof(*tcph) + noff)) in tcf_nat_act()
178 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) || in tcf_nat_act()
179 skb_try_make_writable(skb, ihl + sizeof(*udph) + noff)) in tcf_nat_act()
195 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff)) in tcf_nat_act()
206 noff)) in tcf_nat_act()
[all …]
/Linux-v4.19/fs/cifs/
Dcifs_dfs_ref.c149 int off, noff; in cifs_compose_mount_options() local
199 noff = strlen(sb_mountdata + off); in cifs_compose_mount_options()
201 noff = tkn_e - (sb_mountdata + off) + 1; in cifs_compose_mount_options()
204 off += noff; in cifs_compose_mount_options()
208 off += noff; in cifs_compose_mount_options()
212 off += noff; in cifs_compose_mount_options()
215 strncat(mountdata, sb_mountdata + off, noff); in cifs_compose_mount_options()
216 off += noff; in cifs_compose_mount_options()
/Linux-v4.19/net/ipv4/netfilter/
Dnft_fib_ipv4.c35 int noff = skb_network_offset(pkt->skb); in nft_fib4_eval_type() local
46 iph = skb_header_pointer(pkt->skb, noff, sizeof(_iph), &_iph); in nft_fib4_eval_type()
70 int noff = skb_network_offset(pkt->skb); in nft_fib4_eval() local
105 iph = skb_header_pointer(pkt->skb, noff, sizeof(_iph), &_iph); in nft_fib4_eval()
/Linux-v4.19/net/ipv6/netfilter/
Dnft_fib_ipv6.c133 int noff = skb_network_offset(pkt->skb); in nft_fib6_eval_type() local
137 iph = skb_header_pointer(pkt->skb, noff, sizeof(_iph), &_iph); in nft_fib6_eval_type()
151 int noff = skb_network_offset(pkt->skb); in nft_fib6_eval() local
167 iph = skb_header_pointer(pkt->skb, noff, sizeof(_iph), &_iph); in nft_fib6_eval()
/Linux-v4.19/net/netfilter/
Dnft_meta.c175 int noff = skb_network_offset(skb); in nft_meta_get_eval() local
178 iph = skb_header_pointer(skb, noff, in nft_meta_get_eval()
/Linux-v4.19/tools/perf/util/
Dprobe-finder.c1082 Dwarf_Off off, noff; in debuginfo__find_probe_location() local
1115 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) { in debuginfo__find_probe_location()
1139 off = noff; in debuginfo__find_probe_location()
1758 Dwarf_Off off = 0, noff; in debuginfo__find_line_range() local
1782 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, in debuginfo__find_line_range()
1806 off = noff; in debuginfo__find_line_range()
/Linux-v4.19/drivers/net/bonding/
Dbond_main.c3240 int noff, proto = -1; in bond_flow_dissect() local
3246 noff = skb_network_offset(skb); in bond_flow_dissect()
3248 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph)))) in bond_flow_dissect()
3252 noff += iph->ihl << 2; in bond_flow_dissect()
3256 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph6)))) in bond_flow_dissect()
3260 noff += sizeof(*iph6); in bond_flow_dissect()
3266 fk->ports.ports = skb_flow_get_ports(skb, noff, proto); in bond_flow_dissect()