All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] use for_each_cpu in oprofile code
@ 2004-09-04 17:44 Anton Blanchard
  2004-09-04 17:46 ` [PATCH] fix oprofile vfree warning on error Anton Blanchard
  0 siblings, 1 reply; 7+ messages in thread
From: Anton Blanchard @ 2004-09-04 17:44 UTC (permalink / raw)
  To: akpm; +Cc: levon, phil.el, linux-kernel


Replace open coded versions with for_each_cpu()/for_each_online_cpu().

Signed-off-by: Anton Blanchard <anton@samba.org>

===== cpu_buffer.c 1.11 vs edited =====
--- 1.11/drivers/oprofile/cpu_buffer.c	Fri Aug 27 16:42:56 2004
+++ edited/cpu_buffer.c	Sun Sep  5 02:18:01 2004
@@ -36,11 +36,8 @@
 {
 	int i;
  
-	for (i = 0; i < NR_CPUS; ++i) {
-		if (!cpu_online(i))
-			continue;
+	for_each_online_cpu(i)
 		vfree(cpu_buffer[i].buffer);
-	}
 }
  
  
@@ -50,12 +47,9 @@
  
 	unsigned long buffer_size = fs_cpu_buffer_size;
  
-	for (i = 0; i < NR_CPUS; ++i) {
+	for_each_online_cpu(i) {
 		struct oprofile_cpu_buffer * b = &cpu_buffer[i];
  
-		if (!cpu_online(i))
-			continue;
-
 		b->buffer = vmalloc(sizeof(struct op_sample) * buffer_size);
 		if (!b->buffer)
 			goto fail;
@@ -94,12 +88,9 @@
 
 	timers_enabled = 1;
 
-	for (i = 0; i < NR_CPUS; ++i) {
+	for_each_online_cpu(i) {
 		struct oprofile_cpu_buffer * b = &cpu_buffer[i];
 
-		if (!cpu_online(i))
-			continue;
-
 		add_timer_on(&b->timer, i);
 	}
 }
@@ -111,11 +102,8 @@
 
 	timers_enabled = 0;
 
-	for (i = 0; i < NR_CPUS; ++i) {
+	for_each_online_cpu(i) {
 		struct oprofile_cpu_buffer * b = &cpu_buffer[i];
-
-		if (!cpu_online(i))
-			continue;
 
 		del_timer_sync(&b->timer);
 	}
===== oprofile_stats.c 1.8 vs edited =====
--- 1.8/drivers/oprofile/oprofile_stats.c	Fri Aug 27 16:42:56 2004
+++ edited/oprofile_stats.c	Sun Sep  5 02:15:49 2004
@@ -22,10 +22,7 @@
 	struct oprofile_cpu_buffer * cpu_buf; 
 	int i;
  
-	for (i = 0; i < NR_CPUS; ++i) {
-		if (!cpu_possible(i))
-			continue;
-
+	for_each_cpu(i) {
 		cpu_buf = &cpu_buffer[i]; 
 		cpu_buf->sample_received = 0;
 		cpu_buf->sample_lost_overflow = 0;
@@ -49,10 +46,7 @@
 	if (!dir)
 		return;
 
-	for (i = 0; i < NR_CPUS; ++i) {
-		if (!cpu_possible(i))
-			continue;
-
+	for_each_cpu(i) {
 		cpu_buf = &cpu_buffer[i]; 
 		snprintf(buf, 10, "cpu%d", i);
 		cpudir = oprofilefs_mkdir(sb, dir, buf);

^ permalink raw reply	[flat|nested] 7+ messages in thread
[parent not found: <200409081717.i88HHwwE000347@hera.kernel.org>]

end of thread, other threads:[~2004-09-08 17:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-04 17:44 [PATCH] use for_each_cpu in oprofile code Anton Blanchard
2004-09-04 17:46 ` [PATCH] fix oprofile vfree warning on error Anton Blanchard
2004-09-04 17:57   ` [PATCH] Speed up oprofile buffer drain code Anton Blanchard
2004-09-05 18:26     ` John Levon
2004-09-05 14:32   ` [PATCH] fix oprofile vfree warning on error John Levon
2004-09-06  8:51     ` Anton Blanchard
     [not found] <200409081717.i88HHwwE000347@hera.kernel.org>
2004-09-08 17:49 ` [PATCH] Speed up oprofile buffer drain code John Levon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.