Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228169
b: refs/heads/master
c: b4abfcd
h: refs/heads/master
i:
  228167: 4237397
v: v3
  • Loading branch information
Marek Lindner authored and Greg Kroah-Hartman committed Nov 29, 2010
1 parent 76cb5d9 commit 5b22f41
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 33 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: bd27509f49ab841bc10fd604ccd9e7f9914b7120
refs/heads/master: b4abfcd4c79ec12340b4c68e3a211badd3c90e20
12 changes: 6 additions & 6 deletions trunk/drivers/staging/batman-adv/bat_sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static ssize_t show_mesh_iface(struct kobject *kobj, struct attribute *attr,
length = sprintf(buff, "%s\n", batman_if->if_status == IF_NOT_IN_USE ?
"none" : batman_if->soft_iface->name);

hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);

return length;
}
Expand All @@ -436,7 +436,7 @@ static ssize_t store_mesh_iface(struct kobject *kobj, struct attribute *attr,
if (strlen(buff) >= IFNAMSIZ) {
pr_err("Invalid parameter for 'mesh_iface' setting received: "
"interface name too long '%s'\n", buff);
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);
return -EINVAL;
}

Expand All @@ -447,15 +447,15 @@ static ssize_t store_mesh_iface(struct kobject *kobj, struct attribute *attr,

if ((batman_if->if_status == status_tmp) || ((batman_if->soft_iface) &&
(strncmp(batman_if->soft_iface->name, buff, IFNAMSIZ) == 0))) {
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);
return count;
}

if (status_tmp == IF_NOT_IN_USE) {
rtnl_lock();
hardif_disable_interface(batman_if);
rtnl_unlock();
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);
return count;
}

Expand All @@ -467,7 +467,7 @@ static ssize_t store_mesh_iface(struct kobject *kobj, struct attribute *attr,
}

ret = hardif_enable_interface(batman_if, buff);
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);

return ret;
}
Expand Down Expand Up @@ -502,7 +502,7 @@ static ssize_t show_iface_status(struct kobject *kobj, struct attribute *attr,
break;
}

hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);

return length;
}
Expand Down
30 changes: 14 additions & 16 deletions trunk/drivers/staging/batman-adv/hard-interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct batman_if *get_batman_if_by_netdev(struct net_device *net_dev)

out:
if (batman_if)
hardif_hold(batman_if);
kref_get(&batman_if->refcount);

rcu_read_unlock();
return batman_if;
Expand Down Expand Up @@ -100,7 +100,7 @@ static struct batman_if *get_active_batman_if(struct net_device *soft_iface)

out:
if (batman_if)
hardif_hold(batman_if);
kref_get(&batman_if->refcount);

rcu_read_unlock();
return batman_if;
Expand All @@ -125,13 +125,13 @@ static void set_primary_if(struct bat_priv *bat_priv,
struct batman_if *old_if;

if (batman_if)
hardif_hold(batman_if);
kref_get(&batman_if->refcount);

old_if = bat_priv->primary_if;
bat_priv->primary_if = batman_if;

if (old_if)
hardif_put(old_if);
kref_put(&old_if->refcount, hardif_free_ref);

if (!bat_priv->primary_if)
return;
Expand Down Expand Up @@ -315,7 +315,7 @@ int hardif_enable_interface(struct batman_if *batman_if, char *iface_name)
batman_if->batman_adv_ptype.type = __constant_htons(ETH_P_BATMAN);
batman_if->batman_adv_ptype.func = batman_skb_recv;
batman_if->batman_adv_ptype.dev = batman_if->net_dev;
hardif_hold(batman_if);
kref_get(&batman_if->refcount);
dev_add_pack(&batman_if->batman_adv_ptype);

atomic_set(&batman_if->seqno, 1);
Expand Down Expand Up @@ -374,7 +374,7 @@ void hardif_disable_interface(struct batman_if *batman_if)
bat_info(batman_if->soft_iface, "Removing interface: %s\n",
batman_if->net_dev->name);
dev_remove_pack(&batman_if->batman_adv_ptype);
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);

bat_priv->num_ifaces--;
orig_hash_del_if(batman_if, bat_priv->num_ifaces);
Expand All @@ -386,7 +386,7 @@ void hardif_disable_interface(struct batman_if *batman_if)
set_primary_if(bat_priv, new_if);

if (new_if)
hardif_put(new_if);
kref_put(&new_if->refcount, hardif_free_ref);
}

kfree(batman_if->packet_buff);
Expand Down Expand Up @@ -432,8 +432,7 @@ static struct batman_if *hardif_add_interface(struct net_device *net_dev)
batman_if->soft_iface = NULL;
batman_if->if_status = IF_NOT_IN_USE;
INIT_LIST_HEAD(&batman_if->list);
atomic_set(&batman_if->refcnt, 0);
hardif_hold(batman_if);
kref_init(&batman_if->refcount);

check_known_mac_addr(batman_if->net_dev);

Expand All @@ -442,7 +441,7 @@ static struct batman_if *hardif_add_interface(struct net_device *net_dev)
spin_unlock(&if_list_lock);

/* extra reference for return */
hardif_hold(batman_if);
kref_get(&batman_if->refcount);
return batman_if;

free_if:
Expand All @@ -465,7 +464,7 @@ static void hardif_remove_interface(struct batman_if *batman_if)
batman_if->if_status = IF_TO_BE_REMOVED;
synchronize_rcu();
sysfs_del_hardif(&batman_if->hardif_obj);
hardif_put(batman_if);
kref_put(&batman_if->refcount, hardif_free_ref);
}

void hardif_remove_interfaces(void)
Expand Down Expand Up @@ -522,10 +521,8 @@ static int hard_if_event(struct notifier_block *this,
update_min_mtu(batman_if->soft_iface);
break;
case NETDEV_CHANGEADDR:
if (batman_if->if_status == IF_NOT_IN_USE) {
hardif_put(batman_if);
goto out;
}
if (batman_if->if_status == IF_NOT_IN_USE)
goto hardif_put;

check_known_mac_addr(batman_if->net_dev);
update_mac_addresses(batman_if);
Expand All @@ -537,8 +534,9 @@ static int hard_if_event(struct notifier_block *this,
default:
break;
};
hardif_put(batman_if);

hardif_put:
kref_put(&batman_if->refcount, hardif_free_ref);
out:
return NOTIFY_DONE;
}
Expand Down
14 changes: 5 additions & 9 deletions trunk/drivers/staging/batman-adv/hard-interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,13 @@ int batman_skb_recv(struct sk_buff *skb,
int hardif_min_mtu(struct net_device *soft_iface);
void update_min_mtu(struct net_device *soft_iface);

static inline void hardif_hold(struct batman_if *batman_if)
static inline void hardif_free_ref(struct kref *refcount)
{
atomic_inc(&batman_if->refcnt);
}
struct batman_if *batman_if;

static inline void hardif_put(struct batman_if *batman_if)
{
if (atomic_dec_and_test(&batman_if->refcnt)) {
dev_put(batman_if->net_dev);
kfree(batman_if);
}
batman_if = container_of(refcount, struct batman_if, refcount);
dev_put(batman_if->net_dev);
kfree(batman_if);
}

#endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */
2 changes: 1 addition & 1 deletion trunk/drivers/staging/batman-adv/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct batman_if {
unsigned char *packet_buff;
int packet_len;
struct kobject *hardif_obj;
atomic_t refcnt;
struct kref refcount;
struct packet_type batman_adv_ptype;
struct net_device *soft_iface;
};
Expand Down

0 comments on commit 5b22f41

Please sign in to comment.