#ifndef __DT_BINDINGS_POWER_RK3288_POWER_H__ #define __DT_BINDINGS_POWER_RK3288_POWER_H__ /** * RK3288 Power Domain and Voltage Domain Summary. */ /* VD_CORE */ #define RK3288_PD_A17_0 0 #define RK3288_PD_A17_1 1 #define RK3288_PD_A17_2 2 #define RK3288_PD_A17_3 3 #define RK3288_PD_SCU 4 #define RK3288_PD_DEBUG 5 #define RK3288_PD_MEM 6 /* VD_LOGIC */ #define RK3288_PD_BUS 7 #define RK3288_PD_PERI 8 #define RK3288_PD_VIO 9 #define RK3288_PD_ALIVE 10 #define RK3288_PD_HEVC 11 #define RK3288_PD_VIDEO 12 /* VD_GPU */ #define RK3288_PD_GPU 13 /* VD_PMU */ #define RK3288_PD_PMU 14 #endif 'header'> cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/ipv6
diff options
context:
space:
mode:
authorJulian Anastasov <ja@ssi.bg>2017-02-06 23:14:12 +0200
committerDavid S. Miller <davem@davemloft.net>2017-02-07 13:07:46 -0500
commit4ff0620354f2b39b9fe2a91c22c4de9d1fba0c8e (patch)
tree1d29569c1059553f11c2da53df68f3698df92906 /net/ipv6
parent9b8805a325591cf5b6b9df71200de25a2bd721fd (diff)
net: add dst_pending_confirm flag to skbuff
Add new skbuff flag to allow protocols to confirm neighbour. When same struct dst_entry can be used for many different neighbours we can not use it for pending confirmations. Add sock_confirm_neigh() helper to confirm the neighbour and use it for IPv4, IPv6 and VRF before dst_neigh_output. Signed-off-by: Julian Anastasov <ja@ssi.bg> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/ip6_output.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c