From: Kautuk Consul Date: Fri, 23 Sep 2011 16:38:29 +0000 (+0530) Subject: namespace: mnt_want_write: Remove unused label 'out' X-Git-Tag: next-20111109~15^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a127e2d518269ad95364639c293c8a5c1a1cdd3c;p=karo-tx-linux.git namespace: mnt_want_write: Remove unused label 'out' I was studying the code and I saw that the out label is not being used at all so I removed it and its usage from the function. Signed-off-by: Kautuk Consul Signed-off-by: Jiri Kosina --- diff --git a/fs/namespace.c b/fs/namespace.c index b4febb29d3bb..9a1ddcda655f 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -352,9 +352,7 @@ int mnt_want_write(struct vfsmount *mnt) if (__mnt_is_readonly(mnt)) { mnt_dec_writers(mnt); ret = -EROFS; - goto out; } -out: preempt_enable(); return ret; }