1
0
Fork 0

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 <consul.kautuk@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
hifive-unleashed-5.1
Kautuk Consul 2011-09-23 22:08:29 +05:30 committed by Jiri Kosina
parent 435a95c5c8
commit a127e2d518
1 changed files with 0 additions and 2 deletions

View File

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