mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
faf60af17f
This patch prepares the ground for further extension of /proc/pid/fd[info] handling code by moving fdinfo handling code into fs/proc/fd.c. I think such move makes both fs/proc/base.c and fs/proc/fd.c easier to read. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Acked-by: Pavel Emelyanov <xemul@parallels.com> CC: Al Viro <viro@ZenIV.linux.org.uk> CC: Alexey Dobriyan <adobriyan@gmail.com> CC: Andrew Morton <akpm@linux-foundation.org> CC: James Bottomley <jbottomley@parallels.com> CC: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> CC: Alexey Dobriyan <adobriyan@gmail.com> CC: Matthew Helsley <matt.helsley@gmail.com> CC: "J. Bruce Fields" <bfields@fieldses.org> CC: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
15 lines
412 B
C
15 lines
412 B
C
#ifndef __PROCFS_FD_H__
|
|
#define __PROCFS_FD_H__
|
|
|
|
#include <linux/fs.h>
|
|
|
|
extern const struct file_operations proc_fd_operations;
|
|
extern const struct inode_operations proc_fd_inode_operations;
|
|
|
|
extern const struct file_operations proc_fdinfo_operations;
|
|
extern const struct inode_operations proc_fdinfo_inode_operations;
|
|
|
|
extern int proc_fd_permission(struct inode *inode, int mask);
|
|
|
|
#endif /* __PROCFS_FD_H__ */
|