Displaying 4 results from an estimated 4 matches for "op_eq".
2014 May 28
1
[Bug 946] New: Cannot invert a protocol: ip protocol != tcp
...nvert a protocol:
* We add the following rule, and It does not show any error.
$ sudo nft add rule ip test input ip protocol != icmp
* We list the table test, and It shows this problem:
$ sudo nft -nn list table ip test
nft: src/payload.c:76: payload_expr_pctx_update: Assertion `expr->op == OP_EQ'
failed.
Also, we can reproduce it in the following cases:
- ah with nexthdr:
* We add the following rule, and It does not show any error.
$ sudo nft add rule ip test input ah nexthdr != esp
* We list the table test, It shows the following problem:
$ sudo nft -nn list table ip test
nft: src...
2014 Jan 25
7
[Bug 888] New: Assertion errors attempting a statement which (I believe) is grammatically correct.
https://bugzilla.netfilter.org/show_bug.cgi?id=888
Summary: Assertion errors attempting a statement which (I
believe) is grammatically correct.
Product: nftables
Version: unspecified
Platform: x86_64
OS/Version: Fedora
Status: NEW
Severity: normal
Priority: P5
Component: nft
2014 Apr 14
0
[ANNOUNCE]: Release of nftables 0.2
...ric Leblond (1):
src: add support for queue
Florian Westphal (6):
netlink_delinearize: meta: fix wrong type in attributes
ct: direction should be integer, not bitmask
ct: connlabel matching support
datatype: don't leak file ptr on error
expr: do not suppress OP_EQ when RHS is bitmask type
build: drop AC_FUNC_MALLOC/REALLOC
Pablo Neira Ayuso (7):
netlink: add support to set meta keys
build: use libnftnl instead of libnftables in configure.in
bump release number to 0.100
mnl: fix inclusion of last rule in batch page
Merge b...
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...dex 78a678eeb140..52df27e45843 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -1273,7 +1273,7 @@ static int parse_pred(const char *str, void *data,
switch (op) {
case OP_NE:
pred->not = 1;
- fallthrough;
+ break;
case OP_GLOB:
case OP_EQ:
break;
diff --git a/net/dccp/output.c b/net/dccp/output.c
index 50e6d5699bb2..5a4dbd7cee32 100644
--- a/net/dccp/output.c
+++ b/net/dccp/output.c
@@ -62,7 +62,7 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb)
switch (dcb->dccpd_type) {
case DCCP_PKT_DATA:
set...