]> git.baikalelectronics.ru Git - kernel.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)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Mar 2012 22:12:59 +0000 (18:12 -0400)
commit7a9d40e74ecf7b3fcd16078fd0276bd8b4ffd2c0
treea55c7cdfcb751c20f5d89502d5f99127cd34acb9
parentb9327e58a750e35a63c566570ce851fd5ffa0d60
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 <zhuangfeiran@ict.ac.cn>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/x86/net/bpf_jit_comp.c