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>
This commit is contained in:
alex.bluesman.smirnov@gmail.com 2012-04-25 23:24:58 +00:00 коммит произвёл David S. Miller
Родитель 8deff4af87
Коммит 768f7c7c12
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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;