Commit 3990b5ba authored by Heiko Carstens's avatar Heiko Carstens Committed by Vasily Gorbik

selftests/ftrace: add s390 support for kprobe args tests

This is the s390 variant of commit 9855c462 ("selftests/ftrace:
Add ppc support for kprobe args tests").
Acked-by: default avatarIlya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
parent 885359c4
...@@ -22,6 +22,9 @@ ppc64*) ...@@ -22,6 +22,9 @@ ppc64*)
ppc*) ppc*)
ARG1=%r3 ARG1=%r3
;; ;;
s390*)
ARG1=%r2
;;
*) *)
echo "Please implement other architecture here" echo "Please implement other architecture here"
exit_untested exit_untested
......
...@@ -32,6 +32,10 @@ ppc*) ...@@ -32,6 +32,10 @@ ppc*)
GOODREG=%r3 GOODREG=%r3
BADREG=%msr BADREG=%msr
;; ;;
s390*)
GOODREG=%r2
BADREG=%s2
;;
*) *)
echo "Please implement other architecture here" echo "Please implement other architecture here"
exit_untested exit_untested
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment