Staging: batman-adv: fix whitespace style issues
This patch fixes the 31 unnecessary whitespaces before a quoted newline that the batman-adv files had. Signed-off-by: Luis de Bethencourt <luisbg@ubuntu.com> [sven.eckelmann@gmx.de: Redone to apply against current version] Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
db315014ff
commit
0887635b26
6 changed files with 22 additions and 22 deletions
|
@ -65,7 +65,7 @@ int bat_device_setup(void)
|
||||||
batman_class = class_create(THIS_MODULE, "batman-adv");
|
batman_class = class_create(THIS_MODULE, "batman-adv");
|
||||||
|
|
||||||
if (IS_ERR(batman_class)) {
|
if (IS_ERR(batman_class)) {
|
||||||
printk(KERN_ERR "batman-adv:Could not register class 'batman-adv' \n");
|
printk(KERN_ERR "batman-adv:Could not register class 'batman-adv'\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ int init_module(void)
|
||||||
register_netdevice_notifier(&hard_if_notifier);
|
register_netdevice_notifier(&hard_if_notifier);
|
||||||
dev_add_pack(&batman_adv_packet_type);
|
dev_add_pack(&batman_adv_packet_type);
|
||||||
|
|
||||||
printk(KERN_INFO "batman-adv:B.A.T.M.A.N. advanced %s%s (compatibility version %i) loaded \n",
|
printk(KERN_INFO "batman-adv:B.A.T.M.A.N. advanced %s%s (compatibility version %i) loaded\n",
|
||||||
SOURCE_VERSION, REVISION_VERSION_STR, COMPAT_VERSION);
|
SOURCE_VERSION, REVISION_VERSION_STR, COMPAT_VERSION);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -126,7 +126,7 @@ struct orig_node *get_orig_node(uint8_t *addr)
|
||||||
if (orig_node != NULL)
|
if (orig_node != NULL)
|
||||||
return orig_node;
|
return orig_node;
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "Creating new originator: %pM \n", addr);
|
bat_dbg(DBG_BATMAN, "Creating new originator: %pM\n", addr);
|
||||||
|
|
||||||
orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
|
orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
|
||||||
if (!orig_node)
|
if (!orig_node)
|
||||||
|
@ -158,7 +158,7 @@ struct orig_node *get_orig_node(uint8_t *addr)
|
||||||
|
|
||||||
if (swaphash == NULL)
|
if (swaphash == NULL)
|
||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"batman-adv:Couldn't resize orig hash table \n");
|
"batman-adv:Couldn't resize orig hash table\n");
|
||||||
else
|
else
|
||||||
orig_hash = swaphash;
|
orig_hash = swaphash;
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,7 @@ static int isBidirectionalNeigh(struct orig_node *orig_node,
|
||||||
orig_neigh_node->tq_asym_penalty) /
|
orig_neigh_node->tq_asym_penalty) /
|
||||||
(TQ_MAX_VALUE * TQ_MAX_VALUE));
|
(TQ_MAX_VALUE * TQ_MAX_VALUE));
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, total tq: %3i \n",
|
bat_dbg(DBG_BATMAN, "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, total tq: %3i\n",
|
||||||
orig_node->orig, orig_neigh_node->orig, total_count,
|
orig_node->orig, orig_neigh_node->orig, total_count,
|
||||||
neigh_node->real_packet_count, orig_neigh_node->tq_own,
|
neigh_node->real_packet_count, orig_neigh_node->tq_own,
|
||||||
orig_neigh_node->tq_asym_penalty, batman_packet->tq);
|
orig_neigh_node->tq_asym_penalty, batman_packet->tq);
|
||||||
|
@ -234,7 +234,7 @@ static void update_orig(struct orig_node *orig_node, struct ethhdr *ethhdr,
|
||||||
struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
|
struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
|
||||||
int tmp_hna_buff_len;
|
int tmp_hna_buff_len;
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "update_originator(): Searching and updating originator entry of received packet \n");
|
bat_dbg(DBG_BATMAN, "update_originator(): Searching and updating originator entry of received packet\n");
|
||||||
|
|
||||||
list_for_each_entry(tmp_neigh_node, &orig_node->neigh_list, list) {
|
list_for_each_entry(tmp_neigh_node, &orig_node->neigh_list, list) {
|
||||||
if (compare_orig(tmp_neigh_node->addr, ethhdr->h_source) &&
|
if (compare_orig(tmp_neigh_node->addr, ethhdr->h_source) &&
|
||||||
|
@ -341,7 +341,7 @@ static char count_real_packets(struct ethhdr *ethhdr,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_duplicate) {
|
if (!is_duplicate) {
|
||||||
bat_dbg(DBG_BATMAN, "updating last_seqno: old %d, new %d \n",
|
bat_dbg(DBG_BATMAN, "updating last_seqno: old %d, new %d\n",
|
||||||
orig_node->last_real_seqno, batman_packet->seqno);
|
orig_node->last_real_seqno, batman_packet->seqno);
|
||||||
orig_node->last_real_seqno = batman_packet->seqno;
|
orig_node->last_real_seqno = batman_packet->seqno;
|
||||||
}
|
}
|
||||||
|
@ -385,7 +385,7 @@ void receive_bat_packet(struct ethhdr *ethhdr,
|
||||||
is_single_hop_neigh = (compare_orig(ethhdr->h_source,
|
is_single_hop_neigh = (compare_orig(ethhdr->h_source,
|
||||||
batman_packet->orig) ? 1 : 0);
|
batman_packet->orig) ? 1 : 0);
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "Received BATMAN packet via NB: %pM, IF: %s [%s] (from OG: %pM, via prev OG: %pM, seqno %d, tq %d, TTL %d, V %d, IDF %d) \n",
|
bat_dbg(DBG_BATMAN, "Received BATMAN packet via NB: %pM, IF: %s [%s] (from OG: %pM, via prev OG: %pM, seqno %d, tq %d, TTL %d, V %d, IDF %d)\n",
|
||||||
ethhdr->h_source, if_incoming->dev, if_incoming->addr_str,
|
ethhdr->h_source, if_incoming->dev, if_incoming->addr_str,
|
||||||
batman_packet->orig, batman_packet->prev_sender,
|
batman_packet->orig, batman_packet->prev_sender,
|
||||||
batman_packet->seqno, batman_packet->tq, batman_packet->ttl,
|
batman_packet->seqno, batman_packet->tq, batman_packet->ttl,
|
||||||
|
@ -426,7 +426,7 @@ void receive_bat_packet(struct ethhdr *ethhdr,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_broadcast) {
|
if (is_broadcast) {
|
||||||
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all packets with broadcast source addr (sender: %pM) \n", ethhdr->h_source);
|
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all packets with broadcast source addr (sender: %pM)\n", ethhdr->h_source);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -454,19 +454,19 @@ void receive_bat_packet(struct ethhdr *ethhdr,
|
||||||
bit_packet_count(word);
|
bit_packet_count(word);
|
||||||
}
|
}
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "Drop packet: originator packet from myself (via neighbor) \n");
|
bat_dbg(DBG_BATMAN, "Drop packet: originator packet from myself (via neighbor)\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (batman_packet->tq == 0) {
|
if (batman_packet->tq == 0) {
|
||||||
count_real_packets(ethhdr, batman_packet, if_incoming);
|
count_real_packets(ethhdr, batman_packet, if_incoming);
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "Drop packet: originator packet with tq equal 0 \n");
|
bat_dbg(DBG_BATMAN, "Drop packet: originator packet with tq equal 0\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_my_oldorig) {
|
if (is_my_oldorig) {
|
||||||
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all rebroadcast echos (sender: %pM) \n", ethhdr->h_source);
|
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n", ethhdr->h_source);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -484,7 +484,7 @@ void receive_bat_packet(struct ethhdr *ethhdr,
|
||||||
!(compare_orig(batman_packet->orig, batman_packet->prev_sender)) &&
|
!(compare_orig(batman_packet->orig, batman_packet->prev_sender)) &&
|
||||||
(compare_orig(orig_node->router->addr,
|
(compare_orig(orig_node->router->addr,
|
||||||
orig_node->router->orig_node->router->addr))) {
|
orig_node->router->orig_node->router->addr))) {
|
||||||
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM) \n", ethhdr->h_source);
|
bat_dbg(DBG_BATMAN, "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n", ethhdr->h_source);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -290,7 +290,7 @@ void schedule_forward_packet(struct orig_node *orig_node,
|
||||||
unsigned long send_time;
|
unsigned long send_time;
|
||||||
|
|
||||||
if (batman_packet->ttl <= 1) {
|
if (batman_packet->ttl <= 1) {
|
||||||
bat_dbg(DBG_BATMAN, "ttl exceeded \n");
|
bat_dbg(DBG_BATMAN, "ttl exceeded\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -318,7 +318,7 @@ void schedule_forward_packet(struct orig_node *orig_node,
|
||||||
/* apply hop penalty */
|
/* apply hop penalty */
|
||||||
batman_packet->tq = hop_penalty(batman_packet->tq);
|
batman_packet->tq = hop_penalty(batman_packet->tq);
|
||||||
|
|
||||||
bat_dbg(DBG_BATMAN, "Forwarding packet: tq_orig: %i, tq_avg: %i, tq_forw: %i, ttl_orig: %i, ttl_forw: %i \n",
|
bat_dbg(DBG_BATMAN, "Forwarding packet: tq_orig: %i, tq_avg: %i, tq_forw: %i, ttl_orig: %i, ttl_forw: %i\n",
|
||||||
in_tq, tq_avg, batman_packet->tq, in_ttl - 1,
|
in_tq, tq_avg, batman_packet->tq, in_ttl - 1,
|
||||||
batman_packet->ttl);
|
batman_packet->ttl);
|
||||||
|
|
||||||
|
|
|
@ -77,11 +77,11 @@ void hna_local_add(uint8_t *addr)
|
||||||
MAC-flooding. */
|
MAC-flooding. */
|
||||||
if ((num_hna + 1 > (ETH_DATA_LEN - BAT_PACKET_LEN) / ETH_ALEN) ||
|
if ((num_hna + 1 > (ETH_DATA_LEN - BAT_PACKET_LEN) / ETH_ALEN) ||
|
||||||
(num_hna + 1 > 255)) {
|
(num_hna + 1 > 255)) {
|
||||||
bat_dbg(DBG_ROUTES, "Can't add new local hna entry (%pM): number of local hna entries exceeds packet size \n", addr);
|
bat_dbg(DBG_ROUTES, "Can't add new local hna entry (%pM): number of local hna entries exceeds packet size\n", addr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bat_dbg(DBG_ROUTES, "Creating new local hna entry: %pM \n",
|
bat_dbg(DBG_ROUTES, "Creating new local hna entry: %pM\n",
|
||||||
addr);
|
addr);
|
||||||
|
|
||||||
hna_local_entry = kmalloc(sizeof(struct hna_local_entry), GFP_ATOMIC);
|
hna_local_entry = kmalloc(sizeof(struct hna_local_entry), GFP_ATOMIC);
|
||||||
|
@ -108,7 +108,7 @@ void hna_local_add(uint8_t *addr)
|
||||||
hna_local_hash->size * 2);
|
hna_local_hash->size * 2);
|
||||||
|
|
||||||
if (swaphash == NULL)
|
if (swaphash == NULL)
|
||||||
printk(KERN_ERR "batman-adv:Couldn't resize local hna hash table \n");
|
printk(KERN_ERR "batman-adv:Couldn't resize local hna hash table\n");
|
||||||
else
|
else
|
||||||
hna_local_hash = swaphash;
|
hna_local_hash = swaphash;
|
||||||
}
|
}
|
||||||
|
@ -197,7 +197,7 @@ static void _hna_local_del(void *data)
|
||||||
static void hna_local_del(struct hna_local_entry *hna_local_entry,
|
static void hna_local_del(struct hna_local_entry *hna_local_entry,
|
||||||
char *message)
|
char *message)
|
||||||
{
|
{
|
||||||
bat_dbg(DBG_ROUTES, "Deleting local hna entry (%pM): %s \n",
|
bat_dbg(DBG_ROUTES, "Deleting local hna entry (%pM): %s\n",
|
||||||
hna_local_entry->addr, message);
|
hna_local_entry->addr, message);
|
||||||
|
|
||||||
hash_remove(hna_local_hash, hna_local_entry->addr);
|
hash_remove(hna_local_hash, hna_local_entry->addr);
|
||||||
|
@ -340,7 +340,7 @@ void hna_global_add_orig(struct orig_node *orig_node,
|
||||||
hna_global_hash->size * 2);
|
hna_global_hash->size * 2);
|
||||||
|
|
||||||
if (swaphash == NULL)
|
if (swaphash == NULL)
|
||||||
printk(KERN_ERR "batman-adv:Couldn't resize global hna hash table \n");
|
printk(KERN_ERR "batman-adv:Couldn't resize global hna hash table\n");
|
||||||
else
|
else
|
||||||
hna_global_hash = swaphash;
|
hna_global_hash = swaphash;
|
||||||
}
|
}
|
||||||
|
@ -365,7 +365,7 @@ int hna_global_fill_buffer_text(unsigned char *buff, int buff_len)
|
||||||
|
|
||||||
bytes_written += snprintf(buff + bytes_written,
|
bytes_written += snprintf(buff + bytes_written,
|
||||||
(2 * ETH_STR_LEN) + 10,
|
(2 * ETH_STR_LEN) + 10,
|
||||||
" * %02x:%02x:%02x:%02x:%02x:%02x via %02x:%02x:%02x:%02x:%02x:%02x \n",
|
" * %02x:%02x:%02x:%02x:%02x:%02x via %02x:%02x:%02x:%02x:%02x:%02x\n",
|
||||||
hna_global_entry->addr[0],
|
hna_global_entry->addr[0],
|
||||||
hna_global_entry->addr[1],
|
hna_global_entry->addr[1],
|
||||||
hna_global_entry->addr[2],
|
hna_global_entry->addr[2],
|
||||||
|
@ -388,7 +388,7 @@ int hna_global_fill_buffer_text(unsigned char *buff, int buff_len)
|
||||||
void _hna_global_del_orig(struct hna_global_entry *hna_global_entry,
|
void _hna_global_del_orig(struct hna_global_entry *hna_global_entry,
|
||||||
char *message)
|
char *message)
|
||||||
{
|
{
|
||||||
bat_dbg(DBG_ROUTES, "Deleting global hna entry %pM (via %pM): %s \n",
|
bat_dbg(DBG_ROUTES, "Deleting global hna entry %pM (via %pM): %s\n",
|
||||||
hna_global_entry->addr, hna_global_entry->orig_node->orig,
|
hna_global_entry->addr, hna_global_entry->orig_node->orig,
|
||||||
message);
|
message);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue