From: Gleb Natapov Date: Thu, 27 Dec 2012 12:44:58 +0000 (+0200) Subject: KVM: MMU: simplify folding of dirty bit into accessed_dirty X-Git-Tag: v3.9-rc1~97^2~62 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=908e7d7999bcce70ac52e7f390a8f5cbc55948de;p=pandora-kernel.git KVM: MMU: simplify folding of dirty bit into accessed_dirty MMU code tries to avoid if()s HW is not able to predict reliably by using bitwise operation to streamline code execution, but in case of a dirty bit folding this gives us nothing since write_fault is checked right before the folding code. Lets just piggyback onto the if() to make code more clear. Signed-off-by: Gleb Natapov Signed-off-by: Marcelo Tosatti --- Reading git-diff-tree failed