Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a127e2d5 authored by Kautuk Consul's avatar Kautuk Consul Committed by Jiri Kosina
Browse files

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: default avatarKautuk Consul <consul.kautuk@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 435a95c5
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
}