aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authoralex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com>2012-04-25 19:24:58 -0400
committerDavid S. Miller <davem@davemloft.net>2012-04-26 05:32:55 -0400
commit768f7c7c121e80f458a9d013b2e8b169e5dfb1e5 (patch)
treedab910f7034bdb550e9b4f91f60045e64986e500 /net/ieee802154
parent8deff4af8745561efd2be34ee30cc57a6f0107c6 (diff)
6lowpan: add missing spin_lock_init()
Add missing spin_lock_init() for frames list lock. Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/6lowpan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index b3021f765204..840821b90bcd 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -1168,6 +1168,8 @@ static int lowpan_newlink(struct net *src_net, struct net_device *dev,
1168 list_add_tail(&entry->list, &lowpan_devices); 1168 list_add_tail(&entry->list, &lowpan_devices);
1169 mutex_unlock(&lowpan_dev_info(dev)->dev_list_mtx); 1169 mutex_unlock(&lowpan_dev_info(dev)->dev_list_mtx);
1170 1170
1171 spin_lock_init(&flist_lock);
1172
1171 register_netdevice(dev); 1173 register_netdevice(dev);
1172 1174
1173 return 0; 1175 return 0;