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

From: Deepak R Varma
Date: Sun Feb 26 2023 - 12:37:28 EST


On Thu, Feb 23, 2023 at 10:25:45AM +0530, Deepak R Varma wrote:
> 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.

Hello Peter,
I reviewed the code more closely and concluded that the current implementation
is better as is. I sent in a v3 with necessary correction for your review.

I do have another observation from this area that I will send in as a separate
patch soon.

Thank you again.
./drv


>
> Thank you Peter.
>
> Regards,
> ./drv