linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
@ 2015-04-22  8:33 Gavin Guo
  2015-04-22 14:27 ` Christoph Lameter
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Gavin Guo @ 2015-04-22  8:33 UTC (permalink / raw)
  To: cl, penberg, rientjes, iamjoonsoo.kim, akpm, linux-mm, linux-kernel

The slub_debug=PU,kmalloc-xx cannot work because in the
create_kmalloc_caches() the s->name is created after the
create_kmalloc_cache() is called. The name is NULL in the
create_kmalloc_cache() so the kmem_cache_flags() would not set the
slub_debug flags to the s->flags. The fix here set up a kmalloc_names
string array for the initialization purpose and delete the dynamic
name creation of kmalloc_caches.

v1->v2
 - Adopted suggestion from Christoph to delete the dynamic name creation
   for kmalloc_caches.

Signed-off-by: Gavin Guo <gavin.guo@canonical.com>
---
 mm/slab_common.c | 41 ++++++++++++++++++++++++++---------------
 1 file changed, 26 insertions(+), 15 deletions(-)

diff --git a/mm/slab_common.c b/mm/slab_common.c
index 999bb34..61fbc4e 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -793,6 +793,26 @@ void __init create_kmalloc_caches(unsigned long flags)
 	int i;
 
 	/*
+	 * The kmalloc_names is for temporary usage to make
+	 * slub_debug=,kmalloc-xx option work in the boot time. The
+	 * kmalloc_index() support to 2^26=64MB. So, the final entry of the
+	 * table is kmalloc-67108864.
+	 */
+	static const char *kmalloc_names[] = {
+		"0",			"kmalloc-96",		"kmalloc-192",
+		"kmalloc-8",		"kmalloc-16",		"kmalloc-32",
+		"kmalloc-64",		"kmalloc-128",		"kmalloc-256",
+		"kmalloc-512",		"kmalloc-1024",		"kmalloc-2048",
+		"kmalloc-4196",		"kmalloc-8192",		"kmalloc-16384",
+		"kmalloc-32768",	"kmalloc-65536",
+		"kmalloc-131072",	"kmalloc-262144",
+		"kmalloc-524288",	"kmalloc-1048576",
+		"kmalloc-2097152",	"kmalloc-4194304",
+		"kmalloc-8388608",	"kmalloc-16777216",
+		"kmalloc-33554432",	"kmalloc-67108864"
+	};
+
+	/*
 	 * Patch up the size_index table if we have strange large alignment
 	 * requirements for the kmalloc array. This is only the case for
 	 * MIPS it seems. The standard arches will not generate any code here.
@@ -835,7 +855,8 @@ void __init create_kmalloc_caches(unsigned long flags)
 	}
 	for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
 		if (!kmalloc_caches[i]) {
-			kmalloc_caches[i] = create_kmalloc_cache(NULL,
+			kmalloc_caches[i] = create_kmalloc_cache(
+							kmalloc_names[i],
 							1 << i, flags);
 		}
 
@@ -845,27 +866,17 @@ void __init create_kmalloc_caches(unsigned long flags)
 		 * earlier power of two caches
 		 */
 		if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
-			kmalloc_caches[1] = create_kmalloc_cache(NULL, 96, flags);
+			kmalloc_caches[1] = create_kmalloc_cache(
+						kmalloc_names[1], 96, flags);
 
 		if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
-			kmalloc_caches[2] = create_kmalloc_cache(NULL, 192, flags);
+			kmalloc_caches[2] = create_kmalloc_cache(
+						 kmalloc_names[2], 192, flags);
 	}
 
 	/* Kmalloc array is now usable */
 	slab_state = UP;
 
-	for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
-		struct kmem_cache *s = kmalloc_caches[i];
-		char *n;
-
-		if (s) {
-			n = kasprintf(GFP_NOWAIT, "kmalloc-%d", kmalloc_size(i));
-
-			BUG_ON(!n);
-			s->name = n;
-		}
-	}
-
 #ifdef CONFIG_ZONE_DMA
 	for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
 		struct kmem_cache *s = kmalloc_caches[i];
-- 
2.0.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-22  8:33 [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size Gavin Guo
@ 2015-04-22 14:27 ` Christoph Lameter
  2015-04-22 21:00 ` Andrew Morton
  2015-04-23  9:55 ` Rasmus Villemoes
  2 siblings, 0 replies; 8+ messages in thread
From: Christoph Lameter @ 2015-04-22 14:27 UTC (permalink / raw)
  To: Gavin Guo; +Cc: penberg, rientjes, iamjoonsoo.kim, akpm, linux-mm, linux-kernel

On Wed, 22 Apr 2015, Gavin Guo wrote:

> The slub_debug=PU,kmalloc-xx cannot work because in the
> create_kmalloc_caches() the s->name is created after the
> create_kmalloc_cache() is called. The name is NULL in the
> create_kmalloc_cache() so the kmem_cache_flags() would not set the
> slub_debug flags to the s->flags. The fix here set up a kmalloc_names
> string array for the initialization purpose and delete the dynamic
> name creation of kmalloc_caches.

Acked-by: Christoph Lameter <cl@linux.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-22  8:33 [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size Gavin Guo
  2015-04-22 14:27 ` Christoph Lameter
@ 2015-04-22 21:00 ` Andrew Morton
  2015-04-22 21:02   ` Andrew Morton
  2015-04-23  3:10   ` Gavin Guo
  2015-04-23  9:55 ` Rasmus Villemoes
  2 siblings, 2 replies; 8+ messages in thread
From: Andrew Morton @ 2015-04-22 21:00 UTC (permalink / raw)
  To: Gavin Guo; +Cc: cl, penberg, rientjes, iamjoonsoo.kim, linux-mm, linux-kernel

On Wed, 22 Apr 2015 16:33:38 +0800 Gavin Guo <gavin.guo@canonical.com> wrote:

> The slub_debug=PU,kmalloc-xx cannot work because in the
> create_kmalloc_caches() the s->name is created after the
> create_kmalloc_cache() is called. The name is NULL in the
> create_kmalloc_cache() so the kmem_cache_flags() would not set the
> slub_debug flags to the s->flags. The fix here set up a kmalloc_names
> string array for the initialization purpose and delete the dynamic
> name creation of kmalloc_caches.
> 
> --- a/mm/slab_common.c
> +++ b/mm/slab_common.c
> @@ -793,6 +793,26 @@ void __init create_kmalloc_caches(unsigned long flags)
>  	int i;
>  
>  	/*
> +	 * The kmalloc_names is for temporary usage to make
> +	 * slub_debug=,kmalloc-xx option work in the boot time. The
> +	 * kmalloc_index() support to 2^26=64MB. So, the final entry of the
> +	 * table is kmalloc-67108864.
> +	 */
> +	static const char *kmalloc_names[] = {
> +		"0",			"kmalloc-96",		"kmalloc-192",
> +		"kmalloc-8",		"kmalloc-16",		"kmalloc-32",
> +		"kmalloc-64",		"kmalloc-128",		"kmalloc-256",
> +		"kmalloc-512",		"kmalloc-1024",		"kmalloc-2048",
> +		"kmalloc-4196",		"kmalloc-8192",		"kmalloc-16384",
> +		"kmalloc-32768",	"kmalloc-65536",
> +		"kmalloc-131072",	"kmalloc-262144",
> +		"kmalloc-524288",	"kmalloc-1048576",
> +		"kmalloc-2097152",	"kmalloc-4194304",
> +		"kmalloc-8388608",	"kmalloc-16777216",
> +		"kmalloc-33554432",	"kmalloc-67108864"
> +	};
> +
> +	/*
>  	 * Patch up the size_index table if we have strange large alignment
>  	 * requirements for the kmalloc array. This is only the case for
>  	 * MIPS it seems. The standard arches will not generate any code here.
> @@ -835,7 +855,8 @@ void __init create_kmalloc_caches(unsigned long flags)
>  	}
>  	for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
>  		if (!kmalloc_caches[i]) {
> -			kmalloc_caches[i] = create_kmalloc_cache(NULL,
> +			kmalloc_caches[i] = create_kmalloc_cache(
> +							kmalloc_names[i],
>  							1 << i, flags);
>  		}

You could do something like

		kmalloc_caches[i] = create_kmalloc_cache(
					kmalloc_names[i],
					kstrtoul(kmalloc_names[i] + 8),
					flags);

here, and remove those weird "96" and "192" cases.

Or if that's considered too messy, make it

	static const struct {
		const char *name;
		unsigned size;
	} kmalloc_cache_info[] = {
		{ NULL, 0 },
		{ "kmalloc-96", 96 },
		...
	};

but I'm thinking the kstrtoul() trick will be OK.

> -	for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
> -		struct kmem_cache *s = kmalloc_caches[i];
> -		char *n;
> -
> -		if (s) {
> -			n = kasprintf(GFP_NOWAIT, "kmalloc-%d", kmalloc_size(i));
> -
> -			BUG_ON(!n);
> -			s->name = n;
> -		}
> -	}
> -

slab_kmem_cache_release() still does kfree_const(s->name).  It will
crash?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-22 21:00 ` Andrew Morton
@ 2015-04-22 21:02   ` Andrew Morton
  2015-04-23  3:10   ` Gavin Guo
  1 sibling, 0 replies; 8+ messages in thread
From: Andrew Morton @ 2015-04-22 21:02 UTC (permalink / raw)
  To: Gavin Guo, cl, penberg, rientjes, iamjoonsoo.kim, linux-mm, linux-kernel

On Wed, 22 Apr 2015 14:00:39 -0700 Andrew Morton <akpm@linux-foundation.org> wrote:

> slab_kmem_cache_release() still does kfree_const(s->name).  It will
> crash?

er, ignore this bit..

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-22 21:00 ` Andrew Morton
  2015-04-22 21:02   ` Andrew Morton
@ 2015-04-23  3:10   ` Gavin Guo
  2015-04-23  3:28     ` Andrew Morton
  1 sibling, 1 reply; 8+ messages in thread
From: Gavin Guo @ 2015-04-23  3:10 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Christoph Lameter, penberg, rientjes, iamjoonsoo.kim, linux-mm,
	linux-kernel

On Thu, Apr 23, 2015 at 5:00 AM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Wed, 22 Apr 2015 16:33:38 +0800 Gavin Guo <gavin.guo@canonical.com> wrote:
>
>> The slub_debug=PU,kmalloc-xx cannot work because in the
>> create_kmalloc_caches() the s->name is created after the
>> create_kmalloc_cache() is called. The name is NULL in the
>> create_kmalloc_cache() so the kmem_cache_flags() would not set the
>> slub_debug flags to the s->flags. The fix here set up a kmalloc_names
>> string array for the initialization purpose and delete the dynamic
>> name creation of kmalloc_caches.
>>
>> --- a/mm/slab_common.c
>> +++ b/mm/slab_common.c
>> @@ -793,6 +793,26 @@ void __init create_kmalloc_caches(unsigned long flags)
>>       int i;
>>
>>       /*
>> +      * The kmalloc_names is for temporary usage to make
>> +      * slub_debug=,kmalloc-xx option work in the boot time. The
>> +      * kmalloc_index() support to 2^26=64MB. So, the final entry of the
>> +      * table is kmalloc-67108864.
>> +      */
>> +     static const char *kmalloc_names[] = {
>> +             "0",                    "kmalloc-96",           "kmalloc-192",
>> +             "kmalloc-8",            "kmalloc-16",           "kmalloc-32",
>> +             "kmalloc-64",           "kmalloc-128",          "kmalloc-256",
>> +             "kmalloc-512",          "kmalloc-1024",         "kmalloc-2048",
>> +             "kmalloc-4196",         "kmalloc-8192",         "kmalloc-16384",
>> +             "kmalloc-32768",        "kmalloc-65536",
>> +             "kmalloc-131072",       "kmalloc-262144",
>> +             "kmalloc-524288",       "kmalloc-1048576",
>> +             "kmalloc-2097152",      "kmalloc-4194304",
>> +             "kmalloc-8388608",      "kmalloc-16777216",
>> +             "kmalloc-33554432",     "kmalloc-67108864"
>> +     };
>> +
>> +     /*
>>        * Patch up the size_index table if we have strange large alignment
>>        * requirements for the kmalloc array. This is only the case for
>>        * MIPS it seems. The standard arches will not generate any code here.
>> @@ -835,7 +855,8 @@ void __init create_kmalloc_caches(unsigned long flags)
>>       }
>>       for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
>>               if (!kmalloc_caches[i]) {
>> -                     kmalloc_caches[i] = create_kmalloc_cache(NULL,
>> +                     kmalloc_caches[i] = create_kmalloc_cache(
>> +                                                     kmalloc_names[i],
>>                                                       1 << i, flags);
>>               }
>
> You could do something like
>
>                 kmalloc_caches[i] = create_kmalloc_cache(
>                                         kmalloc_names[i],
>                                         kstrtoul(kmalloc_names[i] + 8),
>                                         flags);
>
> here, and remove those weird "96" and "192" cases.

Thanks for your reply. I'm not sure if I am following your idea. Would you
mean to simply replace the string like:

                kmalloc_caches[1] = create_kmalloc_cache(
                                        kmalloc_names[1], 96, flags);
as follows:

                kmalloc_caches[1] = create_kmalloc_cache(
                                        kmalloc_names[1],
                                        kstrtoul(kmalloc_names[i] + 8),
                                        flags);

or if you like to merge the last 2 if conditions for 96 and 192 cases to
the first if condition check:

                if (!kmalloc_caches[i]) {
                        kmalloc_caches[i] = create_kmalloc_cache(NULL,
                                                        1 << i, flags);
                }


>
> Or if that's considered too messy, make it
>
>         static const struct {
>                 const char *name;
>                 unsigned size;
>         } kmalloc_cache_info[] = {
>                 { NULL, 0 },
>                 { "kmalloc-96", 96 },
>                 ...
>         };
>
> but I'm thinking the kstrtoul() trick will be OK.
>
>> -     for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
>> -             struct kmem_cache *s = kmalloc_caches[i];
>> -             char *n;
>> -
>> -             if (s) {
>> -                     n = kasprintf(GFP_NOWAIT, "kmalloc-%d", kmalloc_size(i));
>> -
>> -                     BUG_ON(!n);
>> -                     s->name = n;
>> -             }
>> -     }
>> -
>
> slab_kmem_cache_release() still does kfree_const(s->name).  It will
> crash?
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-23  3:10   ` Gavin Guo
@ 2015-04-23  3:28     ` Andrew Morton
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Morton @ 2015-04-23  3:28 UTC (permalink / raw)
  To: Gavin Guo
  Cc: Christoph Lameter, penberg, rientjes, iamjoonsoo.kim, linux-mm,
	linux-kernel

On Thu, 23 Apr 2015 11:10:40 +0800 Gavin Guo <gavin.guo@canonical.com> wrote:

> >>       for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
> >>               if (!kmalloc_caches[i]) {
> >> -                     kmalloc_caches[i] = create_kmalloc_cache(NULL,
> >> +                     kmalloc_caches[i] = create_kmalloc_cache(
> >> +                                                     kmalloc_names[i],
> >>                                                       1 << i, flags);
> >>               }
> >
> > You could do something like
> >
> >                 kmalloc_caches[i] = create_kmalloc_cache(
> >                                         kmalloc_names[i],
> >                                         kstrtoul(kmalloc_names[i] + 8),
> >                                         flags);
> >
> > here, and remove those weird "96" and "192" cases.
> 
> Thanks for your reply. I'm not sure if I am following your idea. Would you
> mean to simply replace the string like:
> 
>                 kmalloc_caches[1] = create_kmalloc_cache(
>                                         kmalloc_names[1], 96, flags);
> as follows:
> 
>                 kmalloc_caches[1] = create_kmalloc_cache(
>                                         kmalloc_names[1],
>                                         kstrtoul(kmalloc_names[i] + 8),
>                                         flags);
> 
> or if you like to merge the last 2 if conditions for 96 and 192 cases to
> the first if condition check:
> 
>                 if (!kmalloc_caches[i]) {
>                         kmalloc_caches[i] = create_kmalloc_cache(NULL,
>                                                         1 << i, flags);
>                 }

The latter - initialize all the caches in a single loop.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-22  8:33 [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size Gavin Guo
  2015-04-22 14:27 ` Christoph Lameter
  2015-04-22 21:00 ` Andrew Morton
@ 2015-04-23  9:55 ` Rasmus Villemoes
  2015-04-23 11:15   ` Gavin Guo
  2 siblings, 1 reply; 8+ messages in thread
From: Rasmus Villemoes @ 2015-04-23  9:55 UTC (permalink / raw)
  To: Gavin Guo
  Cc: cl, penberg, rientjes, iamjoonsoo.kim, akpm, linux-mm, linux-kernel

On Wed, Apr 22 2015, Gavin Guo <gavin.guo@canonical.com> wrote:

>  	/*
> +	 * The kmalloc_names is for temporary usage to make
> +	 * slub_debug=,kmalloc-xx option work in the boot time. The
> +	 * kmalloc_index() support to 2^26=64MB. So, the final entry of the
> +	 * table is kmalloc-67108864.
> +	 */
> +	static const char *kmalloc_names[] = {

The array itself could be const, but more importantly it should be
marked __initconst so that the 27*sizeof(char*) bytes can be released after init.

> +		"0",			"kmalloc-96",		"kmalloc-192",
> +		"kmalloc-8",		"kmalloc-16",		"kmalloc-32",
> +		"kmalloc-64",		"kmalloc-128",		"kmalloc-256",
> +		"kmalloc-512",		"kmalloc-1024",		"kmalloc-2048",
> +		"kmalloc-4196",		"kmalloc-8192",		"kmalloc-16384",

"kmalloc-4096"

> +		"kmalloc-32768",	"kmalloc-65536",
> +		"kmalloc-131072",	"kmalloc-262144",
> +		"kmalloc-524288",	"kmalloc-1048576",
> +		"kmalloc-2097152",	"kmalloc-4194304",
> +		"kmalloc-8388608",	"kmalloc-16777216",
> +		"kmalloc-33554432",	"kmalloc-67108864"
> +	};

On Wed, Apr 22 2015, Andrew Morton <akpm@linux-foundation.org> wrote:

> You could do something like
>
> 		kmalloc_caches[i] = create_kmalloc_cache(
> 					kmalloc_names[i],
> 					kstrtoul(kmalloc_names[i] + 8),
> 					flags);
>
> here, and remove those weird "96" and "192" cases.

Eww. At least spell 8 as strlen("kmalloc-").

> Or if that's considered too messy, make it
>
> 	static const struct {
> 		const char *name;
> 		unsigned size;
> 	} kmalloc_cache_info[] = {
> 		{ NULL, 0 },
> 		{ "kmalloc-96", 96 },
> 		...
> 	};

I'd vote for this color for the bikeshed :-)

Rasmus

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size
  2015-04-23  9:55 ` Rasmus Villemoes
@ 2015-04-23 11:15   ` Gavin Guo
  0 siblings, 0 replies; 8+ messages in thread
From: Gavin Guo @ 2015-04-23 11:15 UTC (permalink / raw)
  To: Rasmus Villemoes
  Cc: Christoph Lameter, penberg, rientjes, iamjoonsoo.kim,
	Andrew Morton, linux-mm, linux-kernel

Hi Rasmus,

On Thu, Apr 23, 2015 at 5:55 PM, Rasmus Villemoes
<linux@rasmusvillemoes.dk> wrote:
> On Wed, Apr 22 2015, Gavin Guo <gavin.guo@canonical.com> wrote:
>
>>       /*
>> +      * The kmalloc_names is for temporary usage to make
>> +      * slub_debug=,kmalloc-xx option work in the boot time. The
>> +      * kmalloc_index() support to 2^26=64MB. So, the final entry of the
>> +      * table is kmalloc-67108864.
>> +      */
>> +     static const char *kmalloc_names[] = {
>
> The array itself could be const, but more importantly it should be
> marked __initconst so that the 27*sizeof(char*) bytes can be released after init.
>
>> +             "0",                    "kmalloc-96",           "kmalloc-192",
>> +             "kmalloc-8",            "kmalloc-16",           "kmalloc-32",
>> +             "kmalloc-64",           "kmalloc-128",          "kmalloc-256",
>> +             "kmalloc-512",          "kmalloc-1024",         "kmalloc-2048",
>> +             "kmalloc-4196",         "kmalloc-8192",         "kmalloc-16384",
>
> "kmalloc-4096"

Good catch!!

>
>> +             "kmalloc-32768",        "kmalloc-65536",
>> +             "kmalloc-131072",       "kmalloc-262144",
>> +             "kmalloc-524288",       "kmalloc-1048576",
>> +             "kmalloc-2097152",      "kmalloc-4194304",
>> +             "kmalloc-8388608",      "kmalloc-16777216",
>> +             "kmalloc-33554432",     "kmalloc-67108864"
>> +     };
>
> On Wed, Apr 22 2015, Andrew Morton <akpm@linux-foundation.org> wrote:
>
>> You could do something like
>>
>>               kmalloc_caches[i] = create_kmalloc_cache(
>>                                       kmalloc_names[i],
>>                                       kstrtoul(kmalloc_names[i] + 8),
>>                                       flags);
>>
>> here, and remove those weird "96" and "192" cases.
>
> Eww. At least spell 8 as strlen("kmalloc-").
>
>> Or if that's considered too messy, make it
>>
>>       static const struct {
>>               const char *name;
>>               unsigned size;
>>       } kmalloc_cache_info[] = {
>>               { NULL, 0 },
>>               { "kmalloc-96", 96 },
>>               ...
>>       };
>
> I'd vote for this color for the bikeshed :-)
>
> Rasmus

Thanks for the review! I'll come out another version soon.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-04-23 11:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-22  8:33 [PATCH v2] mm/slab_common: Support the slub_debug boot option on specific object size Gavin Guo
2015-04-22 14:27 ` Christoph Lameter
2015-04-22 21:00 ` Andrew Morton
2015-04-22 21:02   ` Andrew Morton
2015-04-23  3:10   ` Gavin Guo
2015-04-23  3:28     ` Andrew Morton
2015-04-23  9:55 ` Rasmus Villemoes
2015-04-23 11:15   ` Gavin Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).