linux-s390.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/21] treewide: Introduce %ptS for struct timespec64 and convert users
@ 2025-11-11 12:20 Andy Shevchenko
  2025-11-11 12:20 ` [PATCH v2 01/21] lib/vsprintf: Add specifier for printing struct timespec64 Andy Shevchenko
                   ` (20 more replies)
  0 siblings, 21 replies; 25+ messages in thread
From: Andy Shevchenko @ 2025-11-11 12:20 UTC (permalink / raw)
  To: Corey Minyard, Christian König, Dr. David Alan Gilbert,
	Alex Deucher, Thomas Zimmermann, Dmitry Baryshkov, Rob Clark,
	Matthew Brost, Ulf Hansson, Andy Shevchenko, Vitaly Lifshits,
	Manivannan Sadhasivam, Niklas Cassel, Calvin Owens,
	Vadim Fedorenko, Sagi Maimon, Martin K. Petersen,
	Karan Tilak Kumar, Hans Verkuil, Casey Schaufler, Steven Rostedt,
	Petr Mladek, Viacheslav Dubeyko, Max Kellermann, linux-doc,
	linux-kernel, openipmi-developer, linux-media, dri-devel,
	linaro-mm-sig, amd-gfx, linux-arm-msm, freedreno, intel-xe,
	linux-mmc, netdev, intel-wired-lan, linux-pci, linux-s390,
	linux-scsi, linux-staging, ceph-devel, linux-trace-kernel
  Cc: Rasmus Villemoes, Sergey Senozhatsky, Jonathan Corbet,
	Sumit Semwal, Gustavo Padovan, David Airlie, Simona Vetter,
	Maarten Lankhorst, Maxime Ripard, Dmitry Baryshkov, Abhinav Kumar,
	Jessica Zhang, Sean Paul, Marijn Suijten, Konrad Dybcio,
	Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Vladimir Oltean, Andrew Lunn, David S. Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Tony Nguyen, Przemek Kitszel,
	Krzysztof Wilczyński, Kishon Vijay Abraham I, Bjorn Helgaas,
	Rodolfo Giometti, Richard Cochran, Jonathan Lemon,
	Stefan Haberland, Jan Hoeppner, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Christian Borntraeger, Sven Schnelle,
	Satish Kharat, Sesidhar Baddela, James E.J. Bottomley,
	Mauro Carvalho Chehab, Greg Kroah-Hartman, Xiubo Li, Ilya Dryomov,
	Masami Hiramatsu, Mathieu Desnoyers, Andrew Morton

Here is the third part of the unification time printing in the kernel.
This time for struct timespec64. The first patch brings a support
into printf() implementation (test cases and documentation update
included) followed by the treewide conversion of the current users.

The idea is to have one or a few biggest users included, the rest
can be taken next release cycle on the subsystem basis, but I won't
object if the respective maintainers already give their tags. Depending
on the tags received it may go via dedicated subsystem or via PRINTK
tree. Petr, what do you think?

Note, not everything was compile-tested. Kunit test has been passed, though.

Changelog v2:
- dropped wrong patches (Hans, Takashi)
- fixed most of the checkpatch warnings (fdo CI, media CI)
- collected tags

v1: <20251110184727.666591-1-andriy.shevchenko@linux.intel.com>

Andy Shevchenko (21):
  lib/vsprintf: Add specifier for printing struct timespec64
  ceph: Switch to use %ptSp
  libceph: Switch to use %ptSp
  dma-buf: Switch to use %ptSp
  drm/amdgpu: Switch to use %ptSp
  drm/msm: Switch to use %ptSp
  drm/vblank: Switch to use %ptSp
  drm/xe: Switch to use %ptSp
  e1000e: Switch to use %ptSp
  igb: Switch to use %ptSp
  ipmi: Switch to use %ptSp
  media: av7110: Switch to use %ptSp
  mmc: mmc_test: Switch to use %ptSp
  net: dsa: sja1105: Switch to use %ptSp
  PCI: epf-test: Switch to use %ptSp
  pps: Switch to use %ptSp
  ptp: ocp: Switch to use %ptSp
  s390/dasd: Switch to use %ptSp
  scsi: fnic: Switch to use %ptS
  scsi: snic: Switch to use %ptSp
  tracing: Switch to use %ptSp

 Documentation/core-api/printk-formats.rst     | 11 ++++-
 drivers/char/ipmi/ipmi_si_intf.c              |  3 +-
 drivers/char/ipmi/ipmi_ssif.c                 |  6 +--
 drivers/dma-buf/sync_debug.c                  |  2 +-
 .../gpu/drm/amd/amdgpu/amdgpu_dev_coredump.c  |  3 +-
 drivers/gpu/drm/drm_vblank.c                  |  6 +--
 .../gpu/drm/msm/disp/msm_disp_snapshot_util.c |  3 +-
 drivers/gpu/drm/msm/msm_gpu.c                 |  3 +-
 drivers/gpu/drm/xe/xe_devcoredump.c           |  4 +-
 drivers/mmc/core/mmc_test.c                   | 20 +++-----
 drivers/net/dsa/sja1105/sja1105_tas.c         |  8 ++-
 drivers/net/ethernet/intel/e1000e/ptp.c       |  7 +--
 drivers/net/ethernet/intel/igb/igb_ptp.c      |  7 +--
 drivers/pci/endpoint/functions/pci-epf-test.c |  5 +-
 drivers/pps/generators/pps_gen_parport.c      |  3 +-
 drivers/pps/kapi.c                            |  3 +-
 drivers/ptp/ptp_ocp.c                         | 13 ++---
 drivers/s390/block/dasd.c                     |  3 +-
 drivers/scsi/fnic/fnic_trace.c                | 46 ++++++++---------
 drivers/scsi/snic/snic_debugfs.c              | 10 ++--
 drivers/scsi/snic/snic_trc.c                  |  5 +-
 drivers/staging/media/av7110/av7110.c         |  2 +-
 fs/ceph/dir.c                                 |  5 +-
 fs/ceph/inode.c                               | 49 ++++++-------------
 fs/ceph/xattr.c                               |  6 +--
 kernel/trace/trace_output.c                   |  6 +--
 lib/tests/printf_kunit.c                      |  4 ++
 lib/vsprintf.c                                | 25 ++++++++++
 net/ceph/messenger_v2.c                       |  6 +--
 29 files changed, 126 insertions(+), 148 deletions(-)

-- 
2.50.1


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

end of thread, other threads:[~2025-11-11 15:04 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-11 12:20 [PATCH v2 00/21] treewide: Introduce %ptS for struct timespec64 and convert users Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 01/21] lib/vsprintf: Add specifier for printing struct timespec64 Andy Shevchenko
2025-11-11 15:03   ` Petr Mladek
2025-11-11 12:20 ` [PATCH v2 02/21] ceph: Switch to use %ptSp Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 03/21] libceph: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 04/21] dma-buf: " Andy Shevchenko
2025-11-11 14:43   ` Sumit Semwal
2025-11-11 12:20 ` [PATCH v2 05/21] drm/amdgpu: " Andy Shevchenko
2025-11-11 14:49   ` Deucher, Alexander
2025-11-11 12:20 ` [PATCH v2 06/21] drm/msm: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 07/21] drm/vblank: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 08/21] drm/xe: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 09/21] e1000e: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 10/21] igb: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 11/21] ipmi: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 12/21] media: av7110: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 13/21] mmc: mmc_test: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 14/21] net: dsa: sja1105: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 15/21] PCI: epf-test: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 16/21] pps: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 17/21] ptp: ocp: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 18/21] s390/dasd: " Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 19/21] scsi: fnic: Switch to use %ptS Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 20/21] scsi: snic: Switch to use %ptSp Andy Shevchenko
2025-11-11 12:20 ` [PATCH v2 21/21] tracing: " Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).