Commit 8b1919a1 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

fs/freevxfs/: proper externs

Move the extern declarations of several structs to vxfs_extern.h
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Acked-by: default avatarChristoph Hellwig <hch@infradead.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4b0a8da7
...@@ -50,7 +50,11 @@ extern daddr_t vxfs_bmap1(struct inode *, long); ...@@ -50,7 +50,11 @@ extern daddr_t vxfs_bmap1(struct inode *, long);
/* vxfs_fshead.c */ /* vxfs_fshead.c */
extern int vxfs_read_fshead(struct super_block *); extern int vxfs_read_fshead(struct super_block *);
/* vxfs_immed.c */
extern const struct inode_operations vxfs_immed_symlink_iops;
/* vxfs_inode.c */ /* vxfs_inode.c */
extern const struct address_space_operations vxfs_immed_aops;
extern struct kmem_cache *vxfs_inode_cachep; extern struct kmem_cache *vxfs_inode_cachep;
extern void vxfs_dumpi(struct vxfs_inode_info *, ino_t); extern void vxfs_dumpi(struct vxfs_inode_info *, ino_t);
extern struct inode * vxfs_get_fake_inode(struct super_block *, extern struct inode * vxfs_get_fake_inode(struct super_block *,
...@@ -69,6 +73,7 @@ extern const struct file_operations vxfs_dir_operations; ...@@ -69,6 +73,7 @@ extern const struct file_operations vxfs_dir_operations;
extern int vxfs_read_olt(struct super_block *, u_long); extern int vxfs_read_olt(struct super_block *, u_long);
/* vxfs_subr.c */ /* vxfs_subr.c */
extern const struct address_space_operations vxfs_aops;
extern struct page * vxfs_get_page(struct address_space *, u_long); extern struct page * vxfs_get_page(struct address_space *, u_long);
extern void vxfs_put_page(struct page *); extern void vxfs_put_page(struct page *);
extern struct buffer_head * vxfs_bread(struct inode *, int); extern struct buffer_head * vxfs_bread(struct inode *, int);
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <linux/namei.h> #include <linux/namei.h>
#include "vxfs.h" #include "vxfs.h"
#include "vxfs_extern.h"
#include "vxfs_inode.h" #include "vxfs_inode.h"
......
...@@ -41,11 +41,6 @@ ...@@ -41,11 +41,6 @@
#include "vxfs_extern.h" #include "vxfs_extern.h"
extern const struct address_space_operations vxfs_aops;
extern const struct address_space_operations vxfs_immed_aops;
extern const struct inode_operations vxfs_immed_symlink_iops;
struct kmem_cache *vxfs_inode_cachep; struct kmem_cache *vxfs_inode_cachep;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment