diff options
author | 2017-09-15 23:58:38 +0200 | |
---|---|---|
committer | 2017-09-16 00:16:17 +0200 | |
commit | 4f739cddb9f37b9780c9b0f4d1222b0be8d7e723 (patch) | |
tree | eb9f568c5c2e4345c852721adc49daa96eb12305 /src/tests/qemu/Makefile | |
parent | data: switch to multiconsumer model with spinlocks (diff) | |
download | wireguard-monolithic-historical-4f739cddb9f37b9780c9b0f4d1222b0be8d7e723.tar.xz wireguard-monolithic-historical-4f739cddb9f37b9780c9b0f4d1222b0be8d7e723.zip |
data: move from spinlocks to lockless data structurejd/lockless-queuing
Reference: https://www.cs.rochester.edu/research/synchronization/pseudocode/queues.html
Original-code-from: @aegis
Diffstat (limited to 'src/tests/qemu/Makefile')
-rw-r--r-- | src/tests/qemu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/qemu/Makefile b/src/tests/qemu/Makefile index 05081cd..2450684 100644 --- a/src/tests/qemu/Makefile +++ b/src/tests/qemu/Makefile @@ -73,7 +73,7 @@ qemu: $(KERNEL_BZIMAGE) $(QEMU_MACHINE) \ -cpu host \ -smp $(NR_CPUS) \ - -m 96M \ + -m 16G \ -object rng-random,id=rng0,filename=/dev/urandom \ -device virtio-rng-pci,rng=rng0 \ -device virtio-serial,max_ports=2 \ |