namei.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) namei.c (00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b)
1/*
2 * QNX4 file system, Linux implementation.
3 *
4 * Version : 0.2.1
5 *
6 * Using parts of the xiafs filesystem.
7 *
8 * History :

--- 81 unchanged lines hidden (view full) ---

90 offset = 0;
91 blkofs++;
92 }
93 brelse(bh);
94 *res_dir = NULL;
95 return NULL;
96}
97
1/*
2 * QNX4 file system, Linux implementation.
3 *
4 * Version : 0.2.1
5 *
6 * Using parts of the xiafs filesystem.
7 *
8 * History :

--- 81 unchanged lines hidden (view full) ---

90 offset = 0;
91 blkofs++;
92 }
93 brelse(bh);
94 *res_dir = NULL;
95 return NULL;
96}
97
98struct dentry * qnx4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
98struct dentry * qnx4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
99{
100 int ino;
101 struct qnx4_inode_entry *de;
102 struct qnx4_link_info *lnk;
103 struct buffer_head *bh;
104 const char *name = dentry->d_name.name;
105 int len = dentry->d_name.len;
106 struct inode *foundinode = NULL;

--- 23 unchanged lines hidden ---
99{
100 int ino;
101 struct qnx4_inode_entry *de;
102 struct qnx4_link_info *lnk;
103 struct buffer_head *bh;
104 const char *name = dentry->d_name.name;
105 int len = dentry->d_name.len;
106 struct inode *foundinode = NULL;

--- 23 unchanged lines hidden ---