Netdev List
 help / color / mirror / Atom feed
* Re: [PATCH net-next v2 0/5] bonding: patchset for rcu use in bonding
From: Veaceslav Falico @ 2013-10-24  9:35 UTC (permalink / raw)
  To: Ding Tianhong
  Cc: Jay Vosburgh, Andy Gospodarek, David S. Miller,
	Nikolay Aleksandrov, Netdev
In-Reply-To: <52688F33.30904@huawei.com>

On Thu, Oct 24, 2013 at 11:08:35AM +0800, Ding Tianhong wrote:
>Hi:
>
>The slave list will add and del by bond_master_upper_dev_link() and bond_upper_dev_unlink(),
>which will call call_netdevice_notifiers(), even it is safe to call it in write bond lock now,
>but we can't sure that whether it is safe later, because other drivers may deal NETDEV_CHANGEUPPER
>in sleep way, so I didn't admit move the bond_upper_dev_unlink() in write bond lock.
>
>now the bond_for_each_slave only protect by rtnl_lock(), maybe use bond_for_each_slave_rcu is a good
>way to protect slave list for bond, but as a system slow path, it is no need to transform bond_for_each_slave()
>to bond_for_each_slave_rcu() in slow path, so in the patchset, I will remove the unused read bond lock
>for monitor function, maybe it is a better way, I will wait to accept any relay for it.
>
>Thanks for the Veaceslav Falico opinion.

No problem.

Nacked-by: Veaceslav Falico <vfalico@redhat.com>

Now, please, make some normal changelogs, or convince David that I'm an
idiot.

>
>v2: add and modify commit for patchset and patch, it will be the first step for the whole patchset.
>
>Ding Tianhong (5):
>  bonding: remove bond read lock for bond_mii_monitor()
>  bonding: remove bond read lock for bond_alb_monitor()
>  bonding: remove bond read lock for bond_loadbalance_arp_mon()
>  bonding: remove bond read lock for bond_activebackup_arp_mon()
>  bonding: remove bond read lock for bond_3ad_state_machine_handler()
>
> drivers/net/bonding/bond_3ad.c  |   9 ++--
> drivers/net/bonding/bond_alb.c  |  20 ++------
> drivers/net/bonding/bond_main.c | 100 +++++++++++++---------------------------
> 3 files changed, 40 insertions(+), 89 deletions(-)
>
>-- 
>1.8.2.1
>
>
>

^ permalink raw reply

* RE: [Xen-devel] [PATCH net] xen-netback: add the scenario which now beyond the range time_after_eq().
From: David Laight @ 2013-10-24 10:04 UTC (permalink / raw)
  To: Jan Beulich, wei.liu2, jianhai.luan
  Cc: david.vrabel, ian.campbell, xen-devel, annie.li, netdev
In-Reply-To: <5268025002000078000A56B5@nat28.tlf.novell.com>

> >> As I understand it, this is the idea of this patch -- to narrow down the
> >> timing window.
> >Jan,  do you agree the idea or have better suggestion to me.
> 
> As said before - I disagree (reducing a timing window is never a solution,
> only eliminating it is), and I pointed at the alternative (using 64-bit
> calculations) before.

If the error is reduced to a few seconds in 48 days (at 1kHz HZ) and the
system has to be idle for the 48 days I wouldn't be too worried.
Especially if this is 'time based credit' and the effect is just that
of the link (or whatever) being busy rather than idle.

	David

^ permalink raw reply

* Re: [PATCH NEXT 1/5] staging: r8188eu: Fix sparse warnings in ioctl_linux.c
From: Dan Carpenter @ 2013-10-24 10:10 UTC (permalink / raw)
  To: Larry Finger; +Cc: devel, gregkh, netdev
In-Reply-To: <1382585497-6787-2-git-send-email-Larry.Finger@lwfinger.net>

I have looked at how this is called from ioctl_private_call() and it
seems like these are actual user pointers and the code is buggy.  The
patch silences the warnings instead of fixing the bugs.

regards,
dan carpenter

^ permalink raw reply

* Re: [PATCH NEXT 5/5] staging: r8188eu: Fix sparse warnings in rtl_p2p.c
From: Dan Carpenter @ 2013-10-24 10:11 UTC (permalink / raw)
  To: Larry Finger; +Cc: devel, gregkh, netdev
In-Reply-To: <1382585497-6787-6-git-send-email-Larry.Finger@lwfinger.net>

The patches 2-5 seem ok.

regards,
dan carpenter

^ permalink raw reply

* [PATCH net] netconsole: fix multiple race conditions
From: Nikolay Aleksandrov @ 2013-10-24 10:09 UTC (permalink / raw)
  To: netdev; +Cc: davem

In every netconsole option that can be set through configfs there's a
race when checking for nt->enabled since it can be modified at the same
time. Probably the most damage can be done by store_enabled when racing
with another instance of itself. Fix all the races with one stone by
moving the mutex lock around the ->store call for all options.

Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
---
Note: this patch is on top of netconsole: fix NULL pointer dereference
that I posted yesterday.

 drivers/net/netconsole.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c
index 1505dcb..c9a1592 100644
--- a/drivers/net/netconsole.c
+++ b/drivers/net/netconsole.c
@@ -325,9 +325,7 @@ static ssize_t store_enabled(struct netconsole_target *nt,
 		return -EINVAL;
 	}
 
-	mutex_lock(&nt->mutex);
 	if (enabled) {	/* 1 */
-
 		/*
 		 * Skip netpoll_parse_options() -- all the attributes are
 		 * already configured via configfs. Just print them out.
@@ -335,13 +333,10 @@ static ssize_t store_enabled(struct netconsole_target *nt,
 		netpoll_print_options(&nt->np);
 
 		err = netpoll_setup(&nt->np);
-		if (err) {
-			mutex_unlock(&nt->mutex);
+		if (err)
 			return err;
-		}
 
 		printk(KERN_INFO "netconsole: network logging started\n");
-
 	} else {	/* 0 */
 		/* We need to disable the netconsole before cleaning it up
 		 * otherwise we might end up in write_msg() with
@@ -354,7 +349,6 @@ static ssize_t store_enabled(struct netconsole_target *nt,
 	}
 
 	nt->enabled = enabled;
-	mutex_unlock(&nt->mutex);
 
 	return strnlen(buf, count);
 }
@@ -571,8 +565,10 @@ static ssize_t netconsole_target_attr_store(struct config_item *item,
 	struct netconsole_target_attr *na =
 		container_of(attr, struct netconsole_target_attr, attr);
 
+	mutex_lock(&nt->mutex);
 	if (na->store)
 		ret = na->store(nt, buf, count);
+	mutex_unlock(&nt->mutex);
 
 	return ret;
 }
-- 
1.8.1.4

^ permalink raw reply related

* Re: [PATCH net] netconsole: fix NULL pointer dereference
From: Veaceslav Falico @ 2013-10-24 10:21 UTC (permalink / raw)
  To: Nikolay Aleksandrov; +Cc: netdev, davem
In-Reply-To: <1382533489-19248-1-git-send-email-nikolay@redhat.com>

On Wed, Oct 23, 2013 at 03:04:49PM +0200, Nikolay Aleksandrov wrote:
>We need to disable the netconsole (enabled = 0) before setting nt->np.dev
>to NULL because otherwise we might still have users after the
>netpoll_cleanup() since nt->enabled is set afterwards and we can
>have a message which will result in a NULL pointer dereference.
>It is very easy to hit dereferences all over the netpoll_send_udp function
>by running the following two loops in parallel:
>while [ 1 ]; do echo 1 > enabled; echo 0 > enabled; done;
>while [ 1 ]; do echo 00:11:22:33:44:55 > remote_mac; done;
>(the second loop is to generate messages, it can be done by anything)
>
>We're safe to set nt->np.dev = NULL and nt->enabled = 0 with the spinlock
>since it's required in the write_msg() function.
>
>Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
>---
>Taking the spinlock seems like the cleanest way to insure there's noone
>running in parallel, but I'm open to suggestions as I'm not satisfied with
>the looks of this. I'll prepare a net-next patchset for netconsole soon to
>clean it up properly, all of these can be easily simplified.

First when I've seen 'spin_lock(); a = 1; spin_unlock()' I've thought
"WTF?", however indeed it will stop us racing with write_msg().

FWIW...

Reviewed-by: Veacelsav Falico <vfalico@redhat.com>

>
> drivers/net/netconsole.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
>diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c
>index adeee61..1505dcb 100644
>--- a/drivers/net/netconsole.c
>+++ b/drivers/net/netconsole.c
>@@ -310,6 +310,7 @@ static ssize_t store_enabled(struct netconsole_target *nt,
> 			     const char *buf,
> 			     size_t count)
> {
>+	unsigned long flags;
> 	int enabled;
> 	int err;
>
>@@ -342,6 +343,13 @@ static ssize_t store_enabled(struct netconsole_target *nt,
> 		printk(KERN_INFO "netconsole: network logging started\n");
>
> 	} else {	/* 0 */
>+		/* We need to disable the netconsole before cleaning it up
>+		 * otherwise we might end up in write_msg() with
>+		 * nt->np.dev == NULL and nt->enabled == 1
>+		 */
>+		spin_lock_irqsave(&target_list_lock, flags);
>+		nt->enabled = 0;
>+		spin_unlock_irqrestore(&target_list_lock, flags);
> 		netpoll_cleanup(&nt->np);
> 	}
>
>-- 
>1.8.1.4
>
>--
>To unsubscribe from this list: send the line "unsubscribe netdev" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply

* [RFC PATCH net-next] ppp: Allow ppp device connected to an l2tp session to change of namespace
From: François Cachereul @ 2013-10-24 10:30 UTC (permalink / raw)
  To: Paul Mackerras, James Chapman; +Cc: netdev, linux-ppp

Remove NETIF_F_NETNS_LOCAL flag from ppp device in ppp_connect_channel()
if the device is connected to a l2tp session socket.
Restore the flag in ppp_disconnect_channel().

Signed-off-by: François CACHEREUL <f.cachereul@alphalink.fr>
---
I'm trying to get rid of this flag for ppp device connected to l2tp
session, it's seem to be safe to do it for as l2tp_ppp module hasn't any
reference to the ppp device except to the device name. We can probably
do it for others modules but pppoe and pptp will require more work.

I remove the flag for l2tp in ppp_generic.c because I couldn't find a
place like a callback to do it in l2tp_ppp.c. The best will be to 
remove the flag for all ppp devices.

François

 drivers/net/ppp/ppp_generic.c |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/net/ppp/ppp_generic.c b/drivers/net/ppp/ppp_generic.c
index 72ff14b..7ccf2ae 100644
--- a/drivers/net/ppp/ppp_generic.c
+++ b/drivers/net/ppp/ppp_generic.c
@@ -54,6 +54,8 @@
 #include <net/net_namespace.h>
 #include <net/netns/generic.h>
 
+#include <linux/if_pppox.h>
+
 #define PPP_VERSION	"2.4.2"
 
 /*
@@ -2861,6 +2863,7 @@ ppp_connect_channel(struct channel *pch, int unit)
 	struct ppp_net *pn;
 	int ret = -ENXIO;
 	int hdrlen;
+	struct sock *sk;
 
 	pn = ppp_pernet(pch->chan_net);
 
@@ -2883,6 +2886,13 @@ ppp_connect_channel(struct channel *pch, int unit)
 	++ppp->n_channels;
 	pch->ppp = ppp;
 	atomic_inc(&ppp->file.refcnt);
+
+	/* allow ppp net device to be moved in another network namespace
+	 * if it's connected to an l2tp session */
+	sk = (struct sock *)pch->chan->private;
+	if (sk && sk->sk_protocol == PX_PROTO_OL2TP)
+		ppp->dev->features &= ~NETIF_F_NETNS_LOCAL;
+
 	ppp_unlock(ppp);
 	ret = 0;
 
@@ -2912,6 +2922,7 @@ ppp_disconnect_channel(struct channel *pch)
 		list_del(&pch->clist);
 		if (--ppp->n_channels == 0)
 			wake_up_interruptible(&ppp->file.rwait);
+		ppp->dev->features |= NETIF_F_NETNS_LOCAL;
 		ppp_unlock(ppp);
 		if (atomic_dec_and_test(&ppp->file.refcnt))
 			ppp_destroy_interface(ppp);
-- 
1.7.10.4

^ permalink raw reply related

* RE: [PATCH net] netconsole: fix NULL pointer dereference
From: David Laight @ 2013-10-24 10:39 UTC (permalink / raw)
  To: Veaceslav Falico, Nikolay Aleksandrov; +Cc: netdev, davem
In-Reply-To: <20131024102147.GD16787@redhat.com>

> >Taking the spinlock seems like the cleanest way to insure there's noone
> >running in parallel, but I'm open to suggestions as I'm not satisfied with
> >the looks of this. I'll prepare a net-next patchset for netconsole soon to
> >clean it up properly, all of these can be easily simplified.
> 
> First when I've seen 'spin_lock(); a = 1; spin_unlock()' I've thought
> "WTF?", however indeed it will stop us racing with write_msg().

Ditto - might be worth saying:
    /* Acquire lock to wait for any write_msg() to complete. */

	David

^ permalink raw reply

* Re: [RFC PATCH net-next] ppp: Allow ppp device connected to an l2tp session to change of namespace
From: James Chapman @ 2013-10-24 10:55 UTC (permalink / raw)
  To: François Cachereul, Paul Mackerras; +Cc: netdev, linux-ppp
In-Reply-To: <5268F6CD.9070600@alphalink.fr>

On 24/10/13 11:30, François Cachereul wrote:
> Remove NETIF_F_NETNS_LOCAL flag from ppp device in ppp_connect_channel()
> if the device is connected to a l2tp session socket.
> Restore the flag in ppp_disconnect_channel().

What about pppd's network namespace? Also, L2TP's tunnel socket (UDP or
L2TP/IP) will be in a different namespace if the ppp interface is moved.

> 
> Signed-off-by: François CACHEREUL <f.cachereul@alphalink.fr>
> ---
> I'm trying to get rid of this flag for ppp device connected to l2tp
> session, it's seem to be safe to do it for as l2tp_ppp module hasn't any
> reference to the ppp device except to the device name. We can probably
> do it for others modules but pppoe and pptp will require more work.
> 
> I remove the flag for l2tp in ppp_generic.c because I couldn't find a
> place like a callback to do it in l2tp_ppp.c. The best will be to 
> remove the flag for all ppp devices.
> 
> François
> 
>  drivers/net/ppp/ppp_generic.c |   11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/drivers/net/ppp/ppp_generic.c b/drivers/net/ppp/ppp_generic.c
> index 72ff14b..7ccf2ae 100644
> --- a/drivers/net/ppp/ppp_generic.c
> +++ b/drivers/net/ppp/ppp_generic.c
> @@ -54,6 +54,8 @@
>  #include <net/net_namespace.h>
>  #include <net/netns/generic.h>
>  
> +#include <linux/if_pppox.h>
> +
>  #define PPP_VERSION	"2.4.2"
>  
>  /*
> @@ -2861,6 +2863,7 @@ ppp_connect_channel(struct channel *pch, int unit)
>  	struct ppp_net *pn;
>  	int ret = -ENXIO;
>  	int hdrlen;
> +	struct sock *sk;
>  
>  	pn = ppp_pernet(pch->chan_net);
>  
> @@ -2883,6 +2886,13 @@ ppp_connect_channel(struct channel *pch, int unit)
>  	++ppp->n_channels;
>  	pch->ppp = ppp;
>  	atomic_inc(&ppp->file.refcnt);
> +
> +	/* allow ppp net device to be moved in another network namespace
> +	 * if it's connected to an l2tp session */
> +	sk = (struct sock *)pch->chan->private;
> +	if (sk && sk->sk_protocol == PX_PROTO_OL2TP)
> +		ppp->dev->features &= ~NETIF_F_NETNS_LOCAL;
> +
>  	ppp_unlock(ppp);
>  	ret = 0;
>  
> @@ -2912,6 +2922,7 @@ ppp_disconnect_channel(struct channel *pch)
>  		list_del(&pch->clist);
>  		if (--ppp->n_channels == 0)
>  			wake_up_interruptible(&ppp->file.rwait);
> +		ppp->dev->features |= NETIF_F_NETNS_LOCAL;
>  		ppp_unlock(ppp);
>  		if (atomic_dec_and_test(&ppp->file.refcnt))
>  			ppp_destroy_interface(ppp);
> 



-- 
James Chapman
Katalix Systems Ltd
http://www.katalix.com
Catalysts for your Embedded Linux software development

^ permalink raw reply

* [PATCH] pkt_sched: fq: clear time_next_packet for reused flows
From: Eric Dumazet @ 2013-10-24 11:01 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

From: Eric Dumazet <edumazet@google.com>

When a socket is freed/reallocated, we need to clear time_next_packet
or else we can inherit a prior value and delay first packets of the
new flow.

Signed-off-by: Eric Dumazet <edumazet@google.com>
---
 net/sched/sch_fq.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c
index a9dfdda..fdc041c 100644
--- a/net/sched/sch_fq.c
+++ b/net/sched/sch_fq.c
@@ -255,6 +255,7 @@ static struct fq_flow *fq_classify(struct sk_buff
*skb, struct fq_sched_data *q)
 				     f->socket_hash != sk->sk_hash)) {
 				f->credit = q->initial_quantum;
 				f->socket_hash = sk->sk_hash;
+				f->time_next_packet = 0ULL;
 			}
 			return f;
 		}

^ permalink raw reply related

* Re: Big performance loss from 3.4.63 to 3.10.13 when routing ipv4
From: Wolfgang Walter @ 2013-10-24 11:07 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: Steffen Klassert, David Miller, hannes, netdev, klassert
In-Reply-To: <1382547992.7572.31.camel@edumazet-glaptop.roam.corp.google.com>

Am Mittwoch, 23. Oktober 2013, 10:06:32 schrieb Eric Dumazet:
> On Wed, 2013-10-23 at 18:59 +0200, Wolfgang Walter wrote:
> > Ah, ok. I use SLUB, but SLABINFO=y.
> > 
> > Without much traffic it is:
> > 
> > # grep dst /proc/slabinfo
> > xfrm_dst_cache      4435   4608    448   36    4 : tunables    0    0    0
> > : slabdata    128    128      0
> > 
> > on the big one.
> > 
> > I can recompile the kernels with SLAB instead of SLUB if SLAB gives more
> > usefull infos.
> Not needed, because it seems we do not merge this SLUB cache with
> another one.
> 
> So please post this information, because I believe the default should be
> 65536, not 1024 or 4096
> 
> Thanks

Here some more values when there is more activity. maximum I saw was:
xfrm_dst_cache     18180  18180    448   36    4 : tunables    0    0    0 : slabdata    505    505      0



# while true; do grep dst /proc/slabinfo ; sleep 1; done
xfrm_dst_cache      8234  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8234  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8328  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8428  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8505  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8505  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8540  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8609  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8609  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8633  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8633  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8680  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8680  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8706  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8706  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8706  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8724  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8724  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8751  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8751  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8786  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8829  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8864  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8864  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8864  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8922  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8922  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8945  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      8945  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9094  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9249  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9308  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9332  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9495  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9530  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      9593  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache      1908   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1908   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1908   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1908   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1908   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1944   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1944   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1980   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      1980   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2016   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2016   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2016   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2016   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2016   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2052   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2052   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2052   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2088   2088    448   36    4 : tunables    0    0    0 : slabdata     58     58      0
xfrm_dst_cache      2124   2124    448   36    4 : tunables    0    0    0 : slabdata     59     59      0
xfrm_dst_cache      2124   2124    448   36    4 : tunables    0    0    0 : slabdata     59     59      0
xfrm_dst_cache      2160   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      2196   2196    448   36    4 : tunables    0    0    0 : slabdata     61     61      0
xfrm_dst_cache      2196   2196    448   36    4 : tunables    0    0    0 : slabdata     61     61      0
xfrm_dst_cache      2196   2196    448   36    4 : tunables    0    0    0 : slabdata     61     61      0
xfrm_dst_cache      2232   2232    448   36    4 : tunables    0    0    0 : slabdata     62     62      0
xfrm_dst_cache      2232   2232    448   36    4 : tunables    0    0    0 : slabdata     62     62      0
xfrm_dst_cache      2268   2268    448   36    4 : tunables    0    0    0 : slabdata     63     63      0
xfrm_dst_cache      2304   2304    448   36    4 : tunables    0    0    0 : slabdata     64     64      0
xfrm_dst_cache      2340   2340    448   36    4 : tunables    0    0    0 : slabdata     65     65      0
xfrm_dst_cache      2340   2340    448   36    4 : tunables    0    0    0 : slabdata     65     65      0
xfrm_dst_cache      2340   2340    448   36    4 : tunables    0    0    0 : slabdata     65     65      0
xfrm_dst_cache      2340   2340    448   36    4 : tunables    0    0    0 : slabdata     65     65      0
xfrm_dst_cache      2376   2376    448   36    4 : tunables    0    0    0 : slabdata     66     66      0
xfrm_dst_cache      2376   2376    448   36    4 : tunables    0    0    0 : slabdata     66     66      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2484   2484    448   36    4 : tunables    0    0    0 : slabdata     69     69      0
xfrm_dst_cache      2556   2556    448   36    4 : tunables    0    0    0 : slabdata     71     71      0
xfrm_dst_cache      2736   2736    448   36    4 : tunables    0    0    0 : slabdata     76     76      0
xfrm_dst_cache      2736   2736    448   36    4 : tunables    0    0    0 : slabdata     76     76      0
xfrm_dst_cache      2844   2844    448   36    4 : tunables    0    0    0 : slabdata     79     79      0
xfrm_dst_cache      2916   2916    448   36    4 : tunables    0    0    0 : slabdata     81     81      0
xfrm_dst_cache      2916   2916    448   36    4 : tunables    0    0    0 : slabdata     81     81      0
xfrm_dst_cache      2988   2988    448   36    4 : tunables    0    0    0 : slabdata     83     83      0
xfrm_dst_cache      2988   2988    448   36    4 : tunables    0    0    0 : slabdata     83     83      0
xfrm_dst_cache      3060   3060    448   36    4 : tunables    0    0    0 : slabdata     85     85      0
xfrm_dst_cache      3060   3060    448   36    4 : tunables    0    0    0 : slabdata     85     85      0
xfrm_dst_cache      3096   3096    448   36    4 : tunables    0    0    0 : slabdata     86     86      0
xfrm_dst_cache      3096   3096    448   36    4 : tunables    0    0    0 : slabdata     86     86      0
xfrm_dst_cache      3204   3204    448   36    4 : tunables    0    0    0 : slabdata     89     89      0
xfrm_dst_cache      3204   3204    448   36    4 : tunables    0    0    0 : slabdata     89     89      0
xfrm_dst_cache      3204   3204    448   36    4 : tunables    0    0    0 : slabdata     89     89      0
xfrm_dst_cache      3240   3240    448   36    4 : tunables    0    0    0 : slabdata     90     90      0
xfrm_dst_cache      3348   3348    448   36    4 : tunables    0    0    0 : slabdata     93     93      0
xfrm_dst_cache      3384   3384    448   36    4 : tunables    0    0    0 : slabdata     94     94      0
xfrm_dst_cache      3420   3420    448   36    4 : tunables    0    0    0 : slabdata     95     95      0
xfrm_dst_cache      3528   3528    448   36    4 : tunables    0    0    0 : slabdata     98     98      0
xfrm_dst_cache      3564   3564    448   36    4 : tunables    0    0    0 : slabdata     99     99      0
xfrm_dst_cache      3672   3672    448   36    4 : tunables    0    0    0 : slabdata    102    102      0
xfrm_dst_cache      3672   3672    448   36    4 : tunables    0    0    0 : slabdata    102    102      0
xfrm_dst_cache      3708   3708    448   36    4 : tunables    0    0    0 : slabdata    103    103      0
xfrm_dst_cache      3708   3708    448   36    4 : tunables    0    0    0 : slabdata    103    103      0
xfrm_dst_cache      3744   3744    448   36    4 : tunables    0    0    0 : slabdata    104    104      0
xfrm_dst_cache      3780   3780    448   36    4 : tunables    0    0    0 : slabdata    105    105      0
xfrm_dst_cache      3816   3816    448   36    4 : tunables    0    0    0 : slabdata    106    106      0
xfrm_dst_cache      3816   3816    448   36    4 : tunables    0    0    0 : slabdata    106    106      0
xfrm_dst_cache      3816   3816    448   36    4 : tunables    0    0    0 : slabdata    106    106      0
xfrm_dst_cache      3816   3816    448   36    4 : tunables    0    0    0 : slabdata    106    106      0
xfrm_dst_cache      3816   3816    448   36    4 : tunables    0    0    0 : slabdata    106    106      0
xfrm_dst_cache      3888   3888    448   36    4 : tunables    0    0    0 : slabdata    108    108      0
xfrm_dst_cache      3924   3924    448   36    4 : tunables    0    0    0 : slabdata    109    109      0
xfrm_dst_cache      3960   3960    448   36    4 : tunables    0    0    0 : slabdata    110    110      0
xfrm_dst_cache      3960   3960    448   36    4 : tunables    0    0    0 : slabdata    110    110      0
xfrm_dst_cache      3960   3960    448   36    4 : tunables    0    0    0 : slabdata    110    110      0
xfrm_dst_cache      3996   3996    448   36    4 : tunables    0    0    0 : slabdata    111    111      0
xfrm_dst_cache      4032   4032    448   36    4 : tunables    0    0    0 : slabdata    112    112      0
xfrm_dst_cache      4104   4104    448   36    4 : tunables    0    0    0 : slabdata    114    114      0
xfrm_dst_cache      4104   4104    448   36    4 : tunables    0    0    0 : slabdata    114    114      0
xfrm_dst_cache      4104   4104    448   36    4 : tunables    0    0    0 : slabdata    114    114      0
xfrm_dst_cache      4104   4104    448   36    4 : tunables    0    0    0 : slabdata    114    114      0
xfrm_dst_cache      4176   4176    448   36    4 : tunables    0    0    0 : slabdata    116    116      0
xfrm_dst_cache      4320   4320    448   36    4 : tunables    0    0    0 : slabdata    120    120      0
xfrm_dst_cache      4392   4392    448   36    4 : tunables    0    0    0 : slabdata    122    122      0
xfrm_dst_cache      4608   4608    448   36    4 : tunables    0    0    0 : slabdata    128    128      0
xfrm_dst_cache      4716   4716    448   36    4 : tunables    0    0    0 : slabdata    131    131      0
xfrm_dst_cache      4860   4860    448   36    4 : tunables    0    0    0 : slabdata    135    135      0
xfrm_dst_cache      5004   5004    448   36    4 : tunables    0    0    0 : slabdata    139    139      0
xfrm_dst_cache      5112   5112    448   36    4 : tunables    0    0    0 : slabdata    142    142      0
xfrm_dst_cache      5256   5256    448   36    4 : tunables    0    0    0 : slabdata    146    146      0
xfrm_dst_cache      5436   5436    448   36    4 : tunables    0    0    0 : slabdata    151    151      0
xfrm_dst_cache      5580   5580    448   36    4 : tunables    0    0    0 : slabdata    155    155      0
xfrm_dst_cache      5688   5688    448   36    4 : tunables    0    0    0 : slabdata    158    158      0
xfrm_dst_cache      5904   5904    448   36    4 : tunables    0    0    0 : slabdata    164    164      0
xfrm_dst_cache      6048   6048    448   36    4 : tunables    0    0    0 : slabdata    168    168      0
xfrm_dst_cache      6120   6120    448   36    4 : tunables    0    0    0 : slabdata    170    170      0
xfrm_dst_cache      6228   6228    448   36    4 : tunables    0    0    0 : slabdata    173    173      0
xfrm_dst_cache      6660   6660    448   36    4 : tunables    0    0    0 : slabdata    185    185      0
xfrm_dst_cache      6768   6768    448   36    4 : tunables    0    0    0 : slabdata    188    188      0
xfrm_dst_cache      6876   6876    448   36    4 : tunables    0    0    0 : slabdata    191    191      0
xfrm_dst_cache      6984   6984    448   36    4 : tunables    0    0    0 : slabdata    194    194      0
xfrm_dst_cache      7164   7164    448   36    4 : tunables    0    0    0 : slabdata    199    199      0
xfrm_dst_cache      7272   7272    448   36    4 : tunables    0    0    0 : slabdata    202    202      0
xfrm_dst_cache      7344   7344    448   36    4 : tunables    0    0    0 : slabdata    204    204      0
xfrm_dst_cache      7452   7452    448   36    4 : tunables    0    0    0 : slabdata    207    207      0
xfrm_dst_cache      7560   7560    448   36    4 : tunables    0    0    0 : slabdata    210    210      0
xfrm_dst_cache      7668   7668    448   36    4 : tunables    0    0    0 : slabdata    213    213      0
xfrm_dst_cache      7740   7740    448   36    4 : tunables    0    0    0 : slabdata    215    215      0
xfrm_dst_cache      7848   7848    448   36    4 : tunables    0    0    0 : slabdata    218    218      0
xfrm_dst_cache      7956   7956    448   36    4 : tunables    0    0    0 : slabdata    221    221      0
xfrm_dst_cache      8028   8028    448   36    4 : tunables    0    0    0 : slabdata    223    223      0
xfrm_dst_cache      8172   8172    448   36    4 : tunables    0    0    0 : slabdata    227    227      0
xfrm_dst_cache      8316   8316    448   36    4 : tunables    0    0    0 : slabdata    231    231      0
xfrm_dst_cache      8712   8712    448   36    4 : tunables    0    0    0 : slabdata    242    242      0
xfrm_dst_cache      8820   8820    448   36    4 : tunables    0    0    0 : slabdata    245    245      0
xfrm_dst_cache      9144   9144    448   36    4 : tunables    0    0    0 : slabdata    254    254      0
xfrm_dst_cache      9288   9288    448   36    4 : tunables    0    0    0 : slabdata    258    258      0
xfrm_dst_cache      9432   9432    448   36    4 : tunables    0    0    0 : slabdata    262    262      0
xfrm_dst_cache      9540   9540    448   36    4 : tunables    0    0    0 : slabdata    265    265      0
xfrm_dst_cache      9612   9612    448   36    4 : tunables    0    0    0 : slabdata    267    267      0
xfrm_dst_cache      9720   9720    448   36    4 : tunables    0    0    0 : slabdata    270    270      0
xfrm_dst_cache      9792   9792    448   36    4 : tunables    0    0    0 : slabdata    272    272      0
xfrm_dst_cache     10044  10044    448   36    4 : tunables    0    0    0 : slabdata    279    279      0
xfrm_dst_cache     10152  10152    448   36    4 : tunables    0    0    0 : slabdata    282    282      0
xfrm_dst_cache     10332  10332    448   36    4 : tunables    0    0    0 : slabdata    287    287      0
xfrm_dst_cache     10440  10440    448   36    4 : tunables    0    0    0 : slabdata    290    290      0
xfrm_dst_cache     10512  10512    448   36    4 : tunables    0    0    0 : slabdata    292    292      0
xfrm_dst_cache     10620  10620    448   36    4 : tunables    0    0    0 : slabdata    295    295      0
xfrm_dst_cache     10764  10764    448   36    4 : tunables    0    0    0 : slabdata    299    299      0
xfrm_dst_cache     11016  11016    448   36    4 : tunables    0    0    0 : slabdata    306    306      0
xfrm_dst_cache     11088  11088    448   36    4 : tunables    0    0    0 : slabdata    308    308      0
xfrm_dst_cache     11232  11232    448   36    4 : tunables    0    0    0 : slabdata    312    312      0
xfrm_dst_cache     11304  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache     11448  11448    448   36    4 : tunables    0    0    0 : slabdata    318    318      0
xfrm_dst_cache     11520  11520    448   36    4 : tunables    0    0    0 : slabdata    320    320      0
xfrm_dst_cache     11700  11700    448   36    4 : tunables    0    0    0 : slabdata    325    325      0
xfrm_dst_cache     11952  11952    448   36    4 : tunables    0    0    0 : slabdata    332    332      0
xfrm_dst_cache     12348  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12672  12672    448   36    4 : tunables    0    0    0 : slabdata    352    352      0
xfrm_dst_cache     12816  12816    448   36    4 : tunables    0    0    0 : slabdata    356    356      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13284  13284    448   36    4 : tunables    0    0    0 : slabdata    369    369      0
xfrm_dst_cache     13356  13356    448   36    4 : tunables    0    0    0 : slabdata    371    371      0
xfrm_dst_cache     13536  13536    448   36    4 : tunables    0    0    0 : slabdata    376    376      0
xfrm_dst_cache     13608  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13752  13752    448   36    4 : tunables    0    0    0 : slabdata    382    382      0
xfrm_dst_cache     11642  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     11698  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     11811  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     11905  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12040  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12098  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12219  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12420  12420    448   36    4 : tunables    0    0    0 : slabdata    345    345      0
xfrm_dst_cache     10092  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10123  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10222  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10303  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10371  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10440  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10686  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10829  10872    448   36    4 : tunables    0    0    0 : slabdata    302    302      0
xfrm_dst_cache     10908  10908    448   36    4 : tunables    0    0    0 : slabdata    303    303      0
xfrm_dst_cache     11016  11016    448   36    4 : tunables    0    0    0 : slabdata    306    306      0
xfrm_dst_cache     11160  11160    448   36    4 : tunables    0    0    0 : slabdata    310    310      0
xfrm_dst_cache     11556  11556    448   36    4 : tunables    0    0    0 : slabdata    321    321      0
xfrm_dst_cache     11628  11628    448   36    4 : tunables    0    0    0 : slabdata    323    323      0
xfrm_dst_cache     11700  11700    448   36    4 : tunables    0    0    0 : slabdata    325    325      0
xfrm_dst_cache     11916  11916    448   36    4 : tunables    0    0    0 : slabdata    331    331      0
xfrm_dst_cache     12240  12240    448   36    4 : tunables    0    0    0 : slabdata    340    340      0
xfrm_dst_cache     12384  12384    448   36    4 : tunables    0    0    0 : slabdata    344    344      0
xfrm_dst_cache     12384  12384    448   36    4 : tunables    0    0    0 : slabdata    344    344      0
xfrm_dst_cache     12816  12816    448   36    4 : tunables    0    0    0 : slabdata    356    356      0
xfrm_dst_cache     13176  13176    448   36    4 : tunables    0    0    0 : slabdata    366    366      0
xfrm_dst_cache     13608  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13932  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache     14220  14220    448   36    4 : tunables    0    0    0 : slabdata    395    395      0
xfrm_dst_cache     14364  14364    448   36    4 : tunables    0    0    0 : slabdata    399    399      0
xfrm_dst_cache     12351  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12485  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12610  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12762  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12872  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     13140  13140    448   36    4 : tunables    0    0    0 : slabdata    365    365      0
xfrm_dst_cache     13284  13284    448   36    4 : tunables    0    0    0 : slabdata    369    369      0
xfrm_dst_cache     13428  13428    448   36    4 : tunables    0    0    0 : slabdata    373    373      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13824  13824    448   36    4 : tunables    0    0    0 : slabdata    384    384      0
xfrm_dst_cache     14076  14076    448   36    4 : tunables    0    0    0 : slabdata    391    391      0
xfrm_dst_cache     14184  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14436  14436    448   36    4 : tunables    0    0    0 : slabdata    401    401      0
xfrm_dst_cache     14544  14544    448   36    4 : tunables    0    0    0 : slabdata    404    404      0
xfrm_dst_cache     14688  14688    448   36    4 : tunables    0    0    0 : slabdata    408    408      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14940  14940    448   36    4 : tunables    0    0    0 : slabdata    415    415      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15120  15120    448   36    4 : tunables    0    0    0 : slabdata    420    420      0
xfrm_dst_cache     15264  15264    448   36    4 : tunables    0    0    0 : slabdata    424    424      0
xfrm_dst_cache     13223  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     13294  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     13422  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     13846  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     14122  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14436  14436    448   36    4 : tunables    0    0    0 : slabdata    401    401      0
xfrm_dst_cache     14544  14544    448   36    4 : tunables    0    0    0 : slabdata    404    404      0
xfrm_dst_cache     14616  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     12563  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     12717  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13022  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13105  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13290  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13398  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13596  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     13749  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     12052  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12133  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12193  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12422  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12780  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12852  12852    448   36    4 : tunables    0    0    0 : slabdata    357    357      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     13068  13068    448   36    4 : tunables    0    0    0 : slabdata    363    363      0
xfrm_dst_cache     13140  13140    448   36    4 : tunables    0    0    0 : slabdata    365    365      0
xfrm_dst_cache     13284  13284    448   36    4 : tunables    0    0    0 : slabdata    369    369      0
xfrm_dst_cache     13356  13356    448   36    4 : tunables    0    0    0 : slabdata    371    371      0
xfrm_dst_cache     13428  13428    448   36    4 : tunables    0    0    0 : slabdata    373    373      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13644  13644    448   36    4 : tunables    0    0    0 : slabdata    379    379      0
xfrm_dst_cache     13788  13788    448   36    4 : tunables    0    0    0 : slabdata    383    383      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     14004  14004    448   36    4 : tunables    0    0    0 : slabdata    389    389      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     12166  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12233  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12327  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12388  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12429  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12498  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12518  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12518  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12518  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12518  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12518  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12539  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12539  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12539  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12632  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12697  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12763  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12912  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     12984  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13050  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13126  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13262  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13331  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13399  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13554  13608    448   36    4 : tunables    0    0    0 : slabdata    378    378      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13752  13752    448   36    4 : tunables    0    0    0 : slabdata    382    382      0
xfrm_dst_cache     13824  13824    448   36    4 : tunables    0    0    0 : slabdata    384    384      0
xfrm_dst_cache     13896  13896    448   36    4 : tunables    0    0    0 : slabdata    386    386      0
xfrm_dst_cache     13968  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     14040  14040    448   36    4 : tunables    0    0    0 : slabdata    390    390      0
xfrm_dst_cache     14184  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     14256  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     11782  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     11835  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     11913  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     11980  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12057  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12148  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12210  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12266  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12393  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12449  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12523  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12603  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12653  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12744  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12780  12780    448   36    4 : tunables    0    0    0 : slabdata    355    355      0
xfrm_dst_cache     12816  12816    448   36    4 : tunables    0    0    0 : slabdata    356    356      0
xfrm_dst_cache     12816  12816    448   36    4 : tunables    0    0    0 : slabdata    356    356      0
xfrm_dst_cache     12852  12852    448   36    4 : tunables    0    0    0 : slabdata    357    357      0
xfrm_dst_cache     12888  12888    448   36    4 : tunables    0    0    0 : slabdata    358    358      0
xfrm_dst_cache     12888  12888    448   36    4 : tunables    0    0    0 : slabdata    358    358      0
xfrm_dst_cache     12924  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12924  12924    448   36    4 : tunables    0    0    0 : slabdata    359    359      0
xfrm_dst_cache     12960  12960    448   36    4 : tunables    0    0    0 : slabdata    360    360      0
xfrm_dst_cache     12960  12960    448   36    4 : tunables    0    0    0 : slabdata    360    360      0
xfrm_dst_cache     12960  12960    448   36    4 : tunables    0    0    0 : slabdata    360    360      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     12996  12996    448   36    4 : tunables    0    0    0 : slabdata    361    361      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13104  13104    448   36    4 : tunables    0    0    0 : slabdata    364    364      0
xfrm_dst_cache     13140  13140    448   36    4 : tunables    0    0    0 : slabdata    365    365      0
xfrm_dst_cache     13176  13176    448   36    4 : tunables    0    0    0 : slabdata    366    366      0
xfrm_dst_cache     13176  13176    448   36    4 : tunables    0    0    0 : slabdata    366    366      0
xfrm_dst_cache     13176  13176    448   36    4 : tunables    0    0    0 : slabdata    366    366      0
xfrm_dst_cache     13212  13212    448   36    4 : tunables    0    0    0 : slabdata    367    367      0
xfrm_dst_cache     13356  13356    448   36    4 : tunables    0    0    0 : slabdata    371    371      0
xfrm_dst_cache     13428  13428    448   36    4 : tunables    0    0    0 : slabdata    373    373      0
xfrm_dst_cache     13536  13536    448   36    4 : tunables    0    0    0 : slabdata    376    376      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13680  13680    448   36    4 : tunables    0    0    0 : slabdata    380    380      0
xfrm_dst_cache     13752  13752    448   36    4 : tunables    0    0    0 : slabdata    382    382      0
xfrm_dst_cache     13788  13788    448   36    4 : tunables    0    0    0 : slabdata    383    383      0
xfrm_dst_cache     13824  13824    448   36    4 : tunables    0    0    0 : slabdata    384    384      0
xfrm_dst_cache     13824  13824    448   36    4 : tunables    0    0    0 : slabdata    384    384      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     13896  13896    448   36    4 : tunables    0    0    0 : slabdata    386    386      0
xfrm_dst_cache     13896  13896    448   36    4 : tunables    0    0    0 : slabdata    386    386      0
xfrm_dst_cache     13968  13968    448   36    4 : tunables    0    0    0 : slabdata    388    388      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14112  14112    448   36    4 : tunables    0    0    0 : slabdata    392    392      0
xfrm_dst_cache     14184  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     14220  14220    448   36    4 : tunables    0    0    0 : slabdata    395    395      0
xfrm_dst_cache     14220  14220    448   36    4 : tunables    0    0    0 : slabdata    395    395      0
xfrm_dst_cache     14220  14220    448   36    4 : tunables    0    0    0 : slabdata    395    395      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14400  14400    448   36    4 : tunables    0    0    0 : slabdata    400    400      0
xfrm_dst_cache     14400  14400    448   36    4 : tunables    0    0    0 : slabdata    400    400      0
xfrm_dst_cache     12778  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     12817  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     12949  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     12972  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13026  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13112  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13168  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13237  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13303  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13303  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13303  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13303  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13303  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13311  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13346  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13365  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13365  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13462  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13522  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13522  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13557  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13567  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13567  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13567  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13593  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13623  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13623  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13686  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13731  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13731  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13731  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13731  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13799  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13799  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13883  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13906  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13906  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13906  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13906  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13941  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13974  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13974  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     13974  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14001  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14001  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14020  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14046  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14060  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14060  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14074  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14074  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14074  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14223  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14242  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14257  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14265  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14328  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     14364  14364    448   36    4 : tunables    0    0    0 : slabdata    399    399      0
xfrm_dst_cache     14364  14364    448   36    4 : tunables    0    0    0 : slabdata    399    399      0
xfrm_dst_cache     14400  14400    448   36    4 : tunables    0    0    0 : slabdata    400    400      0
xfrm_dst_cache     14436  14436    448   36    4 : tunables    0    0    0 : slabdata    401    401      0
xfrm_dst_cache     14544  14544    448   36    4 : tunables    0    0    0 : slabdata    404    404      0
xfrm_dst_cache     14544  14544    448   36    4 : tunables    0    0    0 : slabdata    404    404      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14580  14580    448   36    4 : tunables    0    0    0 : slabdata    405    405      0
xfrm_dst_cache     14688  14688    448   36    4 : tunables    0    0    0 : slabdata    408    408      0
xfrm_dst_cache     14724  14724    448   36    4 : tunables    0    0    0 : slabdata    409    409      0
xfrm_dst_cache     14724  14724    448   36    4 : tunables    0    0    0 : slabdata    409    409      0
xfrm_dst_cache     14760  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14796  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14868  14868    448   36    4 : tunables    0    0    0 : slabdata    413    413      0
xfrm_dst_cache     14868  14868    448   36    4 : tunables    0    0    0 : slabdata    413    413      0
xfrm_dst_cache     14904  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     14904  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     14940  14940    448   36    4 : tunables    0    0    0 : slabdata    415    415      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15048  15048    448   36    4 : tunables    0    0    0 : slabdata    418    418      0
xfrm_dst_cache     15084  15084    448   36    4 : tunables    0    0    0 : slabdata    419    419      0
xfrm_dst_cache     15084  15084    448   36    4 : tunables    0    0    0 : slabdata    419    419      0
xfrm_dst_cache     15120  15120    448   36    4 : tunables    0    0    0 : slabdata    420    420      0
xfrm_dst_cache     15120  15120    448   36    4 : tunables    0    0    0 : slabdata    420    420      0
xfrm_dst_cache     15228  15228    448   36    4 : tunables    0    0    0 : slabdata    423    423      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12883  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12895  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12930  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12930  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12930  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12930  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12930  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12963  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13021  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13021  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13039  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13039  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13039  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13039  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13039  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13074  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13108  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13108  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13108  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13108  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13141  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13179  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13179  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13179  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13214  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13214  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13258  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13307  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13360  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13360  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13461  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13529  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13598  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13598  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13598  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13675  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13675  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13675  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13675  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13675  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13709  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13744  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13777  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13777  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13843  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13947  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13947  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13947  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13999  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13999  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14064  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14136  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14221  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14264  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14381  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14472  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14526  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14609  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14721  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14796  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     14868  14868    448   36    4 : tunables    0    0    0 : slabdata    413    413      0
xfrm_dst_cache     14940  14940    448   36    4 : tunables    0    0    0 : slabdata    415    415      0
xfrm_dst_cache     15048  15048    448   36    4 : tunables    0    0    0 : slabdata    418    418      0
xfrm_dst_cache     15192  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     13498  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     13613  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     13705  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     13830  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14003  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14083  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14224  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14369  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14480  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     14561  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     12620  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12715  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12796  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12835  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12868  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12868  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12868  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12929  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12953  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12953  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12961  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12987  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     12987  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13017  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13017  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13017  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13088  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13098  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13117  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13183  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13281  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13311  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     13346  14904    448   36    4 : tunables    0    0    0 : slabdata    414    414      0
xfrm_dst_cache     11183  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11183  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11195  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11453  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11485  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11503  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11503  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11567  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11642  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11702  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11780  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     11938  14616    448   36    4 : tunables    0    0    0 : slabdata    406    406      0
xfrm_dst_cache     10077  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     10165  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache     10284  14328    448   36    4 : tunables    0    0    0 : slabdata    398    398      0
xfrm_dst_cache      9119  14076    448   36    4 : tunables    0    0    0 : slabdata    391    391      0
xfrm_dst_cache      7707  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      7778  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      7936  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      7969  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      7988  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      8020  13932    448   36    4 : tunables    0    0    0 : slabdata    387    387      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      1980   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      2016   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      2088   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      2160   2160    448   36    4 : tunables    0    0    0 : slabdata     60     60      0
xfrm_dst_cache      2232   2232    448   36    4 : tunables    0    0    0 : slabdata     62     62      0
xfrm_dst_cache      2304   2304    448   36    4 : tunables    0    0    0 : slabdata     64     64      0
xfrm_dst_cache      2376   2376    448   36    4 : tunables    0    0    0 : slabdata     66     66      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2412   2412    448   36    4 : tunables    0    0    0 : slabdata     67     67      0
xfrm_dst_cache      2484   2484    448   36    4 : tunables    0    0    0 : slabdata     69     69      0
xfrm_dst_cache      2484   2484    448   36    4 : tunables    0    0    0 : slabdata     69     69      0
xfrm_dst_cache      2484   2484    448   36    4 : tunables    0    0    0 : slabdata     69     69      0
xfrm_dst_cache      2520   2520    448   36    4 : tunables    0    0    0 : slabdata     70     70      0
xfrm_dst_cache      2520   2520    448   36    4 : tunables    0    0    0 : slabdata     70     70      0
xfrm_dst_cache      2520   2520    448   36    4 : tunables    0    0    0 : slabdata     70     70      0
xfrm_dst_cache      2556   2556    448   36    4 : tunables    0    0    0 : slabdata     71     71      0
xfrm_dst_cache      2664   2664    448   36    4 : tunables    0    0    0 : slabdata     74     74      0
xfrm_dst_cache      2736   2736    448   36    4 : tunables    0    0    0 : slabdata     76     76      0
xfrm_dst_cache      2844   2844    448   36    4 : tunables    0    0    0 : slabdata     79     79      0
xfrm_dst_cache      3024   3024    448   36    4 : tunables    0    0    0 : slabdata     84     84      0
xfrm_dst_cache      3096   3096    448   36    4 : tunables    0    0    0 : slabdata     86     86      0
xfrm_dst_cache      3204   3204    448   36    4 : tunables    0    0    0 : slabdata     89     89      0
xfrm_dst_cache      3348   3348    448   36    4 : tunables    0    0    0 : slabdata     93     93      0
xfrm_dst_cache      3456   3456    448   36    4 : tunables    0    0    0 : slabdata     96     96      0
xfrm_dst_cache      3636   3636    448   36    4 : tunables    0    0    0 : slabdata    101    101      0
xfrm_dst_cache      3780   3780    448   36    4 : tunables    0    0    0 : slabdata    105    105      0
xfrm_dst_cache      3852   3852    448   36    4 : tunables    0    0    0 : slabdata    107    107      0
xfrm_dst_cache      4068   4068    448   36    4 : tunables    0    0    0 : slabdata    113    113      0
xfrm_dst_cache      4248   4248    448   36    4 : tunables    0    0    0 : slabdata    118    118      0
xfrm_dst_cache      4356   4356    448   36    4 : tunables    0    0    0 : slabdata    121    121      0
xfrm_dst_cache      4464   4464    448   36    4 : tunables    0    0    0 : slabdata    124    124      0
xfrm_dst_cache      4608   4608    448   36    4 : tunables    0    0    0 : slabdata    128    128      0
xfrm_dst_cache      4716   4716    448   36    4 : tunables    0    0    0 : slabdata    131    131      0
xfrm_dst_cache      4824   4824    448   36    4 : tunables    0    0    0 : slabdata    134    134      0
xfrm_dst_cache      5004   5004    448   36    4 : tunables    0    0    0 : slabdata    139    139      0
xfrm_dst_cache      5220   5220    448   36    4 : tunables    0    0    0 : slabdata    145    145      0
xfrm_dst_cache      5400   5400    448   36    4 : tunables    0    0    0 : slabdata    150    150      0
xfrm_dst_cache      5616   5616    448   36    4 : tunables    0    0    0 : slabdata    156    156      0
xfrm_dst_cache      5724   5724    448   36    4 : tunables    0    0    0 : slabdata    159    159      0
xfrm_dst_cache      5904   5904    448   36    4 : tunables    0    0    0 : slabdata    164    164      0
xfrm_dst_cache      5976   5976    448   36    4 : tunables    0    0    0 : slabdata    166    166      0
xfrm_dst_cache      6084   6084    448   36    4 : tunables    0    0    0 : slabdata    169    169      0
xfrm_dst_cache      6228   6228    448   36    4 : tunables    0    0    0 : slabdata    173    173      0
xfrm_dst_cache      6336   6336    448   36    4 : tunables    0    0    0 : slabdata    176    176      0
xfrm_dst_cache      6408   6408    448   36    4 : tunables    0    0    0 : slabdata    178    178      0
xfrm_dst_cache      6516   6516    448   36    4 : tunables    0    0    0 : slabdata    181    181      0
xfrm_dst_cache      6624   6624    448   36    4 : tunables    0    0    0 : slabdata    184    184      0
xfrm_dst_cache      6912   6912    448   36    4 : tunables    0    0    0 : slabdata    192    192      0
xfrm_dst_cache      7200   7200    448   36    4 : tunables    0    0    0 : slabdata    200    200      0
xfrm_dst_cache      7308   7308    448   36    4 : tunables    0    0    0 : slabdata    203    203      0
xfrm_dst_cache      7560   7560    448   36    4 : tunables    0    0    0 : slabdata    210    210      0
xfrm_dst_cache      7668   7668    448   36    4 : tunables    0    0    0 : slabdata    213    213      0
xfrm_dst_cache      7812   7812    448   36    4 : tunables    0    0    0 : slabdata    217    217      0
xfrm_dst_cache      7920   7920    448   36    4 : tunables    0    0    0 : slabdata    220    220      0
xfrm_dst_cache      8028   8028    448   36    4 : tunables    0    0    0 : slabdata    223    223      0
xfrm_dst_cache      8100   8100    448   36    4 : tunables    0    0    0 : slabdata    225    225      0
xfrm_dst_cache      8136   8136    448   36    4 : tunables    0    0    0 : slabdata    226    226      0
xfrm_dst_cache      8460   8460    448   36    4 : tunables    0    0    0 : slabdata    235    235      0
xfrm_dst_cache      8568   8568    448   36    4 : tunables    0    0    0 : slabdata    238    238      0
xfrm_dst_cache      8712   8712    448   36    4 : tunables    0    0    0 : slabdata    242    242      0
xfrm_dst_cache      8820   8820    448   36    4 : tunables    0    0    0 : slabdata    245    245      0
xfrm_dst_cache      8892   8892    448   36    4 : tunables    0    0    0 : slabdata    247    247      0
xfrm_dst_cache      9000   9000    448   36    4 : tunables    0    0    0 : slabdata    250    250      0
xfrm_dst_cache      9072   9072    448   36    4 : tunables    0    0    0 : slabdata    252    252      0
xfrm_dst_cache      9324   9324    448   36    4 : tunables    0    0    0 : slabdata    259    259      0
xfrm_dst_cache      9468   9468    448   36    4 : tunables    0    0    0 : slabdata    263    263      0
xfrm_dst_cache      9612   9612    448   36    4 : tunables    0    0    0 : slabdata    267    267      0
xfrm_dst_cache      9684   9684    448   36    4 : tunables    0    0    0 : slabdata    269    269      0
xfrm_dst_cache      9900   9900    448   36    4 : tunables    0    0    0 : slabdata    275    275      0
xfrm_dst_cache     10044  10044    448   36    4 : tunables    0    0    0 : slabdata    279    279      0
xfrm_dst_cache     10188  10188    448   36    4 : tunables    0    0    0 : slabdata    283    283      0
xfrm_dst_cache     10548  10548    448   36    4 : tunables    0    0    0 : slabdata    293    293      0
xfrm_dst_cache     10908  10908    448   36    4 : tunables    0    0    0 : slabdata    303    303      0
xfrm_dst_cache     11232  11232    448   36    4 : tunables    0    0    0 : slabdata    312    312      0
xfrm_dst_cache     11304  11304    448   36    4 : tunables    0    0    0 : slabdata    314    314      0
xfrm_dst_cache     11520  11520    448   36    4 : tunables    0    0    0 : slabdata    320    320      0
xfrm_dst_cache     11592  11592    448   36    4 : tunables    0    0    0 : slabdata    322    322      0
xfrm_dst_cache     11844  11844    448   36    4 : tunables    0    0    0 : slabdata    329    329      0
xfrm_dst_cache     11952  11952    448   36    4 : tunables    0    0    0 : slabdata    332    332      0
xfrm_dst_cache     12060  12060    448   36    4 : tunables    0    0    0 : slabdata    335    335      0
xfrm_dst_cache     12132  12132    448   36    4 : tunables    0    0    0 : slabdata    337    337      0
xfrm_dst_cache     12276  12276    448   36    4 : tunables    0    0    0 : slabdata    341    341      0
xfrm_dst_cache     12348  12348    448   36    4 : tunables    0    0    0 : slabdata    343    343      0
xfrm_dst_cache     12420  12420    448   36    4 : tunables    0    0    0 : slabdata    345    345      0
xfrm_dst_cache     12564  12564    448   36    4 : tunables    0    0    0 : slabdata    349    349      0
xfrm_dst_cache     12672  12672    448   36    4 : tunables    0    0    0 : slabdata    352    352      0
xfrm_dst_cache     12744  12744    448   36    4 : tunables    0    0    0 : slabdata    354    354      0
xfrm_dst_cache     12816  12816    448   36    4 : tunables    0    0    0 : slabdata    356    356      0
xfrm_dst_cache     12888  12888    448   36    4 : tunables    0    0    0 : slabdata    358    358      0
xfrm_dst_cache     13068  13068    448   36    4 : tunables    0    0    0 : slabdata    363    363      0
xfrm_dst_cache     13392  13392    448   36    4 : tunables    0    0    0 : slabdata    372    372      0
xfrm_dst_cache     13536  13536    448   36    4 : tunables    0    0    0 : slabdata    376    376      0
xfrm_dst_cache     13572  13572    448   36    4 : tunables    0    0    0 : slabdata    377    377      0
xfrm_dst_cache     13716  13716    448   36    4 : tunables    0    0    0 : slabdata    381    381      0
xfrm_dst_cache     13788  13788    448   36    4 : tunables    0    0    0 : slabdata    383    383      0
xfrm_dst_cache     13860  13860    448   36    4 : tunables    0    0    0 : slabdata    385    385      0
xfrm_dst_cache     14148  14148    448   36    4 : tunables    0    0    0 : slabdata    393    393      0
xfrm_dst_cache     14256  14256    448   36    4 : tunables    0    0    0 : slabdata    396    396      0
xfrm_dst_cache     14364  14364    448   36    4 : tunables    0    0    0 : slabdata    399    399      0
xfrm_dst_cache     14436  14436    448   36    4 : tunables    0    0    0 : slabdata    401    401      0
xfrm_dst_cache     14688  14688    448   36    4 : tunables    0    0    0 : slabdata    408    408      0
xfrm_dst_cache     14976  14976    448   36    4 : tunables    0    0    0 : slabdata    416    416      0
xfrm_dst_cache     15228  15228    448   36    4 : tunables    0    0    0 : slabdata    423    423      0
xfrm_dst_cache     15264  15264    448   36    4 : tunables    0    0    0 : slabdata    424    424      0
xfrm_dst_cache     15552  15552    448   36    4 : tunables    0    0    0 : slabdata    432    432      0
xfrm_dst_cache     15804  15804    448   36    4 : tunables    0    0    0 : slabdata    439    439      0
xfrm_dst_cache     16056  16056    448   36    4 : tunables    0    0    0 : slabdata    446    446      0
xfrm_dst_cache     16344  16344    448   36    4 : tunables    0    0    0 : slabdata    454    454      0
xfrm_dst_cache     14181  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14499  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14940  14940    448   36    4 : tunables    0    0    0 : slabdata    415    415      0
xfrm_dst_cache     13216  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     13420  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     13546  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     13623  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     13783  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     13912  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     14030  14184    448   36    4 : tunables    0    0    0 : slabdata    394    394      0
xfrm_dst_cache     14400  14400    448   36    4 : tunables    0    0    0 : slabdata    400    400      0
xfrm_dst_cache     14472  14472    448   36    4 : tunables    0    0    0 : slabdata    402    402      0
xfrm_dst_cache     14544  14544    448   36    4 : tunables    0    0    0 : slabdata    404    404      0
xfrm_dst_cache     14652  14652    448   36    4 : tunables    0    0    0 : slabdata    407    407      0
xfrm_dst_cache     14688  14688    448   36    4 : tunables    0    0    0 : slabdata    408    408      0
xfrm_dst_cache     14688  14688    448   36    4 : tunables    0    0    0 : slabdata    408    408      0
xfrm_dst_cache     14760  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15120  15120    448   36    4 : tunables    0    0    0 : slabdata    420    420      0
xfrm_dst_cache     15192  15192    448   36    4 : tunables    0    0    0 : slabdata    422    422      0
xfrm_dst_cache     15300  15300    448   36    4 : tunables    0    0    0 : slabdata    425    425      0
xfrm_dst_cache     15444  15444    448   36    4 : tunables    0    0    0 : slabdata    429    429      0
xfrm_dst_cache     15552  15552    448   36    4 : tunables    0    0    0 : slabdata    432    432      0
xfrm_dst_cache     15660  15660    448   36    4 : tunables    0    0    0 : slabdata    435    435      0
xfrm_dst_cache     15768  15768    448   36    4 : tunables    0    0    0 : slabdata    438    438      0
xfrm_dst_cache     15984  15984    448   36    4 : tunables    0    0    0 : slabdata    444    444      0
xfrm_dst_cache     16092  16092    448   36    4 : tunables    0    0    0 : slabdata    447    447      0
xfrm_dst_cache     16236  16236    448   36    4 : tunables    0    0    0 : slabdata    451    451      0
xfrm_dst_cache     16344  16344    448   36    4 : tunables    0    0    0 : slabdata    454    454      0
xfrm_dst_cache     16488  16488    448   36    4 : tunables    0    0    0 : slabdata    458    458      0
xfrm_dst_cache     16596  16596    448   36    4 : tunables    0    0    0 : slabdata    461    461      0
xfrm_dst_cache     16668  16668    448   36    4 : tunables    0    0    0 : slabdata    463    463      0
xfrm_dst_cache     16848  16848    448   36    4 : tunables    0    0    0 : slabdata    468    468      0
xfrm_dst_cache     16920  16920    448   36    4 : tunables    0    0    0 : slabdata    470    470      0
xfrm_dst_cache     16920  16920    448   36    4 : tunables    0    0    0 : slabdata    470    470      0
xfrm_dst_cache     17028  17028    448   36    4 : tunables    0    0    0 : slabdata    473    473      0
xfrm_dst_cache     17028  17028    448   36    4 : tunables    0    0    0 : slabdata    473    473      0
xfrm_dst_cache     17064  17064    448   36    4 : tunables    0    0    0 : slabdata    474    474      0
xfrm_dst_cache     17100  17100    448   36    4 : tunables    0    0    0 : slabdata    475    475      0
xfrm_dst_cache     17136  17136    448   36    4 : tunables    0    0    0 : slabdata    476    476      0
xfrm_dst_cache     17172  17172    448   36    4 : tunables    0    0    0 : slabdata    477    477      0
xfrm_dst_cache     17172  17172    448   36    4 : tunables    0    0    0 : slabdata    477    477      0
xfrm_dst_cache     14707  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     14985  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15010  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15039  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15137  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15268  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15440  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15560  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15687  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15782  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     15919  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     16148  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     16215  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     16308  16308    448   36    4 : tunables    0    0    0 : slabdata    453    453      0
xfrm_dst_cache     16452  16452    448   36    4 : tunables    0    0    0 : slabdata    457    457      0
xfrm_dst_cache     16560  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     16704  16704    448   36    4 : tunables    0    0    0 : slabdata    464    464      0
xfrm_dst_cache     16848  16848    448   36    4 : tunables    0    0    0 : slabdata    468    468      0
xfrm_dst_cache     16884  16884    448   36    4 : tunables    0    0    0 : slabdata    469    469      0
xfrm_dst_cache     17064  17064    448   36    4 : tunables    0    0    0 : slabdata    474    474      0
xfrm_dst_cache     17136  17136    448   36    4 : tunables    0    0    0 : slabdata    476    476      0
xfrm_dst_cache     17172  17172    448   36    4 : tunables    0    0    0 : slabdata    477    477      0
xfrm_dst_cache     14918  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15003  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15057  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15066  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15112  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15174  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15174  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15174  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15174  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15174  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15195  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15245  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15279  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15279  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15301  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15379  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15486  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15516  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15588  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15658  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15880  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     15932  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     16020  16020    448   36    4 : tunables    0    0    0 : slabdata    445    445      0
xfrm_dst_cache     16056  16056    448   36    4 : tunables    0    0    0 : slabdata    446    446      0
xfrm_dst_cache     16164  16164    448   36    4 : tunables    0    0    0 : slabdata    449    449      0
xfrm_dst_cache     16164  16164    448   36    4 : tunables    0    0    0 : slabdata    449    449      0
xfrm_dst_cache     16380  16380    448   36    4 : tunables    0    0    0 : slabdata    455    455      0
xfrm_dst_cache     16452  16452    448   36    4 : tunables    0    0    0 : slabdata    457    457      0
xfrm_dst_cache     16488  16488    448   36    4 : tunables    0    0    0 : slabdata    458    458      0
xfrm_dst_cache     16560  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     16704  16704    448   36    4 : tunables    0    0    0 : slabdata    464    464      0
xfrm_dst_cache     16740  16740    448   36    4 : tunables    0    0    0 : slabdata    465    465      0
xfrm_dst_cache     16776  16776    448   36    4 : tunables    0    0    0 : slabdata    466    466      0
xfrm_dst_cache     16992  16992    448   36    4 : tunables    0    0    0 : slabdata    472    472      0
xfrm_dst_cache     17208  17208    448   36    4 : tunables    0    0    0 : slabdata    478    478      0
xfrm_dst_cache     17316  17316    448   36    4 : tunables    0    0    0 : slabdata    481    481      0
xfrm_dst_cache     17388  17388    448   36    4 : tunables    0    0    0 : slabdata    483    483      0
xfrm_dst_cache     17460  17460    448   36    4 : tunables    0    0    0 : slabdata    485    485      0
xfrm_dst_cache     17568  17568    448   36    4 : tunables    0    0    0 : slabdata    488    488      0
xfrm_dst_cache     17676  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     17928  17928    448   36    4 : tunables    0    0    0 : slabdata    498    498      0
xfrm_dst_cache     17964  17964    448   36    4 : tunables    0    0    0 : slabdata    499    499      0
xfrm_dst_cache     18072  18072    448   36    4 : tunables    0    0    0 : slabdata    502    502      0
xfrm_dst_cache     18108  18108    448   36    4 : tunables    0    0    0 : slabdata    503    503      0
xfrm_dst_cache     18180  18180    448   36    4 : tunables    0    0    0 : slabdata    505    505      0
xfrm_dst_cache     16109  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     16227  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     16381  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     16381  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     16412  17676    448   36    4 : tunables    0    0    0 : slabdata    491    491      0
xfrm_dst_cache     14418  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14529  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14529  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14586  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14696  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14757  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     14909  16560    448   36    4 : tunables    0    0    0 : slabdata    460    460      0
xfrm_dst_cache     12434  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12534  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12619  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12749  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12881  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     12952  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13110  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13223  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13348  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13536  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13664  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13798  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     13928  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14063  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14212  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14422  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14588  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14668  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14668  14760    448   36    4 : tunables    0    0    0 : slabdata    410    410      0
xfrm_dst_cache     14796  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     14796  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     14832  14832    448   36    4 : tunables    0    0    0 : slabdata    412    412      0
xfrm_dst_cache     14868  14868    448   36    4 : tunables    0    0    0 : slabdata    413    413      0
xfrm_dst_cache     15012  15012    448   36    4 : tunables    0    0    0 : slabdata    417    417      0
xfrm_dst_cache     15048  15048    448   36    4 : tunables    0    0    0 : slabdata    418    418      0
xfrm_dst_cache     15084  15084    448   36    4 : tunables    0    0    0 : slabdata    419    419      0
xfrm_dst_cache     15120  15120    448   36    4 : tunables    0    0    0 : slabdata    420    420      0
xfrm_dst_cache     15228  15228    448   36    4 : tunables    0    0    0 : slabdata    423    423      0
xfrm_dst_cache     15336  15336    448   36    4 : tunables    0    0    0 : slabdata    426    426      0
xfrm_dst_cache     15408  15408    448   36    4 : tunables    0    0    0 : slabdata    428    428      0
xfrm_dst_cache     15444  15444    448   36    4 : tunables    0    0    0 : slabdata    429    429      0
xfrm_dst_cache     15480  15480    448   36    4 : tunables    0    0    0 : slabdata    430    430      0
xfrm_dst_cache     15552  15552    448   36    4 : tunables    0    0    0 : slabdata    432    432      0
xfrm_dst_cache     15588  15588    448   36    4 : tunables    0    0    0 : slabdata    433    433      0
xfrm_dst_cache     15768  15768    448   36    4 : tunables    0    0    0 : slabdata    438    438      0
xfrm_dst_cache     15804  15804    448   36    4 : tunables    0    0    0 : slabdata    439    439      0
xfrm_dst_cache     15840  15840    448   36    4 : tunables    0    0    0 : slabdata    440    440      0
xfrm_dst_cache     15912  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     13590  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     13709  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     13791  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14053  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14062  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14062  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14166  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14230  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14230  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14250  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14520  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14754  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14866  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     14893  15912    448   36    4 : tunables    0    0    0 : slabdata    442    442      0
xfrm_dst_cache     12892  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     13033  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0
xfrm_dst_cache     13092  14796    448   36    4 : tunables    0    0    0 : slabdata    411    411      0


Regards,
-- 
Wolfgang Walter
Studentenwerk München
Anstalt des öffentlichen Rechts

^ permalink raw reply

* Re: [Xen-devel] [PATCH net] xen-netback: add the scenario which now beyond the range time_after_eq().
From: jianhai luan @ 2013-10-24 11:34 UTC (permalink / raw)
  To: Jan Beulich, David.Laight, wei.liu2
  Cc: david.vrabel, ian.campbell, xen-devel, annie.li, netdev
In-Reply-To: <5268025002000078000A56B5@nat28.tlf.novell.com>


>>> As I understand it, this is the idea of this patch -- to narrow down the
>>> timing window.
>> Jan,  do you agree the idea or have better suggestion to me.
> As said before - I disagree (reducing a timing window is never a solution,
> only eliminating it is), and I pointed at the alternative (using 64-bit
> calculations) before.
Your mean is that add u64 member into struct xenvif or add static 
variable to keep expire?

Jason
>
> Jan
>

^ permalink raw reply

* Re: Bluetooth 6LoWPAN and routing
From: Hannes Frederic Sowa @ 2013-10-24 11:55 UTC (permalink / raw)
  To: Jukka Rissanen; +Cc: netdev
In-Reply-To: <5268C214.2040307@linux.intel.com>

Hi!

On Thu, Oct 24, 2013 at 09:45:40AM +0300, Jukka Rissanen wrote:
> I have been prototyping with BT 6LoWPAN support (using this draft 
> http://tools.ietf.org/html/draft-ietf-6lowpan-btle-12 as a reference). I 
> sent first version yesterday to linux-bluetooth ml 
> http://thread.gmane.org/gmane.linux.bluez.kernel/39394
> 
> In this current prototype, after the BT connection is created, the code 
> set ups the virtual network interface, sets the IPv6 LL address for it 
> and creates an IPv6 route to peer (the BT 6LoWPAN connections are 
> point-to-point connections). I am using ip6_route_add() function from 
> net/ipv6/route.c file to do that. Unfortunately that function is not 
> exported so I GPL exported it for this prototype. Will this kind of 
> export accepted in upstream or should I figure out some other way to 
> create the desired route?

I am very confident that a patch making ip6_route_add gpl exported will be
accepted.

Greetings,

  Hannes

^ permalink raw reply

* Re: [PATCHv2 net] netpoll: fix rx_hook() interface by passing the skb
From: Antonio Quartulli @ 2013-10-24 12:01 UTC (permalink / raw)
  To: David Laight; +Cc: David Miller, netdev
In-Reply-To: <AE90C24D6B3A694183C094C60CF0A2F6026B73A5@saturn3.aculab.com>

[-- Attachment #1: Type: text/plain, Size: 1520 bytes --]

On Thu, Oct 24, 2013 at 09:43:38AM +0100, David Laight wrote:
> > Subject: [PATCHv2 net] netpoll: fix rx_hook() interface by passing the skb
> > @@ -820,7 +823,10 @@ int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo)
> > 
> >  		len -= iph->ihl*4;
> >  		uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
> > +		offset = (unsigned char *)(uh + 1) - skb->data;
> >  		ulen = ntohs(uh->len);
> > +		data_len = skb->len - offset;
> > +		source = ntohs(uh->source);
> > 
> >  		if (ulen != len)
> >  			goto out;
> > @@ -834,9 +840,7 @@ int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo)
> >  			if (np->local_port && np->local_port != ntohs(uh->dest))
> >  				continue;
> > 
> > -			np->rx_hook(np, ntohs(uh->source),
> > -				       (char *)(uh+1),
> > -				       ulen - sizeof(struct udphdr));
> > +			np->rx_skb_hook(np, source, skb, offset, data_len);
> >  			hits++;
> >  		}
> >  	} else {
> 
> From a code optimisation point of view you probably don't want to be
> calculating the source, offset and length early.
> It is quite likely that the local variables will have to be written
> to the stack (because of the function calls) - so it is almost
> certainly more efficient to calculate them just before the call.

I thought that computing them once outside the loop was better than
re-computing them during each iteration.

Having them outside makes it also clear that they always have the same value.


Regards,

-- 
Antonio Quartulli

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply

* FYI!!
From: Mr. Tan Kong @ 2013-10-24 12:15 UTC (permalink / raw)
  To: tan


Hello, 
I am asking for your partnership in re-profiling funds.
Regards,
Tan Kong

^ permalink raw reply

* Re: Bluetooth 6LoWPAN and routing
From: Alexander Aring @ 2013-10-24 12:25 UTC (permalink / raw)
  To: Jukka Rissanen; +Cc: netdev
In-Reply-To: <5268C214.2040307@linux.intel.com>

Hi Jukka,

On Thu, Oct 24, 2013 at 09:45:40AM +0300, Jukka Rissanen wrote:
> Hi,
> 
> I have been prototyping with BT 6LoWPAN support (using this draft
> http://tools.ietf.org/html/draft-ietf-6lowpan-btle-12 as a
> reference). I sent first version yesterday to linux-bluetooth ml
> http://thread.gmane.org/gmane.linux.bluez.kernel/39394
> 
I see you take many code from the 6lowpan ieee802154 implementation.
(Just notice you drop the original authors from there)

I have a couple of patches to fix a lot of bugs in the current 6LoWPAN
ieee802154 implementation.

Some bugs which I found:

  - Fix race conditions in fragmentation handling
  - Fix UDP compression/uncompressionm, which is completly broken
  - Fragmentation handling isn't rfc4944 compatible

And some other improvements. I see your rfc has the same issues (e.g.
fragmentation race conditions).

Currently I preparing these patches for mainlining.

But my question is:

What we do now, make a generic 6LoWPAN implementation. Or bluetooth,
ieee802154 makes his own implementation?

- Alex

^ permalink raw reply

* Re: [PACTH net-next] SUNRPC: remove an unnecessary if statement
From: Ding Tianhong @ 2013-10-24 12:29 UTC (permalink / raw)
  To: wangweidong; +Cc: davem, Trond.Myklebust, bfields, netdev, linux-nfs
In-Reply-To: <52688768.9020703@huawei.com>

On 2013/10/24 10:35, wangweidong wrote:
> If req allocated failed just goto out_free, no need to check the
> 'i < num_prealloc'. There is just code simplification, no
> functional changes.
> 
> Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
> ---
>  net/sunrpc/xprt.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
> index 095363e..a8e20de 100644
> --- a/net/sunrpc/xprt.c
> +++ b/net/sunrpc/xprt.c
> @@ -1087,11 +1087,9 @@ struct rpc_xprt *xprt_alloc(struct net *net, size_t size,
>  	for (i = 0; i < num_prealloc; i++) {
>  		req = kzalloc(sizeof(struct rpc_rqst), GFP_KERNEL);
>  		if (!req)
> -			break;
> +			goto out_free;
>  		list_add(&req->rq_list, &xprt->free);
>  	}
> -	if (i < num_prealloc)
> -		goto out_free;
>  	if (max_alloc > num_prealloc)
>  		xprt->max_reqs = max_alloc;
>  	else
> -- 1.7.12
> 
> 

Acked-by: Ding Tianhong <dingtianhong@huawei.com>

> 
> 
> .
> 

^ permalink raw reply

* crypto: skcipher - Use eseqiv even on UP machines
From: Herbert Xu @ 2013-10-24 12:41 UTC (permalink / raw)
  To: David S. Miller, Steffen Klassert, netdev,
	Linux Crypto Mailing List

Hi:
    
Previously we would use eseqiv on all async ciphers in all cases,
and sync ciphers if we have more than one CPU.  This meant that
chainiv is only used in the case of sync ciphers on a UP machine.

As chainiv may aid attackers by making the IV predictable, even
though this risk itself is small, the above usage pattern causes
it to further leak information about the host.

This patch addresses these issues by using eseqiv even if we're
on a UP machine.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

--git a/crypto/ablkcipher.c b/crypto/ablkcipher.c
index 7d4a8d2..40886c4 100644
--- a/crypto/ablkcipher.c
+++ b/crypto/ablkcipher.c
@@ -16,9 +16,7 @@
 #include <crypto/internal/skcipher.h>
 #include <linux/cpumask.h>
 #include <linux/err.h>
-#include <linux/init.h>
 #include <linux/kernel.h>
-#include <linux/module.h>
 #include <linux/rtnetlink.h>
 #include <linux/sched.h>
 #include <linux/slab.h>
@@ -30,8 +28,6 @@
 
 #include "internal.h"
 
-static const char *skcipher_default_geniv __read_mostly;
-
 struct ablkcipher_buffer {
 	struct list_head	entry;
 	struct scatter_walk	dst;
@@ -527,8 +523,7 @@ const char *crypto_default_geniv(const struct crypto_alg *alg)
 	    alg->cra_blocksize)
 		return "chainiv";
 
-	return alg->cra_flags & CRYPTO_ALG_ASYNC ?
-	       "eseqiv" : skcipher_default_geniv;
+	return "eseqiv";
 }
 
 static int crypto_givcipher_default(struct crypto_alg *alg, u32 type, u32 mask)
@@ -709,17 +704,3 @@ err:
 	return ERR_PTR(err);
 }
 EXPORT_SYMBOL_GPL(crypto_alloc_ablkcipher);
-
-static int __init skcipher_module_init(void)
-{
-	skcipher_default_geniv = num_possible_cpus() > 1 ?
-				 "eseqiv" : "chainiv";
-	return 0;
-}
-
-static void skcipher_module_exit(void)
-{
-}
-
-module_init(skcipher_module_init);
-module_exit(skcipher_module_exit);

Cheers,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply related

* Re: Bluetooth 6LoWPAN and routing
From: Jukka Rissanen @ 2013-10-24 12:48 UTC (permalink / raw)
  To: Alexander Aring; +Cc: netdev
In-Reply-To: <20131024122452.GA5491@omega>

Hi Alexander,

On 24.10.2013 15:25, Alexander Aring wrote:
> Hi Jukka,
>
> On Thu, Oct 24, 2013 at 09:45:40AM +0300, Jukka Rissanen wrote:
>> Hi,
>>
>> I have been prototyping with BT 6LoWPAN support (using this draft
>> http://tools.ietf.org/html/draft-ietf-6lowpan-btle-12 as a
>> reference). I sent first version yesterday to linux-bluetooth ml
>> http://thread.gmane.org/gmane.linux.bluez.kernel/39394
>>
> I see you take many code from the 6lowpan ieee802154 implementation.
> (Just notice you drop the original authors from there)

Hmm, those got dropped, I am sorry about that. I will add the original 
authors information of course.

>
> I have a couple of patches to fix a lot of bugs in the current 6LoWPAN
> ieee802154 implementation.
>
> Some bugs which I found:
>
>    - Fix race conditions in fragmentation handling
>    - Fix UDP compression/uncompressionm, which is completly broken
>    - Fragmentation handling isn't rfc4944 compatible
>
> And some other improvements. I see your rfc has the same issues (e.g.
> fragmentation race conditions).
>
> Currently I preparing these patches for mainlining.

Excellent news!

>
> But my question is:
>
> What we do now, make a generic 6LoWPAN implementation. Or bluetooth,
> ieee802154 makes his own implementation?

At least the compression/uncompression code and fragmentation could be 
shared. Could it possible to isolate relevant functions to separate file 
that would be usable by both BT and ieee802154?

>
> - Alex
>

-- 
Cheers,
Jukka

^ permalink raw reply

* Re: [RFC PATCH net-next] ppp: Allow ppp device connected to an l2tp session to change of namespace
From: François Cachereul @ 2013-10-24 13:41 UTC (permalink / raw)
  To: James Chapman; +Cc: Paul Mackerras, netdev, linux-ppp
In-Reply-To: <5268FCB1.7020903@katalix.com>

On 10/24/2013 12:55 PM, James Chapman wrote:
> On 24/10/13 11:30, François Cachereul wrote:
>> Remove NETIF_F_NETNS_LOCAL flag from ppp device in ppp_connect_channel()
>> if the device is connected to a l2tp session socket.
>> Restore the flag in ppp_disconnect_channel().
> 
> What about pppd's network namespace? Also, L2TP's tunnel socket (UDP or
> L2TP/IP) will be in a different namespace if the ppp interface is moved.

That's what I'm trying to achieve. I'm not using pppd and my problem is
as follow:  I need to isolate ppp devices from each other, even when
they are connected to sessions carried by the same L2TP tunnel. Also, I
need the authentication to be terminated to know the namespace in which
the ppp will be moved. For that, the process runs in a namespace with
its l2tp sockets (tunnel and session) in that same namespace and each
ppp device is moved in a specific namespace after authentication.
 
Regards
François


^ permalink raw reply

* [patch net-next] ipv6: allow userspace to create address with IFLA_F_TEMPORARY flag
From: Jiri Pirko @ 2013-10-24 13:45 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuznet, jmorris, yoshfuji, kaber, thaller, stephen

This is needed in order to implement userspace address configuration,
namely ip6-privacy (rfc4941) in NetworkManager.

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
---
 net/ipv6/addrconf.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index cd3fb30..962c7c9 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -3715,7 +3715,8 @@ inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
 		return -ENODEV;
 
 	/* We ignore other flags so far. */
-	ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
+	ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS |
+				      IFA_F_TEMPORARY);
 
 	ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
 	if (ifa == NULL) {
-- 
1.8.3.1

^ permalink raw reply related

* [patch iproute2] allow to create temporary addresses
From: Jiri Pirko @ 2013-10-24 13:48 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuznet, jmorris, yoshfuji, kaber, thaller, stephen
In-Reply-To: <1382622355-6500-1-git-send-email-jiri@resnulli.us>

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
---
 ip/ipaddress.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ip/ipaddress.c b/ip/ipaddress.c
index 1c3e4da..3ca774d 100644
--- a/ip/ipaddress.c
+++ b/ip/ipaddress.c
@@ -1332,6 +1332,9 @@ static int ipaddr_modify(int cmd, int flags, int argc, char **argv)
 			req.ifa.ifa_flags |= IFA_F_HOMEADDRESS;
 		} else if (strcmp(*argv, "nodad") == 0) {
 			req.ifa.ifa_flags |= IFA_F_NODAD;
+		} else if (strcmp(*argv, "temporary") == 0 ||
+			   strcmp(*argv, "secondary") == 0) {
+			req.ifa.ifa_flags |= IFA_F_SECONDARY;
 		} else {
 			if (strcmp(*argv, "local") == 0) {
 				NEXT_ARG();
-- 
1.8.3.1

^ permalink raw reply related

* Re: [patch net-next] ipv6: allow userspace to create address with IFLA_F_TEMPORARY flag
From: Hannes Frederic Sowa @ 2013-10-24 14:02 UTC (permalink / raw)
  To: Jiri Pirko
  Cc: netdev, davem, kuznet, jmorris, yoshfuji, kaber, thaller, stephen
In-Reply-To: <1382622355-6500-1-git-send-email-jiri@resnulli.us>

On Thu, Oct 24, 2013 at 03:45:55PM +0200, Jiri Pirko wrote:
> This is needed in order to implement userspace address configuration,
> namely ip6-privacy (rfc4941) in NetworkManager.
> 
> Signed-off-by: Jiri Pirko <jiri@resnulli.us>
> ---
>  net/ipv6/addrconf.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
> index cd3fb30..962c7c9 100644
> --- a/net/ipv6/addrconf.c
> +++ b/net/ipv6/addrconf.c
> @@ -3715,7 +3715,8 @@ inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
>  		return -ENODEV;
>  
>  	/* We ignore other flags so far. */
> -	ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
> +	ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS |
> +				      IFA_F_TEMPORARY);
>  
>  	ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
>  	if (ifa == NULL) {

Hm, the kernel will pick up IFA_F_TEMPORARY marked addresses and do ipv6 address
regeneration (depending on lifetimes). Is this intended?

Btw. I am very interested in this topic as there is currently work in the IETF
to move away from eui-48 generation of addresses:

https://datatracker.ietf.org/doc/draft-ietf-6man-stable-privacy-addresses/

This needs to be done in userspace as we depend on a secret generated at
system install time.

Greetings,

  Hannes

^ permalink raw reply

* Re: [PATCH 1/1] net:sched  fix a bug about memery leak
From: Sergei Shtylyov @ 2013-10-24 14:05 UTC (permalink / raw)
  To: Jing Wang, netdev
In-Reply-To: <1382605580-2629-1-git-send-email-windsdaemon@gmail.com>

Hello.

On 10/24/2013 01:06 PM, Jing Wang wrote:

> From: Jing Wang <windsdaemon@gmail.com>

> the code isn't properly release memory

> Signed-off-by: Jing Wang <windsdaemon@gmail.com>
> ---
>   net/sched/cls_route.c |    9 ++++++---
>   1 files changed, 6 insertions(+), 3 deletions(-)

> diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c
> index 37da567..118f8d5 100644
> --- a/net/sched/cls_route.c
> +++ b/net/sched/cls_route.c
[...]
> @@ -517,6 +517,9 @@ reinsert:
>
>   errout:
>   	kfree(f);
> +errflt:
> +    kfree(head);

    Please indent with tab, not spaces.

WBR, Sergei

^ permalink raw reply

* Re: [PATCH 1/1] net:sched  fix a bug about memery leak
From: Christoph Paasch @ 2013-10-24 14:07 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: Jing Wang, davem, jhs, netdev
In-Reply-To: <1382607218.7572.45.camel@edumazet-glaptop.roam.corp.google.com>

On 24/10/13 - 02:33:38, Eric Dumazet wrote:
> On Thu, 2013-10-24 at 17:12 +0800, Jing Wang wrote:
> > From: Jing Wang <windsdaemon@gmail.com>
> > 
> > the code isn't properly release memory
> > 
> > Signed-off-by: Jing Wang <windsdaemon@gmail.com>
> > ---
> >  net/sched/cls_route.c |    9 ++++++---
> >  1 files changed, 6 insertions(+), 3 deletions(-)
> > 
> > diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c
> > index 37da567..118f8d5 100644
> > --- a/net/sched/cls_route.c
> > +++ b/net/sched/cls_route.c
> > @@ -466,11 +466,11 @@ static int route4_change(struct net *net, struct sk_buff *in_skb,
> >  		goto reinsert;
> >  	}
> >  
> > -	err = -ENOBUFS;
> > +	err = -ENOMEM;
> >  	if (head == NULL) {
> >  		head = kzalloc(sizeof(struct route4_head), GFP_KERNEL);
> >  		if (head == NULL)
> > -			goto errout;
> > +			goto errhead;
> >  
> >  		tcf_tree_lock(tp);
> >  		tp->root = head;
> > @@ -479,7 +479,7 @@ static int route4_change(struct net *net, struct sk_buff *in_skb,
> >  
> >  	f = kzalloc(sizeof(struct route4_filter), GFP_KERNEL);
> >  	if (f == NULL)
> > -		goto errout;
> > +		goto errflt;
> >  
> >  	err = route4_set_parms(net, tp, base, f, handle, head, tb,
> >  		tca[TCA_RATE], 1);
> > @@ -517,6 +517,9 @@ reinsert:
> >  
> >  errout:
> >  	kfree(f);
> > +errflt:
> > +    kfree(head);
> > +errhead:
> >  	return err;
> >  }
> >  
> 
> I don't think this patch is needed or correct.
> 
> tp->root is the head, you cannot free it like that.
> 
> It will be freed properly in route4_destroy()
> 
> Please elaborate, thanks.

I think there is something else wrong in route4_change:

----
>From 1409402bf964bef79667755a5d0d5e0c2bd663f3 Mon Sep 17 00:00:00 2001
From: Christoph Paasch <christoph.paasch@uclouvain.be>
Date: Thu, 24 Oct 2013 15:33:28 +0200
Subject: [PATCH net] net: sched: Don't free f before it is allocated in
 route4_change

f is set to *arg in route4_change at the beginning, which points to a                                                                                                                                                                                                          
route4_filter in the hash-table (gotten through route4_get, called by
tc_ctl_filter). If the alloc of head fails, we should not goto errout,
because this will free f and thus freed memory will be referenced by
the hash-table.
Only later the pointer f will change to an allocated route4_filter.

This patch returns err if the allocation of head fails as f has not yet
been allocated inside route4_change.

Seems the code has been like this since Linus's original git-commit.

Signed-off-by: Christoph Paasch <christoph.paasch@uclouvain.be>
---
 net/sched/cls_route.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c
index 37da567..f17c67f 100644
--- a/net/sched/cls_route.c
+++ b/net/sched/cls_route.c
@@ -470,7 +470,7 @@ static int route4_change(struct net *net, struct sk_buff *in_skb,
        if (head == NULL) {
                head = kzalloc(sizeof(struct route4_head), GFP_KERNEL);
                if (head == NULL)
-                       goto errout;
+                       return err;

                tcf_tree_lock(tp);
                tp->root = head;
-- 
1.8.3.2

^ permalink raw reply related


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox