Linux RAID subsystem development
 help / color / mirror / Atom feed
* [PATCH] XOR template selection redo
@ 2004-06-21 15:26 Josh Litherland
  0 siblings, 0 replies; only message in thread
From: Josh Litherland @ 2004-06-21 15:26 UTC (permalink / raw)
  To: linux-raid; +Cc: research

[-- Attachment #1: Type: text/plain, Size: 721 bytes --]


Okay, due to my wonky printk's the previous patch was pretty lousy at
its stated purpose of reducing confusion.  Attached is a better
version.  I tried to keep output mostly consistant, so:


raid5: measuring checksumming speed
   8regs     :  1900.000 MB/sec
   8regs_prefetch:  2396.000 MB/sec
   32regs    :  1652.000 MB/sec
   32regs_prefetch:  1700.000 MB/sec
   pIII_sse  :  1904.000 MB/sec
   pII_mmx   :  4696.000 MB/sec
   p5_mmx    :  6252.000 MB/sec
raid5: using function: p5_mmx (6252.000 MB/sec)

and

raid5: automatically using best checksumming function: pIII_sse
   pIII_sse  :  2280.000 MB/sec
raid5: using function: pIII_sse (2280.000 MB/sec)

-- 
Josh Litherland <josh@emperorlinux.com>
Emperor Linux

[-- Attachment #2: xor-selection-good.diff --]
[-- Type: text/x-patch, Size: 1648 bytes --]

diff -drauN linux-2.6.7/drivers/md/xor.c linux-2.6.7.new/drivers/md/xor.c
--- linux-2.6.7/drivers/md/xor.c	2004-06-16 01:19:23.000000000 -0400
+++ linux-2.6.7.new/drivers/md/xor.c	2004-06-21 11:08:33.000000000 -0400
@@ -108,29 +108,40 @@
 	}
 	b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE;
 
-	printk(KERN_INFO "raid5: measuring checksumming speed\n");
+	/*
+	 * If this arch/cpu has a short-circuited selection, don't loop through all
+	 * the possible functions, just test the best one
+	 */
 
+	fastest = NULL;
+
+#ifdef XOR_SELECT_TEMPLATE
+		fastest = XOR_SELECT_TEMPLATE(fastest);
+#endif
+	
 #define xor_speed(templ)	do_xor_speed((templ), b1, b2)
 
-	XOR_TRY_TEMPLATES;
+	if (fastest) {
+		printk(KERN_INFO "raid5: automatically using best checksumming function: %s\n",
+			fastest->name);
+		xor_speed(fastest);
+	} else {
+		printk(KERN_INFO "raid5: measuring checksumming speed\n");
+		XOR_TRY_TEMPLATES;
+		fastest = template_list;
+		for (f = fastest; f; f = f->next) 
+			if (f->speed > fastest->speed)
+				fastest = f;
+	}
+
+	printk("raid5: using function: %s (%d.%03d MB/sec)\n",
+	       fastest->name, fastest->speed / 1000, fastest->speed % 1000);
 
 #undef xor_speed
 
 	free_pages((unsigned long)b1, 2);
 
-	fastest = template_list;
-	for (f = fastest; f; f = f->next)
-		if (f->speed > fastest->speed)
-			fastest = f;
-
-#ifdef XOR_SELECT_TEMPLATE
-	fastest = XOR_SELECT_TEMPLATE(fastest);
-#endif
-
 	active_template = fastest;
-	printk("raid5: using function: %s (%d.%03d MB/sec)\n",
-	       fastest->name, fastest->speed / 1000, fastest->speed % 1000);
-
 	return 0;
 }
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-06-21 15:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-21 15:26 [PATCH] XOR template selection redo Josh Litherland

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