Home
last modified time | relevance | path

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

/linux-4.4.14/net/sched/
Dact_nat.c99 int noff; in tcf_nat() local
117 noff = skb_network_offset(skb); in tcf_nat()
118 if (!pskb_may_pull(skb, sizeof(*iph) + noff)) in tcf_nat()
130 !skb_clone_writable(skb, sizeof(*iph) + noff) && in tcf_nat()
158 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) || in tcf_nat()
160 !skb_clone_writable(skb, ihl + sizeof(*tcph) + noff) && in tcf_nat()
173 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) || in tcf_nat()
175 !skb_clone_writable(skb, ihl + sizeof(*udph) + noff) && in tcf_nat()
192 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff)) in tcf_nat()
203 noff)) in tcf_nat()
[all …]
/linux-4.4.14/fs/cifs/
Dcifs_dfs_ref.c149 int off, noff; in cifs_compose_mount_options() local
195 noff = strlen(sb_mountdata + off); in cifs_compose_mount_options()
197 noff = tkn_e - (sb_mountdata + off) + 1; in cifs_compose_mount_options()
200 off += noff; in cifs_compose_mount_options()
204 off += noff; in cifs_compose_mount_options()
208 off += noff; in cifs_compose_mount_options()
211 strncat(mountdata, sb_mountdata + off, noff); in cifs_compose_mount_options()
212 off += noff; in cifs_compose_mount_options()
/linux-4.4.14/tools/perf/util/
Dprobe-finder.c1021 Dwarf_Off off, noff; in debuginfo__find_probes() local
1075 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) { in debuginfo__find_probes()
1099 off = noff; in debuginfo__find_probes()
1676 Dwarf_Off off = 0, noff; in debuginfo__find_line_range() local
1700 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, in debuginfo__find_line_range()
1724 off = noff; in debuginfo__find_line_range()
/linux-4.4.14/drivers/net/bonding/
Dbond_main.c3106 int noff, proto = -1; in bond_flow_dissect() local
3112 noff = skb_network_offset(skb); in bond_flow_dissect()
3114 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph)))) in bond_flow_dissect()
3118 noff += iph->ihl << 2; in bond_flow_dissect()
3122 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph6)))) in bond_flow_dissect()
3126 noff += sizeof(*iph6); in bond_flow_dissect()
3132 fk->ports.ports = skb_flow_get_ports(skb, noff, proto); in bond_flow_dissect()