On Fri, Oct 26, 2012 at 11:57 AM, Rik van Riel <riel@xxxxxxxxxx> wrote: > > It looks like do_wp_page also sets the write bit in the pte > "entry" before passing it to ptep_set_access_flags, making > that the place where the write bit is set in the pte. > > Is this a bug in do_wp_page? Hmm. Right you are. That's indeed worth noting that it can indeed change access permissions in that particular way (ie enabling writes). So yeah, good catch. And it's ok to add the writeable bits like this (and it can't race with hardware like the dirty bit can, since hardware never sets writability). In fact, it should probably be documented in the source code somewhere. In particular, there's a very subtle requirement that you can only set the writable bit if the dirty bit is also set at the same time, for example. Linus -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>