linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Jassi Brar <jaswinder.singh@linaro.org>,
	"David S. Miller" <davem@davemloft.net>,
	Wei Yongjun <weiyongjun1@huawei.com>,
	"<netdev@vger.kernel.org>" <netdev@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] [net-next] net: netsec: use dma_addr_t for storing dma address
Date: Sat, 13 Jan 2018 21:32:27 +0000	[thread overview]
Message-ID: <CAKv+Gu8CbR3Bem8jLTE9JcaXWchAodvzXMATFWBOoDbaFd9BLw@mail.gmail.com> (raw)
In-Reply-To: <20180113211355.638195-1-arnd@arndb.de>

On 13 January 2018 at 21:13, Arnd Bergmann <arnd@arndb.de> wrote:
> On targets that have different sizes for phys_addr_t and dma_addr_t,
> we get a type mismatch error:
>
> drivers/net/ethernet/socionext/netsec.c: In function 'netsec_alloc_dring':
> drivers/net/ethernet/socionext/netsec.c:970:9: error: passing argument 3 of 'dma_zalloc_coherent' from incompatible pointer type [-Werror=incompatible-pointer-types]
>
> The code is otherwise correct, as the address is never actually used as a
> physical address but only passed into a DMA register.  For consistently,

consistency

> I'm changing the variable name as well, to clarify that this is a DMA
> address.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

> ---
>  drivers/net/ethernet/socionext/netsec.c | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/net/ethernet/socionext/netsec.c b/drivers/net/ethernet/socionext/netsec.c
> index 6c263af86b8a..f4c0b02ddad8 100644
> --- a/drivers/net/ethernet/socionext/netsec.c
> +++ b/drivers/net/ethernet/socionext/netsec.c
> @@ -252,7 +252,7 @@ struct netsec_desc {
>  };
>
>  struct netsec_desc_ring {
> -       phys_addr_t desc_phys;
> +       dma_addr_t desc_dma;
>         struct netsec_desc *desc;
>         void *vaddr;
>         u16 pkt_cnt;
> @@ -953,7 +953,7 @@ static void netsec_free_dring(struct netsec_priv *priv, int id)
>
>         if (dring->vaddr) {
>                 dma_free_coherent(priv->dev, DESC_SZ * DESC_NUM,
> -                                 dring->vaddr, dring->desc_phys);
> +                                 dring->vaddr, dring->desc_dma);
>                 dring->vaddr = NULL;
>         }
>
> @@ -967,7 +967,7 @@ static int netsec_alloc_dring(struct netsec_priv *priv, enum ring_id id)
>         int ret = 0;
>
>         dring->vaddr = dma_zalloc_coherent(priv->dev, DESC_SZ * DESC_NUM,
> -                                          &dring->desc_phys, GFP_KERNEL);
> +                                          &dring->desc_dma, GFP_KERNEL);
>         if (!dring->vaddr) {
>                 ret = -ENOMEM;
>                 goto err;
> @@ -1087,14 +1087,14 @@ static int netsec_reset_hardware(struct netsec_priv *priv)
>
>         /* set desc_start addr */
>         netsec_write(priv, NETSEC_REG_NRM_RX_DESC_START_UP,
> -                    upper_32_bits(priv->desc_ring[NETSEC_RING_RX].desc_phys));
> +                    upper_32_bits(priv->desc_ring[NETSEC_RING_RX].desc_dma));
>         netsec_write(priv, NETSEC_REG_NRM_RX_DESC_START_LW,
> -                    lower_32_bits(priv->desc_ring[NETSEC_RING_RX].desc_phys));
> +                    lower_32_bits(priv->desc_ring[NETSEC_RING_RX].desc_dma));
>
>         netsec_write(priv, NETSEC_REG_NRM_TX_DESC_START_UP,
> -                    upper_32_bits(priv->desc_ring[NETSEC_RING_TX].desc_phys));
> +                    upper_32_bits(priv->desc_ring[NETSEC_RING_TX].desc_dma));
>         netsec_write(priv, NETSEC_REG_NRM_TX_DESC_START_LW,
> -                    lower_32_bits(priv->desc_ring[NETSEC_RING_TX].desc_phys));
> +                    lower_32_bits(priv->desc_ring[NETSEC_RING_TX].desc_dma));
>
>         /* set normal tx dring ring config */
>         netsec_write(priv, NETSEC_REG_NRM_TX_CONFIG,
> --
> 2.9.0
>

  reply	other threads:[~2018-01-13 21:32 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-13 21:13 [PATCH] [net-next] net: netsec: use dma_addr_t for storing dma address Arnd Bergmann
2018-01-13 21:32 ` Ard Biesheuvel [this message]
2018-01-14 17:00 ` David Miller

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=CAKv+Gu8CbR3Bem8jLTE9JcaXWchAodvzXMATFWBOoDbaFd9BLw@mail.gmail.com \
    --to=ard.biesheuvel@linaro.org \
    --cc=arnd@arndb.de \
    --cc=davem@davemloft.net \
    --cc=jaswinder.singh@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=weiyongjun1@huawei.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;
as well as URLs for NNTP newsgroup(s).