From: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Lucas Tanure <tanure-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>,
Yishai Hadas <yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] infiniband: Replace memset with eth_zero_addr
Date: Tue, 19 Jan 2016 15:44:29 -0500 [thread overview]
Message-ID: <569EA02D.4050604@redhat.com> (raw)
In-Reply-To: <1453212390-6478-1-git-send-email-tanure-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 1880 bytes --]
On 01/19/2016 09:06 AM, Lucas Tanure wrote:
> Use eth_zero_addr to assign the zero address to the given address
> array instead of memset when second argument is address of zero.
>
> Signed-off-by: Lucas Tanure <tanure-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
> ---
> drivers/infiniband/hw/mlx4/ah.c | 2 +-
> drivers/infiniband/hw/nes/nes_utils.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/hw/mlx4/ah.c b/drivers/infiniband/hw/mlx4/ah.c
> index 86af713..44d4164 100644
> --- a/drivers/infiniband/hw/mlx4/ah.c
> +++ b/drivers/infiniband/hw/mlx4/ah.c
> @@ -92,7 +92,7 @@ static struct ib_ah *create_iboe_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr
> ah_attr->grh.sgid_index, &sgid, &gid_attr);
> if (ret)
> return ERR_PTR(ret);
> - memset(ah->av.eth.s_mac, 0, ETH_ALEN);
> + eth_zero_addr(ah->av.eth.s_mac);
> if (gid_attr.ndev) {
> if (is_vlan_dev(gid_attr.ndev))
> vlan_tag = vlan_dev_vlan_id(gid_attr.ndev);
> diff --git a/drivers/infiniband/hw/nes/nes_utils.c b/drivers/infiniband/hw/nes/nes_utils.c
> index 2042c0f..6d3a169 100644
> --- a/drivers/infiniband/hw/nes/nes_utils.c
> +++ b/drivers/infiniband/hw/nes/nes_utils.c
> @@ -727,7 +727,7 @@ int nes_arp_table(struct nes_device *nesdev, u32 ip_addr, u8 *mac_addr, u32 acti
> if (action == NES_ARP_DELETE) {
> nes_debug(NES_DBG_NETDEV, "DELETE, arp_index=%d\n", arp_index);
> nesadapter->arp_table[arp_index].ip_addr = 0;
> - memset(nesadapter->arp_table[arp_index].mac_addr, 0x00, ETH_ALEN);
> + eth_zero_addr(nesadapter->arp_table[arp_index].mac_addr);
> nes_free_resource(nesadapter, nesadapter->allocated_arps, arp_index);
> return arp_index;
> }
>
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 --]
WARNING: multiple messages have this Message-ID (diff)
From: Doug Ledford <dledford@redhat.com>
To: Lucas Tanure <tanure@linux.com>, Yishai Hadas <yishaih@mellanox.com>
Cc: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] infiniband: Replace memset with eth_zero_addr
Date: Tue, 19 Jan 2016 15:44:29 -0500 [thread overview]
Message-ID: <569EA02D.4050604@redhat.com> (raw)
In-Reply-To: <1453212390-6478-1-git-send-email-tanure@linux.com>
[-- Attachment #1: Type: text/plain, Size: 1821 bytes --]
On 01/19/2016 09:06 AM, Lucas Tanure wrote:
> Use eth_zero_addr to assign the zero address to the given address
> array instead of memset when second argument is address of zero.
>
> Signed-off-by: Lucas Tanure <tanure@linux.com>
> ---
> drivers/infiniband/hw/mlx4/ah.c | 2 +-
> drivers/infiniband/hw/nes/nes_utils.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/hw/mlx4/ah.c b/drivers/infiniband/hw/mlx4/ah.c
> index 86af713..44d4164 100644
> --- a/drivers/infiniband/hw/mlx4/ah.c
> +++ b/drivers/infiniband/hw/mlx4/ah.c
> @@ -92,7 +92,7 @@ static struct ib_ah *create_iboe_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr
> ah_attr->grh.sgid_index, &sgid, &gid_attr);
> if (ret)
> return ERR_PTR(ret);
> - memset(ah->av.eth.s_mac, 0, ETH_ALEN);
> + eth_zero_addr(ah->av.eth.s_mac);
> if (gid_attr.ndev) {
> if (is_vlan_dev(gid_attr.ndev))
> vlan_tag = vlan_dev_vlan_id(gid_attr.ndev);
> diff --git a/drivers/infiniband/hw/nes/nes_utils.c b/drivers/infiniband/hw/nes/nes_utils.c
> index 2042c0f..6d3a169 100644
> --- a/drivers/infiniband/hw/nes/nes_utils.c
> +++ b/drivers/infiniband/hw/nes/nes_utils.c
> @@ -727,7 +727,7 @@ int nes_arp_table(struct nes_device *nesdev, u32 ip_addr, u8 *mac_addr, u32 acti
> if (action == NES_ARP_DELETE) {
> nes_debug(NES_DBG_NETDEV, "DELETE, arp_index=%d\n", arp_index);
> nesadapter->arp_table[arp_index].ip_addr = 0;
> - memset(nesadapter->arp_table[arp_index].mac_addr, 0x00, ETH_ALEN);
> + eth_zero_addr(nesadapter->arp_table[arp_index].mac_addr);
> nes_free_resource(nesadapter, nesadapter->allocated_arps, arp_index);
> return arp_index;
> }
>
Thanks, applied.
--
Doug Ledford <dledford@redhat.com>
GPG KeyID: 0E572FDD
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]
next prev parent reply other threads:[~2016-01-19 20:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-19 14:06 [PATCH] infiniband: Replace memset with eth_zero_addr Lucas Tanure
2016-01-19 14:06 ` Lucas Tanure
[not found] ` <1453212390-6478-1-git-send-email-tanure-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
2016-01-19 20:44 ` Doug Ledford [this message]
2016-01-19 20:44 ` Doug Ledford
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=569EA02D.4050604@redhat.com \
--to=dledford-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=tanure-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org \
--cc=yishaih-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 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.