@@ -281,15 +281,14 @@ static void sgx_write_pages(struct sgx_encl *encl, struct list_head *src)
return;
}
- /* EBLOCK */
+ mutex_lock(&encl->lock);
+ /* EBLOCK */
list_for_each_entry_safe(entry, tmp, src, load_list) {
- mutex_lock(&encl->lock);
evma = sgx_find_vma(encl, entry->addr);
if (!evma) {
list_del(&entry->load_list);
sgx_free_encl_page(entry, encl, 0);
- mutex_unlock(&encl->lock);
continue;
}
@@ -298,25 +297,18 @@ static void sgx_write_pages(struct sgx_encl *encl, struct list_head *src)
list_del(&entry->load_list);
list_add_tail(&entry->load_list, &encl->load_list);
entry->flags &= ~SGX_ENCL_PAGE_RESERVED;
- mutex_unlock(&encl->lock);
continue;
}
zap_vma_ptes(evma, entry->addr, PAGE_SIZE);
sgx_eblock(entry->epc_page);
cnt++;
- mutex_unlock(&encl->lock);
}
/* ETRACK */
-
- mutex_lock(&encl->lock);
sgx_etrack(encl->secs_page.epc_page);
- mutex_unlock(&encl->lock);
/* EWB */
-
- mutex_lock(&encl->lock);
i = 0;
while (!list_empty(src)) {