|
@@ -101,10 +101,10 @@ MMUAccessType adjust_signal_pc(uintptr_t *pc, bool is_write)
|
|
|
* Return true if the write fault has been handled, and should be re-tried.
|
|
|
*
|
|
|
* Note that it is important that we don't call page_unprotect() unless
|
|
|
- * this is really a "write to nonwriteable page" fault, because
|
|
|
+ * this is really a "write to nonwritable page" fault, because
|
|
|
* page_unprotect() assumes that if it is called for an access to
|
|
|
- * a page that's writeable this means we had two threads racing and
|
|
|
- * another thread got there first and already made the page writeable;
|
|
|
+ * a page that's writable this means we had two threads racing and
|
|
|
+ * another thread got there first and already made the page writable;
|
|
|
* so we will retry the access. If we were to call page_unprotect()
|
|
|
* for some other kind of fault that should really be passed to the
|
|
|
* guest, we'd end up in an infinite loop of retrying the faulting access.
|