diff options
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2027,7 +2027,7 @@ static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s, | |||
2027 | static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu) | 2027 | static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu) |
2028 | { | 2028 | { |
2029 | if (c < per_cpu(kmem_cache_cpu, cpu) || | 2029 | if (c < per_cpu(kmem_cache_cpu, cpu) || |
2030 | c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) { | 2030 | c >= per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) { |
2031 | kfree(c); | 2031 | kfree(c); |
2032 | return; | 2032 | return; |
2033 | } | 2033 | } |