mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] usb: renesas_usbhs: fix error return code of usbhsf_pkt_handler()
@ 2021-03-07  9:00 Jia-Ju Bai
  2021-03-09 11:59 ` Yoshihiro Shimoda
  0 siblings, 1 reply; 6+ messages in thread
From: Jia-Ju Bai @ 2021-03-07  9:00 UTC (permalink / raw)
  To: gregkh, yoshihiro.shimoda.uh; +Cc: linux-usb, linux-kernel, Jia-Ju Bai

When __usbhsf_pkt_get() returns NULL to pkt, no error return code of
usbhsf_pkt_handler() is assigned.
To fix this bug, ret is assigned with -EINVAL in this case.

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
---
 drivers/usb/renesas_usbhs/fifo.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c
index e6fa13701808..b5e7991dc7d9 100644
--- a/drivers/usb/renesas_usbhs/fifo.c
+++ b/drivers/usb/renesas_usbhs/fifo.c
@@ -160,8 +160,10 @@ static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
 	usbhs_lock(priv, flags);
 
 	pkt = __usbhsf_pkt_get(pipe);
-	if (!pkt)
+	if (!pkt) {
+		ret = -EINVAL;
 		goto __usbhs_pkt_handler_end;
+	}
 
 	switch (type) {
 	case USBHSF_PKT_PREPARE:
-- 
2.17.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-03-10  5:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-07  9:00 [PATCH] usb: renesas_usbhs: fix error return code of usbhsf_pkt_handler() Jia-Ju Bai
2021-03-09 11:59 ` Yoshihiro Shimoda
2021-03-09 13:38   ` Jia-Ju Bai
2021-03-10  2:54     ` Yoshihiro Shimoda
2021-03-10  3:20       ` Jia-Ju Bai
2021-03-10  5:18         ` Yoshihiro Shimoda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®