From 7009f2e4313b85d3d42bf9dc6f162bbec09dc8b0 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 29 Mar 1996 18:57:34 +0000 Subject: Initialize shared page magic number. --- libdiskfs/io-map-cntl.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'libdiskfs') diff --git a/libdiskfs/io-map-cntl.c b/libdiskfs/io-map-cntl.c index 455da0e6..b45ccffd 100644 --- a/libdiskfs/io-map-cntl.c +++ b/libdiskfs/io-map-cntl.c @@ -1,5 +1,5 @@ -/* - Copyright (C) 1994 Free Software Foundation +/* + Copyright (C) 1994, 1996 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -27,16 +27,17 @@ diskfs_S_io_map_cntl (struct protid *cred, { if (!cred) return EOPNOTSUPP; - + assert (__vm_page_size >= sizeof (struct shared_io)); mutex_lock (&cred->po->np->lock); if (!cred->mapped) { default_pager_object_create (diskfs_default_pager, &cred->shared_object, __vm_page_size); - vm_map (mach_task_self (), (u_int *)&cred->mapped, __vm_page_size, 0, 1, - cred->shared_object, 0, 0, VM_PROT_READ|VM_PROT_WRITE, - VM_PROT_READ|VM_PROT_WRITE, 0); + vm_map (mach_task_self (), (u_int *)&cred->mapped, vm_page_size, 0, 1, + cred->shared_object, 0, 0, + VM_PROT_READ|VM_PROT_WRITE, VM_PROT_READ|VM_PROT_WRITE, 0); + cred->mapped->shared_page_magic = SHARED_PAGE_MAGIC; cred->mapped->conch_status = USER_HAS_NOT_CONCH; spin_lock_init (&cred->mapped->lock); *ctlobj = cred->shared_object; -- cgit v1.2.3