File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,16 +245,16 @@ The 'imm' field encodes the width of the swap operations. The following widths
245
245
are supported: 16, 32 and 64. The following table summarizes the resulting
246
246
possibilities:
247
247
248
- ============================= ========= === ======== =================
248
+ ============================= ========= === ======== ==================
249
249
opcode construction opcode imm mnemonic pseudocode
250
- ============================= ========= === ======== =================
250
+ ============================= ========= === ======== ==================
251
251
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 16 le16 dst dst = htole16(dst)
252
252
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 32 le32 dst dst = htole32(dst)
253
253
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 64 le64 dst dst = htole64(dst)
254
254
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 16 be16 dst dst = htobe16(dst)
255
255
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 32 be32 dst dst = htobe32(dst)
256
256
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 64 be64 dst dst = htobe64(dst)
257
- ============================= ========= === ======== =================
257
+ ============================= ========= === ======== ==================
258
258
259
259
where
260
260
* mnenomic indicates a short form that might be displayed by some tools such as disassemblers
You can’t perform that action at this time.
0 commit comments