Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | KVM: PPC: E500: Make clear_tlb_refs and clear_tlb1_bitmap static | Alexander Graf | 2013-01-24 | 1 | -2/+0 |
| | | | | | | | | | | | | Host shadow TLB flushing is logic that the guest TLB code should have no insight about. Declare the internal clear_tlb_refs and clear_tlb1_bitmap functions static to the host TLB handling file. Instead of these, we can use the already exported kvmppc_core_flush_tlb(). This gives us a common API across the board to say "please flush any pending host shadow translation". Signed-off-by: Alexander Graf <agraf@suse.de> | ||||
* | KVM: PPC: E500: Split host and guest MMU parts | Alexander Graf | 2013-01-24 | 1 | -0/+20 |
This patch splits the file e500_tlb.c into e500_mmu.c (guest TLB handling) and e500_mmu_host.c (host TLB handling). The main benefit of this split is readability and maintainability. It's just a lot harder to write dirty code :). Signed-off-by: Alexander Graf <agraf@suse.de> |