From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D29DEC282DD for ; Wed, 8 Jan 2020 17:10:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B547F2067D for ; Wed, 8 Jan 2020 17:10:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729575AbgAHRKb (ORCPT ); Wed, 8 Jan 2020 12:10:31 -0500 Received: from lhrrgout.huawei.com ([185.176.76.210]:2239 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729516AbgAHRKa (ORCPT ); Wed, 8 Jan 2020 12:10:30 -0500 Received: from LHREML710-CAH.china.huawei.com (unknown [172.18.7.107]) by Forcepoint Email with ESMTP id 6CC01DF89CB9F314160A; Wed, 8 Jan 2020 17:10:28 +0000 (GMT) Received: from lhreml724-chm.china.huawei.com (10.201.108.75) by LHREML710-CAH.china.huawei.com (10.201.108.33) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 8 Jan 2020 17:10:27 +0000 Received: from [127.0.0.1] (10.202.226.43) by lhreml724-chm.china.huawei.com (10.201.108.75) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Wed, 8 Jan 2020 17:10:27 +0000 Subject: Re: [PATCH v1] driver core: Use list_del_init to replace list_del at device_links_purge() From: John Garry To: James Bottomley , Greg KH CC: "Martin K . Petersen" , "linux-scsi@vger.kernel.org" , Linuxarm , "linux-kernel@vger.kernel.org" , "saravanak@google.com" , Arnd Bergmann References: <1578483244-50723-1-git-send-email-luojiaxing@huawei.com> <20200108122658.GA2365903@kroah.com> <73252c08-ac46-5d0d-23ec-16c209bd9b9a@huawei.com> <1578498695.3260.5.camel@linux.ibm.com> <20200108155700.GA2459586@kroah.com> <1578499287.3260.7.camel@linux.ibm.com> <4b185c9f-7fa2-349d-9f72-3c787ac30377@huawei.com> Message-ID: <3826a83d-a220-2f7d-59f6-efe8a4b995d7@huawei.com> Date: Wed, 8 Jan 2020 17:10:26 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.1.2 MIME-Version: 1.0 In-Reply-To: <4b185c9f-7fa2-349d-9f72-3c787ac30377@huawei.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Originating-IP: [10.202.226.43] X-ClientProxiedBy: lhreml729-chm.china.huawei.com (10.201.108.80) To lhreml724-chm.china.huawei.com (10.201.108.75) X-CFilter-Loop: Reflected Sender: linux-scsi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org On 08/01/2020 16:08, John Garry wrote: > On 08/01/2020 16:01, James Bottomley wrote: >>>>>     cdev->dev = NULL; >>>>>             return device_add(&cdev->cdev); >>>>>         } >>>>>     } >>>>>     return -ENODEV; >>>>> } >>>> The design of the code is simply to remove the link to the inserted >>>> device which has been removed. >>>> >>>> I*think*  this means the calls to device_del and device_add are >>>> unnecessary and should go.  enclosure_remove_links and the put of >>>> the >>>> enclosed device should be sufficient. >>> That would make more sense than trying to "reuse" the device >>> structure >>> here by tearing it down and adding it back. >> OK, let's try that.  This should be the patch if someone can try it >> (I've compile tested it, but the enclosure system is under a heap of >> stuff in the garage). > > I can test it now. > Yeah, that looks to have worked ok. SES disk locate was also fine after losing and rediscovering the disk. Thanks, John > But it is a bit suspicious that we had the device_del() and device_add() > at all, especially since the code change makes it look a bit more like > pre-43d8eb9cfd0 ("ses: add support for enclosure component hot removal") > > John > >> >> James >> >> --- >> >> diff --git a/drivers/misc/enclosure.c b/drivers/misc/enclosure.c >> index 6d27ccfe0680..3c2d405bc79b 100644 >> --- a/drivers/misc/enclosure.c >> +++ b/drivers/misc/enclosure.c >> @@ -406,10 +406,9 @@ int enclosure_remove_device(struct >> enclosure_device *edev, struct device *dev) >>           cdev = &edev->component[i]; >>           if (cdev->dev == dev) { >>               enclosure_remove_links(cdev); >> -            device_del(&cdev->cdev); >>               put_device(dev); >>               cdev->dev = NULL; >> -            return device_add(&cdev->cdev); >> +            return 0; >>           } >>       } >>       return -ENODEV; > > _______________________________________________ > Linuxarm mailing list > Linuxarm@huawei.com > http://hulk.huawei.com/mailman/listinfo/linuxarm > .