]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
netns: ip6mr: declare counter cache_resolve_queue_len per-namespace
authorBenjamin Thery <benjamin.thery@bull.net>
Thu, 11 Dec 2008 00:27:21 +0000 (16:27 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Dec 2008 00:27:21 +0000 (16:27 -0800)
commit4045e57c19bee150370390545ee8a933b3f7a18d
treea4744efeed6819eff5acd9c13ca0fafe71df144d
parent4a6258a0e33d042e4c84d9dec25d45ddb40a70b3
netns: ip6mr: declare counter cache_resolve_queue_len per-namespace

Preliminary work to make IPv6 multicast forwarding netns-aware.

Declare variable cache_resolve_queue_len per-namespace: moves it into
struct netns_ipv6.

This variable counts the number of unresolved cache entries queued in the
list mfc_unres_queue. This list is kept global to all netns as the number
of entries per namespace is limited to 10 (hardcoded in routine
ip6mr_cache_unresolved).
Entries belonging to different namespaces in mfc_unres_queue will be
identified by matching the mfc_net member introduced previously in
struct mfc6_cache.

Keeping this list global to all netns, also allows us to keep a single
timer (ipmr_expire_timer) to handle their expiration.
In some places cache_resolve_queue_len value was tested for arming
or deleting the timer. These tests were equivalent to testing
mfc_unres_queue value instead and are replaced in this patch.

At the moment, cache_resolve_queue_len is only referenced in init_net.

Signed-off-by: Benjamin Thery <benjamin.thery@bull.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/netns/ipv6.h
net/ipv6/ip6mr.c