mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make i386_set_ldt work on i386/XEN, step 3/5.
Synchronize reality with comment: The user_ldt_alloc function is supposed to return with dt_lock held. Due to broken locking in i386/xen/pmap.c, we drop dt_lock during the call to pmap_map_readonly and then pick it up again; this can be removed once the Xen pmap locking is fixed. MFC after: 3 days
This commit is contained in:
parent
90b7d33458
commit
de187b8df2
1 changed files with 3 additions and 0 deletions
|
|
@ -450,6 +450,7 @@ user_ldt_alloc(struct mdproc *mdp, int len)
|
|||
new_ldt->ldt_refcnt = 1;
|
||||
new_ldt->ldt_active = 0;
|
||||
|
||||
mtx_lock_spin(&dt_lock);
|
||||
if ((pldt = mdp->md_ldt)) {
|
||||
if (len > pldt->ldt_len)
|
||||
len = pldt->ldt_len;
|
||||
|
|
@ -458,8 +459,10 @@ user_ldt_alloc(struct mdproc *mdp, int len)
|
|||
} else {
|
||||
bcopy(ldt, new_ldt->ldt_base, PAGE_SIZE);
|
||||
}
|
||||
mtx_unlock_spin(&dt_lock); /* XXX kill once pmap locking fixed. */
|
||||
pmap_map_readonly(kernel_pmap, (vm_offset_t)new_ldt->ldt_base,
|
||||
new_ldt->ldt_len*sizeof(union descriptor));
|
||||
mtx_lock_spin(&dt_lock); /* XXX kill once pmap locking fixed. */
|
||||
return (new_ldt);
|
||||
}
|
||||
#else
|
||||
|
|
|
|||
Loading…
Reference in a new issue