Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 1 | /* |
| 2 | * PAV alias management for the DASD ECKD discipline |
| 3 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 2007 |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 5 | * Author(s): Stefan Weinhuber <wein@de.ibm.com> |
| 6 | */ |
| 7 | |
Stefan Haberland | ca99dab | 2009-09-11 10:28:30 +0200 | [diff] [blame] | 8 | #define KMSG_COMPONENT "dasd-eckd" |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 9 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 10 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 12 | #include <asm/ebcdic.h> |
| 13 | #include "dasd_int.h" |
| 14 | #include "dasd_eckd.h" |
| 15 | |
| 16 | #ifdef PRINTK_HEADER |
| 17 | #undef PRINTK_HEADER |
| 18 | #endif /* PRINTK_HEADER */ |
| 19 | #define PRINTK_HEADER "dasd(eckd):" |
| 20 | |
| 21 | |
| 22 | /* |
| 23 | * General concept of alias management: |
| 24 | * - PAV and DASD alias management is specific to the eckd discipline. |
| 25 | * - A device is connected to an lcu as long as the device exists. |
| 26 | * dasd_alias_make_device_known_to_lcu will be called wenn the |
| 27 | * device is checked by the eckd discipline and |
| 28 | * dasd_alias_disconnect_device_from_lcu will be called |
| 29 | * before the device is deleted. |
| 30 | * - The dasd_alias_add_device / dasd_alias_remove_device |
| 31 | * functions mark the point when a device is 'ready for service'. |
| 32 | * - A summary unit check is a rare occasion, but it is mandatory to |
| 33 | * support it. It requires some complex recovery actions before the |
| 34 | * devices can be used again (see dasd_alias_handle_summary_unit_check). |
| 35 | * - dasd_alias_get_start_dev will find an alias device that can be used |
| 36 | * instead of the base device and does some (very simple) load balancing. |
| 37 | * This is the function that gets called for each I/O, so when improving |
| 38 | * something, this function should get faster or better, the rest has just |
| 39 | * to be correct. |
| 40 | */ |
| 41 | |
| 42 | |
| 43 | static void summary_unit_check_handling_work(struct work_struct *); |
| 44 | static void lcu_update_work(struct work_struct *); |
| 45 | static int _schedule_lcu_update(struct alias_lcu *, struct dasd_device *); |
| 46 | |
| 47 | static struct alias_root aliastree = { |
| 48 | .serverlist = LIST_HEAD_INIT(aliastree.serverlist), |
| 49 | .lock = __SPIN_LOCK_UNLOCKED(aliastree.lock), |
| 50 | }; |
| 51 | |
| 52 | static struct alias_server *_find_server(struct dasd_uid *uid) |
| 53 | { |
| 54 | struct alias_server *pos; |
| 55 | list_for_each_entry(pos, &aliastree.serverlist, server) { |
| 56 | if (!strncmp(pos->uid.vendor, uid->vendor, |
| 57 | sizeof(uid->vendor)) |
| 58 | && !strncmp(pos->uid.serial, uid->serial, |
| 59 | sizeof(uid->serial))) |
| 60 | return pos; |
Peter Senna Tschudin | 3b97487 | 2015-08-04 17:11:15 +0200 | [diff] [blame] | 61 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 62 | return NULL; |
| 63 | } |
| 64 | |
| 65 | static struct alias_lcu *_find_lcu(struct alias_server *server, |
| 66 | struct dasd_uid *uid) |
| 67 | { |
| 68 | struct alias_lcu *pos; |
| 69 | list_for_each_entry(pos, &server->lculist, lcu) { |
| 70 | if (pos->uid.ssid == uid->ssid) |
| 71 | return pos; |
Peter Senna Tschudin | 3b97487 | 2015-08-04 17:11:15 +0200 | [diff] [blame] | 72 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 73 | return NULL; |
| 74 | } |
| 75 | |
| 76 | static struct alias_pav_group *_find_group(struct alias_lcu *lcu, |
| 77 | struct dasd_uid *uid) |
| 78 | { |
| 79 | struct alias_pav_group *pos; |
| 80 | __u8 search_unit_addr; |
| 81 | |
| 82 | /* for hyper pav there is only one group */ |
| 83 | if (lcu->pav == HYPER_PAV) { |
| 84 | if (list_empty(&lcu->grouplist)) |
| 85 | return NULL; |
| 86 | else |
| 87 | return list_first_entry(&lcu->grouplist, |
| 88 | struct alias_pav_group, group); |
| 89 | } |
| 90 | |
| 91 | /* for base pav we have to find the group that matches the base */ |
| 92 | if (uid->type == UA_BASE_DEVICE) |
| 93 | search_unit_addr = uid->real_unit_addr; |
| 94 | else |
| 95 | search_unit_addr = uid->base_unit_addr; |
| 96 | list_for_each_entry(pos, &lcu->grouplist, group) { |
Stefan Weinhuber | 4abb08c | 2008-08-01 16:39:09 +0200 | [diff] [blame] | 97 | if (pos->uid.base_unit_addr == search_unit_addr && |
| 98 | !strncmp(pos->uid.vduit, uid->vduit, sizeof(uid->vduit))) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 99 | return pos; |
Peter Senna Tschudin | 3b97487 | 2015-08-04 17:11:15 +0200 | [diff] [blame] | 100 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 101 | return NULL; |
| 102 | } |
| 103 | |
| 104 | static struct alias_server *_allocate_server(struct dasd_uid *uid) |
| 105 | { |
| 106 | struct alias_server *server; |
| 107 | |
| 108 | server = kzalloc(sizeof(*server), GFP_KERNEL); |
| 109 | if (!server) |
| 110 | return ERR_PTR(-ENOMEM); |
| 111 | memcpy(server->uid.vendor, uid->vendor, sizeof(uid->vendor)); |
| 112 | memcpy(server->uid.serial, uid->serial, sizeof(uid->serial)); |
| 113 | INIT_LIST_HEAD(&server->server); |
| 114 | INIT_LIST_HEAD(&server->lculist); |
| 115 | return server; |
| 116 | } |
| 117 | |
| 118 | static void _free_server(struct alias_server *server) |
| 119 | { |
| 120 | kfree(server); |
| 121 | } |
| 122 | |
| 123 | static struct alias_lcu *_allocate_lcu(struct dasd_uid *uid) |
| 124 | { |
| 125 | struct alias_lcu *lcu; |
| 126 | |
| 127 | lcu = kzalloc(sizeof(*lcu), GFP_KERNEL); |
| 128 | if (!lcu) |
| 129 | return ERR_PTR(-ENOMEM); |
| 130 | lcu->uac = kzalloc(sizeof(*(lcu->uac)), GFP_KERNEL | GFP_DMA); |
| 131 | if (!lcu->uac) |
| 132 | goto out_err1; |
| 133 | lcu->rsu_cqr = kzalloc(sizeof(*lcu->rsu_cqr), GFP_KERNEL | GFP_DMA); |
| 134 | if (!lcu->rsu_cqr) |
| 135 | goto out_err2; |
| 136 | lcu->rsu_cqr->cpaddr = kzalloc(sizeof(struct ccw1), |
| 137 | GFP_KERNEL | GFP_DMA); |
| 138 | if (!lcu->rsu_cqr->cpaddr) |
| 139 | goto out_err3; |
| 140 | lcu->rsu_cqr->data = kzalloc(16, GFP_KERNEL | GFP_DMA); |
| 141 | if (!lcu->rsu_cqr->data) |
| 142 | goto out_err4; |
| 143 | |
| 144 | memcpy(lcu->uid.vendor, uid->vendor, sizeof(uid->vendor)); |
| 145 | memcpy(lcu->uid.serial, uid->serial, sizeof(uid->serial)); |
| 146 | lcu->uid.ssid = uid->ssid; |
| 147 | lcu->pav = NO_PAV; |
| 148 | lcu->flags = NEED_UAC_UPDATE | UPDATE_PENDING; |
| 149 | INIT_LIST_HEAD(&lcu->lcu); |
| 150 | INIT_LIST_HEAD(&lcu->inactive_devices); |
| 151 | INIT_LIST_HEAD(&lcu->active_devices); |
| 152 | INIT_LIST_HEAD(&lcu->grouplist); |
| 153 | INIT_WORK(&lcu->suc_data.worker, summary_unit_check_handling_work); |
| 154 | INIT_DELAYED_WORK(&lcu->ruac_data.dwork, lcu_update_work); |
| 155 | spin_lock_init(&lcu->lock); |
Stefan Weinhuber | f4ac1d0 | 2009-12-07 12:51:53 +0100 | [diff] [blame] | 156 | init_completion(&lcu->lcu_setup); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 157 | return lcu; |
| 158 | |
| 159 | out_err4: |
| 160 | kfree(lcu->rsu_cqr->cpaddr); |
| 161 | out_err3: |
| 162 | kfree(lcu->rsu_cqr); |
| 163 | out_err2: |
| 164 | kfree(lcu->uac); |
| 165 | out_err1: |
| 166 | kfree(lcu); |
| 167 | return ERR_PTR(-ENOMEM); |
| 168 | } |
| 169 | |
| 170 | static void _free_lcu(struct alias_lcu *lcu) |
| 171 | { |
| 172 | kfree(lcu->rsu_cqr->data); |
| 173 | kfree(lcu->rsu_cqr->cpaddr); |
| 174 | kfree(lcu->rsu_cqr); |
| 175 | kfree(lcu->uac); |
| 176 | kfree(lcu); |
| 177 | } |
| 178 | |
| 179 | /* |
| 180 | * This is the function that will allocate all the server and lcu data, |
| 181 | * so this function must be called first for a new device. |
| 182 | * If the return value is 1, the lcu was already known before, if it |
| 183 | * is 0, this is a new lcu. |
| 184 | * Negative return code indicates that something went wrong (e.g. -ENOMEM) |
| 185 | */ |
| 186 | int dasd_alias_make_device_known_to_lcu(struct dasd_device *device) |
| 187 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 188 | struct dasd_eckd_private *private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 189 | unsigned long flags; |
| 190 | struct alias_server *server, *newserver; |
| 191 | struct alias_lcu *lcu, *newlcu; |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 192 | struct dasd_uid uid; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 193 | |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 194 | device->discipline->get_uid(device, &uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 195 | spin_lock_irqsave(&aliastree.lock, flags); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 196 | server = _find_server(&uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 197 | if (!server) { |
| 198 | spin_unlock_irqrestore(&aliastree.lock, flags); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 199 | newserver = _allocate_server(&uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 200 | if (IS_ERR(newserver)) |
| 201 | return PTR_ERR(newserver); |
| 202 | spin_lock_irqsave(&aliastree.lock, flags); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 203 | server = _find_server(&uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 204 | if (!server) { |
| 205 | list_add(&newserver->server, &aliastree.serverlist); |
| 206 | server = newserver; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 207 | } else { |
| 208 | /* someone was faster */ |
| 209 | _free_server(newserver); |
| 210 | } |
| 211 | } |
| 212 | |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 213 | lcu = _find_lcu(server, &uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 214 | if (!lcu) { |
| 215 | spin_unlock_irqrestore(&aliastree.lock, flags); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 216 | newlcu = _allocate_lcu(&uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 217 | if (IS_ERR(newlcu)) |
Roel Kluin | 6d53cfe | 2009-12-18 17:43:17 +0100 | [diff] [blame] | 218 | return PTR_ERR(newlcu); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 219 | spin_lock_irqsave(&aliastree.lock, flags); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 220 | lcu = _find_lcu(server, &uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 221 | if (!lcu) { |
| 222 | list_add(&newlcu->lcu, &server->lculist); |
| 223 | lcu = newlcu; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 224 | } else { |
| 225 | /* someone was faster */ |
| 226 | _free_lcu(newlcu); |
| 227 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 228 | } |
| 229 | spin_lock(&lcu->lock); |
| 230 | list_add(&device->alias_list, &lcu->inactive_devices); |
| 231 | private->lcu = lcu; |
| 232 | spin_unlock(&lcu->lock); |
| 233 | spin_unlock_irqrestore(&aliastree.lock, flags); |
| 234 | |
Stefan Haberland | f9f8d02 | 2012-01-18 18:03:40 +0100 | [diff] [blame] | 235 | return 0; |
Stefan Weinhuber | f4ac1d0 | 2009-12-07 12:51:53 +0100 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 239 | * This function removes a device from the scope of alias management. |
| 240 | * The complicated part is to make sure that it is not in use by |
| 241 | * any of the workers. If necessary cancel the work. |
| 242 | */ |
| 243 | void dasd_alias_disconnect_device_from_lcu(struct dasd_device *device) |
| 244 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 245 | struct dasd_eckd_private *private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 246 | unsigned long flags; |
| 247 | struct alias_lcu *lcu; |
| 248 | struct alias_server *server; |
| 249 | int was_pending; |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 250 | struct dasd_uid uid; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 251 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 252 | lcu = private->lcu; |
Stefan Haberland | f602f6d6 | 2011-01-31 11:30:03 +0100 | [diff] [blame] | 253 | /* nothing to do if already disconnected */ |
| 254 | if (!lcu) |
| 255 | return; |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 256 | device->discipline->get_uid(device, &uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 257 | spin_lock_irqsave(&lcu->lock, flags); |
| 258 | list_del_init(&device->alias_list); |
| 259 | /* make sure that the workers don't use this device */ |
| 260 | if (device == lcu->suc_data.device) { |
| 261 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 262 | cancel_work_sync(&lcu->suc_data.worker); |
| 263 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 264 | if (device == lcu->suc_data.device) { |
| 265 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 266 | lcu->suc_data.device = NULL; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 267 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 268 | } |
| 269 | was_pending = 0; |
| 270 | if (device == lcu->ruac_data.device) { |
| 271 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 272 | was_pending = 1; |
| 273 | cancel_delayed_work_sync(&lcu->ruac_data.dwork); |
| 274 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 275 | if (device == lcu->ruac_data.device) { |
| 276 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 277 | lcu->ruac_data.device = NULL; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 278 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 279 | } |
| 280 | private->lcu = NULL; |
| 281 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 282 | |
| 283 | spin_lock_irqsave(&aliastree.lock, flags); |
| 284 | spin_lock(&lcu->lock); |
| 285 | if (list_empty(&lcu->grouplist) && |
| 286 | list_empty(&lcu->active_devices) && |
| 287 | list_empty(&lcu->inactive_devices)) { |
| 288 | list_del(&lcu->lcu); |
| 289 | spin_unlock(&lcu->lock); |
| 290 | _free_lcu(lcu); |
| 291 | lcu = NULL; |
| 292 | } else { |
| 293 | if (was_pending) |
| 294 | _schedule_lcu_update(lcu, NULL); |
| 295 | spin_unlock(&lcu->lock); |
| 296 | } |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 297 | server = _find_server(&uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 298 | if (server && list_empty(&server->lculist)) { |
| 299 | list_del(&server->server); |
| 300 | _free_server(server); |
| 301 | } |
| 302 | spin_unlock_irqrestore(&aliastree.lock, flags); |
| 303 | } |
| 304 | |
| 305 | /* |
| 306 | * This function assumes that the unit address configuration stored |
| 307 | * in the lcu is up to date and will update the device uid before |
| 308 | * adding it to a pav group. |
| 309 | */ |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 310 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 311 | static int _add_device_to_lcu(struct alias_lcu *lcu, |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 312 | struct dasd_device *device, |
| 313 | struct dasd_device *pos) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 314 | { |
| 315 | |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 316 | struct dasd_eckd_private *private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 317 | struct alias_pav_group *group; |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 318 | struct dasd_uid uid; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 319 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 320 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 321 | private->uid.type = lcu->uac->unit[private->uid.real_unit_addr].ua_type; |
| 322 | private->uid.base_unit_addr = |
| 323 | lcu->uac->unit[private->uid.real_unit_addr].base_ua; |
| 324 | uid = private->uid; |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 325 | spin_unlock(get_ccwdev_lock(device->cdev)); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 326 | /* if we have no PAV anyway, we don't need to bother with PAV groups */ |
| 327 | if (lcu->pav == NO_PAV) { |
| 328 | list_move(&device->alias_list, &lcu->active_devices); |
| 329 | return 0; |
| 330 | } |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 331 | group = _find_group(lcu, &uid); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 332 | if (!group) { |
| 333 | group = kzalloc(sizeof(*group), GFP_ATOMIC); |
| 334 | if (!group) |
| 335 | return -ENOMEM; |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 336 | memcpy(group->uid.vendor, uid.vendor, sizeof(uid.vendor)); |
| 337 | memcpy(group->uid.serial, uid.serial, sizeof(uid.serial)); |
| 338 | group->uid.ssid = uid.ssid; |
| 339 | if (uid.type == UA_BASE_DEVICE) |
| 340 | group->uid.base_unit_addr = uid.real_unit_addr; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 341 | else |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 342 | group->uid.base_unit_addr = uid.base_unit_addr; |
| 343 | memcpy(group->uid.vduit, uid.vduit, sizeof(uid.vduit)); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 344 | INIT_LIST_HEAD(&group->group); |
| 345 | INIT_LIST_HEAD(&group->baselist); |
| 346 | INIT_LIST_HEAD(&group->aliaslist); |
| 347 | list_add(&group->group, &lcu->grouplist); |
| 348 | } |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 349 | if (uid.type == UA_BASE_DEVICE) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 350 | list_move(&device->alias_list, &group->baselist); |
| 351 | else |
| 352 | list_move(&device->alias_list, &group->aliaslist); |
| 353 | private->pavgroup = group; |
| 354 | return 0; |
| 355 | }; |
| 356 | |
| 357 | static void _remove_device_from_lcu(struct alias_lcu *lcu, |
| 358 | struct dasd_device *device) |
| 359 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 360 | struct dasd_eckd_private *private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 361 | struct alias_pav_group *group; |
| 362 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 363 | list_move(&device->alias_list, &lcu->inactive_devices); |
| 364 | group = private->pavgroup; |
| 365 | if (!group) |
| 366 | return; |
| 367 | private->pavgroup = NULL; |
| 368 | if (list_empty(&group->baselist) && list_empty(&group->aliaslist)) { |
| 369 | list_del(&group->group); |
| 370 | kfree(group); |
| 371 | return; |
| 372 | } |
| 373 | if (group->next == device) |
| 374 | group->next = NULL; |
| 375 | }; |
| 376 | |
Stefan Haberland | 03429f3 | 2012-09-11 17:19:12 +0200 | [diff] [blame] | 377 | static int |
| 378 | suborder_not_supported(struct dasd_ccw_req *cqr) |
| 379 | { |
| 380 | char *sense; |
| 381 | char reason; |
| 382 | char msg_format; |
| 383 | char msg_no; |
| 384 | |
| 385 | sense = dasd_get_sense(&cqr->irb); |
| 386 | if (!sense) |
| 387 | return 0; |
| 388 | |
| 389 | reason = sense[0]; |
| 390 | msg_format = (sense[7] & 0xF0); |
| 391 | msg_no = (sense[7] & 0x0F); |
| 392 | |
| 393 | /* command reject, Format 0 MSG 4 - invalid parameter */ |
| 394 | if ((reason == 0x80) && (msg_format == 0x00) && (msg_no == 0x04)) |
| 395 | return 1; |
| 396 | |
| 397 | return 0; |
| 398 | } |
| 399 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 400 | static int read_unit_address_configuration(struct dasd_device *device, |
| 401 | struct alias_lcu *lcu) |
| 402 | { |
| 403 | struct dasd_psf_prssd_data *prssdp; |
| 404 | struct dasd_ccw_req *cqr; |
| 405 | struct ccw1 *ccw; |
| 406 | int rc; |
| 407 | unsigned long flags; |
| 408 | |
Stefan Haberland | 68b781f | 2009-09-11 10:28:29 +0200 | [diff] [blame] | 409 | cqr = dasd_kmalloc_request(DASD_ECKD_MAGIC, 1 /* PSF */ + 1 /* RSSD */, |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 410 | (sizeof(struct dasd_psf_prssd_data)), |
| 411 | device); |
| 412 | if (IS_ERR(cqr)) |
| 413 | return PTR_ERR(cqr); |
| 414 | cqr->startdev = device; |
| 415 | cqr->memdev = device; |
| 416 | clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags); |
| 417 | cqr->retries = 10; |
| 418 | cqr->expires = 20 * HZ; |
| 419 | |
| 420 | /* Prepare for Read Subsystem Data */ |
| 421 | prssdp = (struct dasd_psf_prssd_data *) cqr->data; |
| 422 | memset(prssdp, 0, sizeof(struct dasd_psf_prssd_data)); |
| 423 | prssdp->order = PSF_ORDER_PRSSD; |
| 424 | prssdp->suborder = 0x0e; /* Read unit address configuration */ |
| 425 | /* all other bytes of prssdp must be zero */ |
| 426 | |
| 427 | ccw = cqr->cpaddr; |
| 428 | ccw->cmd_code = DASD_ECKD_CCW_PSF; |
| 429 | ccw->count = sizeof(struct dasd_psf_prssd_data); |
| 430 | ccw->flags |= CCW_FLAG_CC; |
| 431 | ccw->cda = (__u32)(addr_t) prssdp; |
| 432 | |
| 433 | /* Read Subsystem Data - feature codes */ |
| 434 | memset(lcu->uac, 0, sizeof(*(lcu->uac))); |
| 435 | |
| 436 | ccw++; |
| 437 | ccw->cmd_code = DASD_ECKD_CCW_RSSD; |
| 438 | ccw->count = sizeof(*(lcu->uac)); |
| 439 | ccw->cda = (__u32)(addr_t) lcu->uac; |
| 440 | |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 441 | cqr->buildclk = get_tod_clock(); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 442 | cqr->status = DASD_CQR_FILLED; |
| 443 | |
| 444 | /* need to unset flag here to detect race with summary unit check */ |
| 445 | spin_lock_irqsave(&lcu->lock, flags); |
| 446 | lcu->flags &= ~NEED_UAC_UPDATE; |
| 447 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 448 | |
| 449 | do { |
| 450 | rc = dasd_sleep_on(cqr); |
Stefan Haberland | 03429f3 | 2012-09-11 17:19:12 +0200 | [diff] [blame] | 451 | if (rc && suborder_not_supported(cqr)) |
| 452 | return -EOPNOTSUPP; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 453 | } while (rc && (cqr->retries > 0)); |
| 454 | if (rc) { |
| 455 | spin_lock_irqsave(&lcu->lock, flags); |
| 456 | lcu->flags |= NEED_UAC_UPDATE; |
| 457 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 458 | } |
| 459 | dasd_kfree_request(cqr, cqr->memdev); |
| 460 | return rc; |
| 461 | } |
| 462 | |
| 463 | static int _lcu_update(struct dasd_device *refdev, struct alias_lcu *lcu) |
| 464 | { |
| 465 | unsigned long flags; |
| 466 | struct alias_pav_group *pavgroup, *tempgroup; |
| 467 | struct dasd_device *device, *tempdev; |
| 468 | int i, rc; |
| 469 | struct dasd_eckd_private *private; |
| 470 | |
| 471 | spin_lock_irqsave(&lcu->lock, flags); |
| 472 | list_for_each_entry_safe(pavgroup, tempgroup, &lcu->grouplist, group) { |
| 473 | list_for_each_entry_safe(device, tempdev, &pavgroup->baselist, |
| 474 | alias_list) { |
| 475 | list_move(&device->alias_list, &lcu->active_devices); |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 476 | private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 477 | private->pavgroup = NULL; |
| 478 | } |
| 479 | list_for_each_entry_safe(device, tempdev, &pavgroup->aliaslist, |
| 480 | alias_list) { |
| 481 | list_move(&device->alias_list, &lcu->active_devices); |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 482 | private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 483 | private->pavgroup = NULL; |
| 484 | } |
| 485 | list_del(&pavgroup->group); |
| 486 | kfree(pavgroup); |
| 487 | } |
| 488 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 489 | |
| 490 | rc = read_unit_address_configuration(refdev, lcu); |
| 491 | if (rc) |
| 492 | return rc; |
| 493 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 494 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 495 | lcu->pav = NO_PAV; |
| 496 | for (i = 0; i < MAX_DEVICES_PER_LCU; ++i) { |
| 497 | switch (lcu->uac->unit[i].ua_type) { |
| 498 | case UA_BASE_PAV_ALIAS: |
| 499 | lcu->pav = BASE_PAV; |
| 500 | break; |
| 501 | case UA_HYPER_PAV_ALIAS: |
| 502 | lcu->pav = HYPER_PAV; |
| 503 | break; |
| 504 | } |
| 505 | if (lcu->pav != NO_PAV) |
| 506 | break; |
| 507 | } |
| 508 | |
| 509 | list_for_each_entry_safe(device, tempdev, &lcu->active_devices, |
| 510 | alias_list) { |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 511 | _add_device_to_lcu(lcu, device, refdev); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 512 | } |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 513 | spin_unlock_irqrestore(&lcu->lock, flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 514 | return 0; |
| 515 | } |
| 516 | |
| 517 | static void lcu_update_work(struct work_struct *work) |
| 518 | { |
| 519 | struct alias_lcu *lcu; |
| 520 | struct read_uac_work_data *ruac_data; |
| 521 | struct dasd_device *device; |
| 522 | unsigned long flags; |
| 523 | int rc; |
| 524 | |
| 525 | ruac_data = container_of(work, struct read_uac_work_data, dwork.work); |
| 526 | lcu = container_of(ruac_data, struct alias_lcu, ruac_data); |
| 527 | device = ruac_data->device; |
| 528 | rc = _lcu_update(device, lcu); |
| 529 | /* |
| 530 | * Need to check flags again, as there could have been another |
| 531 | * prepare_update or a new device a new device while we were still |
| 532 | * processing the data |
| 533 | */ |
| 534 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Haberland | 03429f3 | 2012-09-11 17:19:12 +0200 | [diff] [blame] | 535 | if ((rc && (rc != -EOPNOTSUPP)) || (lcu->flags & NEED_UAC_UPDATE)) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 536 | DBF_DEV_EVENT(DBF_WARNING, device, "could not update" |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 537 | " alias data in lcu (rc = %d), retry later", rc); |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 538 | if (!schedule_delayed_work(&lcu->ruac_data.dwork, 30*HZ)) |
| 539 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 540 | } else { |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 541 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 542 | lcu->ruac_data.device = NULL; |
| 543 | lcu->flags &= ~UPDATE_PENDING; |
| 544 | } |
| 545 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 546 | } |
| 547 | |
| 548 | static int _schedule_lcu_update(struct alias_lcu *lcu, |
| 549 | struct dasd_device *device) |
| 550 | { |
| 551 | struct dasd_device *usedev = NULL; |
| 552 | struct alias_pav_group *group; |
| 553 | |
| 554 | lcu->flags |= NEED_UAC_UPDATE; |
| 555 | if (lcu->ruac_data.device) { |
| 556 | /* already scheduled or running */ |
| 557 | return 0; |
| 558 | } |
| 559 | if (device && !list_empty(&device->alias_list)) |
| 560 | usedev = device; |
| 561 | |
| 562 | if (!usedev && !list_empty(&lcu->grouplist)) { |
| 563 | group = list_first_entry(&lcu->grouplist, |
| 564 | struct alias_pav_group, group); |
| 565 | if (!list_empty(&group->baselist)) |
| 566 | usedev = list_first_entry(&group->baselist, |
| 567 | struct dasd_device, |
| 568 | alias_list); |
| 569 | else if (!list_empty(&group->aliaslist)) |
| 570 | usedev = list_first_entry(&group->aliaslist, |
| 571 | struct dasd_device, |
| 572 | alias_list); |
| 573 | } |
| 574 | if (!usedev && !list_empty(&lcu->active_devices)) { |
| 575 | usedev = list_first_entry(&lcu->active_devices, |
| 576 | struct dasd_device, alias_list); |
| 577 | } |
| 578 | /* |
| 579 | * if we haven't found a proper device yet, give up for now, the next |
| 580 | * device that will be set active will trigger an lcu update |
| 581 | */ |
| 582 | if (!usedev) |
| 583 | return -EINVAL; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 584 | dasd_get_device(usedev); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 585 | lcu->ruac_data.device = usedev; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 586 | if (!schedule_delayed_work(&lcu->ruac_data.dwork, 0)) |
| 587 | dasd_put_device(usedev); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | int dasd_alias_add_device(struct dasd_device *device) |
| 592 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 593 | struct dasd_eckd_private *private = device->private; |
Stefan Haberland | a714a5f | 2018-04-12 13:38:22 +0200 | [diff] [blame] | 594 | __u8 uaddr = private->uid.real_unit_addr; |
| 595 | struct alias_lcu *lcu = private->lcu; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 596 | unsigned long flags; |
| 597 | int rc; |
| 598 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 599 | rc = 0; |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 600 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Haberland | a714a5f | 2018-04-12 13:38:22 +0200 | [diff] [blame] | 601 | /* |
| 602 | * Check if device and lcu type differ. If so, the uac data may be |
| 603 | * outdated and needs to be updated. |
| 604 | */ |
| 605 | if (private->uid.type != lcu->uac->unit[uaddr].ua_type) { |
| 606 | lcu->flags |= UPDATE_PENDING; |
| 607 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
| 608 | "uid type mismatch - trigger rescan"); |
| 609 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 610 | if (!(lcu->flags & UPDATE_PENDING)) { |
Stefan Haberland | 2dedf0d | 2010-05-17 10:00:11 +0200 | [diff] [blame] | 611 | rc = _add_device_to_lcu(lcu, device, device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 612 | if (rc) |
| 613 | lcu->flags |= UPDATE_PENDING; |
| 614 | } |
| 615 | if (lcu->flags & UPDATE_PENDING) { |
| 616 | list_move(&device->alias_list, &lcu->active_devices); |
| 617 | _schedule_lcu_update(lcu, device); |
| 618 | } |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 619 | spin_unlock_irqrestore(&lcu->lock, flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 620 | return rc; |
| 621 | } |
| 622 | |
Stefan Haberland | 501183f | 2010-05-17 10:00:10 +0200 | [diff] [blame] | 623 | int dasd_alias_update_add_device(struct dasd_device *device) |
| 624 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 625 | struct dasd_eckd_private *private = device->private; |
| 626 | |
Stefan Haberland | 501183f | 2010-05-17 10:00:10 +0200 | [diff] [blame] | 627 | private->lcu->flags |= UPDATE_PENDING; |
| 628 | return dasd_alias_add_device(device); |
| 629 | } |
| 630 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 631 | int dasd_alias_remove_device(struct dasd_device *device) |
| 632 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 633 | struct dasd_eckd_private *private = device->private; |
| 634 | struct alias_lcu *lcu = private->lcu; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 635 | unsigned long flags; |
| 636 | |
Stefan Haberland | f602f6d6 | 2011-01-31 11:30:03 +0100 | [diff] [blame] | 637 | /* nothing to do if already removed */ |
| 638 | if (!lcu) |
| 639 | return 0; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 640 | spin_lock_irqsave(&lcu->lock, flags); |
| 641 | _remove_device_from_lcu(lcu, device); |
| 642 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 643 | return 0; |
| 644 | } |
| 645 | |
| 646 | struct dasd_device *dasd_alias_get_start_dev(struct dasd_device *base_device) |
| 647 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 648 | struct dasd_eckd_private *alias_priv, *private = base_device->private; |
| 649 | struct alias_pav_group *group = private->pavgroup; |
| 650 | struct alias_lcu *lcu = private->lcu; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 651 | struct dasd_device *alias_device; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 652 | unsigned long flags; |
| 653 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 654 | if (!group || !lcu) |
| 655 | return NULL; |
| 656 | if (lcu->pav == NO_PAV || |
| 657 | lcu->flags & (NEED_UAC_UPDATE | UPDATE_PENDING)) |
| 658 | return NULL; |
Stefan Haberland | b38f27e | 2011-12-27 11:27:28 +0100 | [diff] [blame] | 659 | if (unlikely(!(private->features.feature[8] & 0x01))) { |
| 660 | /* |
| 661 | * PAV enabled but prefix not, very unlikely |
| 662 | * seems to be a lost pathgroup |
| 663 | * use base device to do IO |
| 664 | */ |
| 665 | DBF_DEV_EVENT(DBF_ERR, base_device, "%s", |
| 666 | "Prefix not enabled with PAV enabled\n"); |
| 667 | return NULL; |
| 668 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 669 | |
| 670 | spin_lock_irqsave(&lcu->lock, flags); |
| 671 | alias_device = group->next; |
| 672 | if (!alias_device) { |
| 673 | if (list_empty(&group->aliaslist)) { |
| 674 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 675 | return NULL; |
| 676 | } else { |
| 677 | alias_device = list_first_entry(&group->aliaslist, |
| 678 | struct dasd_device, |
| 679 | alias_list); |
| 680 | } |
| 681 | } |
| 682 | if (list_is_last(&alias_device->alias_list, &group->aliaslist)) |
| 683 | group->next = list_first_entry(&group->aliaslist, |
| 684 | struct dasd_device, alias_list); |
| 685 | else |
| 686 | group->next = list_first_entry(&alias_device->alias_list, |
| 687 | struct dasd_device, alias_list); |
| 688 | spin_unlock_irqrestore(&lcu->lock, flags); |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 689 | alias_priv = alias_device->private; |
Stefan Haberland | f81a49d | 2015-07-10 10:47:09 +0200 | [diff] [blame] | 690 | if ((alias_priv->count < private->count) && !alias_device->stopped && |
| 691 | !test_bit(DASD_FLAG_OFFLINE, &alias_device->flags)) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 692 | return alias_device; |
| 693 | else |
| 694 | return NULL; |
| 695 | } |
| 696 | |
| 697 | /* |
| 698 | * Summary unit check handling depends on the way alias devices |
| 699 | * are handled so it is done here rather then in dasd_eckd.c |
| 700 | */ |
| 701 | static int reset_summary_unit_check(struct alias_lcu *lcu, |
| 702 | struct dasd_device *device, |
| 703 | char reason) |
| 704 | { |
| 705 | struct dasd_ccw_req *cqr; |
| 706 | int rc = 0; |
Stefan Weinhuber | f3eb538 | 2009-03-26 15:23:48 +0100 | [diff] [blame] | 707 | struct ccw1 *ccw; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 708 | |
| 709 | cqr = lcu->rsu_cqr; |
| 710 | strncpy((char *) &cqr->magic, "ECKD", 4); |
| 711 | ASCEBC((char *) &cqr->magic, 4); |
Stefan Weinhuber | f3eb538 | 2009-03-26 15:23:48 +0100 | [diff] [blame] | 712 | ccw = cqr->cpaddr; |
| 713 | ccw->cmd_code = DASD_ECKD_CCW_RSCK; |
Stefan Haberland | 020bf04 | 2015-12-15 10:16:43 +0100 | [diff] [blame] | 714 | ccw->flags = CCW_FLAG_SLI; |
Stefan Weinhuber | f3eb538 | 2009-03-26 15:23:48 +0100 | [diff] [blame] | 715 | ccw->count = 16; |
| 716 | ccw->cda = (__u32)(addr_t) cqr->data; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 717 | ((char *)cqr->data)[0] = reason; |
| 718 | |
| 719 | clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags); |
| 720 | cqr->retries = 255; /* set retry counter to enable basic ERP */ |
| 721 | cqr->startdev = device; |
| 722 | cqr->memdev = device; |
| 723 | cqr->block = NULL; |
| 724 | cqr->expires = 5 * HZ; |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 725 | cqr->buildclk = get_tod_clock(); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 726 | cqr->status = DASD_CQR_FILLED; |
| 727 | |
| 728 | rc = dasd_sleep_on_immediatly(cqr); |
| 729 | return rc; |
| 730 | } |
| 731 | |
| 732 | static void _restart_all_base_devices_on_lcu(struct alias_lcu *lcu) |
| 733 | { |
| 734 | struct alias_pav_group *pavgroup; |
| 735 | struct dasd_device *device; |
| 736 | struct dasd_eckd_private *private; |
| 737 | |
| 738 | /* active and inactive list can contain alias as well as base devices */ |
| 739 | list_for_each_entry(device, &lcu->active_devices, alias_list) { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 740 | private = device->private; |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 741 | if (private->uid.type != UA_BASE_DEVICE) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 742 | continue; |
| 743 | dasd_schedule_block_bh(device->block); |
| 744 | dasd_schedule_device_bh(device); |
| 745 | } |
| 746 | list_for_each_entry(device, &lcu->inactive_devices, alias_list) { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 747 | private = device->private; |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 748 | if (private->uid.type != UA_BASE_DEVICE) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 749 | continue; |
| 750 | dasd_schedule_block_bh(device->block); |
| 751 | dasd_schedule_device_bh(device); |
| 752 | } |
| 753 | list_for_each_entry(pavgroup, &lcu->grouplist, group) { |
| 754 | list_for_each_entry(device, &pavgroup->baselist, alias_list) { |
| 755 | dasd_schedule_block_bh(device->block); |
| 756 | dasd_schedule_device_bh(device); |
| 757 | } |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | static void flush_all_alias_devices_on_lcu(struct alias_lcu *lcu) |
| 762 | { |
| 763 | struct alias_pav_group *pavgroup; |
| 764 | struct dasd_device *device, *temp; |
| 765 | struct dasd_eckd_private *private; |
| 766 | int rc; |
| 767 | unsigned long flags; |
| 768 | LIST_HEAD(active); |
| 769 | |
| 770 | /* |
| 771 | * Problem here ist that dasd_flush_device_queue may wait |
| 772 | * for termination of a request to complete. We can't keep |
| 773 | * the lcu lock during that time, so we must assume that |
| 774 | * the lists may have changed. |
| 775 | * Idea: first gather all active alias devices in a separate list, |
| 776 | * then flush the first element of this list unlocked, and afterwards |
| 777 | * check if it is still on the list before moving it to the |
| 778 | * active_devices list. |
| 779 | */ |
| 780 | |
| 781 | spin_lock_irqsave(&lcu->lock, flags); |
| 782 | list_for_each_entry_safe(device, temp, &lcu->active_devices, |
| 783 | alias_list) { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 784 | private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 785 | if (private->uid.type == UA_BASE_DEVICE) |
| 786 | continue; |
| 787 | list_move(&device->alias_list, &active); |
| 788 | } |
| 789 | |
| 790 | list_for_each_entry(pavgroup, &lcu->grouplist, group) { |
| 791 | list_splice_init(&pavgroup->aliaslist, &active); |
| 792 | } |
| 793 | while (!list_empty(&active)) { |
| 794 | device = list_first_entry(&active, struct dasd_device, |
| 795 | alias_list); |
| 796 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 797 | rc = dasd_flush_device_queue(device); |
| 798 | spin_lock_irqsave(&lcu->lock, flags); |
| 799 | /* |
| 800 | * only move device around if it wasn't moved away while we |
| 801 | * were waiting for the flush |
| 802 | */ |
| 803 | if (device == list_first_entry(&active, |
Stefan Haberland | 6933c35 | 2015-10-14 11:01:05 +0200 | [diff] [blame] | 804 | struct dasd_device, alias_list)) { |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 805 | list_move(&device->alias_list, &lcu->active_devices); |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 806 | private = device->private; |
Stefan Haberland | 6933c35 | 2015-10-14 11:01:05 +0200 | [diff] [blame] | 807 | private->pavgroup = NULL; |
| 808 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 809 | } |
| 810 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 811 | } |
| 812 | |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 813 | static void _stop_all_devices_on_lcu(struct alias_lcu *lcu) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 814 | { |
| 815 | struct alias_pav_group *pavgroup; |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 816 | struct dasd_device *device; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 817 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 818 | list_for_each_entry(device, &lcu->active_devices, alias_list) { |
| 819 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 820 | dasd_device_set_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 821 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 822 | } |
| 823 | list_for_each_entry(device, &lcu->inactive_devices, alias_list) { |
| 824 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 825 | dasd_device_set_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 826 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 827 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 828 | list_for_each_entry(pavgroup, &lcu->grouplist, group) { |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 829 | list_for_each_entry(device, &pavgroup->baselist, alias_list) { |
| 830 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 831 | dasd_device_set_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 832 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 833 | } |
| 834 | list_for_each_entry(device, &pavgroup->aliaslist, alias_list) { |
| 835 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 836 | dasd_device_set_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 837 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 838 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 839 | } |
| 840 | } |
| 841 | |
| 842 | static void _unstop_all_devices_on_lcu(struct alias_lcu *lcu) |
| 843 | { |
| 844 | struct alias_pav_group *pavgroup; |
| 845 | struct dasd_device *device; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 846 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 847 | list_for_each_entry(device, &lcu->active_devices, alias_list) { |
| 848 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Weinhuber | eb6e199 | 2009-12-07 12:51:51 +0100 | [diff] [blame] | 849 | dasd_device_remove_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 850 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 851 | } |
| 852 | list_for_each_entry(device, &lcu->inactive_devices, alias_list) { |
| 853 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Weinhuber | eb6e199 | 2009-12-07 12:51:51 +0100 | [diff] [blame] | 854 | dasd_device_remove_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 855 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 856 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 857 | list_for_each_entry(pavgroup, &lcu->grouplist, group) { |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 858 | list_for_each_entry(device, &pavgroup->baselist, alias_list) { |
| 859 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Weinhuber | eb6e199 | 2009-12-07 12:51:51 +0100 | [diff] [blame] | 860 | dasd_device_remove_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 861 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 862 | } |
| 863 | list_for_each_entry(device, &pavgroup->aliaslist, alias_list) { |
| 864 | spin_lock(get_ccwdev_lock(device->cdev)); |
Stefan Weinhuber | eb6e199 | 2009-12-07 12:51:51 +0100 | [diff] [blame] | 865 | dasd_device_remove_stop_bits(device, DASD_STOPPED_SU); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 866 | spin_unlock(get_ccwdev_lock(device->cdev)); |
| 867 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 868 | } |
| 869 | } |
| 870 | |
| 871 | static void summary_unit_check_handling_work(struct work_struct *work) |
| 872 | { |
| 873 | struct alias_lcu *lcu; |
| 874 | struct summary_unit_check_work_data *suc_data; |
| 875 | unsigned long flags; |
| 876 | struct dasd_device *device; |
| 877 | |
| 878 | suc_data = container_of(work, struct summary_unit_check_work_data, |
| 879 | worker); |
| 880 | lcu = container_of(suc_data, struct alias_lcu, suc_data); |
| 881 | device = suc_data->device; |
| 882 | |
| 883 | /* 1. flush alias devices */ |
| 884 | flush_all_alias_devices_on_lcu(lcu); |
| 885 | |
| 886 | /* 2. reset summary unit check */ |
| 887 | spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags); |
Stefan Weinhuber | eb6e199 | 2009-12-07 12:51:51 +0100 | [diff] [blame] | 888 | dasd_device_remove_stop_bits(device, |
| 889 | (DASD_STOPPED_SU | DASD_STOPPED_PENDING)); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 890 | spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags); |
| 891 | reset_summary_unit_check(lcu, device, suc_data->reason); |
| 892 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 893 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 894 | _unstop_all_devices_on_lcu(lcu); |
| 895 | _restart_all_base_devices_on_lcu(lcu); |
| 896 | /* 3. read new alias configuration */ |
| 897 | _schedule_lcu_update(lcu, device); |
| 898 | lcu->suc_data.device = NULL; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 899 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 900 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 901 | } |
| 902 | |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 903 | void dasd_alias_handle_summary_unit_check(struct work_struct *work) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 904 | { |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 905 | struct dasd_device *device = container_of(work, struct dasd_device, |
| 906 | suc_work); |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 907 | struct dasd_eckd_private *private = device->private; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 908 | struct alias_lcu *lcu; |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 909 | unsigned long flags; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 910 | |
| 911 | lcu = private->lcu; |
| 912 | if (!lcu) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 913 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 914 | "device not ready to handle summary" |
| 915 | " unit check (no lcu structure)"); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 916 | goto out; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 917 | } |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 918 | spin_lock_irqsave(&lcu->lock, flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 919 | /* If this device is about to be removed just return and wait for |
| 920 | * the next interrupt on a different device |
| 921 | */ |
| 922 | if (list_empty(&device->alias_list)) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 923 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 924 | "device is in offline processing," |
| 925 | " don't do summary unit check handling"); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 926 | goto out_unlock; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 927 | } |
| 928 | if (lcu->suc_data.device) { |
| 929 | /* already scheduled or running */ |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 930 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 931 | "previous instance of summary unit check worker" |
| 932 | " still pending"); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 933 | goto out_unlock; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 934 | } |
Stefan Haberland | 9bfefde | 2015-12-15 11:00:51 +0100 | [diff] [blame] | 935 | _stop_all_devices_on_lcu(lcu); |
| 936 | /* prepare for lcu_update */ |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 937 | lcu->flags |= NEED_UAC_UPDATE | UPDATE_PENDING; |
| 938 | lcu->suc_data.reason = private->suc_reason; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 939 | lcu->suc_data.device = device; |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 940 | dasd_get_device(device); |
Stefan Haberland | 9d862ab | 2015-12-15 10:45:05 +0100 | [diff] [blame] | 941 | if (!schedule_work(&lcu->suc_data.worker)) |
| 942 | dasd_put_device(device); |
Stefan Haberland | 59a9ed5 | 2016-02-23 10:15:27 +0100 | [diff] [blame] | 943 | out_unlock: |
| 944 | spin_unlock_irqrestore(&lcu->lock, flags); |
| 945 | out: |
| 946 | clear_bit(DASD_FLAG_SUC, &device->flags); |
| 947 | dasd_put_device(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 948 | }; |