X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-statedump-impl.c;h=b7921df4a643a99b6790cdf887a2f05240201aa9;hb=eaef2890eb65f2489e0227413ed3a0b228b3323b;hp=7dd4f56e936ca0ea4a4bfe73d7b937c4e35437f4;hpb=df56ddd82ae3886325f93be0dfb01760280e6e02;p=lttng-modules.git diff --git a/lttng-statedump-impl.c b/lttng-statedump-impl.c index 7dd4f56e..b7921df4 100755 --- a/lttng-statedump-impl.c +++ b/lttng-statedump-impl.c @@ -427,7 +427,14 @@ EXPORT_SYMBOL_GPL(lttng_statedump_start); static int __init lttng_statedump_init(void) { - return wrapper_lttng_fixup_sig(THIS_MODULE); + /* + * Allow module to load even if the fixup cannot be done. This + * will allow seemless transition when the underlying issue fix + * is merged into the Linux kernel, and when tracepoint.c + * "tracepoint_module_notify" is turned into a static function. + */ + (void) wrapper_lttng_fixup_sig(THIS_MODULE); + return 0; } module_init(lttng_statedump_init);