diff options
author | Sedat Dilek <sedat.dilek@googlemail.com> | 2012-04-28 14:13:53 +0200 |
---|---|---|
committer | Pavel Shilovsky <pshilovsky@samba.org> | 2012-05-23 12:33:16 +0400 |
commit | ea4b574028f0c30d736ab6b13b518af8533a86c4 (patch) | |
tree | f7a4c661f45446f4596ea6b18cdde6a1a792ef3e /fs/cifs | |
parent | 1080ef758fb87f286b25277d8373e680a9e73363 (diff) | |
download | linux-3.10-ea4b574028f0c30d736ab6b13b518af8533a86c4.tar.gz linux-3.10-ea4b574028f0c30d736ab6b13b518af8533a86c4.tar.bz2 linux-3.10-ea4b574028f0c30d736ab6b13b518af8533a86c4.zip |
cifs: Fix comment as d_alloc_root() is replaced by d_make_root()
For more details see <file: Documentation/filesystems/porting>.
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index d6660f7e42f..3c9c794ede5 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -124,7 +124,7 @@ cifs_read_super(struct super_block *sb) goto out_no_root; } - /* do that *after* d_alloc_root() - we want NULL ->d_op for root here */ + /* do that *after* d_make_root() - we want NULL ->d_op for root here */ if (cifs_sb_master_tcon(cifs_sb)->nocase) sb->s_d_op = &cifs_ci_dentry_ops; else |