diff options
| author | [email protected] <[email protected]> | 2012-03-28 23:27:00 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2012-03-29 22:12:59 +0000 |
| commit | 1d24fb3684f347226747c6b11ea426b7b992694e (patch) | |
| tree | a55c7cdfcb751c20f5d89502d5f99127cd34acb9 /arch/x86/net/bpf_jit_comp.c | |
| parent | bonding: emit event when bonding changes MAC (diff) | |
| download | kernel-1d24fb3684f347226747c6b11ea426b7b992694e.tar.gz kernel-1d24fb3684f347226747c6b11ea426b7b992694e.zip | |
x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND
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]>
Diffstat (limited to 'arch/x86/net/bpf_jit_comp.c')
| -rw-r--r-- | arch/x86/net/bpf_jit_comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c index 5671752f8d9c..5a5b6e4dd738 100644 --- a/arch/x86/net/bpf_jit_comp.c +++ b/arch/x86/net/bpf_jit_comp.c @@ -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 */ } |
