From 06dc80d3b339a1dfecdee595d4ab3a5474a515f2 Mon Sep 17 00:00:00 2001 From: Craig Small Date: Tue, 26 Jun 2012 22:01:42 +1000 Subject: [PATCH] Increase slab name from 64 to 128 characters There soon will be slab types per cgroup meaning the name of the slab will have the cgroup name in parathensis after the slab name. This minor change increases the slab name size to cater for this. Signed-off-by: Craig Small --- proc/slab.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc/slab.h b/proc/slab.h index ea17ddc9..09dbe00c 100644 --- a/proc/slab.h +++ b/proc/slab.h @@ -1,7 +1,7 @@ #ifndef _PROC_SLAB_H #define _PROC_SLAB_H -#define SLAB_INFO_NAME_LEN 64 +#define SLAB_INFO_NAME_LEN 128 struct slab_info { char name[SLAB_INFO_NAME_LEN]; /* name of this cache */