diff options
author | gallatin <gallatin@FreeBSD.org> | 2002-07-05 23:33:27 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2002-07-05 23:33:27 +0000 |
commit | a1719914d4bd1c9c28bedd86bd21aa196fa06a9f (patch) | |
tree | d4e21ca8be047a3b224eed52133ab8a87a4e3386 /sys | |
parent | 95e13a442bbbd5c27bc85499b778f90a47530072 (diff) | |
download | FreeBSD-src-a1719914d4bd1c9c28bedd86bd21aa196fa06a9f.zip FreeBSD-src-a1719914d4bd1c9c28bedd86bd21aa196fa06a9f.tar.gz |
Remove bogus vm_page_wakeup() in vm_page_cowfault() that will cause panics
in the zero-copy send path if a process attempts to write to a page
which is still in flight.
reviewed by: ken
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm_page.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index 78e117b..5d8b807 100644 --- a/sys/vm/vm_page.c +++ b/sys/vm/vm_page.c @@ -1791,7 +1791,6 @@ vm_page_cowfault(vm_page_t m) vm_page_dirty(mnew); vm_page_flag_clear(mnew, PG_BUSY); } - vm_page_wakeup(m); /*unbusy the page */ } void |