|
@@ -284,9 +284,9 @@ static void emit_bpf_tail_call(u8 **pprog)
|
|
|
/* if (index >= array->map.max_entries)
|
|
|
* goto out;
|
|
|
*/
|
|
|
- EMIT4(0x48, 0x8B, 0x46, /* mov rax, qword ptr [rsi + 16] */
|
|
|
+ EMIT2(0x89, 0xD2); /* mov edx, edx */
|
|
|
+ EMIT3(0x39, 0x56, /* cmp dword ptr [rsi + 16], edx */
|
|
|
offsetof(struct bpf_array, map.max_entries));
|
|
|
- EMIT3(0x48, 0x39, 0xD0); /* cmp rax, rdx */
|
|
|
#define OFFSET1 43 /* number of bytes to jump */
|
|
|
EMIT2(X86_JBE, OFFSET1); /* jbe out */
|
|
|
label1 = cnt;
|