Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
highmem: Fix race in debug_kmap_atomic() which could cause warn_count…
… to underflow debug_kmap_atomic() tries to prevent ever printing more than 10 warnings, but it does so by testing whether an unsigned integer is equal to 0. However, if the warning is caused by a nested IRQ, then this counter may underflow and the stream of warnings will never end. Fix that by using a signed integer instead. Signed-off-by: Soeren Sandmann Pedersen <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: [email protected] Cc: <[email protected]> # .31.x LKML-Reference: <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
- Loading branch information