X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lttng-context.c;h=933732266e9eb076ff26d0adefa1381a351b6399;hb=f513b2bf88afa9a36a725fbf8e91e3a3f3efebc9;hp=9f5cb249c984a94ea154f0cdc2ee8f3cbf82b069;hpb=5214fa509791fcb97f7c2713d7f3930c6c49d7de;p=deliverable%2Flttng-modules.git diff --git a/lttng-context.c b/lttng-context.c index 9f5cb249..93373226 100644 --- a/lttng-context.c +++ b/lttng-context.c @@ -141,6 +141,9 @@ void lttng_context_update(struct lttng_ctx *ctx) case atype_array: case atype_sequence: + case atype_struct: + case atype_array_compound: + case atype_sequence_compound: default: WARN_ON_ONCE(1); break; @@ -160,6 +163,9 @@ void lttng_context_update(struct lttng_ctx *ctx) case atype_string: case atype_array: case atype_sequence: + case atype_struct: + case atype_array_compound: + case atype_sequence_compound: default: WARN_ON_ONCE(1); break; @@ -178,6 +184,9 @@ void lttng_context_update(struct lttng_ctx *ctx) case atype_array: case atype_sequence: + case atype_struct: + case atype_array_compound: + case atype_sequence_compound: default: WARN_ON_ONCE(1); break; @@ -187,6 +196,11 @@ void lttng_context_update(struct lttng_ctx *ctx) case atype_string: break; + case atype_struct: + case atype_array_compound: + case atype_sequence_compound: + break; + case atype_enum: default: WARN_ON_ONCE(1);