Re: [PATCH v2 gnumach 1/3] add xfloat thread state interface

2024-08-24 Thread Samuel Thibault
Luca Dariz, le sam. 24 août 2024 21:09:35 +0200, a ecrit: > Il 22/08/24 23:44, Samuel Thibault ha scritto: > > Luca Dariz, le mer. 21 août 2024 18:36:14 +0200, a ecrit: > > > diff --git a/i386/include/mach/i386/mach_i386.defs > > > b/i386/include/mach/i386/mach_i386.defs > > > index 965d5c3b..61fe

Re: [PATCH gnumach 2/3] add tests for FLOAT/XFLOAT state

2024-08-24 Thread Luca Dariz
Il 23/08/24 11:50, Sergey Bugaev ha scritto: On Wed, Aug 21, 2024 at 7:37 PM Luca Dariz wrote: +#include + +static void printx(struct i386_xfloat_state *state, int size) +{ + printf("xfloat init %d fp %d exc %d\n", + state->initialized, state->fpkind, state->exc_status); + struct i38

Re: [PATCH v2 gnumach 1/3] add xfloat thread state interface

2024-08-24 Thread Luca Dariz
Il 22/08/24 23:26, Samuel Thibault ha scritto: Hello, Thanks for the improved version! Luca Dariz, le mer. 21 août 2024 18:36:14 +0200, a ecrit: @@ -495,10 +534,11 @@ ASSERT_IPL(SPL0); * concurrent fpu_set_state or fpu_get_state. */ kern_return_t -fpu_get_state(const thread_t thread, -

Re: [PATCH v2 gnumach 1/3] add xfloat thread state interface

2024-08-24 Thread Luca Dariz
Il 22/08/24 23:51, Samuel Thibault ha scritto: Luca Dariz, le mer. 21 août 2024 18:36:14 +0200, a ecrit: + } else if (flavor == i386_XFLOAT_STATE) { + int i; + struct i386_xfp_save *user_fp_state = (struct i386_xfp_save *) &xfstate->hw_state[0]; We should

Re: [PATCH v2 gnumach 1/3] add xfloat thread state interface

2024-08-24 Thread Luca Dariz
Il 22/08/24 23:44, Samuel Thibault ha scritto: Luca Dariz, le mer. 21 août 2024 18:36:14 +0200, a ecrit: diff --git a/i386/include/mach/i386/mach_i386.defs b/i386/include/mach/i386/mach_i386.defs index 965d5c3b..61fed222 100644 --- a/i386/include/mach/i386/mach_i386.defs +++ b/i386/include/mach

Re: xattr records not actually working? (Was: creating Hurd chroots on Linux using DPKG_ROOT chrootless mode)

2024-08-24 Thread Samuel Thibault
Samuel Thibault, le sam. 24 août 2024 19:25:54 +0200, a ecrit: > Johannes Schauer Marin Rodrigues, le sam. 24 août 2024 18:29:52 +0200, a > ecrit: > > Quoting Samuel Thibault (2024-07-19 01:35:45) > > > Putting a more eye-catching title :) > > > > Thank you, Samuel! > > > > I am still unable to

Re: xattr records not actually working? (Was: creating Hurd chroots on Linux using DPKG_ROOT chrootless mode)

2024-08-24 Thread Samuel Thibault
Johannes Schauer Marin Rodrigues, le sam. 24 août 2024 18:29:52 +0200, a ecrit: > Quoting Samuel Thibault (2024-07-19 01:35:45) > > Putting a more eye-catching title :) > > Thank you, Samuel! > > I am still unable to see extended attributes in the translators when checking > this call on Linux: >

Re: xattr records not actually working? (Was: creating Hurd chroots on Linux using DPKG_ROOT chrootless mode)

2024-08-24 Thread Johannes Schauer Marin Rodrigues
Quoting Samuel Thibault (2024-07-19 01:35:45) > Putting a more eye-catching title :) Thank you, Samuel! I am still unable to see extended attributes in the translators when checking this call on Linux: sudo getfattr --dump --match=- /mnt/hurd/* Do others observe the same? Or did I maybe do som