bpf, inode: Remove second initialization of the bpf_preload_lock
bpf_preload_lock is already defined with DEFINE_MUTEX(). There is no need to initialize it again. Remove the extraneous initialization. Signed-off-by: Muhammad Usama Anjum <musamaanjum@gmail.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20210405194904.GA148013@LEGION
This commit is contained in:
parent
928dc40680
commit
957dca3df6
|
@ -816,8 +816,6 @@ static int __init bpf_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_init(&bpf_preload_lock);
|
|
||||||
|
|
||||||
ret = sysfs_create_mount_point(fs_kobj, "bpf");
|
ret = sysfs_create_mount_point(fs_kobj, "bpf");
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue