[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC PATCH 6/9] mach: Use PAGE_SIZE
From: |
Samuel Thibault |
Subject: |
Re: [RFC PATCH 6/9] mach: Use PAGE_SIZE |
Date: |
Mon, 20 Feb 2023 00:47:00 +0100 |
User-agent: |
NeoMutt/20170609 (1.8.3) |
Applied, thanks!
Sergey Bugaev, le sam. 18 févr. 2023 23:37:14 +0300, a ecrit:
> The PAGE_SIZE from the Mach headers statically defines the machine's
> page size. There's no need to query it dynamically; furthermore, the
> implementation of the vm_statistics () RPC unconditionally fills in
>
> pagesize = PAGE_SIZE;
>
> Not doing the extra RPC shaves off 2 RPCs from the start-up of every
> process!
>
> Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
> ---
> mach/mach_init.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/mach/mach_init.c b/mach/mach_init.c
> index a0d9f7f5..42b9cacf 100644
> --- a/mach/mach_init.c
> +++ b/mach/mach_init.c
> @@ -17,6 +17,7 @@
>
> #include <mach.h>
> #include <mach/mig_support.h>
> +#include <mach/vm_param.h>
> #include <unistd.h>
>
> mach_port_t __mach_task_self_;
> @@ -38,7 +39,10 @@ __mach_init (void)
> __mach_host_self_ = (__mach_host_self) ();
> __mig_init (0);
>
> -#ifdef HAVE_HOST_PAGE_SIZE
> +#ifdef PAGE_SIZE
> + __vm_page_size = PAGE_SIZE;
> + (void) err;
> +#elif defined (HAVE_HOST_PAGE_SIZE)
> if (err = __host_page_size (__mach_host_self (), &__vm_page_size))
> _exit (err);
> #else
> --
> 2.39.2
>
>
--
Samuel
---
Pour une évaluation indépendante, transparente et rigoureuse !
Je soutiens la Commission d'Évaluation de l'Inria.
- Re: [RFC PATCH 1/9] hurd: Move thread state manipulation into _hurd_tls_new (), (continued)
- [RFC PATCH 2/9] hurd: Use proper integer types, Sergey Bugaev, 2023/02/18
- [RFC PATCH 3/9] hurd: Fix xattr function return type, Sergey Bugaev, 2023/02/18
- [RFC PATCH 5/9] hurd: Simplify init-first.c a bit, Sergey Bugaev, 2023/02/18
- [RFC PATCH 4/9] hurd: Make timer_t pointer-sized, Sergey Bugaev, 2023/02/18
- [RFC PATCH 6/9] mach: Use PAGE_SIZE, Sergey Bugaev, 2023/02/18
- Re: [RFC PATCH 6/9] mach: Use PAGE_SIZE,
Samuel Thibault <=
- [RFC PATCH 7/9] hurd: Generalize init-first.c to support x86_64, Sergey Bugaev, 2023/02/18
- Re: [RFC PATCH 7/9] hurd: Generalize init-first.c to support x86_64, Noah Goldstein, 2023/02/20
[RFC PATCH 8/9 gnumach] Add i386_fsgs_base_state, Sergey Bugaev, 2023/02/18