public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] anonfd: Make file read-only if fops->write is not set
@ 2009-12-18  5:46 Roland Dreier
  2009-12-18  6:10 ` Al Viro
  0 siblings, 1 reply; 6+ messages in thread
From: Roland Dreier @ 2009-12-18  5:46 UTC (permalink / raw)
  To: Davide Libenzi; +Cc: linux-kernel, Al Viro

It seems a couple places such as arch/ia64/kernel/perfmon.c and
drivers/infiniband/core/uverbs_main.c could use anon_inode_getfile()
instead of a private pseudo-fs + alloc_file(), if only there were a way
to get a read-only file.  So provide this by having anon_inode_getfile()
create a read-only file if the fops->write passed in is NULL.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
---
Hi Davide,

Would you consider a patch like this?  I'm not sure if this is the most
elegant way to handle this -- perhaps extending the flags parameter to
say whether we want writable or not would be better.  Let me know if you
would prefer that.

Thanks,
  Roland

 fs/anon_inodes.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c
index 2c99459..097f91f 100644
--- a/fs/anon_inodes.c
+++ b/fs/anon_inodes.c
@@ -121,13 +121,13 @@ struct file *anon_inode_getfile(const char *name,
 	d_instantiate(path.dentry, anon_inode_inode);
 
 	error = -ENFILE;
-	file = alloc_file(&path, FMODE_READ | FMODE_WRITE, fops);
+	file = alloc_file(&path, FMODE_READ | (fops->write ? FMODE_WRITE : 0), fops);
 	if (!file)
 		goto err_dput;
 	file->f_mapping = anon_inode_inode->i_mapping;
 
 	file->f_pos = 0;
-	file->f_flags = O_RDWR | (flags & O_NONBLOCK);
+	file->f_flags = (fops->write ? O_RDWR : O_RDONLY) | (flags & O_NONBLOCK);
 	file->f_version = 0;
 	file->private_data = priv;
 

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

end of thread, other threads:[~2009-12-18 19:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-18  5:46 [PATCH] anonfd: Make file read-only if fops->write is not set Roland Dreier
2009-12-18  6:10 ` Al Viro
2009-12-18 17:12   ` Davide Libenzi
2009-12-18 17:41   ` [PATCH v2] " Roland Dreier
2009-12-18 18:59     ` Davide Libenzi
2009-12-18 19:14       ` Al Viro

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