diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-02-12 22:04:09 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:35 -0400 |
commit | ea29c6950a0305f2af7fd4a2021a6e946ada0174 (patch) | |
tree | 00b58418afcfc0802a1c76ffcd09a7a189d6eae0 /fs/ntfs | |
parent | 48fde701aff662559b38d9a609574068f22d00fe (diff) |
ntfs: switch to d_make_root()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ntfs')
-rw-r--r-- | fs/ntfs/super.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index f907611cca73..22020d8b1ed2 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c | |||
@@ -2908,9 +2908,10 @@ static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent) | |||
2908 | ntfs_error(sb, "Failed to load system files."); | 2908 | ntfs_error(sb, "Failed to load system files."); |
2909 | goto unl_upcase_iput_tmp_ino_err_out_now; | 2909 | goto unl_upcase_iput_tmp_ino_err_out_now; |
2910 | } | 2910 | } |
2911 | if ((sb->s_root = d_alloc_root(vol->root_ino))) { | 2911 | |
2912 | /* We grab a reference, simulating an ntfs_iget(). */ | 2912 | /* We grab a reference, simulating an ntfs_iget(). */ |
2913 | ihold(vol->root_ino); | 2913 | ihold(vol->root_ino); |
2914 | if ((sb->s_root = d_make_root(vol->root_ino))) { | ||
2914 | ntfs_debug("Exiting, status successful."); | 2915 | ntfs_debug("Exiting, status successful."); |
2915 | /* Release the default upcase if it has no users. */ | 2916 | /* Release the default upcase if it has no users. */ |
2916 | mutex_lock(&ntfs_lock); | 2917 | mutex_lock(&ntfs_lock); |