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

Commit 1d9a5482 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: ipc_router: Remove header length check"

parents 79e0bd5f b6912518
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -255,7 +255,7 @@ static void xprt_read_data(struct work_struct *work)
	hdr_len = sizeof(struct rr_header_v1);
	while (1) {
		rx_avail = fifo_rx_avail(&xprtp->rx_pipe);
		if (!rx_avail || (rx_avail < hdr_len))
		if (!rx_avail)
			break;

		fifo_rx_peak(&xprtp->rx_pipe, &hdr, 0, hdr_len);