dir.c (7483d45f0aee3afc0646d185cabd4af9f6cab58c) | dir.c (00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b) |
---|---|
1/* 2 * linux/fs/hfs/dir.c 3 * 4 * Copyright (C) 1995-1997 Paul H. Hargrove 5 * (C) 2003 Ardis Technologies <roman@ardistech.com> 6 * This file may be distributed under the terms of the GNU General Public License. 7 * 8 * This file contains directory-related functions independent of which --- 4 unchanged lines hidden (view full) --- 13 14#include "hfs_fs.h" 15#include "btree.h" 16 17/* 18 * hfs_lookup() 19 */ 20static struct dentry *hfs_lookup(struct inode *dir, struct dentry *dentry, | 1/* 2 * linux/fs/hfs/dir.c 3 * 4 * Copyright (C) 1995-1997 Paul H. Hargrove 5 * (C) 2003 Ardis Technologies <roman@ardistech.com> 6 * This file may be distributed under the terms of the GNU General Public License. 7 * 8 * This file contains directory-related functions independent of which --- 4 unchanged lines hidden (view full) --- 13 14#include "hfs_fs.h" 15#include "btree.h" 16 17/* 18 * hfs_lookup() 19 */ 20static struct dentry *hfs_lookup(struct inode *dir, struct dentry *dentry, |
21 struct nameidata *nd) | 21 unsigned int flags) |
22{ 23 hfs_cat_rec rec; 24 struct hfs_find_data fd; 25 struct inode *inode = NULL; 26 int res; 27 28 hfs_find_init(HFS_SB(dir->i_sb)->cat_tree, &fd); 29 hfs_cat_build_key(dir->i_sb, fd.search_key, dir->i_ino, &dentry->d_name); --- 287 unchanged lines hidden --- | 22{ 23 hfs_cat_rec rec; 24 struct hfs_find_data fd; 25 struct inode *inode = NULL; 26 int res; 27 28 hfs_find_init(HFS_SB(dir->i_sb)->cat_tree, &fd); 29 hfs_cat_build_key(dir->i_sb, fd.search_key, dir->i_ino, &dentry->d_name); --- 287 unchanged lines hidden --- |