Skip to content

Commit 3190f4a

Browse files
committed
Add linux-opcodes table in a separate file
Signed-off-by: Dave Thaler <[email protected]>
1 parent d7a71ba commit 3190f4a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

rst/linux-opcodes.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
====== ==== =================================================== =============
2+
opcode imm description reference
3+
====== ==== =================================================== =============
4+
0x20 any dst = ntohl(\*(u32 \*)(R6->data + imm)) `Legacy BPF Packet access instructions`_
5+
0x28 any dst = ntohs(\*(u16 \*)(R6->data + imm)) `Legacy BPF Packet access instructions`_
6+
0x30 any dst = (\*(u8 \*)(R6->data + imm)) `Legacy BPF Packet access instructions`_
7+
0x38 any dst = ntohll(\*(u64 \*)(R6->data + imm)) `Legacy BPF Packet access instructions`_
8+
0x40 any dst = ntohl(\*(u32 \*)(R6->data + src + imm)) `Legacy BPF Packet access instructions`_
9+
0x48 any dst = ntohs(\*(u16 \*)(R6->data + src + imm)) `Legacy BPF Packet access instructions`_
10+
0x50 any dst = \*(u8 \*)(R6->data + src + imm)) `Legacy BPF Packet access instructions`_
11+
0x58 any dst = ntohll(\*(u64 \*)(R6->data + src + imm)) `Legacy BPF Packet access instructions`_
12+
====== ==== =================================================== =============

0 commit comments

Comments
 (0)