From: "Jürgen Groß" <jgross@suse.com>
To: yskelg@gmail.com, Stefano Stabellini <sstabellini@kernel.org>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Cc: skhan@linuxfoundation.org, sj@kernel.org,
Austin Kim <austindh.kim@gmail.com>,
shjy180909@gmail.com, linux-kernel@vger.kernel.org,
xen-devel@lists.xenproject.org,
linux-kernel-mentees@lists.linuxfoundation.org
Subject: Re: [PATCH] xen/xenbus: handle pointer to NULL in alloc/free_pdev
Date: Wed, 29 May 2024 15:28:44 +0200 [thread overview]
Message-ID: <2095a4a2-7db5-4de6-9609-d8e6a5adf27f@suse.com> (raw)
In-Reply-To: <20240529131926.29590-1-yskelg@gmail.com>
On 29.05.24 15:19, yskelg@gmail.com wrote:
> From: Yunseong Kim <yskelg@gmail.com>
>
> Modify 'alloc_pdev()' to set 'pdev->xdev' to NULL
> if 'xen_pcibk_init_devices()' fails. This ensures that 'pdev->xdev' does
> not point to 'xdev' when 'pdev' is freed.
> And modify 'free_pdev()' to set 'pdev' to NULL.
>
> Signed-off-by: Yunseong Kim <yskelg@gmail.com>
> ---
> drivers/xen/xen-pciback/xenbus.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c
> index b11e401f1b1e..f1709b8e284a 100644
> --- a/drivers/xen/xen-pciback/xenbus.c
> +++ b/drivers/xen/xen-pciback/xenbus.c
> @@ -54,6 +54,7 @@ static struct xen_pcibk_device *alloc_pdev(struct xenbus_device *xdev)
> INIT_WORK(&pdev->op_work, xen_pcibk_do_op);
>
> if (xen_pcibk_init_devices(pdev)) {
> + pdev->xdev = NULL;
> kfree(pdev);
> pdev = NULL;
> }
> @@ -102,6 +103,7 @@ static void free_pdev(struct xen_pcibk_device *pdev)
> pdev->xdev = NULL;
>
> kfree(pdev);
> + pdev = NULL;
> }
>
> static int xen_pcibk_do_attach(struct xen_pcibk_device *pdev, int gnt_ref,
NAK!
Please stop that nonsense. NULL-ing pointers which have no chance to be used any
more is just adding code for no purpose at all.
Please don't send other iterations of this patch. You are wasting review
bandwidth.
Juergen
prev parent reply other threads:[~2024-05-29 13:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-29 13:19 [PATCH] xen/xenbus: handle pointer to NULL in alloc/free_pdev yskelg
2024-05-29 13:28 ` Jürgen Groß [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=2095a4a2-7db5-4de6-9609-d8e6a5adf27f@suse.com \
--to=jgross@suse.com \
--cc=austindh.kim@gmail.com \
--cc=linux-kernel-mentees@lists.linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oleksandr_tyshchenko@epam.com \
--cc=shjy180909@gmail.com \
--cc=sj@kernel.org \
--cc=skhan@linuxfoundation.org \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.org \
--cc=yskelg@gmail.com \
/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