public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [-mm patch] make struct v9fs_cached_file_operations static
@ 2007-03-05  1:49 Adrian Bunk
  0 siblings, 0 replies; only message in thread
From: Adrian Bunk @ 2007-03-05  1:49 UTC (permalink / raw)
  To: Eric Van Hensbergen, rminnich, lucho; +Cc: v9fs-developer, linux-kernel

This patch makes te needlessly global struct v9fs_cached_file_operations 
static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 fs/9p/v9fs_vfs.h |    1 -
 fs/9p/vfs_file.c |    4 +++-
 2 files changed, 3 insertions(+), 2 deletions(-)

--- linux-2.6.21-rc2-mm1/fs/9p/v9fs_vfs.h.old	2007-03-04 22:02:54.000000000 +0100
+++ linux-2.6.21-rc2-mm1/fs/9p/v9fs_vfs.h	2007-03-04 22:03:00.000000000 +0100
@@ -40,7 +40,6 @@
 extern struct file_system_type v9fs_fs_type;
 extern const struct address_space_operations v9fs_addr_operations;
 extern const struct file_operations v9fs_file_operations;
-extern const struct file_operations v9fs_cached_file_operations;
 extern const struct file_operations v9fs_dir_operations;
 extern struct dentry_operations v9fs_dentry_operations;
 extern struct dentry_operations v9fs_cached_dentry_operations;
--- linux-2.6.21-rc2-mm1/fs/9p/vfs_file.c.old	2007-03-04 22:03:07.000000000 +0100
+++ linux-2.6.21-rc2-mm1/fs/9p/vfs_file.c	2007-03-04 22:03:57.000000000 +0100
@@ -42,6 +42,8 @@
 #include "v9fs_vfs.h"
 #include "fid.h"
 
+static const struct file_operations v9fs_cached_file_operations;
+
 /**
  * v9fs_file_open - open a file (or directory)
  * @inode: inode to be opened
@@ -245,7 +247,7 @@
 	return total;
 }
 
-const struct file_operations v9fs_cached_file_operations = {
+static const struct file_operations v9fs_cached_file_operations = {
 	.llseek = generic_file_llseek,
 	.read = do_sync_read,
 	.aio_read = generic_file_aio_read,


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-03-05  1:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-05  1:49 [-mm patch] make struct v9fs_cached_file_operations static Adrian Bunk

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