[PATCH] struct path: rename Reiserfs's struct path
Rename Reiserfs's struct path to struct treepath to prevent name collision between it and struct path from fs/namei.c. Signed-off-by: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu> Cc: <reiserfs-dev@namesys.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
0cc72dc7f0
commit
fec6d055da
@@ -54,7 +54,7 @@ static int bin_search_in_dir_item(struct reiserfs_dir_entry *de, loff_t off)
|
||||
|
||||
// comment? maybe something like set de to point to what the path points to?
|
||||
static inline void set_de_item_location(struct reiserfs_dir_entry *de,
|
||||
struct path *path)
|
||||
struct treepath *path)
|
||||
{
|
||||
de->de_bh = get_last_bh(path);
|
||||
de->de_ih = get_ih(path);
|
||||
@@ -113,7 +113,7 @@ entry position in the item
|
||||
|
||||
/* The function is NOT SCHEDULE-SAFE! */
|
||||
int search_by_entry_key(struct super_block *sb, const struct cpu_key *key,
|
||||
struct path *path, struct reiserfs_dir_entry *de)
|
||||
struct treepath *path, struct reiserfs_dir_entry *de)
|
||||
{
|
||||
int retval;
|
||||
|
||||
@@ -282,7 +282,7 @@ static int linear_search_in_dir_item(struct cpu_key *key,
|
||||
// may return NAME_FOUND, NAME_FOUND_INVISIBLE, NAME_NOT_FOUND
|
||||
// FIXME: should add something like IOERROR
|
||||
static int reiserfs_find_entry(struct inode *dir, const char *name, int namelen,
|
||||
struct path *path_to_entry,
|
||||
struct treepath *path_to_entry,
|
||||
struct reiserfs_dir_entry *de)
|
||||
{
|
||||
struct cpu_key key_to_search;
|
||||
|
Reference in New Issue
Block a user