aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authoralex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com>2012-04-25 23:24:58 +0000
committerDavid S. Miller <davem@davemloft.net>2012-04-26 05:32:55 -0400
commit768f7c7c121e80f458a9d013b2e8b169e5dfb1e5 (patch)
treedab910f7034bdb550e9b4f91f60045e64986e500 /net/ieee802154
parent6lowpan: clean up fragments list if module unloaded (diff)
downloadlinux-dev-768f7c7c121e80f458a9d013b2e8b169e5dfb1e5.tar.xz
linux-dev-768f7c7c121e80f458a9d013b2e8b169e5dfb1e5.zip
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,
list_add_tail(&entry->list, &lowpan_devices);
mutex_unlock(&lowpan_dev_info(dev)->dev_list_mtx);
+ spin_lock_init(&flist_lock);
+
register_netdevice(dev);
return 0;