From: Mathieu Desnoyers Date: Wed, 7 Apr 2021 15:07:29 +0000 (-0400) Subject: Cleanup: event_notifier -> notify in comments X-Git-Tag: v2.13.0-rc1~24 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=196bfc6a04f069e57803c9a2a18f2528394ceacd Cleanup: event_notifier -> notify in comments Signed-off-by: Mathieu Desnoyers Change-Id: Icdb4282e8b5fce231f96c56b4568555bd7a442fb --- diff --git a/src/lttng-probes.c b/src/lttng-probes.c index 00f39112..3033094b 100644 --- a/src/lttng-probes.c +++ b/src/lttng-probes.c @@ -25,7 +25,7 @@ static LIST_HEAD(_probe_list); static LIST_HEAD(lazy_probe_init); /* - * lazy_nesting counter ensures we don't event_notifier lazy probe registration + * lazy_nesting counter ensures we don't notify lazy probe registration * fixup while we are performing the fixup. It is protected by the * sessions lock. */ diff --git a/src/probes/lttng-kprobes.c b/src/probes/lttng-kprobes.c index dc18f507..82433bd8 100644 --- a/src/probes/lttng-kprobes.c +++ b/src/probes/lttng-kprobes.c @@ -172,7 +172,7 @@ int _lttng_kprobes_register(const char *symbol_name, lttng_kp->kp.addr = (void *) (unsigned long) addr; /* - * Ensure the memory we just allocated don't event_notifier page faults. + * Ensure the memory we just allocated don't notify page faults. * Well.. kprobes itself puts the page fault handler on the blacklist, * but we can never be too careful. */ diff --git a/src/probes/lttng-uprobes.c b/src/probes/lttng-uprobes.c index bab941ab..c44ed4f8 100644 --- a/src/probes/lttng-uprobes.c +++ b/src/probes/lttng-uprobes.c @@ -210,7 +210,7 @@ int lttng_uprobes_add_callsite(struct lttng_uprobe *uprobe, goto end; } - /* Ensure the memory we just allocated don't event_notifier page faults. */ + /* Ensure the memory we just allocated don't notify page faults. */ wrapper_vmalloc_sync_mappings(); uprobe_handler->u.event = priv_data;