super.c (5bc65793cbf8da0d35f19ef025dda22887e79e80) | super.c (a569425512253992cc64ebf8b6d00a62f986db3e) |
---|---|
1/* 2 * super.c 3 * 4 * Copyright (c) 1999 Al Smith 5 * 6 * Portions derived from work (c) 1995,1996 Christian Vogelgsang. 7 */ 8 9#include <linux/init.h> 10#include <linux/module.h> 11#include <linux/efs_fs.h> 12#include <linux/efs_vh.h> 13#include <linux/efs_fs_sb.h> | 1/* 2 * super.c 3 * 4 * Copyright (c) 1999 Al Smith 5 * 6 * Portions derived from work (c) 1995,1996 Christian Vogelgsang. 7 */ 8 9#include <linux/init.h> 10#include <linux/module.h> 11#include <linux/efs_fs.h> 12#include <linux/efs_vh.h> 13#include <linux/efs_fs_sb.h> |
14#include <linux/exportfs.h> |
|
14#include <linux/slab.h> 15#include <linux/buffer_head.h> 16#include <linux/vfs.h> 17 18static int efs_statfs(struct dentry *dentry, struct kstatfs *buf); 19static int efs_fill_super(struct super_block *s, void *d, int silent); 20 21static int efs_get_sb(struct file_system_type *fs_type, --- 319 unchanged lines hidden --- | 15#include <linux/slab.h> 16#include <linux/buffer_head.h> 17#include <linux/vfs.h> 18 19static int efs_statfs(struct dentry *dentry, struct kstatfs *buf); 20static int efs_fill_super(struct super_block *s, void *d, int silent); 21 22static int efs_get_sb(struct file_system_type *fs_type, --- 319 unchanged lines hidden --- |