Re: Updating the hurd in Guix

2022-02-12 Thread Damien Zammit
Hi Ricardo, On 11/2/22 11:58 pm, Ricardo Wurmus wrote: > I still haven’t been able to upgrade the Hurd packages in Guix because > it is not clear to me what commits and additional patches we need — and > I don’t have enough time to figure this out by myself. Yes I think we need an upstream for ru

Re: [PATCH] biosmem: Round down to nearest page memory map entries

2022-02-12 Thread Samuel Thibault
Damien Zammit, le sam. 12 févr. 2022 22:01:01 +, a ecrit: > @@ -263,8 +263,8 @@ biosmem_map_build(const struct multiboot_raw_info *mbi) > end = entry + BIOSMEM_MAX_MAP_SIZE; > > while ((mb_entry < mb_end) && (entry < end)) { > -entry->base_addr = mb_entry->base_addr; > +

Re: [PATCH] acpi: Remove erroneous MAP_FIXED

2022-02-12 Thread Samuel Thibault
Damien Zammit, le sam. 12 févr. 2022 21:57:46 +, a ecrit: > Reading the man page for mmap, MAP_FIXED needs to be removed, > because we do not want the mapping to be placed at 0. Applied, thanks! > --- > acpi/acpi.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git

[PATCH] biosmem: Round down to nearest page memory map entries

2022-02-12 Thread Damien Zammit
This fixes incorrect handling of page 0x9f000, for example, when the end offset in the e820 memory map is set to 0x9fc00. --- i386/i386at/biosmem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i386/i386at/biosmem.c b/i386/i386at/biosmem.c index 4f0914ca..44983ead 100644

[PATCH] acpi: Remove erroneous MAP_FIXED

2022-02-12 Thread Damien Zammit
Reading the man page for mmap, MAP_FIXED needs to be removed, because we do not want the mapping to be placed at 0. --- acpi/acpi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/acpi/acpi.c b/acpi/acpi.c index 63066aaf..395bf56f 100644 --- a/acpi/acpi.c +++ b/acpi/acpi