All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Athira Rajeev" <atrajeev@linux.ibm.com>
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH V2 2/2] tools/perf: Add kernel-doc comment to auxtrace_record__init() function
Date: Fri, 01 May 2026 16:54:32 +0000	[thread overview]
Message-ID: <20260501165433.60CADC2BCB4@smtp.kernel.org> (raw)
In-Reply-To: <20260501145436.1327-2-atrajeev@linux.ibm.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The added kernel-doc comment incorrectly documents a NULL return value as strictly a failure, which contradicts the actual API behavior and the implementation directly below it.
--

commit 32a1e931b50aecc6b395f4170e1b7ccb2ad1db6c
Author: Athira Rajeev <atrajeev@linux.ibm.com>

tools/perf: Add kernel-doc comment to auxtrace_record__init() function

This commit adds a kernel-doc comment for auxtrace_record__init() to
describe its parameters and return value. It also rearranges the
__maybe_unused attribute to fix a kernel-doc warning.

> diff --git a/tools/perf/util/auxtrace.c b/tools/perf/util/auxtrace.c
> --- a/tools/perf/util/auxtrace.c
> +++ b/tools/perf/util/auxtrace.c

[ ... ]

> +/**
> + * auxtrace_record__init - Initialize an AUX area tracing record.
> + * @evlist: The list of events to check for AUX area tracing event.
> + * @err: Pointer to an integer to store return code.
> + *
> + * This function looks through the @evlist to determine which AUX area
> + * tracing hardware is being used and initializes the auxtrace_record
> + * structure.
> + *
> + * Return: A pointer to the struct auxtrace_record on success, or NULL on
> + * failure (@err needs to be set).
> + */
>  struct auxtrace_record *__weak
> -auxtrace_record__init(struct evlist *evlist __maybe_unused, int *err)
> +auxtrace_record__init(struct evlist __maybe_unused *evlist, int *err)
>  {
>  	*err = 0;
>  	return NULL;
>  }

Does this kernel-doc comment accurately describe the return value
expectations?

The weak implementation of auxtrace_record__init() directly below this
comment returns NULL and sets *err = 0. Returning NULL with a zero error
code appears to be the designated success path to indicate that no AUX area
tracing hardware is available, rather than a failure.

Could the documentation be updated to reflect that returning NULL with
*err = 0 is a valid success condition?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260501145436.1327-1-atrajeev@linux.ibm.com?part=2

      reply	other threads:[~2026-05-01 16:54 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-01 14:54 [PATCH V2 1/2] powerpc tools perf: Initialize error code in auxtrace_record_init function Athira Rajeev
2026-05-01 14:54 ` [PATCH V2 2/2] tools/perf: Add kernel-doc comment to auxtrace_record__init() function Athira Rajeev
2026-05-01 16:54   ` sashiko-bot [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=20260501165433.60CADC2BCB4@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=atrajeev@linux.ibm.com \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=sashiko@lists.linux.dev \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.