mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] mqueue: sys_mq_open: do not call mnt_drop_write() if read-only
@ 2013-03-19  9:31 Vladimir Davydov
  2013-03-19 21:09 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Davydov @ 2013-03-19  9:31 UTC (permalink / raw)
  To: Al Viro
  Cc: linux-kernel, devel, Doug Ledford, Andrew Morton,
	KOSAKI Motohiro, Eric W. Biederman

mnt_drop_write() must be called only if mnt_want_write() succeeded,
otherwise the mnt_writers counter will diverge.

Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
Cc: Doug Ledford <dledford@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
---
 ipc/mqueue.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index e5c4f60..3953fda 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -840,7 +840,8 @@ out_putfd:
 		fd = error;
 	}
 	mutex_unlock(&root->d_inode->i_mutex);
-	mnt_drop_write(mnt);
+	if (!ro)
+		mnt_drop_write(mnt);
 out_putname:
 	putname(name);
 	return fd;
-- 
1.7.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-19 22:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-19  9:31 [PATCH] mqueue: sys_mq_open: do not call mnt_drop_write() if read-only Vladimir Davydov
2013-03-19 21:09 ` Andrew Morton
2013-03-19 22:04   ` Vladimir Davydov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®