diff options
author | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-04-13 15:52:53 +0000 |
---|---|---|
committer | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-04-13 15:52:53 +0000 |
commit | e9d2c29f0ad03e31b6264deb9605f25989791630 (patch) | |
tree | 312567059fbf6cd8fba968c9cda8ff617e219973 /fs/efs/symlink.c | |
parent | d6509c7221656060ff995b645dfc1eac582c7f31 (diff) |
bug fixes: block/char devices fixed (NB: IRIX uses 32-bit wide dev_t,
linux only has 16-bit wide dev_t. this is apparently going to
change in linux-2.3 but for now we can't handle devices with
major or minor numbers > 255.
handling of empty directory slots has been fixed.
Diffstat (limited to 'fs/efs/symlink.c')
-rw-r--r-- | fs/efs/symlink.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/efs/symlink.c b/fs/efs/symlink.c index c1b84d12d..f17478bdb 100644 --- a/fs/efs/symlink.c +++ b/fs/efs/symlink.c @@ -9,10 +9,8 @@ #include <linux/malloc.h> #include <linux/efs_fs.h> -static int - efs_readlink(struct dentry *, char *, int); -static struct dentry * - efs_follow_link(struct dentry *, struct dentry *, unsigned int); +static int efs_readlink(struct dentry *, char *, int); +static struct dentry * efs_follow_link(struct dentry *, struct dentry *, unsigned int); struct inode_operations efs_symlink_inode_operations = { NULL, /* no symlink file-operations */ |