Skip to content

Commit 92546f6

Browse files
committed
perf/uprobes: Remove <space><Tab> whitespace noise
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
1 parent d61f1cc commit 92546f6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

kernel/events/uprobes.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ struct uprobe {
7979
* The generic code assumes that it has two members of unknown type
8080
* owned by the arch-specific code:
8181
*
82-
* insn - copy_insn() saves the original instruction here for
82+
* insn - copy_insn() saves the original instruction here for
8383
* arch_uprobe_analyze_insn().
8484
*
8585
* ixol - potentially modified instruction to execute out of
@@ -107,16 +107,16 @@ static LIST_HEAD(delayed_uprobe_list);
107107
* allocated.
108108
*/
109109
struct xol_area {
110-
wait_queue_head_t wq; /* if all slots are busy */
111-
unsigned long *bitmap; /* 0 = free slot */
110+
wait_queue_head_t wq; /* if all slots are busy */
111+
unsigned long *bitmap; /* 0 = free slot */
112112

113113
struct page *page;
114114
/*
115115
* We keep the vma's vm_start rather than a pointer to the vma
116116
* itself. The probed process or a naughty kernel module could make
117117
* the vma go away, and we must handle that reasonably gracefully.
118118
*/
119-
unsigned long vaddr; /* Page(s) of instruction slots */
119+
unsigned long vaddr; /* Page(s) of instruction slots */
120120
};
121121

122122
static void uprobe_warn(struct task_struct *t, const char *msg)

0 commit comments

Comments
 (0)