X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=filter-bytecode.h;h=2aa5c2d08462b6ca23129848b5ea8144d61c32f9;hb=e16c054bb621df50a1710dcd9d1d613f13ef52d2;hp=931daa9726c839da2c402b0da34a7604813b0ba0;hpb=3834b99f4341209754c4955ec853dc250b33ed4b;p=lttng-modules.git diff --git a/filter-bytecode.h b/filter-bytecode.h index 931daa97..2aa5c2d0 100644 --- a/filter-bytecode.h +++ b/filter-bytecode.h @@ -72,8 +72,8 @@ enum filter_op { FILTER_OP_MOD = 4, FILTER_OP_PLUS = 5, FILTER_OP_MINUS = 6, - FILTER_OP_RSHIFT = 7, - FILTER_OP_LSHIFT = 8, + FILTER_OP_BIT_RSHIFT = 7, + FILTER_OP_BIT_LSHIFT = 8, FILTER_OP_BIT_AND = 9, FILTER_OP_BIT_OR = 10, FILTER_OP_BIT_XOR = 11, @@ -202,6 +202,8 @@ enum filter_op { FILTER_OP_LOAD_FIELD_SEQUENCE = 96, FILTER_OP_LOAD_FIELD_DOUBLE = 97, + FILTER_OP_UNARY_BIT_NOT = 98, + NR_FILTER_OPS, };