On Tue, 10 Nov 2015, Jesper Dangaard Brouer wrote: > @@ -2563,7 +2563,7 @@ redo: > if (unlikely(gfpflags & __GFP_ZERO) && object) > memset(object, 0, s->object_size); > > - slab_post_alloc_hook(s, gfpflags, 1, object); > + slab_post_alloc_hook(s, gfpflags, 1, &object); > > return object; > } > > But then the kernel cannot correctly boot?!?! (It dies in > x86_perf_event_update+0x15.) What did I miss??? Dont make the above change. object is a pointer to the object. It does not matter if that is ** or *. Dont take the address. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>