diff options
author | David S. Miller <davem@davemloft.net> | 2012-11-08 01:08:42 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-08 01:08:42 +0100 |
commit | f1e0b5b4f1eae56a3192688177f36e2bdf0e01ac (patch) | |
tree | b5af35837185e9df25e7009e7b2e70f2694f66bf /net/batman-adv/Makefile | |
parent | ndisc: fix a typo in a comment in ndisc_recv_na() (diff) | |
parent | batman-adv: enable fast client detection using unicast_4addr packets (diff) | |
download | linux-f1e0b5b4f1eae56a3192688177f36e2bdf0e01ac.tar.xz linux-f1e0b5b4f1eae56a3192688177f36e2bdf0e01ac.zip |
Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge
Included changes:
- minimal fixes to the packet layout to avoid the __packed attribute when not
needed
- new packet type called UNICAST_4ADDR: in this packet it is possible to find
both source and destination node (in the classic UNICAST header only the
destination field exists).
- a new feature: Distributed ARP Table (D.A.T.). It aims to reduce ARP lookups
latency by means of a simil-DHT approach.
Diffstat (limited to 'net/batman-adv/Makefile')
-rw-r--r-- | net/batman-adv/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/batman-adv/Makefile b/net/batman-adv/Makefile index 8676d2b1d574..e45e3b4e32e3 100644 --- a/net/batman-adv/Makefile +++ b/net/batman-adv/Makefile @@ -23,6 +23,7 @@ batman-adv-y += bat_iv_ogm.o batman-adv-y += bitarray.o batman-adv-$(CONFIG_BATMAN_ADV_BLA) += bridge_loop_avoidance.o batman-adv-y += debugfs.o +batman-adv-$(CONFIG_BATMAN_ADV_DAT) += distributed-arp-table.o batman-adv-y += gateway_client.o batman-adv-y += gateway_common.o batman-adv-y += hard-interface.o |