aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext2/ext2.h
diff options
context:
space:
mode:
authorDave Kleikamp <shaggy@austin.ibm.com>2005-07-13 09:57:38 -0400
committerDave Kleikamp <shaggy@austin.ibm.com>2005-07-13 09:57:38 -0400
commitf7f24758ac98a506770bc5910d33567610fa3403 (patch)
treeff7fad3d01bf9dc2e2e54b908f9fca4891e1ee72 /fs/ext2/ext2.h
parentb38a3ab3d1bb0dc3288f73903d4dc4672b5cd2d0 (diff)
parentc32511e2718618f0b53479eb36e07439aa363a74 (diff)
Merge with /home/shaggy/git/linus-clean/
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Diffstat (limited to 'fs/ext2/ext2.h')
-rw-r--r--fs/ext2/ext2.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/ext2/ext2.h b/fs/ext2/ext2.h
index 8f0fd726c3f1..e977f8566d14 100644
--- a/fs/ext2/ext2.h
+++ b/fs/ext2/ext2.h
@@ -2,6 +2,15 @@
2#include <linux/ext2_fs.h> 2#include <linux/ext2_fs.h>
3 3
4/* 4/*
5 * ext2 mount options
6 */
7struct ext2_mount_options {
8 unsigned long s_mount_opt;
9 uid_t s_resuid;
10 gid_t s_resgid;
11};
12
13/*
5 * second extended file system inode data in memory 14 * second extended file system inode data in memory
6 */ 15 */
7struct ext2_inode_info { 16struct ext2_inode_info {
@@ -147,9 +156,11 @@ extern struct file_operations ext2_dir_operations;
147/* file.c */ 156/* file.c */
148extern struct inode_operations ext2_file_inode_operations; 157extern struct inode_operations ext2_file_inode_operations;
149extern struct file_operations ext2_file_operations; 158extern struct file_operations ext2_file_operations;
159extern struct file_operations ext2_xip_file_operations;
150 160
151/* inode.c */ 161/* inode.c */
152extern struct address_space_operations ext2_aops; 162extern struct address_space_operations ext2_aops;
163extern struct address_space_operations ext2_aops_xip;
153extern struct address_space_operations ext2_nobh_aops; 164extern struct address_space_operations ext2_nobh_aops;
154 165
155/* namei.c */ 166/* namei.c */