aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMarek Lindner <lindner_marek@yahoo.de>2012-02-07 04:20:49 -0500
committerAntonio Quartulli <ordex@autistici.org>2012-04-18 03:54:00 -0400
commitcd8b78e7e9d1d9625634dc1ec2bb4b5a14d1295a (patch)
tree311f168367895522355764708b4619c50d2d87a9 /net
parent77af7575c4b11ce7d27b4cb372abd358b2dcd850 (diff)
batman-adv: refactoring API: find generalized name for bat_ogm_init_primary callback
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net')
-rw-r--r--net/batman-adv/bat_iv_ogm.c4
-rw-r--r--net/batman-adv/hard-interface.c2
-rw-r--r--net/batman-adv/main.c2
-rw-r--r--net/batman-adv/types.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c
index 271467033a1c..c0bdb90cc024 100644
--- a/net/batman-adv/bat_iv_ogm.c
+++ b/net/batman-adv/bat_iv_ogm.c
@@ -67,7 +67,7 @@ static void bat_iv_ogm_iface_disable(struct hard_iface *hard_iface)
67 hard_iface->packet_buff = NULL; 67 hard_iface->packet_buff = NULL;
68} 68}
69 69
70static void bat_iv_ogm_init_primary(struct hard_iface *hard_iface) 70static void bat_iv_ogm_primary_iface_set(struct hard_iface *hard_iface)
71{ 71{
72 struct batman_ogm_packet *batman_ogm_packet; 72 struct batman_ogm_packet *batman_ogm_packet;
73 73
@@ -1191,7 +1191,7 @@ static struct bat_algo_ops batman_iv __read_mostly = {
1191 .name = "BATMAN IV", 1191 .name = "BATMAN IV",
1192 .bat_iface_enable = bat_iv_ogm_iface_enable, 1192 .bat_iface_enable = bat_iv_ogm_iface_enable,
1193 .bat_iface_disable = bat_iv_ogm_iface_disable, 1193 .bat_iface_disable = bat_iv_ogm_iface_disable,
1194 .bat_ogm_init_primary = bat_iv_ogm_init_primary, 1194 .bat_primary_iface_set = bat_iv_ogm_primary_iface_set,
1195 .bat_ogm_update_mac = bat_iv_ogm_update_mac, 1195 .bat_ogm_update_mac = bat_iv_ogm_update_mac,
1196 .bat_ogm_schedule = bat_iv_ogm_schedule, 1196 .bat_ogm_schedule = bat_iv_ogm_schedule,
1197 .bat_ogm_emit = bat_iv_ogm_emit, 1197 .bat_ogm_emit = bat_iv_ogm_emit,
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c
index 3b391fd3b5b2..75a555b8587e 100644
--- a/net/batman-adv/hard-interface.c
+++ b/net/batman-adv/hard-interface.c
@@ -146,7 +146,7 @@ static void primary_if_select(struct bat_priv *bat_priv,
146 if (!new_hard_iface) 146 if (!new_hard_iface)
147 goto out; 147 goto out;
148 148
149 bat_priv->bat_algo_ops->bat_ogm_init_primary(new_hard_iface); 149 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
150 primary_if_update_addr(bat_priv, curr_hard_iface); 150 primary_if_update_addr(bat_priv, curr_hard_iface);
151 151
152out: 152out:
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c
index a47a6ced1cb7..791327219531 100644
--- a/net/batman-adv/main.c
+++ b/net/batman-adv/main.c
@@ -210,7 +210,7 @@ int bat_algo_register(struct bat_algo_ops *bat_algo_ops)
210 /* all algorithms must implement all ops (for now) */ 210 /* all algorithms must implement all ops (for now) */
211 if (!bat_algo_ops->bat_iface_enable || 211 if (!bat_algo_ops->bat_iface_enable ||
212 !bat_algo_ops->bat_iface_disable || 212 !bat_algo_ops->bat_iface_disable ||
213 !bat_algo_ops->bat_ogm_init_primary || 213 !bat_algo_ops->bat_primary_iface_set ||
214 !bat_algo_ops->bat_ogm_update_mac || 214 !bat_algo_ops->bat_ogm_update_mac ||
215 !bat_algo_ops->bat_ogm_schedule || 215 !bat_algo_ops->bat_ogm_schedule ||
216 !bat_algo_ops->bat_ogm_emit || 216 !bat_algo_ops->bat_ogm_emit ||
diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h
index dd78023800bd..4d93aad899f7 100644
--- a/net/batman-adv/types.h
+++ b/net/batman-adv/types.h
@@ -381,8 +381,8 @@ struct bat_algo_ops {
381 int (*bat_iface_enable)(struct hard_iface *hard_iface); 381 int (*bat_iface_enable)(struct hard_iface *hard_iface);
382 /* de-init routing info when hard-interface is disabled */ 382 /* de-init routing info when hard-interface is disabled */
383 void (*bat_iface_disable)(struct hard_iface *hard_iface); 383 void (*bat_iface_disable)(struct hard_iface *hard_iface);
384 /* init primary OGM when primary interface is selected */ 384 /* called when primary interface is selected / changed */
385 void (*bat_ogm_init_primary)(struct hard_iface *hard_iface); 385 void (*bat_primary_iface_set)(struct hard_iface *hard_iface);
386 /* init mac addresses of the OGM belonging to this hard-interface */ 386 /* init mac addresses of the OGM belonging to this hard-interface */
387 void (*bat_ogm_update_mac)(struct hard_iface *hard_iface); 387 void (*bat_ogm_update_mac)(struct hard_iface *hard_iface);
388 /* prepare a new outgoing OGM for the send queue */ 388 /* prepare a new outgoing OGM for the send queue */