Commit 13b8638b authored by Matt Redfearn's avatar Matt Redfearn Committed by James Hogan

MIPS: BPF: Replace __mips_isa_rev with MIPS_ISA_REV

Remove the need to check that __mips_isa_rev is defined by using the
newly added MIPS_ISA_REV.
Signed-off-by: default avatarMatt Redfearn <matt.redfearn@mips.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paul Burton <paul.burton@mips.com>
Cc: David Daney <david.daney@cavium.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/18677/Signed-off-by: default avatarJames Hogan <jhogan@kernel.org>
parent 18ba210a
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
*/ */
#include <asm/asm.h> #include <asm/asm.h>
#include <asm/isa-rev.h>
#include <asm/regdef.h> #include <asm/regdef.h>
#include "bpf_jit.h" #include "bpf_jit.h"
...@@ -65,7 +66,7 @@ FEXPORT(sk_load_word_positive) ...@@ -65,7 +66,7 @@ FEXPORT(sk_load_word_positive)
lw $r_A, 0(t1) lw $r_A, 0(t1)
.set noreorder .set noreorder
#ifdef CONFIG_CPU_LITTLE_ENDIAN #ifdef CONFIG_CPU_LITTLE_ENDIAN
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2) # if MIPS_ISA_REV >= 2
wsbh t0, $r_A wsbh t0, $r_A
rotr $r_A, t0, 16 rotr $r_A, t0, 16
# else # else
...@@ -92,7 +93,7 @@ FEXPORT(sk_load_half_positive) ...@@ -92,7 +93,7 @@ FEXPORT(sk_load_half_positive)
PTR_ADDU t1, $r_skb_data, offset PTR_ADDU t1, $r_skb_data, offset
lhu $r_A, 0(t1) lhu $r_A, 0(t1)
#ifdef CONFIG_CPU_LITTLE_ENDIAN #ifdef CONFIG_CPU_LITTLE_ENDIAN
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2) # if MIPS_ISA_REV >= 2
wsbh $r_A, $r_A wsbh $r_A, $r_A
# else # else
sll t0, $r_A, 8 sll t0, $r_A, 8
...@@ -170,7 +171,7 @@ FEXPORT(sk_load_byte_positive) ...@@ -170,7 +171,7 @@ FEXPORT(sk_load_byte_positive)
NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp) NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp)
bpf_slow_path_common(4) bpf_slow_path_common(4)
#ifdef CONFIG_CPU_LITTLE_ENDIAN #ifdef CONFIG_CPU_LITTLE_ENDIAN
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2) # if MIPS_ISA_REV >= 2
wsbh t0, $r_s0 wsbh t0, $r_s0
jr $r_ra jr $r_ra
rotr $r_A, t0, 16 rotr $r_A, t0, 16
...@@ -196,7 +197,7 @@ NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp) ...@@ -196,7 +197,7 @@ NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp)
NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp) NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp)
bpf_slow_path_common(2) bpf_slow_path_common(2)
#ifdef CONFIG_CPU_LITTLE_ENDIAN #ifdef CONFIG_CPU_LITTLE_ENDIAN
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2) # if MIPS_ISA_REV >= 2
jr $r_ra jr $r_ra
wsbh $r_A, $r_s0 wsbh $r_A, $r_s0
# else # else
......
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