namei.c (d4bbf7e7759afc172e2bfbc5c416324590049cdd) namei.c (00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b)
1/*
2 * linux/fs/isofs/namei.c
3 *
4 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
5 *
6 * (C) 1991 Linus Torvalds - minix filesystem
7 */
8

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

158 brelse(bh);
159 return 1;
160 }
161 }
162 brelse(bh);
163 return 0;
164}
165
1/*
2 * linux/fs/isofs/namei.c
3 *
4 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
5 *
6 * (C) 1991 Linus Torvalds - minix filesystem
7 */
8

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

158 brelse(bh);
159 return 1;
160 }
161 }
162 brelse(bh);
163 return 0;
164}
165
166struct dentry *isofs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
166struct dentry *isofs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
167{
168 int found;
169 unsigned long uninitialized_var(block);
170 unsigned long uninitialized_var(offset);
171 struct inode *inode;
172 struct page *page;
173
174 page = alloc_page(GFP_USER);

--- 13 unchanged lines hidden ---
167{
168 int found;
169 unsigned long uninitialized_var(block);
170 unsigned long uninitialized_var(offset);
171 struct inode *inode;
172 struct page *page;
173
174 page = alloc_page(GFP_USER);

--- 13 unchanged lines hidden ---