diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-03-05 02:49:48 +0100 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2007-03-26 18:14:44 +0000 |
commit | d32b687e2e16e8174e88f186c3bae39a13e57b3d (patch) | |
tree | 543bc55e1322487df510761cc57a92db46a65751 /fs/9p/vfs_file.c | |
parent | e0f2e3a06be513352cb4955313ed7e55909acd84 (diff) | |
download | blackbird-op-linux-d32b687e2e16e8174e88f186c3bae39a13e57b3d.tar.gz blackbird-op-linux-d32b687e2e16e8174e88f186c3bae39a13e57b3d.zip |
9p: make struct v9fs_cached_file_operations static
This patch makes te needlessly global struct v9fs_cached_file_operations
static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p/vfs_file.c')
-rw-r--r-- | fs/9p/vfs_file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c index 653dfa5b2531..c7b677253843 100644 --- a/fs/9p/vfs_file.c +++ b/fs/9p/vfs_file.c @@ -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 @@ v9fs_file_write(struct file *filp, const char __user * data, 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, |