|
@@ -53,7 +53,7 @@ struct audit_krule;
|
|
|
*/
|
|
|
extern int cap_capable(struct task_struct *tsk, const struct cred *cred,
|
|
|
int cap, int audit);
|
|
|
-extern int cap_settime(struct timespec *ts, struct timezone *tz);
|
|
|
+extern int cap_settime(const struct timespec *ts, const struct timezone *tz);
|
|
|
extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
|
|
|
extern int cap_ptrace_traceme(struct task_struct *parent);
|
|
|
extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
|
|
@@ -1387,7 +1387,7 @@ struct security_operations {
|
|
|
int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
|
|
|
int (*quota_on) (struct dentry *dentry);
|
|
|
int (*syslog) (int type);
|
|
|
- int (*settime) (struct timespec *ts, struct timezone *tz);
|
|
|
+ int (*settime) (const struct timespec *ts, const struct timezone *tz);
|
|
|
int (*vm_enough_memory) (struct mm_struct *mm, long pages);
|
|
|
|
|
|
int (*bprm_set_creds) (struct linux_binprm *bprm);
|
|
@@ -1669,7 +1669,7 @@ int security_sysctl(struct ctl_table *table, int op);
|
|
|
int security_quotactl(int cmds, int type, int id, struct super_block *sb);
|
|
|
int security_quota_on(struct dentry *dentry);
|
|
|
int security_syslog(int type);
|
|
|
-int security_settime(struct timespec *ts, struct timezone *tz);
|
|
|
+int security_settime(const struct timespec *ts, const struct timezone *tz);
|
|
|
int security_vm_enough_memory(long pages);
|
|
|
int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
|
|
|
int security_vm_enough_memory_kern(long pages);
|
|
@@ -1904,7 +1904,8 @@ static inline int security_syslog(int type)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static inline int security_settime(struct timespec *ts, struct timezone *tz)
|
|
|
+static inline int security_settime(const struct timespec *ts,
|
|
|
+ const struct timezone *tz)
|
|
|
{
|
|
|
return cap_settime(ts, tz);
|
|
|
}
|