Re: [PATCH v2 1/3] perf/x86/core: Use sysfs_emit() in show() callback function

From: Deepak R Varma
Date: Wed Feb 22 2023 - 23:56:48 EST


On Wed, Feb 22, 2023 at 09:35:53PM +0100, Peter Zijlstra wrote:
> On Tue, Feb 21, 2023 at 07:36:12PM +0530, Deepak R Varma wrote:
> > diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c
> > index 85a63a41c471..27c03e6dcb5d 100644
> > --- a/arch/x86/events/core.c
> > +++ b/arch/x86/events/core.c
> > @@ -1896,9 +1896,7 @@ ssize_t events_hybrid_sysfs_show(struct device *dev,
> > if (x86_pmu.hybrid_pmu[i].cpu_type & pmu->cpu_type) {
> > next_str = strchr(str, ';');
> > if (next_str)
> > - return snprintf(page, next_str - str + 1, "%s", str);
> > - else
> > - return sprintf(page, "%s", str);
> > + return sysfs_emit(page, "%s", str);
> > }
> > str = strchr(str, ';');
> > str++;
>
> How is this correct ?!?

oops.. that is bad on my part. My apologies for the wrong code.
I will correct it and send in v3.

Thank you Peter.

Regards,
./drv