diff options
| author | Richard Cochran <richard.cochran@omicron.at> | 2011-02-01 08:50:58 -0500 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-02 09:28:11 -0500 |
| commit | 1e6d767924c74929c0cfe839ae8f37bcee9e544e (patch) | |
| tree | 4ace06971e2b3519e556bea2f7e3e999e860eedd /security | |
| parent | 7cf37e87dd2cfa17a64f28ea7f31eed4525f79e4 (diff) | |
time: Correct the *settime* parameters
Both settimeofday() and clock_settime() promise with a 'const'
attribute not to alter the arguments passed in. This patch adds the
missing 'const' attribute into the various kernel functions
implementing these calls.
Signed-off-by: Richard Cochran <richard.cochran@omicron.at>
Acked-by: John Stultz <johnstul@us.ibm.com>
LKML-Reference: <20110201134417.545698637@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'security')
| -rw-r--r-- | security/commoncap.c | 2 | ||||
| -rw-r--r-- | security/security.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/commoncap.c b/security/commoncap.c index 64c2ed9c9015..dbfdaed4cc66 100644 --- a/security/commoncap.c +++ b/security/commoncap.c | |||
| @@ -93,7 +93,7 @@ int cap_capable(struct task_struct *tsk, const struct cred *cred, int cap, | |||
| 93 | * Determine whether the current process may set the system clock and timezone | 93 | * Determine whether the current process may set the system clock and timezone |
| 94 | * information, returning 0 if permission granted, -ve if denied. | 94 | * information, returning 0 if permission granted, -ve if denied. |
| 95 | */ | 95 | */ |
| 96 | int cap_settime(struct timespec *ts, struct timezone *tz) | 96 | int cap_settime(const struct timespec *ts, const struct timezone *tz) |
| 97 | { | 97 | { |
| 98 | if (!capable(CAP_SYS_TIME)) | 98 | if (!capable(CAP_SYS_TIME)) |
| 99 | return -EPERM; | 99 | return -EPERM; |
diff --git a/security/security.c b/security/security.c index 739e40362f44..b995428f1c96 100644 --- a/security/security.c +++ b/security/security.c | |||
| @@ -202,7 +202,7 @@ int security_syslog(int type) | |||
| 202 | return security_ops->syslog(type); | 202 | return security_ops->syslog(type); |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | int security_settime(struct timespec *ts, struct timezone *tz) | 205 | int security_settime(const struct timespec *ts, const struct timezone *tz) |
| 206 | { | 206 | { |
| 207 | return security_ops->settime(ts, tz); | 207 | return security_ops->settime(ts, tz); |
| 208 | } | 208 | } |
