diff options
author | Yu Liao <liaoyu15@huawei.com> | 2022-03-22 06:00:57 +0300 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2022-03-27 23:18:39 +0300 |
commit | 4f45c37ffd100522f890fc7f8bd71a3b8f79b6be (patch) | |
tree | 53711063a23226deb4239e8449e0c1eaf1de4260 /tools/perf/scripts/python/syscall-counts.py | |
parent | 97f32e11730e05927df196bcc8e30d8f2bcbb181 (diff) | |
download | linux-4f45c37ffd100522f890fc7f8bd71a3b8f79b6be.tar.xz |
s390: cleanup timer API use
cleanup the s390's use of the timer API
- del_timer() contains timer_pending() condition
- mod_timer(timer, expires) is equivalent to:
del_timer(timer);
timer->expires = expires;
add_timer(timer);
If the timer is inactive it will be activated, using add_timer() on
condition !timer_pending(&private->timer) is redundant.
Just cleanup, no logic change.
Signed-off-by: Yu Liao <liaoyu15@huawei.com>
Link: https://lore.kernel.org/r/20220322030057.1243196-1-liaoyu15@huawei.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts.py')
0 files changed, 0 insertions, 0 deletions