Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -10
-7
fs/afs/dynroot.c
··· 10 10 #include <linux/dns_resolver.h> 11 11 #include "internal.h" 12 12 13 - const struct file_operations afs_dynroot_file_operations = { 14 - .open = dcache_dir_open, 15 - .release = dcache_dir_close, 16 - .iterate_shared = dcache_readdir, 17 - .llseek = dcache_dir_lseek, 18 - }; 19 - 20 13 /* 21 14 * Probe to see if a cell may exist. This prevents positive dentries from 22 15 * being created unnecessarily.
+1 -1
fs/afs/inode.c
··· 443 443 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO; 444 444 if (root) { 445 445 inode->i_op = &afs_dynroot_inode_operations; 446 - inode->i_fop = &afs_dynroot_file_operations; 446 + inode->i_fop = &simple_dir_operations; 447 447 } else { 448 448 inode->i_op = &afs_autocell_inode_operations; 449 449 }
-1
fs/afs/internal.h
··· 910 910 /* 911 911 * dynroot.c 912 912 */ 913 - extern const struct file_operations afs_dynroot_file_operations; 914 913 extern const struct inode_operations afs_dynroot_inode_operations; 915 914 extern const struct dentry_operations afs_dynroot_dentry_operations; 916 915
+1 -1
fs/fhandle.c
··· 246 246 * sys_open_by_handle_at: Open the file handle 247 247 * @mountdirfd: directory file descriptor 248 248 * @handle: file handle to be opened 249 - * @flag: open flags. 249 + * @flags: open flags. 250 250 * 251 251 * @mountdirfd indicate the directory file descriptor 252 252 * of the mount point. file handle is decoded relative