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
This commit is contained in:
Andrew Gallatin 2002-07-05 23:33:27 +00:00
parent 5e43aef891
commit f784043a9f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99476

View File

@ -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