Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F140480994
D21515.id61635.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D21515.id61635.diff
View Options
Index: sys/powerpc/aim/moea64_native.c
===================================================================
--- sys/powerpc/aim/moea64_native.c
+++ sys/powerpc/aim/moea64_native.c
@@ -357,6 +357,48 @@
return (ptelo & (LPTE_CHG | LPTE_REF));
}
+static int64_t
+moea64_pte_replace_inval_native(mmu_t mmu, struct pvo_entry *pvo)
+{
+ volatile struct lpte *pt = moea64_pteg_table + pvo->pvo_pte.slot;
+ struct lpte properpt;
+ uint64_t ptelo;
+
+ moea64_pte_from_pvo(pvo, &properpt);
+
+ rw_rlock(&moea64_eviction_lock);
+ if ((be64toh(pt->pte_hi & LPTE_AVPN_MASK)) !=
+ (properpt.pte_hi & LPTE_AVPN_MASK)) {
+ /* Evicted */
+ STAT_MOEA64(moea64_pte_overflow--);
+ rw_runlock(&moea64_eviction_lock);
+ return (-1);
+ }
+
+ /*
+ * Invalidate the pte, briefly locking it to collect RC bits. No
+ * atomics needed since this is protected against eviction by the lock.
+ */
+ isync();
+ critical_enter();
+ pt->pte_hi = be64toh((pt->pte_hi & ~LPTE_VALID) | LPTE_LOCKED);
+ PTESYNC();
+ TLBIE(pvo->pvo_vpn);
+ ptelo = be64toh(pt->pte_lo);
+ EIEIO();
+ pt->pte_lo = htobe64(properpt.pte_lo);
+ EIEIO();
+ pt->pte_hi = htobe64(properpt.pte_hi); /* Release lock */
+ PTESYNC();
+ critical_exit();
+ rw_runlock(&moea64_eviction_lock);
+
+ /* Keep statistics */
+ STAT_MOEA64(moea64_pte_valid--);
+
+ return (ptelo & (LPTE_CHG | LPTE_REF));
+}
+
static int64_t
moea64_pte_replace_native(mmu_t mmu, struct pvo_entry *pvo, int flags)
{
@@ -379,8 +421,7 @@
rw_runlock(&moea64_eviction_lock);
} else {
/* Otherwise, need reinsertion and deletion */
- ptelo = moea64_pte_unset_native(mmu, pvo);
- moea64_pte_insert_native(mmu, pvo);
+ ptelo = moea64_pte_replace_inval_native(mmu, pvo);
}
return (ptelo);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 25, 11:07 AM (3 h, 49 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27246479
Default Alt Text
D21515.id61635.diff (1 KB)
Attached To
Mode
D21515: powerpc64/pmap: Simplify the code path for moea64_pte_replace_native()
Attached
Detach File
Event Timeline
Log In to Comment