2019-05-02 00:14:10 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2006-08-29 22:22:51 +08:00
|
|
|
/*
|
|
|
|
* Serial Attached SCSI (SAS) Discover process
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Adaptec, Inc. All rights reserved.
|
|
|
|
* Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/scatterlist.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2012-06-22 14:41:51 +08:00
|
|
|
#include <linux/async.h>
|
2006-08-29 22:22:51 +08:00
|
|
|
#include <scsi/scsi_host.h>
|
|
|
|
#include <scsi/scsi_eh.h>
|
|
|
|
#include "sas_internal.h"
|
|
|
|
|
|
|
|
#include <scsi/scsi_transport.h>
|
|
|
|
#include <scsi/scsi_transport_sas.h>
|
2011-11-18 09:59:48 +08:00
|
|
|
#include <scsi/sas_ata.h>
|
2006-08-29 22:22:51 +08:00
|
|
|
#include "../scsi_sas_internal.h"
|
|
|
|
|
|
|
|
/* ---------- Basic task processing for discovery purposes ---------- */
|
|
|
|
|
|
|
|
void sas_init_dev(struct domain_device *dev)
|
|
|
|
{
|
2011-11-16 17:44:13 +08:00
|
|
|
switch (dev->dev_type) {
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_END_DEVICE:
|
2012-06-22 14:30:48 +08:00
|
|
|
INIT_LIST_HEAD(&dev->ssp_dev.eh_list_node);
|
2011-11-16 17:44:13 +08:00
|
|
|
break;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_EDGE_EXPANDER_DEVICE:
|
|
|
|
case SAS_FANOUT_EXPANDER_DEVICE:
|
2011-11-16 17:44:13 +08:00
|
|
|
INIT_LIST_HEAD(&dev->ex_dev.children);
|
|
|
|
mutex_init(&dev->ex_dev.cmd_mutex);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- Domain device discovery ---------- */
|
|
|
|
|
|
|
|
/**
|
2018-02-23 05:49:59 +08:00
|
|
|
* sas_get_port_device - Discover devices which caused port creation
|
2006-08-29 22:22:51 +08:00
|
|
|
* @port: pointer to struct sas_port of interest
|
|
|
|
*
|
|
|
|
* Devices directly attached to a HA port, have no parent. This is
|
|
|
|
* how we know they are (domain) "root" devices. All other devices
|
|
|
|
* do, and should have their "parent" pointer set appropriately as
|
|
|
|
* soon as a child device is discovered.
|
|
|
|
*/
|
|
|
|
static int sas_get_port_device(struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
struct asd_sas_phy *phy;
|
|
|
|
struct sas_rphy *rphy;
|
|
|
|
struct domain_device *dev;
|
2012-03-22 12:09:07 +08:00
|
|
|
int rc = -ENODEV;
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
dev = sas_alloc_device();
|
2006-08-29 22:22:51 +08:00
|
|
|
if (!dev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2012-01-29 09:24:40 +08:00
|
|
|
spin_lock_irq(&port->phy_list_lock);
|
2006-08-29 22:22:51 +08:00
|
|
|
if (list_empty(&port->phy_list)) {
|
2012-01-29 09:24:40 +08:00
|
|
|
spin_unlock_irq(&port->phy_list_lock);
|
2011-11-18 09:59:47 +08:00
|
|
|
sas_put_device(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
phy = container_of(port->phy_list.next, struct asd_sas_phy, port_phy_el);
|
|
|
|
spin_lock(&phy->frame_rcvd_lock);
|
|
|
|
memcpy(dev->frame_rcvd, phy->frame_rcvd, min(sizeof(dev->frame_rcvd),
|
|
|
|
(size_t)phy->frame_rcvd_size));
|
|
|
|
spin_unlock(&phy->frame_rcvd_lock);
|
2012-01-29 09:24:40 +08:00
|
|
|
spin_unlock_irq(&port->phy_list_lock);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
if (dev->frame_rcvd[0] == 0x34 && port->oob_mode == SATA_OOB_MODE) {
|
|
|
|
struct dev_to_host_fis *fis =
|
|
|
|
(struct dev_to_host_fis *) dev->frame_rcvd;
|
|
|
|
if (fis->interrupt_reason == 1 && fis->lbal == 1 &&
|
|
|
|
fis->byte_count_low==0x69 && fis->byte_count_high == 0x96
|
|
|
|
&& (fis->device & ~0x10) == 0)
|
2013-05-08 05:44:06 +08:00
|
|
|
dev->dev_type = SAS_SATA_PM;
|
2006-08-29 22:22:51 +08:00
|
|
|
else
|
2013-05-08 05:44:06 +08:00
|
|
|
dev->dev_type = SAS_SATA_DEV;
|
2007-11-06 03:51:17 +08:00
|
|
|
dev->tproto = SAS_PROTOCOL_SATA;
|
scsi: libsas: stop discovering if oob mode is disconnected
The discovering of sas port is driven by workqueue in libsas. When libsas
is processing port events or phy events in workqueue, new events may rise
up and change the state of some structures such as asd_sas_phy. This may
cause some problems such as follows:
==>thread 1 ==>thread 2
==>phy up
==>phy_up_v3_hw()
==>oob_mode = SATA_OOB_MODE;
==>phy down quickly
==>hisi_sas_phy_down()
==>sas_ha->notify_phy_event()
==>sas_phy_disconnected()
==>oob_mode = OOB_NOT_CONNECTED
==>workqueue wakeup
==>sas_form_port()
==>sas_discover_domain()
==>sas_get_port_device()
==>oob_mode is OOB_NOT_CONNECTED and device
is wrongly taken as expander
This at last lead to the panic when libsas trying to issue a command to
discover the device.
[183047.614035] Unable to handle kernel NULL pointer dereference at
virtual address 0000000000000058
[183047.622896] Mem abort info:
[183047.625762] ESR = 0x96000004
[183047.628893] Exception class = DABT (current EL), IL = 32 bits
[183047.634888] SET = 0, FnV = 0
[183047.638015] EA = 0, S1PTW = 0
[183047.641232] Data abort info:
[183047.644189] ISV = 0, ISS = 0x00000004
[183047.648100] CM = 0, WnR = 0
[183047.651145] user pgtable: 4k pages, 48-bit VAs, pgdp =
00000000b7df67be
[183047.657834] [0000000000000058] pgd=0000000000000000
[183047.662789] Internal error: Oops: 96000004 [#1] SMP
[183047.667740] Process kworker/u16:2 (pid: 31291, stack limit =
0x00000000417c4974)
[183047.675208] CPU: 0 PID: 3291 Comm: kworker/u16:2 Tainted: G
W OE 4.19.36-vhulk1907.1.0.h410.eulerosv2r8.aarch64 #1
[183047.687015] Hardware name: N/A N/A/Kunpeng Desktop Board D920S10,
BIOS 0.15 10/22/2019
[183047.695007] Workqueue: 0000:74:02.0_disco_q sas_discover_domain
[183047.700999] pstate: 20c00009 (nzCv daif +PAN +UAO)
[183047.705864] pc : prep_ata_v3_hw+0xf8/0x230 [hisi_sas_v3_hw]
[183047.711510] lr : prep_ata_v3_hw+0xb0/0x230 [hisi_sas_v3_hw]
[183047.717153] sp : ffff00000f28ba60
[183047.720541] x29: ffff00000f28ba60 x28: ffff8026852d7228
[183047.725925] x27: ffff8027dba3e0a8 x26: ffff8027c05fc200
[183047.731310] x25: 0000000000000000 x24: ffff8026bafa8dc0
[183047.736695] x23: ffff8027c05fc218 x22: ffff8026852d7228
[183047.742079] x21: ffff80007c2f2940 x20: ffff8027c05fc200
[183047.747464] x19: 0000000000f80800 x18: 0000000000000010
[183047.752848] x17: 0000000000000000 x16: 0000000000000000
[183047.758232] x15: ffff000089a5a4ff x14: 0000000000000005
[183047.763617] x13: ffff000009a5a50e x12: ffff8026bafa1e20
[183047.769001] x11: ffff0000087453b8 x10: ffff00000f28b870
[183047.774385] x9 : 0000000000000000 x8 : ffff80007e58f9b0
[183047.779770] x7 : 0000000000000000 x6 : 000000000000003f
[183047.785154] x5 : 0000000000000040 x4 : ffffffffffffffe0
[183047.790538] x3 : 00000000000000f8 x2 : 0000000002000007
[183047.795922] x1 : 0000000000000008 x0 : 0000000000000000
[183047.801307] Call trace:
[183047.803827] prep_ata_v3_hw+0xf8/0x230 [hisi_sas_v3_hw]
[183047.809127] hisi_sas_task_prep+0x750/0x888 [hisi_sas_main]
[183047.814773] hisi_sas_task_exec.isra.7+0x88/0x1f0 [hisi_sas_main]
[183047.820939] hisi_sas_queue_command+0x28/0x38 [hisi_sas_main]
[183047.826757] smp_execute_task_sg+0xec/0x218
[183047.831013] smp_execute_task+0x74/0xa0
[183047.834921] sas_discover_expander.part.7+0x9c/0x5f8
[183047.839959] sas_discover_root_expander+0x90/0x160
[183047.844822] sas_discover_domain+0x1b8/0x1e8
[183047.849164] process_one_work+0x1b4/0x3f8
[183047.853246] worker_thread+0x54/0x470
[183047.856981] kthread+0x134/0x138
[183047.860283] ret_from_fork+0x10/0x18
[183047.863931] Code: f9407a80 528000e2 39409281 72a04002 (b9405800)
[183047.870097] kernel fault(0x1) notification starting on CPU 0
[183047.875828] kernel fault(0x1) notification finished on CPU 0
[183047.881559] Modules linked in: unibsp(OE) hns3(OE) hclge(OE)
hnae3(OE) mem_drv(OE) hisi_sas_v3_hw(OE) hisi_sas_main(OE)
[183047.892418] ---[ end trace 4cc26083fc11b783 ]---
[183047.897107] Kernel panic - not syncing: Fatal exception
[183047.902403] kernel fault(0x5) notification starting on CPU 0
[183047.908134] kernel fault(0x5) notification finished on CPU 0
[183047.913865] SMP: stopping secondary CPUs
[183047.917861] Kernel Offset: disabled
[183047.921422] CPU features: 0x2,a2a00a38
[183047.925243] Memory Limit: none
[183047.928372] kernel reboot(0x2) notification starting on CPU 0
[183047.934190] kernel reboot(0x2) notification finished on CPU 0
[183047.940008] ---[ end Kernel panic - not syncing: Fatal exception
]---
Fixes: 2908d778ab3e ("[SCSI] aic94xx: new driver")
Link: https://lore.kernel.org/r/20191206011118.46909-1-yanaijie@huawei.com
Reported-by: Gao Chuan <gaochuan4@huawei.com>
Reviewed-by: John Garry <john.garry@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2019-12-06 09:11:18 +08:00
|
|
|
} else if (port->oob_mode == SAS_OOB_MODE) {
|
2006-08-29 22:22:51 +08:00
|
|
|
struct sas_identify_frame *id =
|
|
|
|
(struct sas_identify_frame *) dev->frame_rcvd;
|
|
|
|
dev->dev_type = id->dev_type;
|
|
|
|
dev->iproto = id->initiator_bits;
|
|
|
|
dev->tproto = id->target_bits;
|
scsi: libsas: stop discovering if oob mode is disconnected
The discovering of sas port is driven by workqueue in libsas. When libsas
is processing port events or phy events in workqueue, new events may rise
up and change the state of some structures such as asd_sas_phy. This may
cause some problems such as follows:
==>thread 1 ==>thread 2
==>phy up
==>phy_up_v3_hw()
==>oob_mode = SATA_OOB_MODE;
==>phy down quickly
==>hisi_sas_phy_down()
==>sas_ha->notify_phy_event()
==>sas_phy_disconnected()
==>oob_mode = OOB_NOT_CONNECTED
==>workqueue wakeup
==>sas_form_port()
==>sas_discover_domain()
==>sas_get_port_device()
==>oob_mode is OOB_NOT_CONNECTED and device
is wrongly taken as expander
This at last lead to the panic when libsas trying to issue a command to
discover the device.
[183047.614035] Unable to handle kernel NULL pointer dereference at
virtual address 0000000000000058
[183047.622896] Mem abort info:
[183047.625762] ESR = 0x96000004
[183047.628893] Exception class = DABT (current EL), IL = 32 bits
[183047.634888] SET = 0, FnV = 0
[183047.638015] EA = 0, S1PTW = 0
[183047.641232] Data abort info:
[183047.644189] ISV = 0, ISS = 0x00000004
[183047.648100] CM = 0, WnR = 0
[183047.651145] user pgtable: 4k pages, 48-bit VAs, pgdp =
00000000b7df67be
[183047.657834] [0000000000000058] pgd=0000000000000000
[183047.662789] Internal error: Oops: 96000004 [#1] SMP
[183047.667740] Process kworker/u16:2 (pid: 31291, stack limit =
0x00000000417c4974)
[183047.675208] CPU: 0 PID: 3291 Comm: kworker/u16:2 Tainted: G
W OE 4.19.36-vhulk1907.1.0.h410.eulerosv2r8.aarch64 #1
[183047.687015] Hardware name: N/A N/A/Kunpeng Desktop Board D920S10,
BIOS 0.15 10/22/2019
[183047.695007] Workqueue: 0000:74:02.0_disco_q sas_discover_domain
[183047.700999] pstate: 20c00009 (nzCv daif +PAN +UAO)
[183047.705864] pc : prep_ata_v3_hw+0xf8/0x230 [hisi_sas_v3_hw]
[183047.711510] lr : prep_ata_v3_hw+0xb0/0x230 [hisi_sas_v3_hw]
[183047.717153] sp : ffff00000f28ba60
[183047.720541] x29: ffff00000f28ba60 x28: ffff8026852d7228
[183047.725925] x27: ffff8027dba3e0a8 x26: ffff8027c05fc200
[183047.731310] x25: 0000000000000000 x24: ffff8026bafa8dc0
[183047.736695] x23: ffff8027c05fc218 x22: ffff8026852d7228
[183047.742079] x21: ffff80007c2f2940 x20: ffff8027c05fc200
[183047.747464] x19: 0000000000f80800 x18: 0000000000000010
[183047.752848] x17: 0000000000000000 x16: 0000000000000000
[183047.758232] x15: ffff000089a5a4ff x14: 0000000000000005
[183047.763617] x13: ffff000009a5a50e x12: ffff8026bafa1e20
[183047.769001] x11: ffff0000087453b8 x10: ffff00000f28b870
[183047.774385] x9 : 0000000000000000 x8 : ffff80007e58f9b0
[183047.779770] x7 : 0000000000000000 x6 : 000000000000003f
[183047.785154] x5 : 0000000000000040 x4 : ffffffffffffffe0
[183047.790538] x3 : 00000000000000f8 x2 : 0000000002000007
[183047.795922] x1 : 0000000000000008 x0 : 0000000000000000
[183047.801307] Call trace:
[183047.803827] prep_ata_v3_hw+0xf8/0x230 [hisi_sas_v3_hw]
[183047.809127] hisi_sas_task_prep+0x750/0x888 [hisi_sas_main]
[183047.814773] hisi_sas_task_exec.isra.7+0x88/0x1f0 [hisi_sas_main]
[183047.820939] hisi_sas_queue_command+0x28/0x38 [hisi_sas_main]
[183047.826757] smp_execute_task_sg+0xec/0x218
[183047.831013] smp_execute_task+0x74/0xa0
[183047.834921] sas_discover_expander.part.7+0x9c/0x5f8
[183047.839959] sas_discover_root_expander+0x90/0x160
[183047.844822] sas_discover_domain+0x1b8/0x1e8
[183047.849164] process_one_work+0x1b4/0x3f8
[183047.853246] worker_thread+0x54/0x470
[183047.856981] kthread+0x134/0x138
[183047.860283] ret_from_fork+0x10/0x18
[183047.863931] Code: f9407a80 528000e2 39409281 72a04002 (b9405800)
[183047.870097] kernel fault(0x1) notification starting on CPU 0
[183047.875828] kernel fault(0x1) notification finished on CPU 0
[183047.881559] Modules linked in: unibsp(OE) hns3(OE) hclge(OE)
hnae3(OE) mem_drv(OE) hisi_sas_v3_hw(OE) hisi_sas_main(OE)
[183047.892418] ---[ end trace 4cc26083fc11b783 ]---
[183047.897107] Kernel panic - not syncing: Fatal exception
[183047.902403] kernel fault(0x5) notification starting on CPU 0
[183047.908134] kernel fault(0x5) notification finished on CPU 0
[183047.913865] SMP: stopping secondary CPUs
[183047.917861] Kernel Offset: disabled
[183047.921422] CPU features: 0x2,a2a00a38
[183047.925243] Memory Limit: none
[183047.928372] kernel reboot(0x2) notification starting on CPU 0
[183047.934190] kernel reboot(0x2) notification finished on CPU 0
[183047.940008] ---[ end Kernel panic - not syncing: Fatal exception
]---
Fixes: 2908d778ab3e ("[SCSI] aic94xx: new driver")
Link: https://lore.kernel.org/r/20191206011118.46909-1-yanaijie@huawei.com
Reported-by: Gao Chuan <gaochuan4@huawei.com>
Reviewed-by: John Garry <john.garry@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2019-12-06 09:11:18 +08:00
|
|
|
} else {
|
|
|
|
/* If the oob mode is OOB_NOT_CONNECTED, the port is
|
|
|
|
* disconnected due to race with PHY down. We cannot
|
|
|
|
* continue to discover this port
|
|
|
|
*/
|
|
|
|
sas_put_device(dev);
|
|
|
|
pr_warn("Port %016llx is disconnected when discovering\n",
|
|
|
|
SAS_ADDR(port->attached_sas_addr));
|
|
|
|
return -ENODEV;
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sas_init_dev(dev);
|
|
|
|
|
2012-03-22 12:09:07 +08:00
|
|
|
dev->port = port;
|
2006-08-29 22:22:51 +08:00
|
|
|
switch (dev->dev_type) {
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_SATA_DEV:
|
2012-03-22 12:09:07 +08:00
|
|
|
rc = sas_ata_init(dev);
|
|
|
|
if (rc) {
|
|
|
|
rphy = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_END_DEVICE:
|
2006-08-29 22:22:51 +08:00
|
|
|
rphy = sas_end_device_alloc(port->port);
|
|
|
|
break;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_EDGE_EXPANDER_DEVICE:
|
2006-08-29 22:22:51 +08:00
|
|
|
rphy = sas_expander_alloc(port->port,
|
|
|
|
SAS_EDGE_EXPANDER_DEVICE);
|
|
|
|
break;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_FANOUT_EXPANDER_DEVICE:
|
2006-08-29 22:22:51 +08:00
|
|
|
rphy = sas_expander_alloc(port->port,
|
|
|
|
SAS_FANOUT_EXPANDER_DEVICE);
|
|
|
|
break;
|
|
|
|
default:
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_warn("ERROR: Unidentified device type %d\n", dev->dev_type);
|
2006-08-29 22:22:51 +08:00
|
|
|
rphy = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rphy) {
|
2011-11-18 09:59:47 +08:00
|
|
|
sas_put_device(dev);
|
2012-03-22 12:09:07 +08:00
|
|
|
return rc;
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
2012-01-29 09:24:40 +08:00
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
rphy->identify.phy_identifier = phy->phy->identify.phy_identifier;
|
|
|
|
memcpy(dev->sas_addr, port->attached_sas_addr, SAS_ADDR_SIZE);
|
|
|
|
sas_fill_in_rphy(dev, rphy);
|
|
|
|
sas_hash_addr(dev->hashed_sas_addr, dev->sas_addr);
|
|
|
|
port->port_dev = dev;
|
|
|
|
dev->linkrate = port->linkrate;
|
|
|
|
dev->min_linkrate = port->linkrate;
|
|
|
|
dev->max_linkrate = port->linkrate;
|
|
|
|
dev->pathways = port->num_phys;
|
|
|
|
memset(port->disc.fanout_sas_addr, 0, SAS_ADDR_SIZE);
|
|
|
|
memset(port->disc.eeds_a, 0, SAS_ADDR_SIZE);
|
|
|
|
memset(port->disc.eeds_b, 0, SAS_ADDR_SIZE);
|
|
|
|
port->disc.max_level = 0;
|
2011-12-22 13:33:17 +08:00
|
|
|
sas_device_set_phy(dev, port->port);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
dev->rphy = rphy;
|
2012-03-21 01:53:24 +08:00
|
|
|
get_device(&dev->rphy->dev);
|
2011-11-18 09:59:51 +08:00
|
|
|
|
2013-05-08 05:44:06 +08:00
|
|
|
if (dev_is_sata(dev) || dev->dev_type == SAS_END_DEVICE)
|
2011-11-18 09:59:51 +08:00
|
|
|
list_add_tail(&dev->disco_list_node, &port->disco_list);
|
|
|
|
else {
|
|
|
|
spin_lock_irq(&port->dev_list_lock);
|
|
|
|
list_add_tail(&dev->dev_list_node, &port->dev_list);
|
|
|
|
spin_unlock_irq(&port->dev_list_lock);
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2012-03-13 02:38:26 +08:00
|
|
|
spin_lock_irq(&port->phy_list_lock);
|
|
|
|
list_for_each_entry(phy, &port->phy_list, port_phy_el)
|
|
|
|
sas_phy_set_target(phy, dev);
|
|
|
|
spin_unlock_irq(&port->phy_list_lock);
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- Discover and Revalidate ---------- */
|
|
|
|
|
|
|
|
int sas_notify_lldd_dev_found(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
struct sas_ha_struct *sas_ha = dev->port->ha;
|
|
|
|
struct Scsi_Host *shost = sas_ha->core.shost;
|
|
|
|
struct sas_internal *i = to_sas_internal(shost->transportt);
|
|
|
|
|
2012-06-22 14:41:51 +08:00
|
|
|
if (!i->dft->lldd_dev_found)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
res = i->dft->lldd_dev_found(dev);
|
|
|
|
if (res) {
|
2019-12-19 20:35:57 +08:00
|
|
|
pr_warn("driver on host %s cannot handle device %016llx, error:%d\n",
|
2018-11-15 18:20:31 +08:00
|
|
|
dev_name(sas_ha->dev),
|
|
|
|
SAS_ADDR(dev->sas_addr), res);
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
2012-06-22 14:41:51 +08:00
|
|
|
set_bit(SAS_DEV_FOUND, &dev->state);
|
|
|
|
kref_get(&dev->kref);
|
2006-08-29 22:22:51 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sas_notify_lldd_dev_gone(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
struct sas_ha_struct *sas_ha = dev->port->ha;
|
|
|
|
struct Scsi_Host *shost = sas_ha->core.shost;
|
|
|
|
struct sas_internal *i = to_sas_internal(shost->transportt);
|
|
|
|
|
2012-06-22 14:41:51 +08:00
|
|
|
if (!i->dft->lldd_dev_gone)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (test_and_clear_bit(SAS_DEV_FOUND, &dev->state)) {
|
2006-08-29 22:22:51 +08:00
|
|
|
i->dft->lldd_dev_gone(dev);
|
2011-11-18 09:59:47 +08:00
|
|
|
sas_put_device(dev);
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
2017-12-08 17:42:09 +08:00
|
|
|
static void sas_probe_devices(struct asd_sas_port *port)
|
2012-01-19 12:14:01 +08:00
|
|
|
{
|
|
|
|
struct domain_device *dev, *n;
|
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
/* devices must be domain members before link recovery and probe */
|
|
|
|
list_for_each_entry(dev, &port->disco_list, disco_list_node) {
|
2012-01-19 12:14:01 +08:00
|
|
|
spin_lock_irq(&port->dev_list_lock);
|
|
|
|
list_add_tail(&dev->dev_list_node, &port->dev_list);
|
|
|
|
spin_unlock_irq(&port->dev_list_lock);
|
2012-01-19 12:47:01 +08:00
|
|
|
}
|
2012-01-19 12:14:01 +08:00
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
sas_probe_sata(port);
|
2012-01-19 12:14:01 +08:00
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = sas_rphy_add(dev->rphy);
|
|
|
|
if (err)
|
|
|
|
sas_fail_probe(dev, __func__, err);
|
|
|
|
else
|
2012-01-19 12:14:01 +08:00
|
|
|
list_del_init(&dev->disco_list_node);
|
|
|
|
}
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2012-06-22 14:41:51 +08:00
|
|
|
static void sas_suspend_devices(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct asd_sas_phy *phy;
|
|
|
|
struct domain_device *dev;
|
|
|
|
struct sas_discovery_event *ev = to_sas_discovery_event(work);
|
|
|
|
struct asd_sas_port *port = ev->port;
|
|
|
|
struct Scsi_Host *shost = port->ha->core.shost;
|
|
|
|
struct sas_internal *si = to_sas_internal(shost->transportt);
|
|
|
|
|
|
|
|
clear_bit(DISCE_SUSPEND, &port->disc.pending);
|
|
|
|
|
|
|
|
sas_suspend_sata(port);
|
|
|
|
|
|
|
|
/* lldd is free to forget the domain_device across the
|
|
|
|
* suspension, we force the issue here to keep the reference
|
|
|
|
* counts aligned
|
|
|
|
*/
|
|
|
|
list_for_each_entry(dev, &port->dev_list, dev_list_node)
|
|
|
|
sas_notify_lldd_dev_gone(dev);
|
|
|
|
|
|
|
|
/* we are suspending, so we know events are disabled and
|
|
|
|
* phy_list is not being mutated
|
|
|
|
*/
|
|
|
|
list_for_each_entry(phy, &port->phy_list, port_phy_el) {
|
2018-09-25 10:56:51 +08:00
|
|
|
if (si->dft->lldd_port_deformed)
|
2012-06-22 14:41:51 +08:00
|
|
|
si->dft->lldd_port_deformed(phy);
|
|
|
|
phy->suspended = 1;
|
|
|
|
port->suspended = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sas_resume_devices(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct sas_discovery_event *ev = to_sas_discovery_event(work);
|
|
|
|
struct asd_sas_port *port = ev->port;
|
|
|
|
|
|
|
|
clear_bit(DISCE_RESUME, &port->disc.pending);
|
|
|
|
|
|
|
|
sas_resume_sata(port);
|
|
|
|
}
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
/**
|
2018-02-23 05:49:59 +08:00
|
|
|
* sas_discover_end_dev - discover an end device (SSP, etc)
|
|
|
|
* @dev: pointer to domain device of interest
|
2006-08-29 22:22:51 +08:00
|
|
|
*
|
|
|
|
* See comment in sas_discover_sata().
|
|
|
|
*/
|
|
|
|
int sas_discover_end_dev(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = sas_notify_lldd_dev_found(dev);
|
|
|
|
if (res)
|
2012-01-19 12:14:01 +08:00
|
|
|
return res;
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- Device registration and unregistration ---------- */
|
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
void sas_free_device(struct kref *kref)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = container_of(kref, typeof(*dev), kref);
|
|
|
|
|
2012-03-21 01:53:24 +08:00
|
|
|
put_device(&dev->rphy->dev);
|
|
|
|
dev->rphy = NULL;
|
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
if (dev->parent)
|
|
|
|
sas_put_device(dev->parent);
|
|
|
|
|
2011-12-22 13:33:17 +08:00
|
|
|
sas_port_put_phy(dev->phy);
|
|
|
|
dev->phy = NULL;
|
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
/* remove the phys and ports, everything else should be gone */
|
2019-06-10 20:41:41 +08:00
|
|
|
if (dev_is_expander(dev->dev_type))
|
2011-11-18 09:59:47 +08:00
|
|
|
kfree(dev->ex_dev.ex_phy);
|
|
|
|
|
2012-01-11 07:14:09 +08:00
|
|
|
if (dev_is_sata(dev) && dev->sata_dev.ap) {
|
2018-03-26 17:27:41 +08:00
|
|
|
ata_sas_tport_delete(dev->sata_dev.ap);
|
2012-01-11 07:14:09 +08:00
|
|
|
ata_sas_port_destroy(dev->sata_dev.ap);
|
2018-05-10 11:05:16 +08:00
|
|
|
ata_host_put(dev->sata_dev.ata_host);
|
|
|
|
dev->sata_dev.ata_host = NULL;
|
2012-01-11 07:14:09 +08:00
|
|
|
dev->sata_dev.ap = NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
kfree(dev);
|
|
|
|
}
|
|
|
|
|
2011-09-22 13:05:34 +08:00
|
|
|
static void sas_unregister_common_dev(struct asd_sas_port *port, struct domain_device *dev)
|
2006-08-29 22:22:51 +08:00
|
|
|
{
|
2012-06-22 14:30:48 +08:00
|
|
|
struct sas_ha_struct *ha = port->ha;
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
sas_notify_lldd_dev_gone(dev);
|
|
|
|
if (!dev->parent)
|
|
|
|
dev->port->port_dev = NULL;
|
|
|
|
else
|
|
|
|
list_del_init(&dev->siblings);
|
2011-09-22 13:05:34 +08:00
|
|
|
|
|
|
|
spin_lock_irq(&port->dev_list_lock);
|
2006-08-29 22:22:51 +08:00
|
|
|
list_del_init(&dev->dev_list_node);
|
2012-06-22 14:25:27 +08:00
|
|
|
if (dev_is_sata(dev))
|
|
|
|
sas_ata_end_eh(dev->sata_dev.ap);
|
2011-09-22 13:05:34 +08:00
|
|
|
spin_unlock_irq(&port->dev_list_lock);
|
2011-11-18 09:59:47 +08:00
|
|
|
|
2012-06-22 14:30:48 +08:00
|
|
|
spin_lock_irq(&ha->lock);
|
2013-05-08 05:44:06 +08:00
|
|
|
if (dev->dev_type == SAS_END_DEVICE &&
|
2012-06-22 14:30:48 +08:00
|
|
|
!list_empty(&dev->ssp_dev.eh_list_node)) {
|
|
|
|
list_del_init(&dev->ssp_dev.eh_list_node);
|
|
|
|
ha->eh_active--;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&ha->lock);
|
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
sas_put_device(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
2017-12-08 17:42:09 +08:00
|
|
|
void sas_destruct_devices(struct asd_sas_port *port)
|
2006-08-29 22:22:51 +08:00
|
|
|
{
|
2011-11-18 09:59:51 +08:00
|
|
|
struct domain_device *dev, *n;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(dev, n, &port->destroy_list, disco_list_node) {
|
|
|
|
list_del_init(&dev->disco_list_node);
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
sas_remove_children(&dev->rphy->dev);
|
|
|
|
sas_rphy_delete(dev->rphy);
|
2011-11-18 09:59:51 +08:00
|
|
|
sas_unregister_common_dev(port, dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 17:42:09 +08:00
|
|
|
static void sas_destruct_ports(struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
struct sas_port *sas_port, *p;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(sas_port, p, &port->sas_port_del_list, del_list) {
|
|
|
|
list_del_init(&sas_port->del_list);
|
|
|
|
sas_port_delete(sas_port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:51 +08:00
|
|
|
void sas_unregister_dev(struct asd_sas_port *port, struct domain_device *dev)
|
|
|
|
{
|
|
|
|
if (!test_bit(SAS_DEV_DESTROY, &dev->state) &&
|
|
|
|
!list_empty(&dev->disco_list_node)) {
|
|
|
|
/* this rphy never saw sas_rphy_add */
|
|
|
|
list_del_init(&dev->disco_list_node);
|
|
|
|
sas_rphy_free(dev->rphy);
|
|
|
|
sas_unregister_common_dev(port, dev);
|
2012-03-21 01:53:24 +08:00
|
|
|
return;
|
2011-11-18 09:59:51 +08:00
|
|
|
}
|
|
|
|
|
2012-03-21 01:53:24 +08:00
|
|
|
if (!test_and_set_bit(SAS_DEV_DESTROY, &dev->state)) {
|
2011-11-18 09:59:51 +08:00
|
|
|
sas_rphy_unlink(dev->rphy);
|
|
|
|
list_move_tail(&dev->disco_list_node, &port->destroy_list);
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-11 06:39:13 +08:00
|
|
|
void sas_unregister_domain_devices(struct asd_sas_port *port, int gone)
|
2006-08-29 22:22:51 +08:00
|
|
|
{
|
|
|
|
struct domain_device *dev, *n;
|
|
|
|
|
2012-01-11 06:39:13 +08:00
|
|
|
list_for_each_entry_safe_reverse(dev, n, &port->dev_list, dev_list_node) {
|
|
|
|
if (gone)
|
|
|
|
set_bit(SAS_DEV_GONE, &dev->state);
|
2011-09-22 13:05:34 +08:00
|
|
|
sas_unregister_dev(port, dev);
|
2012-01-11 06:39:13 +08:00
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:51 +08:00
|
|
|
list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node)
|
|
|
|
sas_unregister_dev(port, dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
port->port->rphy = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-22 13:33:17 +08:00
|
|
|
void sas_device_set_phy(struct domain_device *dev, struct sas_port *port)
|
|
|
|
{
|
|
|
|
struct sas_ha_struct *ha;
|
|
|
|
struct sas_phy *new_phy;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ha = dev->port->ha;
|
|
|
|
new_phy = sas_port_get_phy(port);
|
|
|
|
|
|
|
|
/* pin and record last seen phy */
|
|
|
|
spin_lock_irq(&ha->phy_port_lock);
|
|
|
|
if (new_phy) {
|
|
|
|
sas_port_put_phy(dev->phy);
|
|
|
|
dev->phy = new_phy;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&ha->phy_port_lock);
|
|
|
|
}
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
/* ---------- Discovery and Revalidation ---------- */
|
|
|
|
|
|
|
|
/**
|
2018-02-23 05:49:59 +08:00
|
|
|
* sas_discover_domain - discover the domain
|
|
|
|
* @work: work structure embedded in port domain device.
|
2006-08-29 22:22:51 +08:00
|
|
|
*
|
|
|
|
* NOTE: this process _must_ quit (return) as soon as any connection
|
|
|
|
* errors are encountered. Connection recovery is done elsewhere.
|
|
|
|
* Discover process only interrogates devices in order to discover the
|
|
|
|
* domain.
|
|
|
|
*/
|
2006-11-22 22:57:56 +08:00
|
|
|
static void sas_discover_domain(struct work_struct *work)
|
2006-08-29 22:22:51 +08:00
|
|
|
{
|
2007-01-27 06:08:43 +08:00
|
|
|
struct domain_device *dev;
|
2006-08-29 22:22:51 +08:00
|
|
|
int error = 0;
|
2012-03-10 03:00:06 +08:00
|
|
|
struct sas_discovery_event *ev = to_sas_discovery_event(work);
|
2006-11-22 22:57:56 +08:00
|
|
|
struct asd_sas_port *port = ev->port;
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2011-11-18 09:59:49 +08:00
|
|
|
clear_bit(DISCE_DISCOVER_DOMAIN, &port->disc.pending);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
if (port->port_dev)
|
2007-01-27 06:08:43 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
error = sas_get_port_device(port);
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
dev = port->port_dev;
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("DOING DISCOVERY on port %d, pid:%d\n", port->id,
|
|
|
|
task_pid_nr(current));
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2007-01-27 06:08:43 +08:00
|
|
|
switch (dev->dev_type) {
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_END_DEVICE:
|
2007-01-27 06:08:43 +08:00
|
|
|
error = sas_discover_end_dev(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
break;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_EDGE_EXPANDER_DEVICE:
|
|
|
|
case SAS_FANOUT_EXPANDER_DEVICE:
|
2007-01-27 06:08:43 +08:00
|
|
|
error = sas_discover_root_expander(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
break;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_SATA_DEV:
|
|
|
|
case SAS_SATA_PM:
|
2008-03-27 00:26:13 +08:00
|
|
|
#ifdef CONFIG_SCSI_SAS_ATA
|
2007-01-27 06:08:43 +08:00
|
|
|
error = sas_discover_sata(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
break;
|
2008-03-27 00:26:13 +08:00
|
|
|
#else
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_notice("ATA device seen but CONFIG_SCSI_SAS_ATA=N so cannot attach\n");
|
2008-03-27 00:26:13 +08:00
|
|
|
/* Fall through */
|
2007-07-23 02:15:55 +08:00
|
|
|
#endif
|
2019-08-21 05:20:05 +08:00
|
|
|
/* Fall through - only for the #else condition above. */
|
2006-08-29 22:22:51 +08:00
|
|
|
default:
|
2007-07-23 02:15:55 +08:00
|
|
|
error = -ENXIO;
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_err("unhandled device %d\n", dev->dev_type);
|
2006-08-29 22:22:51 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error) {
|
2007-01-27 06:08:43 +08:00
|
|
|
sas_rphy_free(dev->rphy);
|
2011-11-18 09:59:51 +08:00
|
|
|
list_del_init(&dev->disco_list_node);
|
2007-07-17 02:15:51 +08:00
|
|
|
spin_lock_irq(&port->dev_list_lock);
|
2007-01-27 06:08:43 +08:00
|
|
|
list_del_init(&dev->dev_list_node);
|
2007-07-17 02:15:51 +08:00
|
|
|
spin_unlock_irq(&port->dev_list_lock);
|
2007-01-12 06:14:49 +08:00
|
|
|
|
2011-11-18 09:59:47 +08:00
|
|
|
sas_put_device(dev);
|
2006-08-29 22:22:51 +08:00
|
|
|
port->port_dev = NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-08 17:42:09 +08:00
|
|
|
sas_probe_devices(port);
|
|
|
|
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("DONE DISCOVERY on port %d, pid:%d, result:%d\n", port->id,
|
|
|
|
task_pid_nr(current), error);
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
static void sas_revalidate_domain(struct work_struct *work)
|
2006-08-29 22:22:51 +08:00
|
|
|
{
|
|
|
|
int res = 0;
|
2012-03-10 03:00:06 +08:00
|
|
|
struct sas_discovery_event *ev = to_sas_discovery_event(work);
|
2006-11-22 22:57:56 +08:00
|
|
|
struct asd_sas_port *port = ev->port;
|
2011-11-18 09:59:51 +08:00
|
|
|
struct sas_ha_struct *ha = port->ha;
|
2015-03-05 08:18:33 +08:00
|
|
|
struct domain_device *ddev = port->port_dev;
|
2011-11-18 09:59:51 +08:00
|
|
|
|
|
|
|
/* prevent revalidation from finding sata links in recovery */
|
|
|
|
mutex_lock(&ha->disco_mutex);
|
|
|
|
if (test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state)) {
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("REVALIDATION DEFERRED on port %d, pid:%d\n",
|
|
|
|
port->id, task_pid_nr(current));
|
2011-11-18 09:59:51 +08:00
|
|
|
goto out;
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2011-11-18 09:59:49 +08:00
|
|
|
clear_bit(DISCE_REVALIDATE_DOMAIN, &port->disc.pending);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("REVALIDATING DOMAIN on port %d, pid:%d\n", port->id,
|
|
|
|
task_pid_nr(current));
|
2011-11-18 09:59:51 +08:00
|
|
|
|
2019-06-10 20:41:41 +08:00
|
|
|
if (ddev && dev_is_expander(ddev->dev_type))
|
2015-03-05 08:18:33 +08:00
|
|
|
res = sas_ex_revalidate_domain(ddev);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("done REVALIDATING DOMAIN on port %d, pid:%d, res 0x%x\n",
|
|
|
|
port->id, task_pid_nr(current), res);
|
2011-11-18 09:59:51 +08:00
|
|
|
out:
|
|
|
|
mutex_unlock(&ha->disco_mutex);
|
2017-12-08 17:42:09 +08:00
|
|
|
|
|
|
|
sas_destruct_devices(port);
|
|
|
|
sas_destruct_ports(port);
|
|
|
|
sas_probe_devices(port);
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- Events ---------- */
|
|
|
|
|
2012-03-10 03:00:06 +08:00
|
|
|
static void sas_chain_work(struct sas_ha_struct *ha, struct sas_work *sw)
|
2011-12-20 08:42:34 +08:00
|
|
|
{
|
2012-03-10 03:00:06 +08:00
|
|
|
/* chained work is not subject to SA_HA_DRAINING or
|
|
|
|
* SAS_HA_REGISTERED, because it is either submitted in the
|
|
|
|
* workqueue, or known to be submitted from a context that is
|
|
|
|
* not racing against draining
|
|
|
|
*/
|
2017-12-08 17:42:07 +08:00
|
|
|
queue_work(ha->disco_q, &sw->work);
|
2011-12-20 08:42:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sas_chain_event(int event, unsigned long *pending,
|
2012-03-10 03:00:06 +08:00
|
|
|
struct sas_work *sw,
|
2011-12-20 08:42:34 +08:00
|
|
|
struct sas_ha_struct *ha)
|
|
|
|
{
|
|
|
|
if (!test_and_set_bit(event, pending)) {
|
|
|
|
unsigned long flags;
|
|
|
|
|
2012-06-22 14:25:27 +08:00
|
|
|
spin_lock_irqsave(&ha->lock, flags);
|
2012-03-10 03:00:06 +08:00
|
|
|
sas_chain_work(ha, sw);
|
2012-06-22 14:25:27 +08:00
|
|
|
spin_unlock_irqrestore(&ha->lock, flags);
|
2011-12-20 08:42:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-29 22:22:51 +08:00
|
|
|
int sas_discover_event(struct asd_sas_port *port, enum discover_event ev)
|
|
|
|
{
|
|
|
|
struct sas_discovery *disc;
|
|
|
|
|
|
|
|
if (!port)
|
|
|
|
return 0;
|
|
|
|
disc = &port->disc;
|
|
|
|
|
|
|
|
BUG_ON(ev >= DISC_NUM_EVENTS);
|
|
|
|
|
2011-12-20 08:42:34 +08:00
|
|
|
sas_chain_event(ev, &disc->pending, &disc->disc_work[ev].work, port->ha);
|
2006-08-29 22:22:51 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-23 05:49:59 +08:00
|
|
|
* sas_init_disc - initialize the discovery struct in the port
|
|
|
|
* @disc: port discovery structure
|
2006-08-29 22:22:51 +08:00
|
|
|
* @port: pointer to struct port
|
|
|
|
*
|
|
|
|
* Called when the ports are being initialized.
|
|
|
|
*/
|
|
|
|
void sas_init_disc(struct sas_discovery *disc, struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
static const work_func_t sas_event_fns[DISC_NUM_EVENTS] = {
|
2006-08-29 22:22:51 +08:00
|
|
|
[DISCE_DISCOVER_DOMAIN] = sas_discover_domain,
|
|
|
|
[DISCE_REVALIDATE_DOMAIN] = sas_revalidate_domain,
|
2012-06-22 14:41:51 +08:00
|
|
|
[DISCE_SUSPEND] = sas_suspend_devices,
|
|
|
|
[DISCE_RESUME] = sas_resume_devices,
|
2006-08-29 22:22:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
disc->pending = 0;
|
2006-11-22 22:57:56 +08:00
|
|
|
for (i = 0; i < DISC_NUM_EVENTS; i++) {
|
2012-03-10 03:00:06 +08:00
|
|
|
INIT_SAS_WORK(&disc->disc_work[i].work, sas_event_fns[i]);
|
2006-11-22 22:57:56 +08:00
|
|
|
disc->disc_work[i].port = port;
|
|
|
|
}
|
2006-08-29 22:22:51 +08:00
|
|
|
}
|