diff options
Diffstat (limited to 'arch/x86/mm')
| -rw-r--r-- | arch/x86/mm/kmmio.c | 15 | ||||
| -rw-r--r-- | arch/x86/mm/pageattr.c | 11 |
2 files changed, 19 insertions, 7 deletions
diff --git a/arch/x86/mm/kmmio.c b/arch/x86/mm/kmmio.c index 9f205030d9aa..6a518dd08a36 100644 --- a/arch/x86/mm/kmmio.c +++ b/arch/x86/mm/kmmio.c | |||
| @@ -451,23 +451,24 @@ static void rcu_free_kmmio_fault_pages(struct rcu_head *head) | |||
| 451 | 451 | ||
| 452 | static void remove_kmmio_fault_pages(struct rcu_head *head) | 452 | static void remove_kmmio_fault_pages(struct rcu_head *head) |
| 453 | { | 453 | { |
| 454 | struct kmmio_delayed_release *dr = container_of( | 454 | struct kmmio_delayed_release *dr = |
| 455 | head, | 455 | container_of(head, struct kmmio_delayed_release, rcu); |
| 456 | struct kmmio_delayed_release, | ||
| 457 | rcu); | ||
| 458 | struct kmmio_fault_page *p = dr->release_list; | 456 | struct kmmio_fault_page *p = dr->release_list; |
| 459 | struct kmmio_fault_page **prevp = &dr->release_list; | 457 | struct kmmio_fault_page **prevp = &dr->release_list; |
| 460 | unsigned long flags; | 458 | unsigned long flags; |
| 459 | |||
| 461 | spin_lock_irqsave(&kmmio_lock, flags); | 460 | spin_lock_irqsave(&kmmio_lock, flags); |
| 462 | while (p) { | 461 | while (p) { |
| 463 | if (!p->count) | 462 | if (!p->count) { |
| 464 | list_del_rcu(&p->list); | 463 | list_del_rcu(&p->list); |
| 465 | else | 464 | prevp = &p->release_next; |
| 465 | } else { | ||
| 466 | *prevp = p->release_next; | 466 | *prevp = p->release_next; |
| 467 | prevp = &p->release_next; | 467 | } |
| 468 | p = p->release_next; | 468 | p = p->release_next; |
| 469 | } | 469 | } |
| 470 | spin_unlock_irqrestore(&kmmio_lock, flags); | 470 | spin_unlock_irqrestore(&kmmio_lock, flags); |
| 471 | |||
| 471 | /* This is the real RCU destroy call. */ | 472 | /* This is the real RCU destroy call. */ |
| 472 | call_rcu(&dr->rcu, rcu_free_kmmio_fault_pages); | 473 | call_rcu(&dr->rcu, rcu_free_kmmio_fault_pages); |
| 473 | } | 474 | } |
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 7be47d1a97e4..7233bd7e357b 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
| @@ -515,6 +515,17 @@ static int split_large_page(pte_t *kpte, unsigned long address) | |||
| 515 | * primary protection behavior: | 515 | * primary protection behavior: |
| 516 | */ | 516 | */ |
| 517 | __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE))); | 517 | __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE))); |
| 518 | |||
| 519 | /* | ||
| 520 | * Intel Atom errata AAH41 workaround. | ||
| 521 | * | ||
| 522 | * The real fix should be in hw or in a microcode update, but | ||
| 523 | * we also probabilistically try to reduce the window of having | ||
| 524 | * a large TLB mixed with 4K TLBs while instruction fetches are | ||
| 525 | * going on. | ||
| 526 | */ | ||
| 527 | __flush_tlb_all(); | ||
| 528 | |||
| 518 | base = NULL; | 529 | base = NULL; |
| 519 | 530 | ||
| 520 | out_unlock: | 531 | out_unlock: |
