Received: by 2002:ac0:a591:0:0:0:0:0 with SMTP id m17-v6csp1594762imm; Fri, 6 Jul 2018 03:02:30 -0700 (PDT) X-Google-Smtp-Source: AAOMgpd/+sSyI3sDhMYHZRpDZJabmOE3rupPDTbBFXa31Wki+9NbE0jsRz+dOVmD5EmvRI7eqEky X-Received: by 2002:a63:7f16:: with SMTP id a22-v6mr8854150pgd.255.1530871350540; Fri, 06 Jul 2018 03:02:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530871350; cv=none; d=google.com; s=arc-20160816; b=RRKA3+0Hmh2Yu+4FtgGzr+TEnjkfCAlu3MhSVzbgWeumF6YrqXwdubNZMiobcwK5d/ 5mD8tKLQt4+oihkvjzX45a52m80p+ExAD5kgs+IIyDaUuBGwZscdpNzfeB7+T3dkMSTS gH41kzMtthiSJKu5xUbNVdqSci6Hol8+hFilQ30oMAJFiMW+oJ5rJFLb3m9BAZV2DAyB BgBLDwDT8zBrznoRjN9G77bqNnkTq6Xz85tsTmE4TCgH8RCpkCV8EvW53ZtzSHIUgD+Q Xdd2XnXGU0BEOJpanD99fxDdiUBH0QOfj6jKBYDeHjG4IzWA0Hpwqmt9tpltHE7fDMvD TRiw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=NJhMyAnG1ae3GitO4+Zs0AVWvhmVN2OcLH7qP48b99E=; b=UrTgiJZy205Hydr/JUJgnT7qVisN2jvEl4tMWgyiLWw7o6LkEHALMxGUHtHDizbZBq 88lH2yxsNcEen8utVI3sUez3QWod/5be/rwBO3i7Bb88oB+zJ4DIerPjNEgykReFeniF PDSUkiLibrbOm6Z1OxiPSCdpehvgO3iTHEu+JbLAwXgk8n9zOI7oIOffoMZKFwbVQOco Hfw+Xgjgbl6U1mXCqJlJ0rO89hp6oJxP8xJhdGFaUFV8jTUyID2psUH7V/KSvj10ZhpN Al5e5DWvTxPppiGmTm2Rjmp9/YyfBJK5icHwjqvXwakgkdV7b7LJv6LFVSxKbUyLMVXH NBRA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g3-v6si7655780plp.506.2018.07.06.03.02.14; Fri, 06 Jul 2018 03:02:30 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753705AbeGFKBg (ORCPT + 99 others); Fri, 6 Jul 2018 06:01:36 -0400 Received: from cloudserver094114.home.pl ([79.96.170.134]:59504 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751517AbeGFKBe (ORCPT ); Fri, 6 Jul 2018 06:01:34 -0400 Received: from 79.184.254.38.ipv4.supernova.orange.pl (79.184.254.38) (HELO aspire.rjw.lan) by serwer1319399.home.pl (79.96.170.134) with SMTP (IdeaSmtpServer 0.83) id e393566fd7189947; Fri, 6 Jul 2018 12:01:32 +0200 From: "Rafael J. Wysocki" To: Greg Kroah-Hartman Cc: Pingfan Liu , linux-kernel@vger.kernel.org, Grygorii Strashko , Christoph Hellwig , Bjorn Helgaas , Dave Young , linux-pci@vger.kernel.org, Lukas Wunner , Linux PM Subject: [PATCH] driver core: Drop devices_kset_move_last() call from really_probe() Date: Fri, 06 Jul 2018 12:00:06 +0200 Message-ID: <8816662.k3KXbdkA2e@aspire.rjw.lan> In-Reply-To: References: <1530600642-25090-1-git-send-email-kernelfans@gmail.com> <2108146.dv4EAOf6IP@aspire.rjw.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rafael J. Wysocki The devices_kset_move_last() call in really_probe() is a mistake as it may cause parents to follow children in the devices_kset list which then causes system shutdown to fail. Namely, if a device has children before really_probe() is called for it (which is not uncommon), that call will cause it to be reordered after the children in the devices_kset list and the ordering of that list will not reflect the correct device shutdown order. Also it causes the devices_kset list to be constantly reordered until all drivers have been probed which is totally pointless overhead in the majority of cases. For that reason, revert the really_probe() modifications made by commit 52cdbdd49853. Fixes: 52cdbdd49853 (driver core: correct device's shutdown order) Link: https://lore.kernel.org/lkml/CAFgQCTt7VfqM=UyCnvNFxrSw8Z6cUtAi3HUwR4_xPAc03SgHjQ@mail.gmail.com/ Reported-by: Pingfan Liu Signed-off-by: Rafael J. Wysocki --- drivers/base/dd.c | 8 -------- 1 file changed, 8 deletions(-) Index: linux-pm/drivers/base/dd.c =================================================================== --- linux-pm.orig/drivers/base/dd.c +++ linux-pm/drivers/base/dd.c @@ -434,14 +434,6 @@ re_probe: goto probe_failed; } - /* - * Ensure devices are listed in devices_kset in correct order - * It's important to move Dev to the end of devices_kset before - * calling .probe, because it could be recursive and parent Dev - * should always go first - */ - devices_kset_move_last(dev); - if (dev->bus->probe) { ret = dev->bus->probe(dev); if (ret)