X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=lttng-context.c;h=01e95aa965f3ddc7381b8a121d376c44abe0cd59;hb=1f6066fcef049162b16ca26bcb053a4423e640d8;hp=9f5cb249c984a94ea154f0cdc2ee8f3cbf82b069;hpb=241ae9a8fb62c3ce467d244e280062c24e73eb7a;p=lttng-modules.git diff --git a/lttng-context.c b/lttng-context.c index 9f5cb249..01e95aa9 100644 --- a/lttng-context.c +++ b/lttng-context.c @@ -282,18 +282,14 @@ int lttng_context_init(void) if (ret) { printk(KERN_WARNING "Cannot add context lttng_add_need_reschedule_to_ctx"); } -#if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT) ret = lttng_add_preemptible_to_ctx(<tng_static_ctx); - if (ret != -ENOSYS) { + if (ret && ret != -ENOSYS) { printk(KERN_WARNING "Cannot add context lttng_add_preemptible_to_ctx"); } -#endif -#ifdef CONFIG_PREEMPT_RT_FULL ret = lttng_add_migratable_to_ctx(<tng_static_ctx); - if (ret != -ENOSYS) { + if (ret && ret != -ENOSYS) { printk(KERN_WARNING "Cannot add context lttng_add_migratable_to_ctx"); } -#endif /* TODO: perf counters for filtering */ return 0; }