Cleanup: event_notifier -> notify in comments
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 7 Apr 2021 15:07:29 +0000 (11:07 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 14 Apr 2021 20:38:35 +0000 (16:38 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Icdb4282e8b5fce231f96c56b4568555bd7a442fb

src/lttng-probes.c
src/probes/lttng-kprobes.c
src/probes/lttng-uprobes.c

index 00f39112f04d84485bc9d482aad9c632c92dab6b..3033094bbb88f6ec4e43d3d319dd422e339c64fa 100644 (file)
@@ -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.
  */
index dc18f5077fc1091afab28119dc352deccc09287d..82433bd84c0793c9a1cd93ab40335caf5d475113 100644 (file)
@@ -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.
         */
index bab941abe348d2c1d96a91cf118948ac0bb9c87d..c44ed4f8da511349cd911faafa8440c3e49170a0 100644 (file)
@@ -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;
This page took 0.026677 seconds and 4 git commands to generate.