Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / md / dm-mpath-hp-sw.c
blob204bf42c94493575518bc72e3536ddc9b94c27de
1 /*
2 * Copyright (C) 2005 Mike Christie, All rights reserved.
3 * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
4 * Authors: Mike Christie
5 * Dave Wysochanski
7 * This file is released under the GPL.
9 * This module implements the specific path activation code for
10 * HP StorageWorks and FSC FibreCat Asymmetric (Active/Passive)
11 * storage arrays.
12 * These storage arrays have controller-based failover, not
13 * LUN-based failover. However, LUN-based failover is the design
14 * of dm-multipath. Thus, this module is written for LUN-based failover.
16 #include <linux/blkdev.h>
17 #include <linux/list.h>
18 #include <linux/types.h>
19 #include <scsi/scsi.h>
20 #include <scsi/scsi_cmnd.h>
21 #include <scsi/scsi_dbg.h>
23 #include "dm.h"
24 #include "dm-hw-handler.h"
26 #define DM_MSG_PREFIX "multipath hp-sw"
27 #define DM_HP_HWH_NAME "hp-sw"
28 #define DM_HP_HWH_VER "1.0.0"
30 struct hp_sw_context {
31 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
35 * hp_sw_error_is_retryable - Is an HP-specific check condition retryable?
36 * @req: path activation request
38 * Examine error codes of request and determine whether the error is retryable.
39 * Some error codes are already retried by scsi-ml (see
40 * scsi_decide_disposition), but some HP specific codes are not.
41 * The intent of this routine is to supply the logic for the HP specific
42 * check conditions.
44 * Returns:
45 * 1 - command completed with retryable error
46 * 0 - command completed with non-retryable error
48 * Possible optimizations
49 * 1. More hardware-specific error codes
51 static int hp_sw_error_is_retryable(struct request *req)
54 * NOT_READY is known to be retryable
55 * For now we just dump out the sense data and call it retryable
57 if (status_byte(req->errors) == CHECK_CONDITION)
58 __scsi_print_sense(DM_HP_HWH_NAME, req->sense, req->sense_len);
61 * At this point we don't have complete information about all the error
62 * codes from this hardware, so we are just conservative and retry
63 * when in doubt.
65 return 1;
69 * hp_sw_end_io - Completion handler for HP path activation.
70 * @req: path activation request
71 * @error: scsi-ml error
73 * Check sense data, free request structure, and notify dm that
74 * pg initialization has completed.
76 * Context: scsi-ml softirq
79 static void hp_sw_end_io(struct request *req, int error)
81 struct dm_path *path = req->end_io_data;
82 unsigned err_flags = 0;
84 if (!error) {
85 DMDEBUG("%s path activation command - success",
86 path->dev->name);
87 goto out;
90 if (hp_sw_error_is_retryable(req)) {
91 DMDEBUG("%s path activation command - retry",
92 path->dev->name);
93 err_flags = MP_RETRY;
94 goto out;
97 DMWARN("%s path activation fail - error=0x%x",
98 path->dev->name, error);
99 err_flags = MP_FAIL_PATH;
101 out:
102 req->end_io_data = NULL;
103 __blk_put_request(req->q, req);
104 dm_pg_init_complete(path, err_flags);
108 * hp_sw_get_request - Allocate an HP specific path activation request
109 * @path: path on which request will be sent (needed for request queue)
111 * The START command is used for path activation request.
112 * These arrays are controller-based failover, not LUN based.
113 * One START command issued to a single path will fail over all
114 * LUNs for the same controller.
116 * Possible optimizations
117 * 1. Make timeout configurable
118 * 2. Preallocate request
120 static struct request *hp_sw_get_request(struct dm_path *path)
122 struct request *req;
123 struct block_device *bdev = path->dev->bdev;
124 struct request_queue *q = bdev_get_queue(bdev);
125 struct hp_sw_context *h = path->hwhcontext;
127 req = blk_get_request(q, WRITE, GFP_NOIO);
128 if (!req)
129 goto out;
131 req->timeout = 60 * HZ;
133 req->errors = 0;
134 req->cmd_type = REQ_TYPE_BLOCK_PC;
135 req->cmd_flags |= REQ_FAILFAST | REQ_NOMERGE;
136 req->end_io_data = path;
137 req->sense = h->sense;
138 memset(req->sense, 0, SCSI_SENSE_BUFFERSIZE);
140 memset(&req->cmd, 0, BLK_MAX_CDB);
141 req->cmd[0] = START_STOP;
142 req->cmd[4] = 1;
143 req->cmd_len = COMMAND_SIZE(req->cmd[0]);
145 out:
146 return req;
150 * hp_sw_pg_init - HP path activation implementation.
151 * @hwh: hardware handler specific data
152 * @bypassed: unused; is the path group bypassed? (see dm-mpath.c)
153 * @path: path to send initialization command
155 * Send an HP-specific path activation command on 'path'.
156 * Do not try to optimize in any way, just send the activation command.
157 * More than one path activation command may be sent to the same controller.
158 * This seems to work fine for basic failover support.
160 * Possible optimizations
161 * 1. Detect an in-progress activation request and avoid submitting another one
162 * 2. Model the controller and only send a single activation request at a time
163 * 3. Determine the state of a path before sending an activation request
165 * Context: kmpathd (see process_queued_ios() in dm-mpath.c)
167 static void hp_sw_pg_init(struct hw_handler *hwh, unsigned bypassed,
168 struct dm_path *path)
170 struct request *req;
171 struct hp_sw_context *h;
173 path->hwhcontext = hwh->context;
174 h = hwh->context;
176 req = hp_sw_get_request(path);
177 if (!req) {
178 DMERR("%s path activation command - allocation fail",
179 path->dev->name);
180 goto retry;
183 DMDEBUG("%s path activation command - sent", path->dev->name);
185 blk_execute_rq_nowait(req->q, NULL, req, 1, hp_sw_end_io);
186 return;
188 retry:
189 dm_pg_init_complete(path, MP_RETRY);
192 static int hp_sw_create(struct hw_handler *hwh, unsigned argc, char **argv)
194 struct hp_sw_context *h;
196 h = kmalloc(sizeof(*h), GFP_KERNEL);
197 if (!h)
198 return -ENOMEM;
200 hwh->context = h;
202 return 0;
205 static void hp_sw_destroy(struct hw_handler *hwh)
207 struct hp_sw_context *h = hwh->context;
209 kfree(h);
212 static struct hw_handler_type hp_sw_hwh = {
213 .name = DM_HP_HWH_NAME,
214 .module = THIS_MODULE,
215 .create = hp_sw_create,
216 .destroy = hp_sw_destroy,
217 .pg_init = hp_sw_pg_init,
220 static int __init hp_sw_init(void)
222 int r;
224 r = dm_register_hw_handler(&hp_sw_hwh);
225 if (r < 0)
226 DMERR("register failed %d", r);
227 else
228 DMINFO("version " DM_HP_HWH_VER " loaded");
230 return r;
233 static void __exit hp_sw_exit(void)
235 int r;
237 r = dm_unregister_hw_handler(&hp_sw_hwh);
238 if (r < 0)
239 DMERR("unregister failed %d", r);
242 module_init(hp_sw_init);
243 module_exit(hp_sw_exit);
245 MODULE_DESCRIPTION("DM Multipath HP StorageWorks / FSC FibreCat (A/P) support");
246 MODULE_AUTHOR("Mike Christie, Dave Wysochanski <dm-devel@redhat.com>");
247 MODULE_LICENSE("GPL");
248 MODULE_VERSION(DM_HP_HWH_VER);