hpsa.c (60f923b940246422c7da6fec5b0636822115e5ce) hpsa.c (1ba66c9cc30a6967c0b8a6be3faeee0598eeed62)
1/*
2 * Disk Array driver for HP Smart Array SAS controllers
3 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *

--- 6410 unchanged lines hidden (view full) ---

6419 * but it's already (and still) up and running in
6420 * "performant mode". Or, it might be 640x, which can't reset
6421 * due to concerns about shared bbwc between 6402/6404 pair.
6422 */
6423 if (rc)
6424 goto out_disable;
6425
6426 /* Now try to get the controller to respond to a no-op */
1/*
2 * Disk Array driver for HP Smart Array SAS controllers
3 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *

--- 6410 unchanged lines hidden (view full) ---

6419 * but it's already (and still) up and running in
6420 * "performant mode". Or, it might be 640x, which can't reset
6421 * due to concerns about shared bbwc between 6402/6404 pair.
6422 */
6423 if (rc)
6424 goto out_disable;
6425
6426 /* Now try to get the controller to respond to a no-op */
6427 dev_warn(&pdev->dev, "Waiting for controller to respond to no-op\n");
6427 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
6428 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6429 if (hpsa_noop(pdev) == 0)
6430 break;
6431 else
6432 dev_warn(&pdev->dev, "no-op failed%s\n",
6433 (i < 11 ? "; re-trying" : ""));
6434 }
6435

--- 1169 unchanged lines hidden ---
6428 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6429 if (hpsa_noop(pdev) == 0)
6430 break;
6431 else
6432 dev_warn(&pdev->dev, "no-op failed%s\n",
6433 (i < 11 ? "; re-trying" : ""));
6434 }
6435

--- 1169 unchanged lines hidden ---