From 56386a64c1bb8885d5fe6f95fe9167217b75de3e Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 9 May 2024 13:45:45 -0400 Subject: [PATCH] lttng-abi: Add missing static to function definitions Signed-off-by: Mathieu Desnoyers Change-Id: Icc6928df5a47c96a560e18b2c854780afbcf6307 --- src/lttng-abi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lttng-abi.c b/src/lttng-abi.c index caec803f..afd23373 100644 --- a/src/lttng-abi.c +++ b/src/lttng-abi.c @@ -121,6 +121,7 @@ fd_error: return ret; } +static void event_notifier_send_notification_work_wakeup(struct irq_work *entry) { struct lttng_event_notifier_group *event_notifier_group = @@ -2576,6 +2577,7 @@ long lttng_metadata_ioctl(struct file *file, unsigned int cmd, unsigned long arg * @file: the file * @wait: poll table */ +static unsigned int lttng_channel_poll(struct file *file, poll_table *wait) { struct lttng_kernel_channel_buffer *channel = file->private_data; -- 2.34.1