net: Add comment that early_demux can change via sysctl
Twice patches trying to constify inet{6}_protocol have been reverted:39294c3df2
("Revert "ipv6: constify inet6_protocol structures"") to revert3a3a4e3054
and then03157937fe
("Revert "ipv4: make net_protocol const"") to revertaa8db499ea
. Add a comment that the structures can not be const because the early_demux field can change based on a sysctl. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
cc8737a5fe
commit
a8e3bb347d
@@ -1472,6 +1472,9 @@ int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
|
||||
}
|
||||
#endif
|
||||
|
||||
/* thinking of making this const? Don't.
|
||||
* early_demux can change based on sysctl.
|
||||
*/
|
||||
static struct inet6_protocol udpv6_protocol = {
|
||||
.early_demux = udp_v6_early_demux,
|
||||
.early_demux_handler = udp_v6_early_demux,
|
||||
|
Reference in New Issue
Block a user