net: strparser: fix strparser sk_user_data check
sk_user_data mismatch between what kcm expects (psock) and what strparser expects (strparser). Queued rx_work, for example calling strp_check_rcv after socket buffer changes, will never complete. sk_user_data is unused in strparser, so just remove the check. Signed-off-by: Dave Watson <davejwatson@fb.com> Acked-by: Tom Herbert <tom@herbertland.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f1ff8666ed
commit
a01512dbe3
1 changed files with 0 additions and 3 deletions
|
@ -390,9 +390,6 @@ static void do_strp_rx_work(struct strparser *strp)
|
||||||
*/
|
*/
|
||||||
lock_sock(csk);
|
lock_sock(csk);
|
||||||
|
|
||||||
if (unlikely(csk->sk_user_data != strp))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (unlikely(strp->rx_stopped))
|
if (unlikely(strp->rx_stopped))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue