]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
r8152: fix the list rx_done may be used without initialization
authorhayeswang <hayeswang@realtek.com>
Tue, 14 Mar 2017 06:15:20 +0000 (14:15 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Dec 2017 13:20:06 +0000 (14:20 +0100)
commit40ce0aa9a77ecef7ada777f71d35e24b6ba542e7
treea54ce1f925c9af37abe1698930318b09ad48f07b
parent9577b6c79531b3336566b4b8366982a377b1658c
r8152: fix the list rx_done may be used without initialization

[ Upstream commit 98d068ab52b4b11d403995ed14154660797e7136 ]

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>
drivers/net/usb/r8152.c