Re: [PATCH 6/6] x86: Fix stray A/D bit setting into non-present PTEs

From: Linus Torvalds
Date: Fri Jul 01 2016 - 12:25:10 EST


On Fri, Jul 1, 2016 at 9:14 AM, Dave Hansen <dave@xxxxxxxx> wrote:
>
> As I understand it, the erratum only affects a thread which is about to
> page fault. The write associated with the dirty bit being set never
> actually gets executed. So, the bit really *is* stray and isn't
> something we need to preserve.

Ok, good.

> Otherwise, we'd be really screwed because we couldn't ever simply clear it.

Oh, we could do the whole "clear the pte, then flush the tlb, then go
back and clear the stale dirty bits and move them into the backing
page".

I was afraid we might have to do something like that.

Linus