mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [patch 1/3] x86, bts: clear bts bits on fork
@ 2008-12-16 14:48 Markus Metzger
  2008-12-16 17:18 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Markus Metzger @ 2008-12-16 14:48 UTC (permalink / raw)
  To: linux-kernel, mingo, tglx, hpa
  Cc: markus.t.metzger, markus.t.metzger, roland, eranian

Clear the DS context as well as the bts tracer and corresponding
fields in task_struct on fork.

Correct the CONFIG guard.

Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
Reported-by: Ingo Molnar <mingo@elte.hu>
---

Index: ftrace/arch/x86/kernel/process_32.c
===================================================================
--- ftrace.orig/arch/x86/kernel/process_32.c	2008-12-12 14:02:24.000000000 +0100
+++ ftrace/arch/x86/kernel/process_32.c	2008-12-12 14:33:19.000000000 +0100
@@ -251,7 +251,7 @@
 		tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
 		put_cpu();
 	}
-#ifdef CONFIG_X86_DS
+#ifdef CONFIG_X86_PTRACE_BTS
 	/* Free any BTS tracers that have not been properly released. */
 	if (unlikely(current->bts)) {
 		ds_release_bts(current->bts);
@@ -261,7 +261,7 @@
 		current->bts_buffer = NULL;
 		current->bts_size = 0;
 	}
-#endif /* CONFIG_X86_DS */
+#endif /* CONFIG_X86_PTRACE_BTS */
 }
 
 void flush_thread(void)
@@ -343,6 +343,17 @@
 		kfree(p->thread.io_bitmap_ptr);
 		p->thread.io_bitmap_max = 0;
 	}
+
+#ifdef CONFIG_X86_DS
+	clear_tsk_thread_flag(p, TIF_DS_AREA_MSR);
+	p->thread.ds_ctx = NULL;
+#endif
+#ifdef CONFIG_X86_PTRACE_BTS
+	p->thread.bts_ovfl_signal = 0;
+#endif
+	clear_tsk_thread_flag(p, TIF_DEBUGCTLMSR);
+	p->thread.debugctlmsr = 0;
+
 	return err;
 }
 
Index: ftrace/arch/x86/kernel/process_64.c
===================================================================
--- ftrace.orig/arch/x86/kernel/process_64.c	2008-12-12 14:02:24.000000000 +0100
+++ ftrace/arch/x86/kernel/process_64.c	2008-12-12 14:32:38.000000000 +0100
@@ -248,7 +248,7 @@
 		t->io_bitmap_max = 0;
 		put_cpu();
 	}
-#ifdef CONFIG_X86_DS
+#ifdef CONFIG_X86_PTRACE_BTS
 	/* Free any BTS tracers that have not been properly released. */
 	if (unlikely(current->bts)) {
 		ds_release_bts(current->bts);
@@ -258,7 +258,7 @@
 		current->bts_buffer = NULL;
 		current->bts_size = 0;
 	}
-#endif /* CONFIG_X86_DS */
+#endif /* CONFIG_X86_PTRACE_BTS */
 }
 
 void flush_thread(void)
@@ -388,6 +388,17 @@
 		if (err)
 			goto out;
 	}
+
+#ifdef CONFIG_X86_DS
+	clear_tsk_thread_flag(p, TIF_DS_AREA_MSR);
+	p->thread.ds_ctx = NULL;
+#endif
+#ifdef CONFIG_X86_PTRACE_BTS
+	p->thread.bts_ovfl_signal = 0;
+#endif
+	clear_tsk_thread_flag(p, TIF_DEBUGCTLMSR);
+	p->thread.debugctlmsr = 0;
+
 	err = 0;
 out:
 	if (err && p->thread.io_bitmap_ptr) {
Index: ftrace/kernel/fork.c
===================================================================
--- ftrace.orig/kernel/fork.c	2008-12-12 14:02:24.000000000 +0100
+++ ftrace/kernel/fork.c	2008-12-12 14:29:43.000000000 +0100
@@ -1102,7 +1102,11 @@
 #ifdef CONFIG_DEBUG_MUTEXES
 	p->blocked_on = NULL; /* not blocked yet */
 #endif
-
+#ifdef CONFIG_X86_PTRACE_BTS
+	p->bts = NULL;
+	p->bts_buffer = NULL;
+	p->bts_size = 0;
+#endif
 	/* Perform scheduler related setup. Assign this task to a CPU. */
 	sched_fork(p, clone_flags);
 
---------------------------------------------------------------------
Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen Germany
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
Registergericht: Muenchen HRB 47456 Ust.-IdNr.
VAT Registration No.: DE129385895
Citibank Frankfurt (BLZ 502 109 00) 600119052

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [patch 1/3] x86, bts: clear bts bits on fork
  2008-12-16 14:48 [patch 1/3] x86, bts: clear bts bits on fork Markus Metzger
@ 2008-12-16 17:18 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2008-12-16 17:18 UTC (permalink / raw)
  To: Markus Metzger; +Cc: linux-kernel, tglx, hpa, markus.t.metzger, roland, eranian


* Markus Metzger <markus.t.metzger@intel.com> wrote:

> -#ifdef CONFIG_X86_DS
> +#ifdef CONFIG_X86_PTRACE_BTS
>  	/* Free any BTS tracers that have not been properly released. */
>  	if (unlikely(current->bts)) {
>  		ds_release_bts(current->bts);
> @@ -258,7 +258,7 @@
>  		current->bts_buffer = NULL;
>  		current->bts_size = 0;
>  	}
> -#endif /* CONFIG_X86_DS */

Please eliminate the #ifdef from here by introducing a helper function - 
possibly inlined.

> +#ifdef CONFIG_X86_DS
> +	clear_tsk_thread_flag(p, TIF_DS_AREA_MSR);
> +	p->thread.ds_ctx = NULL;
> +#endif
> +#ifdef CONFIG_X86_PTRACE_BTS
> +	p->thread.bts_ovfl_signal = 0;
> +#endif

ditto.

> +#ifdef CONFIG_X86_PTRACE_BTS
> +	p->bts = NULL;
> +	p->bts_buffer = NULL;
> +	p->bts_size = 0;
> +#endif

this one too please.

There's generally little reason to put #ifdefs into .c files.

	Ingo

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-12-16 17:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-16 14:48 [patch 1/3] x86, bts: clear bts bits on fork Markus Metzger
2008-12-16 17:18 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®