Skip to content

Commit fc35829

Browse files
committed
Update = length
Signed-off-by: Dave Thaler <[email protected]>
1 parent d3f2e4a commit fc35829

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

isa/kernel.org/instruction-set.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,16 +245,16 @@ The 'imm' field encodes the width of the swap operations. The following widths
245245
are supported: 16, 32 and 64. The following table summarizes the resulting
246246
possibilities:
247247

248-
============================= ========= === ======== =================
248+
============================= ========= === ======== ==================
249249
opcode construction opcode imm mnemonic pseudocode
250-
============================= ========= === ======== =================
250+
============================= ========= === ======== ==================
251251
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 16 le16 dst dst = htole16(dst)
252252
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 32 le32 dst dst = htole32(dst)
253253
BPF_ALU | BPF_TO_LE | BPF_END 0xd4 64 le64 dst dst = htole64(dst)
254254
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 16 be16 dst dst = htobe16(dst)
255255
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 32 be32 dst dst = htobe32(dst)
256256
BPF_ALU | BPF_TO_BE | BPF_END 0xdc 64 be64 dst dst = htobe64(dst)
257-
============================= ========= === ======== =================
257+
============================= ========= === ======== ==================
258258

259259
where
260260
* mnenomic indicates a short form that might be displayed by some tools such as disassemblers

0 commit comments

Comments
 (0)