[Oracleasm-commits] jlbec commits r284 - branches/extended/kernel

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Thu Feb 24 17:02:30 CST 2005


Author: jlbec
Date: 2005-02-24 17:02:28 -0600 (Thu, 24 Feb 2005)
New Revision: 284

Modified:
   branches/extended/kernel/oracleasm.c
Log:

o Make PRIORITY_REQUEST_OPTION_NAME be the name for priorities, duh.
o ro = ro->o_next;  Super duh.



Modified: branches/extended/kernel/oracleasm.c
===================================================================
--- branches/extended/kernel/oracleasm.c	2005-02-23 19:58:34 UTC (rev 283)
+++ branches/extended/kernel/oracleasm.c	2005-02-24 23:02:28 UTC (rev 284)
@@ -767,12 +767,13 @@
 		bdev_get_queue(bdev)->supported_options;
 
 	while (ro) {
-		if (!strcmp(ro->o_name, XOR_REQUEST_OPTION_NAME))
+		if (!strcmp(ro->o_name, PRIORITY_REQUEST_OPTION_NAME))
 			interface |= ASM_DISK_OPTION_PRIORITY;
 		else if (!strcmp(ro->o_name, XOR_REQUEST_OPTION_NAME))
 			interface |= ASM_DISK_OPTION_XOR;
 		else if (!strcmp(ro->o_name, ABS_REQUEST_OPTION_NAME))
 			interface |= ASM_DISK_OPTION_ABS;
+		ro = ro->o_next;
 	}
 
 	return interface;



More information about the Oracleasm-commits mailing list