summaryrefslogtreecommitdiffstats
path: root/arch/avr32
diff options
context:
space:
mode:
authorTom Herbert <tom@herbertland.com>2016-02-24 10:02:52 -0800
committerDavid S. Miller <davem@davemloft.net>2016-02-25 22:01:22 -0500
commita87cb3e48ee86d29868d3f59cfb9ce1a8fa63314 (patch)
tree4002824d66c34364f18019c659aa6adaedb9ab27 /arch/avr32
parentf1705ec197e705b79ea40fe7a2cc5acfa1d3bfac (diff)
downloadlinux-a87cb3e48ee86d29868d3f59cfb9ce1a8fa63314.tar.gz
linux-a87cb3e48ee86d29868d3f59cfb9ce1a8fa63314.tar.xz
net: Facility to report route quality of connected sockets
This patch add the SO_CNX_ADVICE socket option (setsockopt only). The purpose is to allow an application to give feedback to the kernel about the quality of the network path for a connected socket. The value argument indicates the type of quality report. For this initial patch the only supported advice is a value of 1 which indicates "bad path, please reroute"-- the action taken by the kernel is to call dst_negative_advice which will attempt to choose a different ECMP route, reset the TX hash for flow label and UDP source port in encapsulation, etc. This facility should be useful for connected UDP sockets where only the application can provide any feedback about path quality. It could also be useful for TCP applications that have additional knowledge about the path outside of the normal TCP control loop. Signed-off-by: Tom Herbert <tom@herbertland.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/avr32')
-rw-r--r--arch/avr32/include/uapi/asm/socket.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/include/uapi/asm/socket.h b/arch/avr32/include/uapi/asm/socket.h
index 9de0796240a0..1fd147f09a38 100644
--- a/arch/avr32/include/uapi/asm/socket.h
+++ b/arch/avr32/include/uapi/asm/socket.h
@@ -88,4 +88,6 @@
#define SO_ATTACH_REUSEPORT_CBPF 51
#define SO_ATTACH_REUSEPORT_EBPF 52
+#define SO_CNX_ADVICE 53
+
#endif /* _UAPI__ASM_AVR32_SOCKET_H */