batman-adv: move ogm initialization into the proper function
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
This commit is contained in:
Родитель
e88af9464f
Коммит
8140625e30
|
@ -332,7 +332,6 @@ int hardif_enable_interface(struct hard_iface *hard_iface,
|
|||
hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
|
||||
dev_add_pack(&hard_iface->batman_adv_ptype);
|
||||
|
||||
atomic_set(&hard_iface->seqno, 1);
|
||||
atomic_set(&hard_iface->frag_seqno, 1);
|
||||
bat_info(hard_iface->soft_iface, "Adding interface: %s\n",
|
||||
hard_iface->net_dev->name);
|
||||
|
@ -451,6 +450,13 @@ static struct hard_iface *hardif_add_interface(struct net_device *net_dev)
|
|||
check_known_mac_addr(hard_iface->net_dev);
|
||||
list_add_tail_rcu(&hard_iface->list, &hardif_list);
|
||||
|
||||
/**
|
||||
* This can't be called via a bat_priv callback because
|
||||
* we have no bat_priv yet.
|
||||
*/
|
||||
atomic_set(&hard_iface->seqno, 1);
|
||||
hard_iface->packet_buff = NULL;
|
||||
|
||||
return hard_iface;
|
||||
|
||||
free_if:
|
||||
|
|
Загрузка…
Ссылка в новой задаче