[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20180109092919.ndrvscdllrmzz6jo@mwanda>
Date: Tue, 9 Jan 2018 12:29:19 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Al Viro <viro@...iv.linux.org.uk>
Cc: Ingo Molnar <mingo@...nel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Jonathan Haws <jhaws@....usu.edu>,
Deepa Dinamani <deepa.kernel@...il.com>,
linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org
Subject: [patch] ipc/mqueue: Add missing error code in init_mqueue_fs()
We should propogate the error code here but we accidentally return
success.
Fixes: 946086abeddf ("mqueue: switch to on-demand creation of internal mount")
Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 89b5c53e0203..70423581dc92 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -1610,8 +1610,10 @@ static int __init init_mqueue_fs(void)
goto out_filesystem;
m = kern_mount_data(&mqueue_fs_type, &init_ipc_ns);
- if (IS_ERR(m))
+ if (IS_ERR(m)) {
+ error = PTR_ERR(m);
goto out_filesystem;
+ }
init_ipc_ns.mq_mnt = m;
return 0;
Powered by blists - more mailing lists