* [bug report] fpga: zynq: Fix incorrect variable type
@ 2022-04-25 11:36 Dan Carpenter
2022-04-25 13:21 ` Xu Yilun
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2022-04-25 11:36 UTC (permalink / raw)
To: nava.manne, Moritz Fischer, lkp; +Cc: linux-fpga
Hello Nava kishore Manne,
The patch ada14a023a64: "fpga: zynq: Fix incorrect variable type"
from Apr 21, 2022, leads to the following Smatch static checker
warning:
drivers/fpga/zynq-fpga.c:245 zynq_fpga_has_sync()
warn: impossible condition '(buf[2] == 153) => ((-128)-127 == 153)'
drivers/fpga/zynq-fpga.c
242 static bool zynq_fpga_has_sync(const char *buf, size_t count)
243 {
244 for (; count >= 4; buf += 4, count -= 4)
--> 245 if (buf[0] == 0x66 && buf[1] == 0x55 && buf[2] == 0x99 &&
^^^^^^^^^^^^^^
The patch changed the u8 to char.
The kbuild bot sent an email about this bug on Apr 4 but only Nava was
on the CC and the warning was ignored. This kind of a dangerous thing,
because I tend to only send warnings once.
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org/thread/4RFIS5FM43D2U26PX7ZL44AFA5RYBWX2/
There is a process issue somewhere. Why was the linux-fpga@vger.kernel.org
not CC'd on the original report? Did you deliberately ask to be left
off automated bug reports?
246 buf[3] == 0xaa)
247 return true;
248 return false;
249 }
regards,
dan carpenter
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [bug report] fpga: zynq: Fix incorrect variable type
2022-04-25 11:36 [bug report] fpga: zynq: Fix incorrect variable type Dan Carpenter
@ 2022-04-25 13:21 ` Xu Yilun
0 siblings, 0 replies; 2+ messages in thread
From: Xu Yilun @ 2022-04-25 13:21 UTC (permalink / raw)
To: Dan Carpenter; +Cc: nava.manne, Moritz Fischer, lkp, linux-fpga
On Mon, Apr 25, 2022 at 02:36:39PM +0300, Dan Carpenter wrote:
> Hello Nava kishore Manne,
>
> The patch ada14a023a64: "fpga: zynq: Fix incorrect variable type"
> from Apr 21, 2022, leads to the following Smatch static checker
> warning:
>
> drivers/fpga/zynq-fpga.c:245 zynq_fpga_has_sync()
> warn: impossible condition '(buf[2] == 153) => ((-128)-127 == 153)'
>
> drivers/fpga/zynq-fpga.c
> 242 static bool zynq_fpga_has_sync(const char *buf, size_t count)
> 243 {
> 244 for (; count >= 4; buf += 4, count -= 4)
> --> 245 if (buf[0] == 0x66 && buf[1] == 0x55 && buf[2] == 0x99 &&
> ^^^^^^^^^^^^^^
> The patch changed the u8 to char.
>
> The kbuild bot sent an email about this bug on Apr 4 but only Nava was
> on the CC and the warning was ignored. This kind of a dangerous thing,
> because I tend to only send warnings once.
>
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org/thread/4RFIS5FM43D2U26PX7ZL44AFA5RYBWX2/
>
> There is a process issue somewhere. Why was the linux-fpga@vger.kernel.org
> not CC'd on the original report? Did you deliberately ask to be left
> off automated bug reports?
Thanks for the notification. I did't realize that linux-fpga@vger.kernel.org
is out of lkp report, it should not be our intent.
Anything I should do to get back in?
Thanks,
Yilun
>
> 246 buf[3] == 0xaa)
> 247 return true;
> 248 return false;
> 249 }
>
> regards,
> dan carpenter
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-25 13:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-25 11:36 [bug report] fpga: zynq: Fix incorrect variable type Dan Carpenter
2022-04-25 13:21 ` Xu Yilun
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).