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

+4 -4
+4 -4
kernel/events/uprobes.c
··· 79 79 * The generic code assumes that it has two members of unknown type 80 80 * owned by the arch-specific code: 81 81 * 82 - * insn - copy_insn() saves the original instruction here for 82 + * insn - copy_insn() saves the original instruction here for 83 83 * arch_uprobe_analyze_insn(). 84 84 * 85 85 * ixol - potentially modified instruction to execute out of ··· 107 107 * allocated. 108 108 */ 109 109 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 */ 112 112 113 113 struct page *page; 114 114 /* ··· 116 116 * itself. The probed process or a naughty kernel module could make 117 117 * the vma go away, and we must handle that reasonably gracefully. 118 118 */ 119 - unsigned long vaddr; /* Page(s) of instruction slots */ 119 + unsigned long vaddr; /* Page(s) of instruction slots */ 120 120 }; 121 121 122 122 static void uprobe_warn(struct task_struct *t, const char *msg)