From: Mathieu Desnoyers Date: Wed, 10 Aug 2011 20:04:54 +0000 (-0400) Subject: Add missing module refcount to lttng_tracepoint_list_fops X-Git-Tag: v2.0-pre7~1 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=2e54c205d9ac9d2dae605ae18913a15880d4691d;p=lttng-modules.git Add missing module refcount to lttng_tracepoint_list_fops Signed-off-by: Mathieu Desnoyers --- diff --git a/ltt-probes.c b/ltt-probes.c index 45d2dabd..668f6678 100644 --- a/ltt-probes.c +++ b/ltt-probes.c @@ -156,6 +156,7 @@ int lttng_tracepoint_list_open(struct inode *inode, struct file *file) } const struct file_operations lttng_tracepoint_list_fops = { + .owner = THIS_MODULE, .open = lttng_tracepoint_list_open, .read = seq_read, .llseek = seq_lseek,