Re: [PATCH] net-ipv6: remove unused IP6_ECN_clear() function

2017-09-28 Thread David Miller
From: Maciej Żenczykowski Date: Tue, 26 Sep 2017 20:37:22 -0700 > From: Maciej Żenczykowski > > This function is unused, and furthermore it is buggy since it suffers > from the same issue that requires IP6_ECN_set_ce() to take a pointer > to the skb so that it may (in case of CHECKSUM_COMPLETE)

[PATCH] net-ipv6: remove unused IP6_ECN_clear() function

2017-09-26 Thread Maciej Żenczykowski
From: Maciej Żenczykowski This function is unused, and furthermore it is buggy since it suffers from the same issue that requires IP6_ECN_set_ce() to take a pointer to the skb so that it may (in case of CHECKSUM_COMPLETE) update skb->csum Instead of fixing it, let's just outright remove it. Tes