Home
last modified time | relevance | path

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

/linux-4.1.27/net/sched/
Dact_nat.c98 int noff; in tcf_nat() local
116 noff = skb_network_offset(skb); in tcf_nat()
117 if (!pskb_may_pull(skb, sizeof(*iph) + noff)) in tcf_nat()
129 !skb_clone_writable(skb, sizeof(*iph) + noff) && in tcf_nat()
157 if (!pskb_may_pull(skb, ihl + sizeof(*tcph) + noff) || in tcf_nat()
159 !skb_clone_writable(skb, ihl + sizeof(*tcph) + noff) && in tcf_nat()
171 if (!pskb_may_pull(skb, ihl + sizeof(*udph) + noff) || in tcf_nat()
173 !skb_clone_writable(skb, ihl + sizeof(*udph) + noff) && in tcf_nat()
190 if (!pskb_may_pull(skb, ihl + sizeof(*icmph) + noff)) in tcf_nat()
201 noff)) in tcf_nat()
[all …]
/linux-4.1.27/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.1.27/tools/perf/util/
Dprobe-finder.c1001 Dwarf_Off off, noff; in debuginfo__find_probes() local
1055 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) { in debuginfo__find_probes()
1079 off = noff; in debuginfo__find_probes()
1572 Dwarf_Off off = 0, noff; in debuginfo__find_line_range() local
1596 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, in debuginfo__find_line_range()
1620 off = noff; in debuginfo__find_line_range()
/linux-4.1.27/drivers/net/bonding/
Dbond_main.c3095 int noff, proto = -1; in bond_flow_dissect() local
3101 noff = skb_network_offset(skb); in bond_flow_dissect()
3103 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph)))) in bond_flow_dissect()
3108 noff += iph->ihl << 2; in bond_flow_dissect()
3112 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph6)))) in bond_flow_dissect()
3117 noff += sizeof(*iph6); in bond_flow_dissect()
3123 fk->ports = skb_flow_get_ports(skb, noff, proto); in bond_flow_dissect()