aboutsummaryrefslogtreecommitdiff
path: root/ufs/pager.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-07-11 05:32:44 +0000
committerThomas Bushnell <thomas@gnu.org>1999-07-11 05:32:44 +0000
commit19b72e1976be3b741e393c0dce1da57f4bd912ee (patch)
tree73493f247aa698af9b6fe5f0a7396a79128415ae /ufs/pager.c
parente2d7e4852ab842d893675e56e6f48871b73371dc (diff)
downloadhurd-19b72e1976be3b741e393c0dce1da57f4bd912ee.tar.gz
hurd-19b72e1976be3b741e393c0dce1da57f4bd912ee.tar.bz2
hurd-19b72e1976be3b741e393c0dce1da57f4bd912ee.zip
1999-07-09 Thomas Bushnell, BSG <tb@mit.edu>
* dir.c (diskfs_get_directs): Use mmap instead of vm_allocate. * hyper.c (get_hypermetadata): Likewise. * pager.c (pager_read_page): Likewise.
Diffstat (limited to 'ufs/pager.c')
-rw-r--r--ufs/pager.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ufs/pager.c b/ufs/pager.c
index 61695db6..e703bfd2 100644
--- a/ufs/pager.c
+++ b/ufs/pager.c
@@ -1,5 +1,5 @@
/* Pager for ufs
- Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation
+ Copyright (C) 1994, 1995, 1996, 1997, 1999 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -180,7 +180,8 @@ pager_read_page (struct user_pager_info *pager,
printf ("Write-locked pagein Object %#x\tOffset %#x\n", pager, page);
fflush (stdout);
#endif
- vm_allocate (mach_task_self (), buf, __vm_page_size, 1);
+ *buf = (vm_address_t) mmap (0, vm_page_size, PROT_READ|PROT_WRITE,
+ MAP_ANON, 0, 0);
*writelock = 1;
}