Re: [PATCH] Use __builtin_ffs instead of libc provided ffs in vm_map.c

2022-12-15 Thread Samuel Thibault
Applied, thanks! Flavio Cruz, le mer. 14 déc. 2022 02:35:47 -0500, a ecrit: > We already this built in in other places and this will move us closer to > being able to build the kernel without libc. > --- > Makefile.am | 4 ++-- > vm/vm_map.c | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletio

[PATCH] Use __builtin_ffs instead of libc provided ffs in vm_map.c

2022-12-13 Thread Flavio Cruz
We already this built in in other places and this will move us closer to being able to build the kernel without libc. --- Makefile.am | 4 ++-- vm/vm_map.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 684344e2..33f770f6 100644 --- a/Makef