Commit f473f4f2 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

mount: Use BUG() instead of BUG_ON(1)

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent b3a050e1
......@@ -361,7 +361,7 @@ out_unlock:
ret = sigprocmask(SIG_SETMASK, &oldmask, NULL);
if (ret == -1) {
pr_perror("Can not set mask of blocked signals");
BUG_ON(1);
BUG();
}
return status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment