X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=lttng-filter.c;h=ed4bc5bb3b936c317eb36d25f2311f419d50993e;hb=7299e758b109db074589f7879ae631b27c25dc05;hp=3193d6ba3a95e1d0d6dae2f8bd9621e4f61f2e54;hpb=bbf3aef542f1d86cb2a2a304444ef7529d01eb6b;p=lttng-modules.git diff --git a/lttng-filter.c b/lttng-filter.c index 3193d6ba..ed4bc5bb 100644 --- a/lttng-filter.c +++ b/lttng-filter.c @@ -134,6 +134,16 @@ static const char *opnames[] = { /* load userspace field ref */ [ FILTER_OP_LOAD_FIELD_REF_USER_STRING ] = "LOAD_FIELD_REF_USER_STRING", [ FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE ] = "LOAD_FIELD_REF_USER_SEQUENCE", + + /* + * load immediate star globbing pattern (literal string) + * from immediate. + */ + [ FILTER_OP_LOAD_STAR_GLOB_STRING ] = "LOAD_STAR_GLOB_STRING", + + /* globbing pattern binary operator: apply to */ + [ FILTER_OP_EQ_STAR_GLOB_STRING ] = "EQ_STAR_GLOB_STRING", + [ FILTER_OP_NE_STAR_GLOB_STRING ] = "NE_STAR_GLOB_STRING", }; const char *lttng_filter_print_op(enum filter_op op)