]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
perf/uprobes: Remove <space><Tab> whitespace noise
authorIngo Molnar <mingo@kernel.org>
Wed, 3 Dec 2025 18:19:08 +0000 (18:19 +0000)
committerIngo Molnar <mingo@kernel.org>
Wed, 3 Dec 2025 18:23:01 +0000 (19:23 +0100)
A few cases of space-Tab noise snuck in.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://patch.msgid.link/176478594889.498.15611228524880763978.tip-bot2@tip-bot2
kernel/events/uprobes.c

index f11ceb8be8c419b2894afea064363a0597021442..d546d32390a81def1f103a29bf90df7b8cba6f99 100644 (file)
@@ -79,7 +79,7 @@ struct uprobe {
         * The generic code assumes that it has two members of unknown type
         * owned by the arch-specific code:
         *
-        *      insn -  copy_insn() saves the original instruction here for
+        *      insn -  copy_insn() saves the original instruction here for
         *              arch_uprobe_analyze_insn().
         *
         *      ixol -  potentially modified instruction to execute out of
@@ -107,8 +107,8 @@ static LIST_HEAD(delayed_uprobe_list);
  * allocated.
  */
 struct xol_area {
-       wait_queue_head_t               wq;             /* if all slots are busy */
-       unsigned long                   *bitmap;        /* 0 = free slot */
+       wait_queue_head_t               wq;             /* if all slots are busy */
+       unsigned long                   *bitmap;        /* 0 = free slot */
 
        struct page                     *page;
        /*
@@ -116,7 +116,7 @@ struct xol_area {
         * itself.  The probed process or a naughty kernel module could make
         * the vma go away, and we must handle that reasonably gracefully.
         */
-       unsigned long                   vaddr;          /* Page(s) of instruction slots */
+       unsigned long                   vaddr;          /* Page(s) of instruction slots */
 };
 
 static void uprobe_warn(struct task_struct *t, const char *msg)