Hi folks,
On Sun, Oct 11, 2020 at 04:10:00PM +0200, Reinoud Zandijk wrote:
> qemu-system-x86_64 -m 4096 -accel nvmm -smp cpus=2 -drive \
> file=work/wd0.img,format=raw -nographic -gdb tcp::1234 -net nic -net \
> tap,ifname=tap0,script=no
>
> Now is this an qemu related problem? I am a bit hes
Fix the code reconstructing s87_tw (full tag word) from fx_sw (abridged
tag word) to correctly represent all register states. The previous code
only distinguished between empty/non-empty registers, and assigned
'regular value' to all non-empty registers. The new code explicitly
distinguishes the
---
distrib/sets/lists/tests/mi | 5 +
etc/mtree/NetBSD.dist.tests | 2 +
tests/sys/Makefile| 3 +
tests/sys/x86/Makefile| 11 ++
tests/sys/x86/t_convert_xmm_s87.c | 211 ++
5 files changed, 232 insertions(+)
create mode 1
I am going to add ATF tests for these two functions, and having them
in a separate file will make it more convenient to build and run them
in userspace.
---
sys/arch/amd64/conf/files.amd64| 1 +
sys/arch/i386/conf/files.i386 | 1 +
sys/arch/x86/include/fpu.h | 3 +
sys/arch/
---
sys/arch/x86/x86/convert_xmm_s87.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys/arch/x86/x86/convert_xmm_s87.c
b/sys/arch/x86/x86/convert_xmm_s87.c
index 0734fab3943c..3a2932958ace 100644
--- a/sys/arch/x86/x86/convert_xmm_s87.c
+++ b/sys/arch/x86/x86/convert_xmm_s87.c
@@ -34,7 +34,
Hi,
Here's the same as previously but with tests. I have noticed that
the two relevant functions were in a separate file before, and I have
decided to revert the patch in order to separate them again (for tests).
The tests use similar approach as sys/netatalk tests, i.e. #include
the .c file con
In article ,
Kamil Rytarowski wrote:
>This removal is a part of a larger synchronization with other BSDs as
>we lack various features in sys/queue.h (like LIST_PREV()).
>
>CIRCLEQ was already deleted from the documentation and disabled in the
>kernel in NetBSD-7. If there are still any unaware us
This removal is a part of a larger synchronization with other BSDs as
we lack various features in sys/queue.h (like LIST_PREV()).
CIRCLEQ was already deleted from the documentation and disabled in the
kernel in NetBSD-7. If there are still any unaware users, they are
certainly long broken.
What's
>>> Remove the CIRCLEQ API completely from the system headers and
>>> document this fact in the QUEUE(3) man-page.
>> why? queue.h may be used by more than src.
>> i don't see any benefit except forcing working code to be changed,
>> possibly introducing bugs.
>> please leave it alone.
> It's
Everything relatively modern that uses sys/queue.h directly was
already switched a long time ago to TAILQ.
Christos Zoulas changed most users of CIRCLEQ in the src tree 6 years
ago. The last leftover is handled in this patchset.
I was able to find some 3rd projects using CIRCLEQ, but probably all
10 matches
Mail list logo