public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf_events: fix errors path in perf_output_begin()
@ 2010-05-17 10:46 Stephane Eranian
  2010-05-17 11:04 ` John Kacur
  2010-05-17 11:46 ` Frederic Weisbecker
  0 siblings, 2 replies; 9+ messages in thread
From: Stephane Eranian @ 2010-05-17 10:46 UTC (permalink / raw)
  To: linux-kernel
  Cc: peterz, mingo, paulus, davem, fweisbec, acme, perfmon2-devel,
	eranian, eranian

  In case the sampling buffer has no "payload" pages, nr_pages is 0.
  The problem is that the error path in perf_output_begin() skips to
  a label which assumes perf_output_lock() has been issued which is
  not the case. That triggers a WARN_ON() is perf_output_unlock().

  This patch fixes the problem by adding a new label and skipping
  perf_task_unlock() in case data->nr_pages is 0. 

  Signed-off-by: Stephane Eranian <eranian@google.com>

--
diff --git a/kernel/perf_event.c b/kernel/perf_event.c
index a4fa381..95137b6 100644
--- a/kernel/perf_event.c
+++ b/kernel/perf_event.c
@@ -3035,8 +3035,10 @@ int perf_output_begin(struct perf_output_handle *handle,
 	handle->nmi	= nmi;
 	handle->sample	= sample;
 
-	if (!data->nr_pages)
-		goto fail;
+	if (!data->nr_pages) {
+		atomic_inc(&data->lost);
+		goto out;
+	}
 
 	have_lost = atomic_read(&data->lost);
 	if (have_lost)

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

end of thread, other threads:[~2010-05-17 12:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-17 10:46 [PATCH] perf_events: fix errors path in perf_output_begin() Stephane Eranian
2010-05-17 11:04 ` John Kacur
2010-05-17 11:57   ` Stephane Eranian
2010-05-17 11:46 ` Frederic Weisbecker
2010-05-17 11:56   ` Stephane Eranian
2010-05-17 12:03     ` Peter Zijlstra
2010-05-17 12:04       ` Stephane Eranian
2010-05-17 12:09         ` Peter Zijlstra
2010-05-17 12:23           ` Stephane Eranian

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