aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time/posix-cpu-timers.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2019-08-21 21:08:59 +0200
committerThomas Gleixner <tglx@linutronix.de>2019-08-28 11:50:30 +0200
commit5405d0051f7ca820d1781d87baf4d730ff58f208 (patch)
tree19d69707cefe1cb6f63550458d9fdb7b58372408 /kernel/time/posix-cpu-timers.c
parentda020ce406b2a9b714b82de9123a4c5a4848647b (diff)
downloadlinux-5405d0051f7ca820d1781d87baf4d730ff58f208.tar.gz
posix-cpu-timers: Remove pointless return value check
set_process_cpu_timer() checks already whether the clock id is valid. No point in checking the return value of the sample function. That allows to simplify the sample function later. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Frederic Weisbecker <frederic@kernel.org> Link: https://lkml.kernel.org/r/20190821192920.339725769@linutronix.de
Diffstat (limited to 'kernel/time/posix-cpu-timers.c')
-rw-r--r--kernel/time/posix-cpu-timers.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/time/posix-cpu-timers.c b/kernel/time/posix-cpu-timers.c
index aff7e3b64d848f..5944b7494be7d4 100644
--- a/kernel/time/posix-cpu-timers.c
+++ b/kernel/time/posix-cpu-timers.c
@@ -1190,14 +1190,13 @@ void set_process_cpu_timer(struct task_struct *tsk, unsigned int clock_idx,
u64 *newval, u64 *oldval)
{
u64 now;
- int ret;
if (WARN_ON_ONCE(clock_idx >= CPUCLOCK_SCHED))
return;
- ret = cpu_clock_sample_group(clock_idx, tsk, &now, true);
+ cpu_clock_sample_group(clock_idx, tsk, &now, true);
- if (oldval && ret != -EINVAL) {
+ if (oldval) {
/*
* We are setting itimer. The *oldval is absolute and we update
* it to be relative, *newval argument is relative and we update