From: "Vishwanathapura, Niranjana" <niranjana.vishwanathapura-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
Dennis Dalessandro
<dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH for-rc v1] IB/core, opa_vnic, hfi1, mlx5: Properly free rdma_netdev
Date: Wed, 5 Jul 2017 14:52:02 -0700 [thread overview]
Message-ID: <20170705215200.GA85407@knc-06.sc.intel.com> (raw)
In-Reply-To: <8e959601996dc645f4ed7004482a1667c27deb39.1499289360.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Thanks Doug for updating the patch with the fix.
>@@ -3550,16 +3555,19 @@ mlx5_ib_alloc_rdma_netdev(struct ib_device *hca,
> unsigned char name_assign_type,
> void (*setup)(struct net_device *))
> {
>+ struct net_device *netdev;
>+ struct rdma_netdev *rn;
>+
> if (type != RDMA_NETDEV_IPOIB)
> return ERR_PTR(-EOPNOTSUPP);
>
>- return mlx5_rdma_netdev_alloc(to_mdev(hca)->mdev, hca,
>- name, setup);
>-}
>-
>-static void mlx5_ib_free_rdma_netdev(struct net_device *netdev)
>-{
>- return mlx5_rdma_netdev_free(netdev);
>+ netdev = mlx5_rdma_netdev_alloc(to_mdev(hca)->mdev, hca,
>+ name, setup);
>+ if (likely(!IS_ERR_OR_NULL(netdev))) {
>+ rn = netdev_priv(netdev);
>+ rn->free_rdma_netdev = mlx5_ib_free_rdma_netdev;
>+ }
Looks like mlx5_rdma_netdev_alloc() always return NULL in case of error, hence
null check should have been suffecient. But the above check will also do, I am
fine with this change.
Niranjana
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-07-05 21:52 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-05 21:17 [PATCH for-rc v1] IB/core, opa_vnic, hfi1, mlx5: Properly free rdma_netdev Doug Ledford
[not found] ` <8e959601996dc645f4ed7004482a1667c27deb39.1499289360.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-07-05 21:52 ` Vishwanathapura, Niranjana [this message]
[not found] ` <20170705215200.GA85407-wPcXA7LoDC+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-07-05 23:31 ` Doug Ledford
[not found] ` <1499297470.2783.29.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-07-05 23:35 ` Vishwanathapura, Niranjana
2017-07-06 4:23 ` Leon Romanovsky
[not found] ` <20170706042347.GP1528-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-07-06 13:40 ` Doug Ledford
[not found] ` <1499348404.2783.32.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-07-06 14:11 ` Leon Romanovsky
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=20170705215200.GA85407@knc-06.sc.intel.com \
--to=niranjana.vishwanathapura-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.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 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.