linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/19] Converge on using secs_to_jiffies()
@ 2024-12-10 22:02 Easwar Hariharan
  2024-12-10 22:02 ` [PATCH v3 01/19] netfilter: conntrack: Cleanup timeout definitions Easwar Hariharan
                   ` (20 more replies)
  0 siblings, 21 replies; 41+ messages in thread
From: Easwar Hariharan @ 2024-12-10 22:02 UTC (permalink / raw)
  To: Pablo Neira Ayuso, Jozsef Kadlecsik, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Julia Lawall, Nicolas Palix, Daniel Mack, Haojian Zhuang,
	Robert Jarzmik, Russell King, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Christian Borntraeger, Sven Schnelle,
	Ofir Bitton, Oded Gabbay, Lucas De Marchi, Thomas Hellström,
	Rodrigo Vivi, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Simona Vetter, Jeroen de Borst,
	Praveen Kaligineedi, Shailend Chand, Andrew Lunn, James Smart,
	Dick Kennedy, James E.J. Bottomley, Martin K. Petersen,
	Roger Pau Monné,
	Jens Axboe, Kalle Valo, Jeff Johnson, Catalin Marinas,
	Andrew Morton, Jack Wang, Marcel Holtmann, Johan Hedberg,
	Luiz Augusto von Dentz, Greg Kroah-Hartman, Florian Fainelli,
	Ray Jui, Scott Branden, Broadcom internal kernel review list,
	Xiubo Li, Ilya Dryomov, Josh Poimboeuf, Jiri Kosina,
	Miroslav Benes, Petr Mladek, Joe Lawrence, Jaroslav Kysela,
	Takashi Iwai, Louis Peens, Michael Ellerman, Nicholas Piggin,
	Christophe Leroy, Naveen N Rao, Madhavan Srinivasan
  Cc: netfilter-devel, coreteam, netdev, linux-kernel, cocci,
	linux-arm-kernel, linux-s390, dri-devel, intel-xe, linux-scsi,
	xen-devel, linux-block, linux-wireless, ath11k, linux-mm,
	linux-bluetooth, linux-staging, linux-rpi-kernel, ceph-devel,
	live-patching, linux-sound, oss-drivers, linuxppc-dev,
	Anna-Maria Behnsen, Easwar Hariharan, Jeff Johnson

This is a series that follows up on my previous series to introduce
secs_to_jiffies() and convert a few initial users.[1] In the review for
that series, Anna-Maria requested converting other users with
Coccinelle. [2] This is part 1 that converts users of msecs_to_jiffies()
that use the multiply pattern of either of:
- msecs_to_jiffies(N*1000), or
- msecs_to_jiffies(N*MSEC_PER_SEC)

where N is a constant, to avoid the multiplication.

The entire conversion is made with Coccinelle in the script added in
patch 2. Some changes suggested by Coccinelle have been deferred to
later parts that will address other possible variant patterns.

CC: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>

[1] https://lore.kernel.org/all/20241030-open-coded-timeouts-v3-0-9ba123facf88@linux.microsoft.com/
[2] https://lore.kernel.org/all/8734kngfni.fsf@somnus/

---
Changes in v3:
- Rebase on next-20241210
- Fix typo'ed timeout in net/netfilter/nf_conntrack_proto_sctp.c (Stephen Rothwell)
- Use Coccinelle operation modes for Coccinelle script (Markus Elfring)
- Remove redundant comments in arch/arm/mach-pxa/sharpsl_pm.c
  (Christophe Leroy)
- Remove excess line breaks (Heiko Carstens, Christophe Leroy)
- Add more detail into the commit messages throughout (Christophe Leroy)
- Pick up Reviewed-by Thomas Hellström for drm/xe
- Drop drm/etnaviv patch already queued into etnaviv/next
- Replace call to [m]secs_to_jiffies(0) with just 0 for livepatch (Dan
  Carpenter, Christophe Leroy)
- Split out nfp patch to send to net-next (Christophe Leroy)
- Pick up Acked-by from Jeff Johnson for ath11k
- Link to v2: https://lore.kernel.org/r/20241115-converge-secs-to-jiffies-v2-0-911fb7595e79@linux.microsoft.com
Changes in v2:
- Exclude already accepted patch adding secs_to_jiffies() https://git.kernel.org/tip/b35108a51cf7bab58d7eace1267d7965978bcdb8
- Link to v1: https://lore.kernel.org/r/20241115-converge-secs-to-jiffies-v1-0-19aadc34941b@linux.microsoft.com

---
Easwar Hariharan (19):
      netfilter: conntrack: Cleanup timeout definitions
      coccinelle: misc: Add secs_to_jiffies script
      arm: pxa: Convert timeouts to use secs_to_jiffies()
      s390: kernel: Convert timeouts to use secs_to_jiffies()
      powerpc/papr_scm: Convert timeouts to secs_to_jiffies()
      mm: kmemleak: Convert timeouts to secs_to_jiffies()
      accel/habanalabs: Convert timeouts to secs_to_jiffies()
      drm/xe: Convert timeout to secs_to_jiffies()
      scsi: lpfc: Convert timeouts to secs_to_jiffies()
      scsi: arcmsr: Convert timeouts to secs_to_jiffies()
      scsi: pm8001: Convert timeouts to secs_to_jiffies()
      xen/blkback: Convert timeouts to secs_to_jiffies()
      gve: Convert timeouts to secs_to_jiffies()
      wifi: ath11k: Convert timeouts to secs_to_jiffies()
      Bluetooth: MGMT: Convert timeouts to secs_to_jiffies()
      staging: vc04_services: Convert timeouts to secs_to_jiffies()
      ceph: Convert timeouts to secs_to_jiffies()
      livepatch: Convert timeouts to secs_to_jiffies()
      ALSA: line6: Convert timeouts to secs_to_jiffies()

 arch/arm/mach-pxa/sharpsl_pm.c                     |  8 ++++----
 arch/powerpc/platforms/pseries/papr_scm.c          |  2 +-
 arch/s390/kernel/lgr.c                             |  2 +-
 arch/s390/kernel/time.c                            |  4 ++--
 arch/s390/kernel/topology.c                        |  2 +-
 drivers/accel/habanalabs/common/device.c           |  2 +-
 drivers/accel/habanalabs/common/habanalabs_drv.c   |  3 +--
 drivers/block/xen-blkback/blkback.c                |  2 +-
 drivers/gpu/drm/xe/xe_device.c                     |  2 +-
 drivers/net/ethernet/google/gve/gve_tx_dqo.c       |  6 ++----
 drivers/net/wireless/ath/ath11k/debugfs.c          |  2 +-
 drivers/scsi/arcmsr/arcmsr_hba.c                   |  2 +-
 drivers/scsi/lpfc/lpfc_init.c                      | 18 +++++++++---------
 drivers/scsi/lpfc/lpfc_nportdisc.c                 |  8 ++++----
 drivers/scsi/lpfc/lpfc_nvme.c                      |  2 +-
 drivers/scsi/lpfc/lpfc_sli.c                       |  4 ++--
 drivers/scsi/lpfc/lpfc_vmid.c                      |  2 +-
 drivers/scsi/pm8001/pm8001_init.c                  |  2 +-
 .../vc04_services/bcm2835-audio/bcm2835-vchiq.c    |  2 +-
 fs/ceph/quota.c                                    |  2 +-
 mm/kmemleak.c                                      |  4 ++--
 net/bluetooth/mgmt.c                               |  2 +-
 net/netfilter/nf_conntrack_proto_sctp.c            | 21 ++++++++-------------
 samples/livepatch/livepatch-callbacks-busymod.c    |  3 +--
 samples/livepatch/livepatch-shadow-fix1.c          |  3 +--
 samples/livepatch/livepatch-shadow-mod.c           | 15 +++++----------
 scripts/coccinelle/misc/secs_to_jiffies.cocci      | 22 ++++++++++++++++++++++
 sound/usb/line6/toneport.c                         |  2 +-
 28 files changed, 78 insertions(+), 71 deletions(-)
---
base-commit: 1b2ab8149928c1cea2d7eca30cd35bb7fe014053
change-id: 20241112-converge-secs-to-jiffies-d99d1016bd11

Best regards,
-- 
Easwar Hariharan <eahariha@linux.microsoft.com>



^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2024-12-17 21:12 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-10 22:02 [PATCH v3 00/19] Converge on using secs_to_jiffies() Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 01/19] netfilter: conntrack: Cleanup timeout definitions Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 02/19] coccinelle: misc: Add secs_to_jiffies script Easwar Hariharan
2024-12-17 17:28   ` Alexander Gordeev
2024-12-17 17:33     ` Julia Lawall
2024-12-17 17:43       ` Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 03/19] arm: pxa: Convert timeouts to use secs_to_jiffies() Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 04/19] s390: kernel: " Easwar Hariharan
2024-12-17 17:31   ` Alexander Gordeev
2024-12-10 22:02 ` [PATCH v3 05/19] powerpc/papr_scm: Convert timeouts to secs_to_jiffies() Easwar Hariharan
2024-12-11  7:02   ` Christophe Leroy
2024-12-10 22:02 ` [PATCH v3 06/19] mm: kmemleak: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 07/19] accel/habanalabs: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 08/19] drm/xe: Convert timeout " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 09/19] scsi: lpfc: Convert timeouts " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 10/19] scsi: arcmsr: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 11/19] scsi: pm8001: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 12/19] xen/blkback: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 13/19] gve: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 14/19] wifi: ath11k: " Easwar Hariharan
2024-12-11  7:42   ` Kalle Valo
2024-12-11  7:45     ` Kalle Valo
2024-12-10 22:02 ` [PATCH v3 15/19] Bluetooth: MGMT: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 16/19] staging: vc04_services: " Easwar Hariharan
2024-12-11 17:46   ` Dave Stevenson
2024-12-10 22:02 ` [PATCH v3 17/19] ceph: " Easwar Hariharan
2024-12-10 22:02 ` [PATCH v3 18/19] livepatch: " Easwar Hariharan
2024-12-11  7:00   ` Christophe Leroy
2024-12-10 22:02 ` [PATCH v3 19/19] ALSA: line6: " Easwar Hariharan
2024-12-10 23:14 ` [PATCH v3 00/19] Converge on using secs_to_jiffies() Jeff Johnson
2024-12-10 23:36   ` Andrew Morton
2024-12-11  1:35     ` Jakub Kicinski
2024-12-11  2:31       ` Andrew Morton
2024-12-11  2:41         ` Jakub Kicinski
2024-12-11  2:50           ` Andrew Morton
2024-12-11  3:01             ` Jakub Kicinski
2024-12-11  4:34           ` Easwar Hariharan
2024-12-11  0:35 ` Andrew Morton
2024-12-11  1:00   ` Easwar Hariharan
2024-12-17 20:53     ` Easwar Hariharan
2024-12-17 21:12       ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox