summaryrefslogtreecommitdiffstats
path: root/tests/shell/README
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2020-01-19 10:58:01 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2020-01-22 23:06:56 +0100
commitf833cb3c9ce4174671eb2c55d458221b4c00dd48 (patch)
treebe199f6050d709450bd2f3a888ae8bf1eb7d53dc /tests/shell/README
parent844ee4cebf45d326890ddbd3d1d124f4fc9b80ad (diff)
include: nf_tables: correct bitwise header comment.
The comment documenting how bitwise expressions work includes a table which summarizes the mask and xor arguments combined to express the supported boolean operations. However, the row for OR: mask xor 0 x is incorrect. dreg = (sreg & 0) ^ x is not equivalent to: dreg = sreg | x What the code actually does is: dreg = (sreg & ~x) ^ x Update the documentation to match. Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/README')
0 files changed, 0 insertions, 0 deletions