• D
    Fix slab redzone alignment · 87a927c7
    David Woodhouse 提交于
    Commit b46b8f19 fixed a couple of bugs
    by switching the redzone to 64 bits. Unfortunately, it neglected to
    ensure that the _second_ redzone, after the slab object, is aligned
    correctly. This caused illegal instruction faults on sparc32, which for
    some reason not entirely clear to me are not trapped and fixed up.
    
    Two things need to be done to fix this:
      - increase the object size, rounding up to alignof(long long) so
        that the second redzone can be aligned correctly.
      - If SLAB_STORE_USER is set but alignof(long long)==8, allow a
        full 64 bits of space for the user word at the end of the buffer,
        even though we may not _use_ the whole 64 bits.
    
    This patch should be a no-op on any 64-bit architecture or any 32-bit
    architecture where alignof(long long) == 4. Of the others, it's tested
    on ppc32 by myself and a very similar patch was tested on sparc32 by
    Mark Fortescue, who reported the new problem.
    
    Also, fix the conditions for FORCED_DEBUG, which hadn't been adjusted to
    the new sizes. Again noticed by Mark.
    Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
    Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
    87a927c7
slab.c 116.5 KB