Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a01512db authored by Dave Watson's avatar Dave Watson Committed by David S. Miller
Browse files

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: default avatarDave Watson <davejwatson@fb.com>
Acked-by: default avatarTom Herbert <tom@herbertland.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f1ff8666
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -390,9 +390,6 @@ static void do_strp_rx_work(struct strparser *strp)
	 */
	lock_sock(csk);

	if (unlikely(csk->sk_user_data != strp))
		goto out;

	if (unlikely(strp->rx_stopped))
		goto out;