diff options
| author | Linus Torvalds <[email protected]> | 2019-09-30 02:42:07 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2019-09-30 02:42:07 +0000 |
| commit | 1eb80d6ffb1759968374606c1e36ea88e043e66d (patch) | |
| tree | 94e24dd276ac0016e7934dabb8763624f55a8c5a /fs/afs/inode.c | |
| parent | Merge tag '5.4-rc-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
| parent | afs dynroot: switch to simple_dir_operations (diff) | |
| download | kernel-1eb80d6ffb1759968374606c1e36ea88e043e66d.tar.gz kernel-1eb80d6ffb1759968374606c1e36ea88e043e66d.zip | |
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull more vfs updates from Al Viro:
"A couple of misc patches"
* 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
afs dynroot: switch to simple_dir_operations
fs/handle.c - fix up kerneldoc
Diffstat (limited to 'fs/afs/inode.c')
| -rw-r--r-- | fs/afs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/inode.c b/fs/afs/inode.c index 7b1c18c32f48..46d2d7cb461d 100644 --- a/fs/afs/inode.c +++ b/fs/afs/inode.c @@ -443,7 +443,7 @@ struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root) inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO; if (root) { inode->i_op = &afs_dynroot_inode_operations; - inode->i_fop = &afs_dynroot_file_operations; + inode->i_fop = &simple_dir_operations; } else { inode->i_op = &afs_autocell_inode_operations; } |
