astraceroute-libs = -lpthread ifeq ($(CONFIG_GEOIP), 1) astraceroute-libs += -lGeoIP \ -lz endif astraceroute-objs = xmalloc.o \ proto_none.o \ tprintf.o \ bpf.o \ str.o \ sig.o \ sock.o \ link.o \ dev.o \ ring.o \ die.o \ sysctl.o \ astraceroute.o ifeq ($(CONFIG_GEOIP), 1) astraceroute-objs += geoip.o \ ioops.o endif astraceroute-eflags = astraceroute-confs = geoip.conf t-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYotam Gigi <yotamg@mellanox.com>2016-10-04 09:46:04 +0200
committerDavid S. Miller <davem@davemloft.net>2016-10-04 20:27:54 -0400
commitfeb7d387a6cf6c1ec66d4a2b6d4b2cc52309876e (patch)
tree3afdb07966edb5428b38f2607fd49b85390262a1
parent1ebf8b42b1f6da380f70990234c119f4d63905c9 (diff)
mlxsw: spectrum: Fix misuse of hard_header_len
In order to specify that the mlxsw spectrum driver needs additional headroom for packets, there have been use of the hard_header_len field of the netdevice struct. This commit changes that to use needed_headroom instead, as this is the correct way to do that. Fixes: 56ade8fe3fe1 ("mlxsw: spectrum: Add initial support for Spectrum ASIC") Signed-off-by: Yotam Gigi <yotamg@mellanox.com> Acked-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>