]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
staging: r8188eu: fix endless loop in recv_func
authorMartin Kaiser <martin@kaiser.cx>
Sat, 26 Feb 2022 18:14:53 +0000 (19:14 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Apr 2022 12:06:23 +0000 (14:06 +0200)
[ Upstream commit 1327fcf175fa63d3b7a058b8148ed7714acdc035 ]

Fix an endless loop in recv_func. If pending_frame is not NULL, we're
stuck in the while loop forever. We have to call rtw_alloc_recvframe
each time we loop.

Fixes: 15865124feed ("staging: r8188eu: introduce new core dir for RTL8188eu driver")
Reported-by: Pavel Skripkin <paskripkin@gmail.com>
Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20220226181457.1138035-4-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/staging/r8188eu/core/rtw_recv.c

index 51a13262a226fb3f622fb9a964e7a306a430f243..d120d61454a354480cee395642e80a5e61d95a76 100644 (file)
@@ -1853,8 +1853,7 @@ static int recv_func(struct adapter *padapter, struct recv_frame *rframe)
                struct recv_frame *pending_frame;
                int cnt = 0;
 
-               pending_frame = rtw_alloc_recvframe(&padapter->recvpriv.uc_swdec_pending_queue);
-               while (pending_frame) {
+               while ((pending_frame = rtw_alloc_recvframe(&padapter->recvpriv.uc_swdec_pending_queue))) {
                        cnt++;
                        recv_func_posthandle(padapter, pending_frame);
                }