summaryrefslogtreecommitdiffstats
path: root/fs/efs/namei.c
diff options
context:
space:
mode:
authorAl Smith <Al.Smith@aeschi.ch.eu.org>1999-04-13 15:52:53 +0000
committerAl Smith <Al.Smith@aeschi.ch.eu.org>1999-04-13 15:52:53 +0000
commite9d2c29f0ad03e31b6264deb9605f25989791630 (patch)
tree312567059fbf6cd8fba968c9cda8ff617e219973 /fs/efs/namei.c
parentd6509c7221656060ff995b645dfc1eac582c7f31 (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/namei.c')
-rw-r--r--fs/efs/namei.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/efs/namei.c b/fs/efs/namei.c
index 088285f0c..0a70c181f 100644
--- a/fs/efs/namei.c
+++ b/fs/efs/namei.c
@@ -8,8 +8,6 @@
#include <linux/efs_fs.h>
-/* search an efs directory inode for the given name */
-
static efs_ino_t efs_find_entry(struct inode *inode, const char *name, int len) {
struct efs_inode_info *in = INODE_INFO(inode);
struct buffer_head *bh;
@@ -60,9 +58,6 @@ static efs_ino_t efs_find_entry(struct inode *inode, const char *name, int len)
return(0);
}
-
-/* get inode associated with directory entry */
-
int efs_lookup(struct inode *dir, struct dentry *dentry) {
efs_ino_t inodenum;
struct inode * inode;