diff options
-rw-r--r-- | include/linux/security.h | 2 | ||||
-rw-r--r-- | security/keys/proc.c | 4 | ||||
-rw-r--r-- | security/selinux/selinuxfs.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index e4a91cb1b187..d24974262dc6 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -2300,7 +2300,7 @@ static inline struct dentry *securityfs_create_file(const char *name, | |||
2300 | mode_t mode, | 2300 | mode_t mode, |
2301 | struct dentry *parent, | 2301 | struct dentry *parent, |
2302 | void *data, | 2302 | void *data, |
2303 | struct file_operations *fops) | 2303 | const struct file_operations *fops) |
2304 | { | 2304 | { |
2305 | return ERR_PTR(-ENODEV); | 2305 | return ERR_PTR(-ENODEV); |
2306 | } | 2306 | } |
diff --git a/security/keys/proc.c b/security/keys/proc.c index 3e0d0a6e224f..694126003ed3 100644 --- a/security/keys/proc.c +++ b/security/keys/proc.c | |||
@@ -26,7 +26,7 @@ static void *proc_keys_next(struct seq_file *p, void *v, loff_t *_pos); | |||
26 | static void proc_keys_stop(struct seq_file *p, void *v); | 26 | static void proc_keys_stop(struct seq_file *p, void *v); |
27 | static int proc_keys_show(struct seq_file *m, void *v); | 27 | static int proc_keys_show(struct seq_file *m, void *v); |
28 | 28 | ||
29 | static struct seq_operations proc_keys_ops = { | 29 | static const struct seq_operations proc_keys_ops = { |
30 | .start = proc_keys_start, | 30 | .start = proc_keys_start, |
31 | .next = proc_keys_next, | 31 | .next = proc_keys_next, |
32 | .stop = proc_keys_stop, | 32 | .stop = proc_keys_stop, |
@@ -47,7 +47,7 @@ static void *proc_key_users_next(struct seq_file *p, void *v, loff_t *_pos); | |||
47 | static void proc_key_users_stop(struct seq_file *p, void *v); | 47 | static void proc_key_users_stop(struct seq_file *p, void *v); |
48 | static int proc_key_users_show(struct seq_file *m, void *v); | 48 | static int proc_key_users_show(struct seq_file *m, void *v); |
49 | 49 | ||
50 | static struct seq_operations proc_key_users_ops = { | 50 | static const struct seq_operations proc_key_users_ops = { |
51 | .start = proc_key_users_start, | 51 | .start = proc_key_users_start, |
52 | .next = proc_key_users_next, | 52 | .next = proc_key_users_next, |
53 | .stop = proc_key_users_stop, | 53 | .stop = proc_key_users_stop, |
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index 2fa483f26113..397fd4955fe1 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c | |||
@@ -1222,7 +1222,7 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v) | |||
1222 | static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v) | 1222 | static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v) |
1223 | { } | 1223 | { } |
1224 | 1224 | ||
1225 | static struct seq_operations sel_avc_cache_stats_seq_ops = { | 1225 | static const struct seq_operations sel_avc_cache_stats_seq_ops = { |
1226 | .start = sel_avc_stats_seq_start, | 1226 | .start = sel_avc_stats_seq_start, |
1227 | .next = sel_avc_stats_seq_next, | 1227 | .next = sel_avc_stats_seq_next, |
1228 | .show = sel_avc_stats_seq_show, | 1228 | .show = sel_avc_stats_seq_show, |