@@ -483,6 +483,21 @@
# rr_min_io 1000
# path_checker tur
# }
+# device {
+# vendor "STK"
+# product "FLEXLINE 380"
+# product_blacklist "Universal Xport"
+# getuid_callout "/sbin/scsi_id -g -u -s /block/%n"
+# prio_callout "/sbin/mpath_prio_rdac /dev/%n"
+# features "0"
+# hardware_handler "1 rdac"
+# path_grouping_policy group_by_prio
+# failback immediate
+# rr_weight uniform
+# no_path_retry queue
+# rr_min_io 1000
+# path_checker rdac
+# }
# device {
# vendor "SUN"
# product "(StorEdge 3510|T4)"
@@ -698,6 +698,23 @@
.minio = DEFAULT_MINIO,
.checker_name = TUR,
},
+ {
+ /* SUN 6540 */
+ .vendor = "STK",
+ .product = "FLEXLINE 380",
+ .bl_product = "Universal Xport",
+ .getuid = DEFAULT_GETUID,
+ .getprio = "/sbin/mpath_prio_rdac /dev/%n",
+ .features = DEFAULT_FEATURES,
+ .hwhandler = "1 rdac",
+ .selector = DEFAULT_SELECTOR,
+ .pgpolicy = GROUP_BY_PRIO,
+ .pgfailback = -FAILBACK_IMMEDIATE,
+ .rr_weight = RR_WEIGHT_NONE,
+ .no_path_retry = NO_PATH_RETRY_QUEUE,
+ .minio = DEFAULT_MINIO,
+ .checker_name = RDAC,
+ },
/*
* SUN arrays
*
@@ -25,7 +25,7 @@
if (fdin < 0) {
if (errno == ENOENT)
- condlog(3, "callout %s does not exist, ignoring");
+ condlog(3, "callout %s does not exist, ignoring", src);
else
condlog(0, "[copy.c] cannot open %s", src);
return -1;
@@ -1339,7 +1339,7 @@
vector_foreach_slot (conf->binvec, bin,i) {
if ((fd = open(bin, O_RDONLY)) < 0) {
if (errno == ENOENT)
- condlog(3, "callout %s does not exist, ignoring");
+ condlog(3, "callout %s does not exist, ignoring", bin);
else
condlog(0, "cannot open %s : %s", bin,
strerror(errno));