Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc32: don't adjust unmoved stack pointer in csum_partial_copy_ge…
…neric() epilogue A recent change to the checksum code removed usage of some extra arguments, alongside with storage on the stack for those, and the stack pointer no longer needed to be adjusted in the function prologue. But a left over subtraction wasn't removed in the function epilogue, causing the function to return with the stack pointer moved 16 bytes away from where it should have. This corrupted local state and lead to weird crashes. This simply removes the leftover instruction from the epilogue. Fixes: 70d65cd ("ppc: propagate the calling conventions change down to csum_partial_copy_generic()") Cc: Al Viro <[email protected]> Signed-off-by: Jason A. Donenfeld <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information