|
@@ -367,21 +367,28 @@ static void pSeries_lpar_hptab_clear(void)
|
|
|
{
|
|
|
unsigned long size_bytes = 1UL << ppc64_pft_size;
|
|
|
unsigned long hpte_count = size_bytes >> 4;
|
|
|
- unsigned long dummy1, dummy2, dword0;
|
|
|
+ struct {
|
|
|
+ unsigned long pteh;
|
|
|
+ unsigned long ptel;
|
|
|
+ } ptes[4];
|
|
|
long lpar_rc;
|
|
|
- int i;
|
|
|
+ int i, j;
|
|
|
|
|
|
- /* TODO: Use bulk call */
|
|
|
- for (i = 0; i < hpte_count; i++) {
|
|
|
- /* dont remove HPTEs with VRMA mappings */
|
|
|
- lpar_rc = plpar_pte_remove_raw(H_ANDCOND, i, HPTE_V_1TB_SEG,
|
|
|
- &dummy1, &dummy2);
|
|
|
- if (lpar_rc == H_NOT_FOUND) {
|
|
|
- lpar_rc = plpar_pte_read_raw(0, i, &dword0, &dummy1);
|
|
|
- if (!lpar_rc && ((dword0 & HPTE_V_VRMA_MASK)
|
|
|
- != HPTE_V_VRMA_MASK))
|
|
|
- /* Can be hpte for 1TB Seg. So remove it */
|
|
|
- plpar_pte_remove_raw(0, i, 0, &dummy1, &dummy2);
|
|
|
+ /* Read in batches of 4,
|
|
|
+ * invalidate only valid entries not in the VRMA
|
|
|
+ * hpte_count will be a multiple of 4
|
|
|
+ */
|
|
|
+ for (i = 0; i < hpte_count; i += 4) {
|
|
|
+ lpar_rc = plpar_pte_read_4_raw(0, i, (void *)ptes);
|
|
|
+ if (lpar_rc != H_SUCCESS)
|
|
|
+ continue;
|
|
|
+ for (j = 0; j < 4; j++){
|
|
|
+ if ((ptes[j].pteh & HPTE_V_VRMA_MASK) ==
|
|
|
+ HPTE_V_VRMA_MASK)
|
|
|
+ continue;
|
|
|
+ if (ptes[j].pteh & HPTE_V_VALID)
|
|
|
+ plpar_pte_remove_raw(0, i + j, 0,
|
|
|
+ &(ptes[j].pteh), &(ptes[j].ptel));
|
|
|
}
|
|
|
}
|
|
|
}
|