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

Commit 38a7ddff authored by Petr Tesarik's avatar Petr Tesarik Committed by David S. Miller
Browse files

tcp: remove an unnecessary field in struct tcp_skb_cb



The urg_ptr field is not used anywhere and is merely confusing.

Signed-off-by: default avatarPetr Tesarik <ptesarik@suse.cz>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 00bcd522
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -590,7 +590,6 @@ struct tcp_skb_cb {
#define TCPCB_EVER_RETRANS	0x80	/* Ever retransmitted frame	*/
#define TCPCB_RETRANS		(TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS)

	__u16		urg_ptr;	/* Valid w/URG flags is set.	*/
	__u32		ack_seq;	/* Sequence number ACK'd	*/
};