aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/bridge_loop_avoidance.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/batman-adv/bridge_loop_avoidance.c b/net/batman-adv/bridge_loop_avoidance.c
index a957c8140721..0f0ca433ce3c 100644
--- a/net/batman-adv/bridge_loop_avoidance.c
+++ b/net/batman-adv/bridge_loop_avoidance.c
@@ -252,7 +252,7 @@ batadv_bla_del_backbone_claims(struct batadv_bla_backbone_gw *backbone_gw)
252/** 252/**
253 * batadv_bla_send_claim - sends a claim frame according to the provided info 253 * batadv_bla_send_claim - sends a claim frame according to the provided info
254 * @bat_priv: the bat priv with all the soft interface information 254 * @bat_priv: the bat priv with all the soft interface information
255 * @orig: the mac address to be announced within the claim 255 * @mac: the mac address to be announced within the claim
256 * @vid: the VLAN ID 256 * @vid: the VLAN ID
257 * @claimtype: the type of the claim (CLAIM, UNCLAIM, ANNOUNCE, ...) 257 * @claimtype: the type of the claim (CLAIM, UNCLAIM, ANNOUNCE, ...)
258 */ 258 */
@@ -364,6 +364,7 @@ out:
364 * @bat_priv: the bat priv with all the soft interface information 364 * @bat_priv: the bat priv with all the soft interface information
365 * @orig: the mac address of the originator 365 * @orig: the mac address of the originator
366 * @vid: the VLAN ID 366 * @vid: the VLAN ID
367 * @own_backbone: set if the requested backbone is local
367 * 368 *
368 * searches for the backbone gw or creates a new one if it could not 369 * searches for the backbone gw or creates a new one if it could not
369 * be found. 370 * be found.
@@ -454,6 +455,7 @@ batadv_bla_update_own_backbone_gw(struct batadv_priv *bat_priv,
454/** 455/**
455 * batadv_bla_answer_request - answer a bla request by sending own claims 456 * batadv_bla_answer_request - answer a bla request by sending own claims
456 * @bat_priv: the bat priv with all the soft interface information 457 * @bat_priv: the bat priv with all the soft interface information
458 * @primary_if: interface where the request came on
457 * @vid: the vid where the request came on 459 * @vid: the vid where the request came on
458 * 460 *
459 * Repeat all of our own claims, and finally send an ANNOUNCE frame 461 * Repeat all of our own claims, and finally send an ANNOUNCE frame
@@ -775,6 +777,7 @@ static int batadv_handle_claim(struct batadv_priv *bat_priv,
775/** 777/**
776 * batadv_check_claim_group 778 * batadv_check_claim_group
777 * @bat_priv: the bat priv with all the soft interface information 779 * @bat_priv: the bat priv with all the soft interface information
780 * @primary_if: the primary interface of this batman interface
778 * @hw_src: the Hardware source in the ARP Header 781 * @hw_src: the Hardware source in the ARP Header
779 * @hw_dst: the Hardware destination in the ARP Header 782 * @hw_dst: the Hardware destination in the ARP Header
780 * @ethhdr: pointer to the Ethernet header of the claim frame 783 * @ethhdr: pointer to the Ethernet header of the claim frame
@@ -850,6 +853,7 @@ static int batadv_check_claim_group(struct batadv_priv *bat_priv,
850/** 853/**
851 * batadv_bla_process_claim 854 * batadv_bla_process_claim
852 * @bat_priv: the bat priv with all the soft interface information 855 * @bat_priv: the bat priv with all the soft interface information
856 * @primary_if: the primary hard interface of this batman soft interface
853 * @skb: the frame to be checked 857 * @skb: the frame to be checked
854 * 858 *
855 * Check if this is a claim frame, and process it accordingly. 859 * Check if this is a claim frame, and process it accordingly.