]> git.karo-electronics.de Git - karo-tx-linux.git/commit
x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND
authorzhuangfeiran@ict.ac.cn <zhuangfeiran@ict.ac.cn>
Wed, 28 Mar 2012 23:27:00 +0000 (23:27 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 13 Apr 2012 15:14:05 +0000 (08:14 -0700)
commit62a48bcddfa2b4cabef5b58564cb7d843658fe19
tree509df58ebfc5cdf8c02d05b01883a9173a4ee3de
parent8aa122f38398503c72a83f15c815e84e6e6e6890
x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND

[ Upstream commit 1d24fb3684f347226747c6b11ea426b7b992694e ]

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 <zhuangfeiran@ict.ac.cn>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/x86/net/bpf_jit_comp.c