From: "Christophe Leroy (CS GROUP)" <chleroy@kernel.org>
To: Pengpeng Hou <pengpeng@iscas.ac.cn>,
Madhavan Srinivasan <maddy@linux.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>
Cc: Nicholas Piggin <npiggin@gmail.com>, Kees Cook <kees@kernel.org>,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] powerpc/perf/hv-gpci: bound sysfs formatting with sysfs_emit_at()
Date: Fri, 17 Apr 2026 09:58:21 +0200 [thread overview]
Message-ID: <b0c30cf3-751e-4f65-81ea-393c568dde56@kernel.org> (raw)
In-Reply-To: <20260417074825.22967-1-pengpeng@iscas.ac.cn>
Le 17/04/2026 à 09:48, Pengpeng Hou a écrit :
> systeminfo_gpci_request() and
> affinity_domain_via_partition_result_parse() hex-encode hypervisor data
> into the single-page sysfs read buffer with sprintf(buf + *n, ...).
> Both helpers only check PAGE_SIZE after the formatting loops have already
> advanced past the end of the buffer.
>
> Switch these appends to sysfs_emit_at() and stop once the sysfs buffer is
> full.
You are changing several time a single lines by multiples lines that
look pretty similar. Can you refactor in a helper function ?
>
> Fixes: 71f1c39647d8 ("powerpc/hv_gpci: Add sysfs file inside hv_gpci device to show processor bus topology information")
> Fixes: a15e0d6a6929 ("powerpc/hv_gpci: Add sysfs file inside hv_gpci device to show affinity domain via partition information")
> Cc: stable@vger.kernel.org
>
> Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
> ---
> arch/powerpc/perf/hv-gpci.c | 56 +++++++++++++++++++++++++++++++------
> 1 file changed, 47 insertions(+), 9 deletions(-)
>
> diff --git a/arch/powerpc/perf/hv-gpci.c b/arch/powerpc/perf/hv-gpci.c
> index 5cac2cf3bd1e..325b80f01629 100644
> --- a/arch/powerpc/perf/hv-gpci.c
> +++ b/arch/powerpc/perf/hv-gpci.c
> @@ -11,6 +11,7 @@
>
> #include <linux/init.h>
> #include <linux/perf_event.h>
> +#include <linux/sysfs.h>
> #include <asm/firmware.h>
> #include <asm/hvcall.h>
> #include <asm/io.h>
> @@ -134,6 +135,7 @@ static unsigned long systeminfo_gpci_request(u32 req, u32 starting_index,
> size_t *n, struct hv_gpci_request_buffer *arg)
> {
> unsigned long ret;
> + int len;
> size_t i, j;
>
> arg->params.counter_request = cpu_to_be32(req);
> @@ -176,9 +178,17 @@ static unsigned long systeminfo_gpci_request(u32 req, u32 starting_index,
> for (i = 0; i < be16_to_cpu(arg->params.returned_values); i++) {
> j = i * be16_to_cpu(arg->params.cv_element_size);
>
> - for (; j < (i + 1) * be16_to_cpu(arg->params.cv_element_size); j++)
> - *n += sprintf(buf + *n, "%02x", (u8)arg->bytes[j]);
> - *n += sprintf(buf + *n, "\n");
> + for (; j < (i + 1) * be16_to_cpu(arg->params.cv_element_size);
> + j++) {
> + len = sysfs_emit_at(buf, *n, "%02x", (u8)arg->bytes[j]);
> + if (!len)
> + return -EFBIG;
> + *n += len;
> + }
> + len = sysfs_emit_at(buf, *n, "\n");
> + if (!len)
> + return -EFBIG;
> + *n += len;
> }
>
> if (*n >= PAGE_SIZE) {
> @@ -465,6 +475,7 @@ static void affinity_domain_via_partition_result_parse(int returned_values,
> int element_size, char *buf, size_t *last_element,
> size_t *n, struct hv_gpci_request_buffer *arg)
> {
> + int len;
> size_t i = 0, j = 0;
> size_t k, l, m;
> uint16_t total_affinity_domain_ele, size_of_each_affinity_domain_ele;
> @@ -483,22 +494,49 @@ static void affinity_domain_via_partition_result_parse(int returned_values,
> */
> while (i < returned_values) {
> k = j;
> - for (; k < j + element_size; k++)
> - *n += sprintf(buf + *n, "%02x", (u8)arg->bytes[k]);
> - *n += sprintf(buf + *n, "\n");
> + for (; k < j + element_size; k++) {
> + len = sysfs_emit_at(buf, *n, "%02x", (u8)arg->bytes[k]);
> + if (!len) {
> + *n = PAGE_SIZE;
> + return;
> + }
> + *n += len;
> + }
> + len = sysfs_emit_at(buf, *n, "\n");
> + if (!len) {
> + *n = PAGE_SIZE;
> + return;
> + }
> + *n += len;
>
> total_affinity_domain_ele = (u8)arg->bytes[k - 2] << 8 | (u8)arg->bytes[k - 3];
> size_of_each_affinity_domain_ele = (u8)arg->bytes[k] << 8 | (u8)arg->bytes[k - 1];
>
> for (l = 0; l < total_affinity_domain_ele; l++) {
> for (m = 0; m < size_of_each_affinity_domain_ele; m++) {
> - *n += sprintf(buf + *n, "%02x", (u8)arg->bytes[k]);
> + len = sysfs_emit_at(buf, *n, "%02x",
> + (u8)arg->bytes[k]);
> + if (!len) {
> + *n = PAGE_SIZE;
> + return;
> + }
> + *n += len;
> k++;
> }
> - *n += sprintf(buf + *n, "\n");
> + len = sysfs_emit_at(buf, *n, "\n");
> + if (!len) {
> + *n = PAGE_SIZE;
> + return;
> + }
> + *n += len;
> }
>
> - *n += sprintf(buf + *n, "\n");
> + len = sysfs_emit_at(buf, *n, "\n");
> + if (!len) {
> + *n = PAGE_SIZE;
> + return;
> + }
> + *n += len;
> i++;
> j = k;
> }
prev parent reply other threads:[~2026-04-17 7:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-17 7:48 [PATCH] powerpc/perf/hv-gpci: bound sysfs formatting with sysfs_emit_at() Pengpeng Hou
2026-04-17 7:58 ` Christophe Leroy (CS GROUP) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b0c30cf3-751e-4f65-81ea-393c568dde56@kernel.org \
--to=chleroy@kernel.org \
--cc=kees@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=npiggin@gmail.com \
--cc=pengpeng@iscas.ac.cn \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox