Commit d4fa26ff authored by Daniel Lezcano's avatar Daniel Lezcano Committed by David S. Miller

[NETNS][DST]: Add the network namespace pointer in dst_ops

The network namespace pointer can be stored into the dst_ops structure.
This is usefull when there are multiple instances of the dst_ops for a
protocol. When there are no several instances, this field will be never
used in the protocol. So there is no impact for the protocols which do
implement the network namespaces.
Signed-off-by: default avatarDaniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 569d3645
...@@ -102,6 +102,7 @@ struct dst_ops ...@@ -102,6 +102,7 @@ struct dst_ops
atomic_t entries; atomic_t entries;
struct kmem_cache *kmem_cachep; struct kmem_cache *kmem_cachep;
struct net *dst_net;
}; };
#ifdef __KERNEL__ #ifdef __KERNEL__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment