linux-s390.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 00/23] treewide: Introduce %ptS for struct timespec64 and convert users
@ 2025-11-10 18:40 Andy Shevchenko
  2025-11-10 18:40 ` [PATCH v1 01/23] lib/vsprintf: Add specifier for printing struct timespec64 Andy Shevchenko
                   ` (22 more replies)
  0 siblings, 23 replies; 38+ messages in thread
From: Andy Shevchenko @ 2025-11-10 18:40 UTC (permalink / raw)
  To: Corey Minyard, Christian König, Dr. David Alan Gilbert,
	Alex Deucher, Thomas Zimmermann, Dmitry Baryshkov, Rob Clark,
	Matthew Brost, Hans Verkuil, Laurent Pinchart, Ulf Hansson,
	Andy Shevchenko, Vitaly Lifshits, Manivannan Sadhasivam,
	Niklas Cassel, Calvin Owens, Sagi Maimon, Martin K. Petersen,
	Karan Tilak Kumar, Casey Schaufler, Steven Rostedt, Petr Mladek,
	Max Kellermann, Takashi Iwai, 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, linux-sound
  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,
	Mauro Carvalho Chehab, 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,
	Jonathan Lemon, Vadim Fedorenko, Richard Cochran,
	Stefan Haberland, Jan Hoeppner, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Christian Borntraeger, Sven Schnelle,
	Satish Kharat, Sesidhar Baddela, James E.J. Bottomley,
	Greg Kroah-Hartman, Xiubo Li, Ilya Dryomov, Masami Hiramatsu,
	Mathieu Desnoyers, Andrew Morton, Jaroslav Kysela, Takashi Iwai


Here is the third part of unification time printing in the kernel.
This time for struct timespec64. The first patch brings 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.

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

Andy Shevchenko (23):
  lib/vsprintf: Add specifier for printing struct timespec64
  ALSA: seq: Switch to use %ptSp
  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
  media: v4l2-ioctl: 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/media/v4l2-core/v4l2-ioctl.c          |  5 +-
 drivers/mmc/core/mmc_test.c                   | 18 +++----
 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                         | 15 +++---
 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                               | 47 ++++++-------------
 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 +--
 sound/core/seq/seq_queue.c                    |  2 +-
 sound/core/seq/seq_timer.c                    |  6 +--
 32 files changed, 131 insertions(+), 154 deletions(-)

-- 
2.50.1


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

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

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-10 18:40 [PATCH v1 00/23] treewide: Introduce %ptS for struct timespec64 and convert users Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 01/23] lib/vsprintf: Add specifier for printing struct timespec64 Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 02/23] ALSA: seq: Switch to use %ptSp Andy Shevchenko
2025-11-11  6:42   ` Takashi Iwai
2025-11-10 18:40 ` [PATCH v1 03/23] ceph: " Andy Shevchenko
2025-11-10 19:12   ` Viacheslav Dubeyko
2025-11-10 18:40 ` [PATCH v1 04/23] libceph: " Andy Shevchenko
2025-11-10 19:13   ` Viacheslav Dubeyko
2025-11-10 18:40 ` [PATCH v1 05/23] dma-buf: " Andy Shevchenko
2025-11-10 18:50   ` Christian König
2025-11-10 18:40 ` [PATCH v1 06/23] drm/amdgpu: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 07/23] drm/msm: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 08/23] drm/vblank: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 09/23] drm/xe: " Andy Shevchenko
2025-11-10 19:24   ` Lucas De Marchi
2025-11-10 18:40 ` [PATCH v1 10/23] e1000e: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 11/23] igb: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 12/23] ipmi: " Andy Shevchenko
2025-11-11  1:17   ` Corey Minyard
2025-11-11  8:08   ` Sergey Senozhatsky
2025-11-11 14:37     ` Corey Minyard
2025-11-10 18:40 ` [PATCH v1 13/23] media: av7110: " Andy Shevchenko
2025-11-11  7:57   ` Hans Verkuil
2025-11-10 18:40 ` [PATCH v1 14/23] media: v4l2-ioctl: " Andy Shevchenko
2025-11-11  8:04   ` Hans Verkuil
2025-11-10 18:40 ` [PATCH v1 15/23] mmc: mmc_test: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 16/23] net: dsa: sja1105: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 17/23] PCI: epf-test: " Andy Shevchenko
2025-11-11  0:11   ` Bjorn Helgaas
2025-11-10 18:40 ` [PATCH v1 18/23] pps: " Andy Shevchenko
2025-11-11  8:09   ` Rodolfo Giometti
2025-11-10 18:40 ` [PATCH v1 19/23] ptp: ocp: " Andy Shevchenko
2025-11-10 23:37   ` Vadim Fedorenko
2025-11-10 18:40 ` [PATCH v1 20/23] s390/dasd: " Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 21/23] scsi: fnic: Switch to use %ptS Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 22/23] scsi: snic: Switch to use %ptSp Andy Shevchenko
2025-11-10 18:40 ` [PATCH v1 23/23] tracing: " Andy Shevchenko
2025-11-10 19:12   ` Steven Rostedt

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).