[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAK8P3a3JTg5Mi2XC9AEC+YwH552M_TXDY4BaULZz5WmEb3woRQ@mail.gmail.com>
Date: Tue, 27 Oct 2020 14:23:46 +0100
From: Arnd Bergmann <arnd@...nel.org>
To: Xie He <xie.he.0141@...il.com>
Cc: Chas Williams <3chas3@...il.com>,
Nathan Chancellor <natechancellor@...il.com>,
Nick Desaulniers <ndesaulniers@...gle.com>,
"David S. Miller" <davem@...emloft.net>,
linux-atm-general@...ts.sourceforge.net,
Linux Kernel Network Developers <netdev@...r.kernel.org>,
LKML <linux-kernel@...r.kernel.org>,
clang-built-linux <clang-built-linux@...glegroups.com>
Subject: Re: [PATCH net-next 01/11] atm: horizon: shut up clang null pointer
arithmetic warning
On Tue, Oct 27, 2020 at 5:02 AM Xie He <xie.he.0141@...il.com> wrote:
>
> On Mon, Oct 26, 2020 at 8:56 PM Xie He <xie.he.0141@...il.com> wrote:
> >
> > > - for (mem = (HDW *) memmap; mem < (HDW *) (memmap + 1); ++mem)
> > > + for (mem = (HDW *) memmap; mem < (HDW *) ((uintptr_t)memmap + 1); ++mem)
> >
> > Note that these two lines are semantically different. In the first line,
> > "+ 1" moves the pointer by (sizeof memmap) bytes. However in the second
> > line, "+ 1" moves the pointer by only 1 byte.
>
> Correction: in the first line "+ 1" moves the pointer by (sizeof *memmap) bytes.
Ah, of course. I had looked up the types but mixed up the memmap
and HDW definitions, but then got confused trying to understand the
logic in wr_mem() that operates on bytes but expands them into
multiples of 4.
I've modified it as below now, will resend along with the other patches
if you think this makes sense.
Arnd
--- a/drivers/atm/horizon.c
+++ b/drivers/atm/horizon.c
@@ -1815,7 +1815,7 @@ static int hrz_init(hrz_dev *dev)
int buff_count;
- HDW * mem;
+ uintptr_t offset;
cell_buf * tx_desc;
cell_buf * rx_desc;
@@ -1841,8 +1841,8 @@ static int hrz_init(hrz_dev *dev)
printk (" clearing memory");
- for (mem = (HDW *) memmap; mem < (HDW *) (memmap + 1); ++mem)
- wr_mem (dev, mem, 0);
+ for (offset = 0; offset < sizeof(struct MEMMAP); offset++)
+ wr_mem (dev, (HDW *)offset, 0);
printk (" tx channels");
Powered by blists - more mailing lists