]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
m68k: nommu: fix memmove() with differently aligned src and dest for 68000
authorDaniel Palmer <daniel@thingy.jp>
Sat, 13 Dec 2025 12:04:01 +0000 (21:04 +0900)
committerGreg Ungerer <gerg@kernel.org>
Tue, 27 Jan 2026 02:38:52 +0000 (12:38 +1000)
commit590fe2f46c8698bb758f9002cb247ca10ce95569
tree0a7fee91e15597d94d3e2d269daf62b4282571b8
parentc16dd9eb0b58c0cabf955592a072c2022804c7e8
m68k: nommu: fix memmove() with differently aligned src and dest for 68000

68000 has different alignment needs to 68020+.
memcpy() checks if the destination is aligned and does a smaller copy
to fix the alignment and then critically for 68000 it checks if the
source is still unaligned and if it is reverts to smaller copies.

memmove() does not currently do the second part and malfunctions if
one of the pointers is aligned and the other isn't.

This is apparently getting triggered by printk. If I put breakpoints
into the new checks added by this commit the first hit looks like this:

memmove (n=205, src=0x2f3971 <printk_shared_pbufs+205>, dest=0x2f3980 <printk_shared_pbufs+220>) at arch/m68k/lib/memmove.c:82

Signed-off-by: Daniel Palmer <daniel@thingy.jp>
Signed-off-by: Greg Ungerer <gerg@kernel.org>
arch/m68k/lib/memmove.c