[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH 2/2] multipath-tools: report different piority value for rdac if io-shipping is enabled
- From: "Moger, Babu" <Babu Moger lsi com>
- To: device-mapper development <dm-devel redhat com>
- Cc: "Krishnasamy, Somasundaram" <Somasundaram Krishnasamy lsi com>, "Stankey, Robert" <Robert Stankey lsi com>
- Subject: [dm-devel] [PATCH 2/2] multipath-tools: report different piority value for rdac if io-shipping is enabled
- Date: Fri, 8 Apr 2011 13:06:15 -0600
This patch adds code to report different priority value if the storage is configured with io-shipping.
It sets the bit 3 if io-shipping is enabled. This is to differentiate between different modes.
Signed-off-by: Babu Moger <babu moger lsi com>
Reviewed-by : Yanling Qi <yanling qi lsi com>
Reviewed-by : Somasundaram Krishnasamy <Somasundaram Krishnasamy lsi com>
---
--- multipath-tools/libmultipath/prioritizers/rdac.c.orig 2011-04-01 17:06:25.000000000 -0500
+++ multipath-tools/libmultipath/prioritizers/rdac.c 2011-04-01 17:30:27.000000000 -0500
@@ -81,6 +81,10 @@ int rdac_prio(const char *dev, int fd)
break;
}
+ /* For ioship mode set the bit 3 (00001000) */
+ if ((sense_buffer[8] >> 5) & 0x01)
+ ret |= 0x08;
+
out:
return(ret);
}
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]