mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
slub: Use the objsize from the kmem_cache_cpu structure
No need to access the kmem_cache structure. We have the same value in kmem_cache_cpu. Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Christoph Lameter <clameter@sgi.com>
This commit is contained in:
parent
d692ef6dcd
commit
27d9e4e948
@ -1681,8 +1681,8 @@ static __always_inline void slab_free(struct kmem_cache *s,
|
|||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
local_irq_save(flags);
|
local_irq_save(flags);
|
||||||
debug_check_no_locks_freed(object, s->objsize);
|
|
||||||
c = get_cpu_slab(s, smp_processor_id());
|
c = get_cpu_slab(s, smp_processor_id());
|
||||||
|
debug_check_no_locks_freed(object, c->objsize);
|
||||||
if (likely(page == c->page && c->node >= 0)) {
|
if (likely(page == c->page && c->node >= 0)) {
|
||||||
object[c->offset] = c->freelist;
|
object[c->offset] = c->freelist;
|
||||||
c->freelist = object;
|
c->freelist = object;
|
||||||
|
Loading…
Reference in New Issue
Block a user