diff options
Diffstat (limited to 'include/linux/security.h')
-rw-r--r-- | include/linux/security.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index 1a3eb5ff4357..a22219afff09 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -23,6 +23,7 @@ | |||
23 | #define __LINUX_SECURITY_H | 23 | #define __LINUX_SECURITY_H |
24 | 24 | ||
25 | #include <linux/fs.h> | 25 | #include <linux/fs.h> |
26 | #include <linux/fsnotify.h> | ||
26 | #include <linux/binfmts.h> | 27 | #include <linux/binfmts.h> |
27 | #include <linux/signal.h> | 28 | #include <linux/signal.h> |
28 | #include <linux/resource.h> | 29 | #include <linux/resource.h> |
@@ -470,8 +471,6 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
470 | * @path_truncate: | 471 | * @path_truncate: |
471 | * Check permission before truncating a file. | 472 | * Check permission before truncating a file. |
472 | * @path contains the path structure for the file. | 473 | * @path contains the path structure for the file. |
473 | * @length is the new length of the file. | ||
474 | * @time_attrs is the flags passed to do_truncate(). | ||
475 | * Return 0 if permission is granted. | 474 | * Return 0 if permission is granted. |
476 | * @inode_getattr: | 475 | * @inode_getattr: |
477 | * Check permission before obtaining file attributes. | 476 | * Check permission before obtaining file attributes. |
@@ -1412,8 +1411,7 @@ struct security_operations { | |||
1412 | int (*path_rmdir) (struct path *dir, struct dentry *dentry); | 1411 | int (*path_rmdir) (struct path *dir, struct dentry *dentry); |
1413 | int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode, | 1412 | int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode, |
1414 | unsigned int dev); | 1413 | unsigned int dev); |
1415 | int (*path_truncate) (struct path *path, loff_t length, | 1414 | int (*path_truncate) (struct path *path); |
1416 | unsigned int time_attrs); | ||
1417 | int (*path_symlink) (struct path *dir, struct dentry *dentry, | 1415 | int (*path_symlink) (struct path *dir, struct dentry *dentry, |
1418 | const char *old_name); | 1416 | const char *old_name); |
1419 | int (*path_link) (struct dentry *old_dentry, struct path *new_dir, | 1417 | int (*path_link) (struct dentry *old_dentry, struct path *new_dir, |
@@ -2809,8 +2807,7 @@ int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode); | |||
2809 | int security_path_rmdir(struct path *dir, struct dentry *dentry); | 2807 | int security_path_rmdir(struct path *dir, struct dentry *dentry); |
2810 | int security_path_mknod(struct path *dir, struct dentry *dentry, int mode, | 2808 | int security_path_mknod(struct path *dir, struct dentry *dentry, int mode, |
2811 | unsigned int dev); | 2809 | unsigned int dev); |
2812 | int security_path_truncate(struct path *path, loff_t length, | 2810 | int security_path_truncate(struct path *path); |
2813 | unsigned int time_attrs); | ||
2814 | int security_path_symlink(struct path *dir, struct dentry *dentry, | 2811 | int security_path_symlink(struct path *dir, struct dentry *dentry, |
2815 | const char *old_name); | 2812 | const char *old_name); |
2816 | int security_path_link(struct dentry *old_dentry, struct path *new_dir, | 2813 | int security_path_link(struct dentry *old_dentry, struct path *new_dir, |
@@ -2844,8 +2841,7 @@ static inline int security_path_mknod(struct path *dir, struct dentry *dentry, | |||
2844 | return 0; | 2841 | return 0; |
2845 | } | 2842 | } |
2846 | 2843 | ||
2847 | static inline int security_path_truncate(struct path *path, loff_t length, | 2844 | static inline int security_path_truncate(struct path *path) |
2848 | unsigned int time_attrs) | ||
2849 | { | 2845 | { |
2850 | return 0; | 2846 | return 0; |
2851 | } | 2847 | } |