All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time
@ 2015-05-20 22:09 Dan Williams
  2015-05-20 22:52   ` Luis Henriques
  2017-01-11  6:29 ` [PATCH] libsas: fix \"sysfs group not found\" " seeteena
  0 siblings, 2 replies; 5+ messages in thread
From: Dan Williams @ 2015-05-20 22:09 UTC (permalink / raw)
  To: JBottomley, hch; +Cc: Praveen Murali, linux-scsi, stable

Praveen reports:

---

    After some debugging this is what I have found

    sas_phye_loss_of_signal gets triggered on phy_event from mvsas
        sas_phye_loss_of_signal calls sas_deform_port
             sas_deform_port posts a DISCE_DESTRUCT event (sas_unregister_domain_devices-> sas_unregister_dev)
             sas_deform_port calls sas_port_delete
                     sas_port_delete calls sas_port_delete_link
                             sysfs_remove_group: kobject 'port-X:Y'
                     sas_port_delete calls device_del
                             sysfs_remove_group: kobject 'port-X:Y'

    sas_destruct_devices gets triggered for the destruct event (DISCE_DESTRUCT)
        sas_destruct_devices calls sas_rphy_delete
            sas_rphy_delete calls scsi_remove_device
                 scsi_remove_device calls __scsi_remove_device
                         __scsi_remove_device calls bsg_unregister_queue
                                 bsg_unregister_queue -> device_unregister -> device_del -> sysfs_remove_group: kobject 'X:0:0:0'

    Since X:0:0:0 falls under port-X:Y (which got deleted during
    sas_port_delete), this call results in the warning. All the later
    warnings in the dmesg output I sent earlier are trying to delete objects
    under port-X:Y. Since port-X:Y got recursively deleted, all these calls
    result in warnings. Since, the PHY and DISC events are processed in two
    different work queues (and one triggers the other), is there any way
    other than checking if the object exists in sysfs (in device_del) before
    deleting?

    ------------[ cut here ]------------
    WARNING: CPU: 2 PID: 6 at fs/sysfs/group.c:219 device_del+0x40/0x1c0()
    sysfs group ffffffff818b97e0 not found for kobject '2:0:4:0'
    [..]
    CPU: 2 PID: 6 Comm: kworker/u8:0 Tainted: P        W  O  3.16.7-ckt9-logicube-ng.3 #1
    Hardware name: To be filled by O.E.M. To be filled by O.E.M./VT6085, BIOS 4.6.5 01/23/2015
    Workqueue: scsi_wq_2 sas_destruct_devices [libsas]
     0000000000000009 ffffffff8151cd18 ffff88011b35bcd8 ffffffff810687b7
     ffff88011a661400 ffff88011b35bd28 ffff8800c6e5e968 ffff880000028810
     ffff8800c89f2c00 ffffffff8106881c ffffffff81733b68 0000000000000028
    Call Trace:
     [<ffffffff8151cd18>] ? dump_stack+0x41/0x51
     [<ffffffff810687b7>] ? warn_slowpath_common+0x77/0x90
     [<ffffffff8106881c>] ? warn_slowpath_fmt+0x4c/0x50
     [<ffffffff813ad2d0>] ? device_del+0x40/0x1c0
     [<ffffffff813ad46a>] ? device_unregister+0x1a/0x70
     [<ffffffff812a535e>] ? bsg_unregister_queue+0x5e/0xb0
     [<ffffffffa00781a9>] ? __scsi_remove_device+0xa9/0xd0 [scsi_mod]

---

It appears we've always been double deleting the devices below sas_port,
but recent sysfs changes now exposes this problem.  Libsas should delete
all the devices from rphy down before deleting the parent port.

Cc: <stable@vger.kernel.org>
Reported-by: Praveen Murali <pmurali@logicube.com>
Tested-by: Praveen Murali <pmurali@logicube.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
 drivers/scsi/libsas/sas_discover.c |    6 +++---
 drivers/scsi/libsas/sas_port.c     |    1 -
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/scsi/libsas/sas_discover.c b/drivers/scsi/libsas/sas_discover.c
index 60de66252fa2..a4db770fe8b0 100644
--- a/drivers/scsi/libsas/sas_discover.c
+++ b/drivers/scsi/libsas/sas_discover.c
@@ -362,11 +362,14 @@ static void sas_destruct_devices(struct work_struct *work)
 	clear_bit(DISCE_DESTRUCT, &port->disc.pending);
 
 	list_for_each_entry_safe(dev, n, &port->destroy_list, disco_list_node) {
+		struct sas_port *sas_port = dev_to_sas_port(dev->rphy->dev.parent);
+
 		list_del_init(&dev->disco_list_node);
 
 		sas_remove_children(&dev->rphy->dev);
 		sas_rphy_delete(dev->rphy);
 		sas_unregister_common_dev(port, dev);
+		sas_port_delete(sas_port);
 	}
 }
 
@@ -400,9 +403,6 @@ void sas_unregister_domain_devices(struct asd_sas_port *port, int gone)
 
 	list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node)
 		sas_unregister_dev(port, dev);
-
-	port->port->rphy = NULL;
-
 }
 
 void sas_device_set_phy(struct domain_device *dev, struct sas_port *port)
diff --git a/drivers/scsi/libsas/sas_port.c b/drivers/scsi/libsas/sas_port.c
index d3c5297c6c89..9a25ae3a52a4 100644
--- a/drivers/scsi/libsas/sas_port.c
+++ b/drivers/scsi/libsas/sas_port.c
@@ -219,7 +219,6 @@ void sas_deform_port(struct asd_sas_phy *phy, int gone)
 
 	if (port->num_phys == 1) {
 		sas_unregister_domain_devices(port, gone);
-		sas_port_delete(port->port);
 		port->port = NULL;
 	} else {
 		sas_port_delete_phy(port->port, phy->phy);


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time
  2015-05-20 22:09 [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time Dan Williams
@ 2015-05-20 22:52   ` Luis Henriques
  2017-01-11  6:29 ` [PATCH] libsas: fix \"sysfs group not found\" " seeteena
  1 sibling, 0 replies; 5+ messages in thread
From: Luis Henriques @ 2015-05-20 22:52 UTC (permalink / raw)
  To: Dan Williams; +Cc: JBottomley, hch, Praveen Murali, linux-scsi, stable

On Wed, May 20, 2015 at 06:09:09PM -0400, Dan Williams wrote:
> Praveen reports:
> 
> ---
> 

Just a minor comment, not related with the patch itself but with the
commit message: the line above will cause major pain to anyone
applying this patch using 'git am'.  This is because git-mailinfo,
when splitting the patch from the message, will assume the message
stops here.

git-am(1) documents this behaviour, the commit message ends with:

- three-dashes and end-of-line, or
- a line that begins with "diff -", or
- a line that begins with "Index: "

Cheers,
--
Lu�s


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time
@ 2015-05-20 22:52   ` Luis Henriques
  0 siblings, 0 replies; 5+ messages in thread
From: Luis Henriques @ 2015-05-20 22:52 UTC (permalink / raw)
  To: Dan Williams; +Cc: JBottomley, hch, Praveen Murali, linux-scsi, stable

On Wed, May 20, 2015 at 06:09:09PM -0400, Dan Williams wrote:
> Praveen reports:
> 
> ---
> 

Just a minor comment, not related with the patch itself but with the
commit message: the line above will cause major pain to anyone
applying this patch using 'git am'.  This is because git-mailinfo,
when splitting the patch from the message, will assume the message
stops here.

git-am(1) documents this behaviour, the commit message ends with:

- three-dashes and end-of-line, or
- a line that begins with "diff -", or
- a line that begins with "Index: "

Cheers,
--
Luís

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] libsas: fix \"sysfs group not found\" warnings at port teardown time
  2015-05-20 22:09 [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time Dan Williams
  2015-05-20 22:52   ` Luis Henriques
@ 2017-01-11  6:29 ` seeteena
  2017-01-11  9:10   ` John Garry
  1 sibling, 1 reply; 5+ messages in thread
From: seeteena @ 2017-01-11  6:29 UTC (permalink / raw)
  To: dan.j.williams, linux-scsi

Hi All,

Let me know if this patch is accepted in Upsteam? let me know the commit id


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] libsas: fix \"sysfs group not found\" warnings at port teardown time
  2017-01-11  6:29 ` [PATCH] libsas: fix \"sysfs group not found\" " seeteena
@ 2017-01-11  9:10   ` John Garry
  0 siblings, 0 replies; 5+ messages in thread
From: John Garry @ 2017-01-11  9:10 UTC (permalink / raw)
  To: seeteena, dan.j.williams, linux-scsi; +Cc: Yijing Wang

On 11/01/2017 06:29, seeteena wrote:
> Hi All,
>
> Let me know if this patch is accepted in Upsteam? let me know the commit id
>

If it is the patch I think it is then it is not upstream 
(https://patchwork.kernel.org/patch/6450731/).

I did propose a patch at the end of last year which fixed the warn, but 
it introduced some other potential hotplug issue.

An engineer in my organisation proposed a re-work of libsas to fix all 
the hotplug issues, but it was not pushed and never got far:
https://lkml.org/lkml/2016/9/12/1225

John

> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-01-11  9:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-20 22:09 [PATCH] libsas: fix "sysfs group not found" warnings at port teardown time Dan Williams
2015-05-20 22:52 ` Luis Henriques
2015-05-20 22:52   ` Luis Henriques
2017-01-11  6:29 ` [PATCH] libsas: fix \"sysfs group not found\" " seeteena
2017-01-11  9:10   ` John Garry

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.