summarylogtreecommitdiffstats
path: root/0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch
diff options
context:
space:
mode:
authorRubenKelevra2016-06-22 11:46:43 +0200
committerRubenKelevra2016-06-22 11:46:43 +0200
commit175016bedbb991d00913c908682ca9d177a4b4fa (patch)
tree352c5d328a20a96a99217d7a2647f223d4ffb7dd /0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch
parenteb5dff024b88557cd9c537c42b18415cd2b7def9 (diff)
downloadaur-175016bedbb991d00913c908682ca9d177a4b4fa.tar.gz
Revert "update to batman-adv 2016.2, add speedy join patch"
This reverts commit eb5dff024b88557cd9c537c42b18415cd2b7def9.
Diffstat (limited to '0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch')
-rw-r--r--0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch b/0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch
deleted file mode 100644
index e63b782f4f82..000000000000
--- a/0001-batman-adv-Fix-speedy-join-in-gateway-client-mode.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Sven Eckelmann <sven@narfation.org>
-Date: Sun, 12 Jun 2016 10:43:19 +0200
-Subject: [PATCH] batman-adv: Fix speedy join in gateway client mode
-
-Speedy join only works when the received packet is either broadcast or an
-4addr unicast packet. Thus packets converted from broadcast to unicast via
-the gateway handling code have to be converted to 4addr packets to allow
-the receiving gateway server to add the sender address as temporary entry
-to the translation table.
-
-Not doing it will make the batman-adv gateway server drop the DHCP response
-in many situations because it doesn't yet have the TT entry for the
-destination of the DHCP response.
-
-Fixes: 9cbc67d9da47 ("batman-adv: change interface_rx to get orig node")
-Signed-off-by: Sven Eckelmann <sven@narfation.org>
----
- net/batman-adv/send.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/batman-adv/send.c b/net/batman-adv/send.c
-index f2f1256..0103976 100644
---- a/net/batman-adv/send.c
-+++ b/net/batman-adv/send.c
-@@ -424,8 +424,8 @@ int batadv_send_skb_via_gw(struct batadv_priv *bat_priv, struct sk_buff *skb,
- struct batadv_orig_node *orig_node;
-
- orig_node = batadv_gw_get_selected_orig(bat_priv);
-- return batadv_send_skb_unicast(bat_priv, skb, BATADV_UNICAST, 0,
-- orig_node, vid);
-+ return batadv_send_skb_unicast(bat_priv, skb, BATADV_UNICAST_4ADDR,
-+ BATADV_P_DATA, orig_node, vid);
- }
-
- void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface)