diff options
author | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1997-08-06 19:14:48 +0000 |
---|---|---|
committer | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1997-08-06 19:14:48 +0000 |
commit | e2819e52a162873ff5061de81bb749831bdb5de9 (patch) | |
tree | 6067ea700202750ba335a423696f2972700e5f76 /fs/autofs/dir.c | |
parent | 17a005074429bbf143e40401f405ae4363e56828 (diff) |
Merge to 2.1.38.
IMPORTANT NOTE: I could not figure out what information is the
one that should be used for the following files (ie, those
that were in our tree, or those that came from Linus' patch),
please, check these:
include/asm-mips/jazz.h
include/asm-mips/jazzdma.h
include/asm-mips/ioctls.h
Diffstat (limited to 'fs/autofs/dir.c')
-rw-r--r-- | fs/autofs/dir.c | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/fs/autofs/dir.c b/fs/autofs/dir.c index 61900c481..59a30b0e8 100644 --- a/fs/autofs/dir.c +++ b/fs/autofs/dir.c @@ -44,16 +44,20 @@ static int autofs_dir_lookup(struct inode *dir, struct dentry * dentry) } static struct file_operations autofs_dir_operations = { - NULL, /* lseek */ + NULL, /* llseek */ NULL, /* read */ NULL, /* write */ autofs_dir_readdir, /* readdir */ - NULL, /* select */ + NULL, /* poll */ NULL, /* ioctl */ NULL, /* mmap */ NULL, /* open */ NULL, /* release */ - NULL /* fsync */ + NULL, /* fsync */ + NULL, /* fasync */ + NULL, /* check_media_change */ + NULL, /* revalidate */ + NULL /* lock */ }; struct inode_operations autofs_dir_inode_operations = { @@ -68,10 +72,14 @@ struct inode_operations autofs_dir_inode_operations = { NULL, /* mknod */ NULL, /* rename */ NULL, /* readlink */ - NULL, /* read_page */ + NULL, /* follow_link */ + NULL, /* readpage */ NULL, /* writepage */ NULL, /* bmap */ NULL, /* truncate */ - NULL /* permission */ + NULL, /* permission */ + NULL, /* smap */ + NULL, /* updatepage */ + NULL /* revalidate */ }; |