Skip to content

Commit ddfc9f7

Browse files
hayesorzgregkh
authored andcommitted
r8152: fix the list rx_done may be used without initialization
[ Upstream commit 98d068a ] The list rx_done would be initialized when the linking on occurs. Therefore, if a napi is scheduled without any linking on before, the following kernel panic would happen. BUG: unable to handle kernel NULL pointer dereference at 000000000000008 IP: [<ffffffffc085efde>] r8152_poll+0xe1e/0x1210 [r8152] PGD 0 Oops: 0002 [#1] SMP Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9712b2b commit ddfc9f7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/net/usb/r8152.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,6 +1362,7 @@ static int alloc_all_mem(struct r8152 *tp)
13621362
spin_lock_init(&tp->rx_lock);
13631363
spin_lock_init(&tp->tx_lock);
13641364
INIT_LIST_HEAD(&tp->tx_free);
1365+
INIT_LIST_HEAD(&tp->rx_done);
13651366
skb_queue_head_init(&tp->tx_queue);
13661367
skb_queue_head_init(&tp->rx_queue);
13671368

0 commit comments

Comments
 (0)