Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mm/pgtable-generic.c: simplify the VM_BUG_ON condition in pmdp_huge_c…
…lear_flush() The condition (A && !C && !D) || !A is equivalent to !A || (A && !C && !D) and can be further simplified to !A || (!C && !D). Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Miaohe Lin <[email protected]> Reviewed-by: Andrew Morton <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information