migrate: Don't migrate on in-kernel interrupt

Change-Id: I9c07e0d633687ce232ec3cd0c80439ca2e856293
Refs: #1555
This commit is contained in:
Ken Sato
2020-12-11 13:25:57 +09:00
committed by Masamichi Takagi
parent 583319125a
commit 93dafc5f79
10 changed files with 555 additions and 8 deletions

18
test/issues/1555/Makefile Normal file
View File

@@ -0,0 +1,18 @@
CC=gcc
CFLAGS=-g
LDFLAGS=
TARGET=C1555T01 C1555T02
all: $(TARGET)
C1555T01: C1555.c
$(CC) -o $@ $^
C1555T02: C1555.c
$(CC) -DMIGRATE_ON_OFFLOAD -o $@ $^
test: all
sh ./C1555.sh
clean:
rm -f $(TARGET) *.o *.txt