linux-stable/drivers/s390
Yu Liao 4f45c37ffd 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>
2022-03-27 22:18:39 +02:00
..
block s390 updates for the 5.18 merge window 2022-03-25 10:01:34 -07:00
char s390: cleanup timer API use 2022-03-27 22:18:39 +02:00
cio s390: cleanup timer API use 2022-03-27 22:18:39 +02:00
crypto s390/zcrypt: fix using the correct variable for sizeof() 2022-03-27 22:18:39 +02:00
net s390/ctcm: fix typo "length to short" -> "length too short" 2022-03-21 13:26:38 +00:00
scsi scsi: zfcp: Fix failed recovery on gone remote port with non-NPIV FCP devices 2022-01-24 23:30:27 -05:00
virtio virtio/s390: get rid of open-coded kvm hypercall 2021-06-28 11:18:28 +02:00
Makefile