batman-adv: convert batman iv algorithm to use dynamic infrastructure
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
This commit is contained in:
@@ -28,7 +28,6 @@
|
||||
#include "vis.h"
|
||||
#include "gateway_common.h"
|
||||
#include "originator.h"
|
||||
#include "bat_ogm.h"
|
||||
|
||||
static void send_outstanding_bcast_packet(struct work_struct *work);
|
||||
|
||||
@@ -168,7 +167,7 @@ void schedule_bat_ogm(struct hard_iface *hard_iface)
|
||||
if (primary_if)
|
||||
hardif_free_ref(primary_if);
|
||||
|
||||
bat_ogm_schedule(hard_iface, tt_num_changes);
|
||||
bat_priv->bat_algo_ops->bat_ogm_schedule(hard_iface, tt_num_changes);
|
||||
}
|
||||
|
||||
static void forw_packet_free(struct forw_packet *forw_packet)
|
||||
@@ -318,7 +317,7 @@ void send_outstanding_bat_ogm_packet(struct work_struct *work)
|
||||
if (atomic_read(&bat_priv->mesh_state) == MESH_DEACTIVATING)
|
||||
goto out;
|
||||
|
||||
bat_ogm_emit(forw_packet);
|
||||
bat_priv->bat_algo_ops->bat_ogm_emit(forw_packet);
|
||||
|
||||
/**
|
||||
* we have to have at least one packet in the queue
|
||||
|
Reference in New Issue
Block a user