Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 351476
b: refs/heads/master
c: 28500f0
h: refs/heads/master
v: v3
  • Loading branch information
Marek Lindner authored and Antonio Quartulli committed Jan 19, 2013
1 parent b56c3a1 commit 9487cfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 015b4ae4a36bb5ee62187ac6e2f193e87d225516
refs/heads/master: 28500f07abf120e5609a68d6eb2f78350562381d
2 changes: 1 addition & 1 deletion trunk/net/batman-adv/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ struct batadv_vis_info_entry {
uint8_t quality; /* quality = 0 client */
} __packed;

struct batadv_recvlist_node {
struct batadv_vis_recvlist_node {
struct list_head list;
uint8_t mac[ETH_ALEN];
};
Expand Down
6 changes: 3 additions & 3 deletions trunk/net/batman-adv/vis.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static void batadv_free_info(struct kref *ref)
{
struct batadv_vis_info *info;
struct batadv_priv *bat_priv;
struct batadv_recvlist_node *entry, *tmp;
struct batadv_vis_recvlist_node *entry, *tmp;

info = container_of(ref, struct batadv_vis_info, refcount);
bat_priv = info->bat_priv;
Expand Down Expand Up @@ -305,7 +305,7 @@ static void batadv_send_list_del(struct batadv_vis_info *info)
static void batadv_recv_list_add(struct batadv_priv *bat_priv,
struct list_head *recv_list, const char *mac)
{
struct batadv_recvlist_node *entry;
struct batadv_vis_recvlist_node *entry;

entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
if (!entry)
Expand All @@ -322,7 +322,7 @@ static int batadv_recv_list_is_in(struct batadv_priv *bat_priv,
const struct list_head *recv_list,
const char *mac)
{
const struct batadv_recvlist_node *entry;
const struct batadv_vis_recvlist_node *entry;

spin_lock_bh(&bat_priv->vis.list_lock);
list_for_each_entry(entry, recv_list, list) {
Expand Down

0 comments on commit 9487cfc

Please sign in to comment.