From: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Leon Romanovsky <leon-2ukJVAZIZ/Y@public.gmane.org>,
matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
achiad-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Leon Romanovsky <leon-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Subject: Re: [PATCH] IB/mlx5: Fix passing casted pointer in mlx5_query_port_roce
Date: Tue, 19 Jan 2016 16:01:48 -0500 [thread overview]
Message-ID: <569EA43C.6050005@redhat.com> (raw)
In-Reply-To: <1452337279-13593-1-git-send-email-leon-2ukJVAZIZ/Y@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 1709 bytes --]
On 01/09/2016 06:01 AM, Leon Romanovsky wrote:
> Fix static checker warning:
> drivers/infiniband/hw/mlx5/main.c:149 mlx5_query_port_roce()
> warn: passing casted pointer '&props->qkey_viol_cntr' to
> 'mlx5_query_nic_vport_qkey_viol_cntr()' 32 vs 16.
>
> Fixes: 3f89a643eb29 ("IB/mlx5: Extend query_device/port to support RoCE")
> Reported-by: Dan Carpenter <dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Leon Romanovsky <leon-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> drivers/infiniband/hw/mlx5/main.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c
> index 5e3d3ae..890cf20 100644
> --- a/drivers/infiniband/hw/mlx5/main.c
> +++ b/drivers/infiniband/hw/mlx5/main.c
> @@ -132,6 +132,7 @@ static int mlx5_query_port_roce(struct ib_device *device, u8 port_num,
> struct mlx5_ib_dev *dev = to_mdev(device);
> struct net_device *ndev;
> enum ib_mtu ndev_ib_mtu;
> + u16 qkey_viol_cntr;
>
> memset(props, 0, sizeof(*props));
>
> @@ -146,8 +147,8 @@ static int mlx5_query_port_roce(struct ib_device *device, u8 port_num,
> props->state = IB_PORT_DOWN;
> props->phys_state = 3;
>
> - mlx5_query_nic_vport_qkey_viol_cntr(dev->mdev,
> - (u16 *)&props->qkey_viol_cntr);
> + mlx5_query_nic_vport_qkey_viol_cntr(dev->mdev, &qkey_viol_cntr);
> + props->qkey_viol_cntr = qkey_viol_cntr;
>
> ndev = mlx5_ib_get_netdev(device, port_num);
> if (!ndev)
>
Thanks, applied.
--
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
GPG KeyID: 0E572FDD
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]
next prev parent reply other threads:[~2016-01-19 21:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-09 11:01 [PATCH] IB/mlx5: Fix passing casted pointer in mlx5_query_port_roce Leon Romanovsky
[not found] ` <1452337279-13593-1-git-send-email-leon-2ukJVAZIZ/Y@public.gmane.org>
2016-01-19 21:01 ` Doug Ledford [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-01-09 11:06 Leon Romanovsky
[not found] ` <1452337585-13857-1-git-send-email-leon-2ukJVAZIZ/Y@public.gmane.org>
2016-01-10 11:47 ` Sagi Grimberg
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=569EA43C.6050005@redhat.com \
--to=dledford-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=achiad-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=leon-2ukJVAZIZ/Y@public.gmane.org \
--cc=leon-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=matanb-VPRAkNaXOzVWk0Htik3J/w@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).