Merge tag 'powerpc-4.14-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux-2.6-microblaze.git] / arch / powerpc / net / bpf_jit_comp64.c
index faf2016..a66e64b 100644 (file)
@@ -25,11 +25,7 @@ int bpf_jit_enable __read_mostly;
 
 static void bpf_jit_fill_ill_insns(void *area, unsigned int size)
 {
-       int *p = area;
-
-       /* Fill whole space with trap instructions */
-       while (p < (int *)((char *)area + size))
-               *p++ = BREAKPOINT_INSTRUCTION;
+       memset32(area, BREAKPOINT_INSTRUCTION, size/4);
 }
 
 static inline void bpf_flush_icache(void *start, void *end)