aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/unicast.c
diff options
context:
space:
mode:
authorMarek Lindner <lindner_marek@yahoo.de>2011-03-23 11:24:34 +0100
committerSven Eckelmann <sven@narfation.org>2011-04-17 21:11:01 +0200
commitc4aac1ab9b973798163b34939b522f01e4d28ac9 (patch)
tree7adda276282cf72b87c110b8743dae91fde27ad3 /net/batman-adv/unicast.c
parentbatman-adv: Protect global TQ window with a spinlock (diff)
downloadlinux-dev-c4aac1ab9b973798163b34939b522f01e4d28ac9.tar.xz
linux-dev-c4aac1ab9b973798163b34939b522f01e4d28ac9.zip
batman-adv: concentrate all curr_gw related rcu operations in select/deselect functions
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/unicast.c')
-rw-r--r--net/batman-adv/unicast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/unicast.c b/net/batman-adv/unicast.c
index 19f84bd443af..d46acc815138 100644
--- a/net/batman-adv/unicast.c
+++ b/net/batman-adv/unicast.c
@@ -289,7 +289,7 @@ int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
/* get routing information */
if (is_multicast_ether_addr(ethhdr->h_dest)) {
- orig_node = (struct orig_node *)gw_get_selected(bat_priv);
+ orig_node = (struct orig_node *)gw_get_selected_orig(bat_priv);
if (orig_node)
goto find_router;
}