vserver 1.9.3
[linux-2.6.git] / fs / efs / inode.c
index 2265e2a..180607f 100644 (file)
@@ -13,8 +13,6 @@
 #include <linux/module.h>
 #include <linux/fs.h>
 
-
-extern int efs_get_block(struct inode *, sector_t, struct buffer_head *, int);
 static int efs_readpage(struct file *file, struct page *page)
 {
        return block_read_full_page(page,efs_get_block);
@@ -23,7 +21,7 @@ static sector_t _efs_bmap(struct address_space *mapping, sector_t block)
 {
        return generic_block_bmap(mapping,block,efs_get_block);
 }
-struct address_space_operations efs_aops = {
+static struct address_space_operations efs_aops = {
        .readpage = efs_readpage,
        .sync_page = block_sync_page,
        .bmap = _efs_bmap