#ifndef __LOCKD_NETNS_H__ #define __LOCKD_NETNS_H__ #include #include struct lockd_net { unsigned int nlmsvc_users; unsigned long next_gc; unsigned long nrhosts; struct delayed_work grace_period_end; struct lock_manager lockd_manager; struct list_head nsm_handles; }; extern unsigned int lockd_net_id; #endif /atom+xml'/>
summaryrefslogtreecommitdiff
>
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorDavid Ahern <dsa@cumulusnetworks.com>2017-02-02 08:52:21 -0800
committerDavid S. Miller <davem@davemloft.net>2017-02-03 16:01:44 -0500
commit94b5e0f970258828bf163b5ef076da4e4b0802e0 (patch)
treeb0fcd7892b00ecdccdc4328a632d98e74d6f265f /net/ipv6
parent3898fac1f488c76e0eef5b5267b4ba8112a82ac4 (diff)
net: ipv6: Set protocol to kernel for local routes
IPv6 stack does not set the protocol for local routes, so those routes show up with proto "none": $ ip -6 ro ls table local local ::1 dev lo proto none metric 0 pref medium local 2100:3:: dev lo proto none metric 0 pref medium local 2100:3::4 dev lo proto none metric 0 pref medium local fe80:: dev lo proto none metric 0 pref medium ... Set rt6i_protocol to RTPROT_KERNEL for consistency with IPv4. Now routes show up with proto "kernel": $ ip -6 ro ls table local local ::1 dev lo proto kernel metric 0 pref medium local 2100:3:: dev lo proto kernel metric 0 pref medium local 2100:3::4 dev lo proto kernel metric 0 pref medium local fe80:: dev lo proto kernel metric 0 pref medium ... Signed-off-by: David Ahern <dsa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/route.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c