[IP]: Introduce ip_hdrlen()
For the common sequence "skb->nh.iph->ihl * 4", removing a good number of open coded skb->nh.iph uses, now to go after the rest... Just out of curiosity, here are the idioms found to get the same result: skb->nh.iph->ihl << 2 skb->nh.iph->ihl<<2 skb->nh.iph->ihl * 4 skb->nh.iph->ihl*4 (skb->nh.iph)->ihl * sizeof(u32) Signed-off-by:Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- drivers/net/bnx2.c 1 addition, 1 deletiondrivers/net/bnx2.c
- drivers/net/ehea/ehea_main.c 2 additions, 2 deletionsdrivers/net/ehea/ehea_main.c
- drivers/net/netxen/netxen_nic_hw.c 5 additions, 3 deletionsdrivers/net/netxen/netxen_nic_hw.c
- drivers/net/netxen/netxen_nic_main.c 3 additions, 3 deletionsdrivers/net/netxen/netxen_nic_main.c
- drivers/net/sky2.c 2 additions, 1 deletiondrivers/net/sky2.c
- drivers/net/tg3.c 3 additions, 3 deletionsdrivers/net/tg3.c
- drivers/s390/net/qeth_eddp.c 8 additions, 5 deletionsdrivers/s390/net/qeth_eddp.c
- include/net/ip.h 6 additions, 1 deletioninclude/net/ip.h
- net/ipv4/ip_fragment.c 2 additions, 2 deletionsnet/ipv4/ip_fragment.c
- net/ipv4/ip_input.c 1 addition, 3 deletionsnet/ipv4/ip_input.c
- net/ipv4/ipmr.c 1 addition, 1 deletionnet/ipv4/ipmr.c
- net/ipv4/ipvs/ip_vs_app.c 2 additions, 2 deletionsnet/ipv4/ipvs/ip_vs_app.c
- net/ipv4/ipvs/ip_vs_core.c 1 addition, 2 deletionsnet/ipv4/ipvs/ip_vs_core.c
- net/ipv4/ipvs/ip_vs_proto_tcp.c 5 additions, 7 deletionsnet/ipv4/ipvs/ip_vs_proto_tcp.c
- net/ipv4/ipvs/ip_vs_proto_udp.c 6 additions, 6 deletionsnet/ipv4/ipvs/ip_vs_proto_udp.c
- net/ipv4/netfilter/ip_conntrack_amanda.c 1 addition, 1 deletionnet/ipv4/netfilter/ip_conntrack_amanda.c
- net/ipv4/netfilter/ip_conntrack_core.c 1 addition, 2 deletionsnet/ipv4/netfilter/ip_conntrack_core.c
- net/ipv4/netfilter/ip_conntrack_ftp.c 2 additions, 2 deletionsnet/ipv4/netfilter/ip_conntrack_ftp.c
- net/ipv4/netfilter/ip_conntrack_helper_h323.c 4 additions, 5 deletionsnet/ipv4/netfilter/ip_conntrack_helper_h323.c
- net/ipv4/netfilter/ip_conntrack_helper_pptp.c 2 additions, 2 deletionsnet/ipv4/netfilter/ip_conntrack_helper_pptp.c
Loading
Please register or sign in to comment