Lock Giant around freebsd32_mmap hack
John Baldwin
jhb at FreeBSD.org
Fri Jul 8 15:08:02 GMT 2005
Can someone test this patch or at least sign off on it? Thanks!
--- //depot/projects/smpng/sys/compat/freebsd32/freebsd32_misc.c 2005/07/07
19:45:15
+++ //depot/user/jhb/proc/compat/freebsd32/freebsd32_misc.c 2005/07/07
21:21:45
@@ -397,6 +396,7 @@
start = addr;
end = addr + len;
+ mtx_lock(&Giant);
if (start != trunc_page(start)) {
error = freebsd32_mmap_partial(td, start,
round_page(start), prot,
@@ -427,11 +427,14 @@
prot |= VM_PROT_WRITE;
map = &td->td_proc->p_vmspace->vm_map;
rv = vm_map_remove(map, start, end);
- if (rv != KERN_SUCCESS)
+ if (rv != KERN_SUCCESS) {
+ mtx_unlock(&Giant);
return (EINVAL);
+ }
rv = vm_map_find(map, 0, 0,
&start, end - start, FALSE,
prot, VM_PROT_ALL, 0);
+ mtx_unlock(&Giant);
if (rv != KERN_SUCCESS)
return (EINVAL);
r.fd = fd;
@@ -445,6 +448,7 @@
td->td_retval[0] = addr;
return (0);
}
+ mtx_unlock(&Giant);
if (end == start) {
/*
* After dealing with the ragged ends, there
--
John Baldwin <jhb at FreeBSD.org> <>< http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve" = http://www.FreeBSD.org
More information about the freebsd-ia64
mailing list