PCI: Use scnprintf(), not snprintf(), in sysfs "show" functions
authorKrzysztof Wilczyński <kw@linux.com>
Mon, 24 Aug 2020 23:39:16 +0000 (23:39 +0000)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 1 Sep 2020 19:04:55 +0000 (14:04 -0500)
commite7a7499d841bfc9c7a4443f0fd7a04ae49bdbdd3
tree098e9c409d7ca0b9c00a6a09cad8fd2e57e81fd0
parent035fff1f7aab43e420e0098f0854470a5286fb83
PCI: Use scnprintf(), not snprintf(), in sysfs "show" functions

Sysfs "show" methods should return the number of bytes printed into the
buffer.  This is the return value of scnprintf() [1].

snprintf(buf, size, ...) prints at most "size" bytes into "buf", but
returns the number of bytes that *would* be printed if "buf" were large
enough.

Replace use of snprintf() with scnprintf().  No functional change intended.

Related:
  https://patchwork.kernel.org/patch/9946759/#20969333
  https://lwn.net/Articles/69419

[1] Documentation/filesystems/sysfs.rst

[bhelgaas: squashed, commit log]
Suggested-by: Bjorn Helgaas <bhelgaas@google.com>
Link: https://lore.kernel.org/r/20200824233918.26306-2-kw@linux.com
Link: https://lore.kernel.org/r/20200824233918.26306-3-kw@linux.com
Link: https://lore.kernel.org/r/20200824233918.26306-4-kw@linux.com
Signed-off-by: Krzysztof Wilczyński <kw@linux.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/p2pdma.c
drivers/pci/pci-sysfs.c
drivers/pci/pci.c