Fix for vmspace sharing as per Alan Cox. Thanks!

This commit is contained in:
msmith 1999-07-29 06:48:26 +00:00
parent 6136b590e0
commit 2b81d6a6ed
2 changed files with 2 additions and 10 deletions

View File

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bios.c,v 1.12 1999/03/16 21:11:28 msmith Exp $
* $Id: bios.c,v 1.13 1999/07/29 01:49:17 msmith Exp $
*/
/*
@ -385,11 +385,7 @@ bios16(struct bios_args *args, char *fmt, ...)
args->seg.code32.limit = 0xffff;
ptd = (u_int *)rcr3();
#ifdef SMP
if (ptd == my_idlePTD)
#else
if (ptd == IdlePTD)
#endif
{
/*
* no page table, so create one and install it.

View File

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bios.c,v 1.12 1999/03/16 21:11:28 msmith Exp $
* $Id: bios.c,v 1.13 1999/07/29 01:49:17 msmith Exp $
*/
/*
@ -385,11 +385,7 @@ bios16(struct bios_args *args, char *fmt, ...)
args->seg.code32.limit = 0xffff;
ptd = (u_int *)rcr3();
#ifdef SMP
if (ptd == my_idlePTD)
#else
if (ptd == IdlePTD)
#endif
{
/*
* no page table, so create one and install it.