diff options
-rw-r--r-- | hurd/ChangeLog | 5 | ||||
-rw-r--r-- | hurd/addr-trans.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/hurd/ChangeLog b/hurd/ChangeLog index a6341ac..46da0d7 100644 --- a/hurd/ChangeLog +++ b/hurd/ChangeLog @@ -1,3 +1,8 @@ +2008-02-05 Neal H. Walfield <neal@gnu.org> + + * addr-trans.h (CAP_ADDR_TRANS_GUARD_SUBPAGE_BITS): Change to 22. + (CAP_ADDR_TRANS_GDEPTH_BITS): Change to 6. + 2008-01-24 Neal H. Walfield <neal@gnu.org> * cap.h (cap_copy): Rename ADDRESS_SPACE argument to diff --git a/hurd/addr-trans.h b/hurd/addr-trans.h index 8cbc86b..9313684 100644 --- a/hurd/addr-trans.h +++ b/hurd/addr-trans.h @@ -1,5 +1,5 @@ /* addr-trans.h - Address translation functions. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2008 Free Software Foundation, Inc. Written by Neal H. Walfield <neal@gnu.org>. This file is part of the GNU Hurd. @@ -29,9 +29,9 @@ how the page table walker translates bits when passing through this capability. */ -#define CAP_ADDR_TRANS_GUARD_SUBPAGE_BITS 21 +#define CAP_ADDR_TRANS_GUARD_SUBPAGE_BITS 22 #define CAP_ADDR_TRANS_SUBPAGES_BITS 4 -#define CAP_ADDR_TRANS_GDEPTH_BITS 7 +#define CAP_ADDR_TRANS_GDEPTH_BITS 6 struct cap_addr_trans { |