diff options
author | Jeff Mahoney <jeffm@suse.com> | 2009-03-30 14:02:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 15:16:37 -0400 |
commit | 6dfede696391133eadd7ce90b61c9573ee6e5a90 (patch) | |
tree | 2051bfc5108d0e7592b8738e43f4ae972d398ccd /fs/reiserfs/namei.c | |
parent | 010f5a21a323e7383e067009a7785462883fe5ea (diff) |
reiserfs: remove IS_PRIVATE helpers
There are a number of helper functions for marking a reiserfs inode
private that were leftover from reiserfs did its own thing wrt to
private inodes. S_PRIVATE has been in the kernel for some time, so this
patch removes the helpers and uses IS_PRIVATE instead.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs/namei.c')
-rw-r--r-- | fs/reiserfs/namei.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c index 3ce3f8b1690d..c8430f1c824f 100644 --- a/fs/reiserfs/namei.c +++ b/fs/reiserfs/namei.c | |||
@@ -358,9 +358,10 @@ static struct dentry *reiserfs_lookup(struct inode *dir, struct dentry *dentry, | |||
358 | return ERR_PTR(-EACCES); | 358 | return ERR_PTR(-EACCES); |
359 | } | 359 | } |
360 | 360 | ||
361 | /* Propogate the priv_object flag so we know we're in the priv tree */ | 361 | /* Propagate the private flag so we know we're |
362 | if (is_reiserfs_priv_object(dir)) | 362 | * in the priv tree */ |
363 | reiserfs_mark_inode_private(inode); | 363 | if (IS_PRIVATE(dir)) |
364 | inode->i_flags |= S_PRIVATE; | ||
364 | } | 365 | } |
365 | reiserfs_write_unlock(dir->i_sb); | 366 | reiserfs_write_unlock(dir->i_sb); |
366 | if (retval == IO_ERROR) { | 367 | if (retval == IO_ERROR) { |