mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 03:49:57 -04:00
Loop in assembly checking the registers with many threads. Signed-off-by: Cyril Bur <cyrilbur@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
18 lines
316 B
Makefile
18 lines
316 B
Makefile
TEST_PROGS := fpu_syscall fpu_preempt vmx_syscall vmx_preempt
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
$(TEST_PROGS): ../harness.c
|
|
$(TEST_PROGS): CFLAGS += -O2 -g -pthread -m64 -maltivec
|
|
|
|
fpu_syscall: fpu_asm.S
|
|
fpu_preempt: fpu_asm.S
|
|
|
|
vmx_syscall: vmx_asm.S
|
|
vmx_preempt: vmx_asm.S
|
|
|
|
include ../../lib.mk
|
|
|
|
clean:
|
|
rm -f $(TEST_PROGS) *.o
|