bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/4] x86_64: fix argument passing to bootstrap modules if ! U


From: Samuel Thibault
Subject: Re: [PATCH 3/4] x86_64: fix argument passing to bootstrap modules if ! USER32
Date: Thu, 16 Feb 2023 23:27:55 +0100
User-agent: NeoMutt/20170609 (1.8.3)

Applied, thanks!

Luca Dariz, le jeu. 16 févr. 2023 22:33:17 +0100, a ecrit:
> * kern/bootstrap.c: replace integers with long/vm_offset_t
> ---
>  kern/bootstrap.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/kern/bootstrap.c b/kern/bootstrap.c
> index 91f4241e..8f66a4b5 100644
> --- a/kern/bootstrap.c
> +++ b/kern/bootstrap.c
> @@ -579,7 +579,7 @@ build_args_and_stack(struct exec_info *boot_exec_info,
>       vm_offset_t     stack_base;
>       vm_size_t       stack_size;
>       char *          arg_ptr;
> -     int             arg_count, envc;
> +     long            arg_count, envc;
>       int             arg_len;
>       char *          arg_pos;
>       int             arg_item_len;
> @@ -612,7 +612,7 @@ build_args_and_stack(struct exec_info *boot_exec_info,
>        *      trailing 0 pointer
>        *      and align to integer boundary
>        */
> -     arg_len += (sizeof(integer_t)
> +     arg_len += (sizeof(rpc_vm_offset_t)
>                   + (arg_count + 1 + envc + 1) * sizeof(rpc_vm_offset_t));
>       arg_len = (arg_len + sizeof(integer_t) - 1) & ~(sizeof(integer_t)-1);
>  
> @@ -633,7 +633,7 @@ build_args_and_stack(struct exec_info *boot_exec_info,
>        * Start the strings after the arg-count and pointers
>        */
>       string_pos = (arg_pos
> -                   + sizeof(integer_t)
> +                   + sizeof(rpc_vm_offset_t)
>                     + (arg_count + 1 + envc + 1) * sizeof(rpc_vm_offset_t));
>  
>       /*
> @@ -641,8 +641,8 @@ build_args_and_stack(struct exec_info *boot_exec_info,
>        */
>       (void) copyout(&arg_count,
>                       arg_pos,
> -                     sizeof(integer_t));
> -     arg_pos += sizeof(integer_t);
> +                     sizeof(rpc_vm_offset_t));
> +     arg_pos += sizeof(rpc_vm_offset_t);
>  
>       /*
>        * Then the strings and string pointers for each argument
> -- 
> 2.30.2
> 
> 

-- 
Samuel
---
Pour une évaluation indépendante, transparente et rigoureuse !
Je soutiens la Commission d'Évaluation de l'Inria.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]