trafgen-libs = $(shell pkg-config --libs libnl-3.0) \ $(shell pkg-config --libs libnl-genl-3.0) \ -lm trafgen-objs = xmalloc.o \ ioops.o \ privs.o \ proc.o \ dev.o \ irq.o \ link.o \ str.o \ sig.o \ sock.o \ mac80211.o \ ring_tx.o \ ring.o \ timer.o \ trafgen_lexer.yy.o \ trafgen_parser.tab.o \ trafgen.o trafgen-lex = trafgen_lexer.yy.o trafgen-yaac = trafgen_parser.tab.o trafgen-eflags = $(shell pkg-config --cflags libnl-3.0) \ $(shell pkg-config --cflags libnl-genl-3.0) \ -I.. trafgen-confs = trafgen_stddef.h trafgen_post_install: $(Q)mv $(DESTDIR)$(ETCDIRE)/trafgen_stddef.h $(DESTDIR)$(ETCDIRE)/stddef.h trafgen_clean_custom: $(Q)$(call RM,$(BUILD_DIR)/*.h $(BUILD_DIR)/*.c) index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2016-10-18 11:34:22 -0400
committerDavid S. Miller <davem@davemloft.net>2016-10-18 11:34:22 -0400
commit1441dc99faba2b3fd3a55e18cd955feb3667346a (patch)
tree97dff06ab97f91387a88de2dfb3c6d959609d321
parent60d2d8dd9e1a2580541a3d28eb90d092381e2153 (diff)
parent44770e1180decf9b483d9b537fdad385a4fbf462 (diff)
Merge branch 'ethernet-use-core-min-max-mtu'
Jarod Wilson says: ==================== ethernet: use core min/max MTU checking Now that the network stack core min/max MTU checking infrastructure is in place, time to start making drivers use it. We'll start with the easiest ones, the ethernet drivers, split roughly by vendor, with a catch-all patch at the end. For the most part, every patch does the same essential thing: removes the MTU range checking from the drivers' ndo_change_mtu function, puts those ranges into the core net_device min_mtu and max_mtu fields, and where possible, removes ndo_change_mtu functions entirely. These patches have all been built through the 0-day build infrastructure provided by Intel, on top of net-next as of October 17. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat