From: Mathieu Desnoyers Date: Mon, 4 May 2020 18:52:13 +0000 (-0400) Subject: Move lttng wrappers into own module X-Git-Tag: v2.13.0-rc1~237 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=1c999280e7f232e6c2e41d8c76020e795a649648;hp=1c999280e7f232e6c2e41d8c76020e795a649648;p=lttng-modules.git Move lttng wrappers into own module Currently, we only pull the wrapper symbols into a single sub-module, either: lttng-tracer.o: - wrapper/random.o - wrapper/trace-clock.o - wrapper/page_alloc.o or lttng-statedump.o: - wrapper/irqdesc.o - wrapper/fdtable.o Because lttng-tracer depends on lttng-statedump, we cannot just put all wrappers into lttng-tracer.o, because it would create a circular dependency. This will be an issue if we introduce common wrappers which are used in both lttng-tracer.o and in lttng-statedump.o. Introduce a new lttng-wrapper.o to contain all wrapper symbols for all lttng modules. Signed-off-by: Mathieu Desnoyers ---