]> Git Repo - linux.git/commitdiff
x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND
author[email protected] <[email protected]>
Wed, 28 Mar 2012 23:27:00 +0000 (23:27 +0000)
committerDavid S. Miller <[email protected]>
Thu, 29 Mar 2012 22:12:59 +0000 (18:12 -0400)
When K >= 0xFFFF0000, AND needs the two least significant bytes of K as
its operand, but EMIT2() gives it the least significant byte of K and
0x2. EMIT() should be used here to replace EMIT2().

Signed-off-by: Feiran Zhuang <[email protected]>
Acked-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
arch/x86/net/bpf_jit_comp.c

index 5671752f8d9cbccb2c5fb708bca8780883d56e19..5a5b6e4dd7386586b5a9e8d5559b6b104f48d447 100644 (file)
@@ -289,7 +289,7 @@ void bpf_jit_compile(struct sk_filter *fp)
                                        EMIT2(0x24, K & 0xFF); /* and imm8,%al */
                                } else if (K >= 0xFFFF0000) {
                                        EMIT2(0x66, 0x25);      /* and imm16,%ax */
-                                       EMIT2(K, 2);
+                                       EMIT(K, 2);
                                } else {
                                        EMIT1_off32(0x25, K);   /* and imm32,%eax */
                                }
This page took 0.042943 seconds and 4 git commands to generate.