689be43945
Many drivers use skb->tail unnecessarily. In these situations, the code roughly looks like: dev = dev_alloc_skb(...); [optional] skb_reserve(skb, ...); ... skb->tail ... But even if the skb_reserve() happens, skb->data equals skb->tail. So it doesn't make any sense to use anything other than skb->data in these cases. Another case was the s2io.c driver directly mucking with the skb->data and skb->tail pointers. It really just wanted to do an skb_reserve(), so that's what the code was changed to do instead. Another reason I'm making this change as it allows some SKB cleanups I have planned simpler to merge. In those cleanups, skb->head, skb->tail, and skb->end pointers are removed, and replaced with skb->head_room and skb->tail_room integers. Signed-off-by: David S. Miller <davem@davemloft.net> Acked-by: Jeff Garzik <jgarzik@pobox.com> |
||
---|---|---|
.. | ||
lmc | ||
c101.c | ||
cosa.c | ||
cosa.h | ||
cycx_drv.c | ||
cycx_main.c | ||
cycx_x25.c | ||
dlci.c | ||
dscc4.c | ||
farsync.c | ||
farsync.h | ||
hd6457x.c | ||
hd64570.h | ||
hd64572.h | ||
hdlc_cisco.c | ||
hdlc_fr.c | ||
hdlc_generic.c | ||
hdlc_ppp.c | ||
hdlc_raw_eth.c | ||
hdlc_raw.c | ||
hdlc_x25.c | ||
hostess_sv11.c | ||
Kconfig | ||
lapbether.c | ||
Makefile | ||
n2.c | ||
pc300_drv.c | ||
pc300_tty.c | ||
pc300-falc-lh.h | ||
pc300.h | ||
pci200syn.c | ||
sbni.c | ||
sbni.h | ||
sdla_chdlc.c | ||
sdla_fr.c | ||
sdla_ft1.c | ||
sdla_ppp.c | ||
sdla_x25.c | ||
sdla.c | ||
sdladrv.c | ||
sdlamain.c | ||
sealevel.c | ||
syncppp.c | ||
wanpipe_multppp.c | ||
wanxl.c | ||
wanxl.h | ||
wanxlfw.inc_shipped | ||
wanxlfw.S | ||
x25_asy.c | ||
x25_asy.h | ||
z85230.c | ||
z85230.h |