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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9CE36C61D97 for ; Fri, 24 Nov 2023 15:06:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345704AbjKXPGD (ORCPT ); Fri, 24 Nov 2023 10:06:03 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43886 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345657AbjKXPFo (ORCPT ); Fri, 24 Nov 2023 10:05:44 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 965811BD5 for ; Fri, 24 Nov 2023 07:05:50 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BEF88C433CA; Fri, 24 Nov 2023 15:05:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1700838350; bh=Lw4ddp5SRRaHbNDe7CMkDvQErv4vbWF/4A45oJbqhsQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pdevLJfVyCSjjA1P3fYUGSKdZZHBnKVrNkLw7Bo/RLiSgERLtxK3EsjDDdBh7DfSp BT/ltxx8EX+6aPl761mJCK+kBsI6Xj4Yqpi83meTzIS1A9hSbNQaUUx8qyURovyDs8 bN4RTVQiSHWV/s3DuiLmJUV7jYFviPxaOWnynjLc= Date: Fri, 24 Nov 2023 15:05:47 +0000 From: Greg Kroah-Hartman To: Oleksij Rempel Cc: "Rafael J. Wysocki" , Ulf Hansson , Mark Brown , kernel@pengutronix.de, linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org, linux-pm@vger.kernel.org, =?iso-8859-1?Q?S=F8ren?= Andersen Subject: Re: [PATCH v1 0/3] introduce priority-based shutdown support Message-ID: <2023112403-laxative-lustiness-6a7f@gregkh> References: <20231124145338.3112416-1-o.rempel@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231124145338.3112416-1-o.rempel@pengutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 24, 2023 at 03:53:35PM +0100, Oleksij Rempel wrote: > Hi, > > This patch series introduces support for prioritized device shutdown. > The main goal is to enable prioritization for shutting down specific > devices, particularly crucial in scenarios like power loss where > hardware damage can occur if not handled properly. Oh fun, now we will have drivers and subsystems fighting over their priority, with each one insisting that they are the most important! /s Anyway, this is ripe for problems and issues in the long-run, what is so special about this hardware that it can not just shutdown in the existing order that it has to be "first" over everyone else? What exactly does this prevent and what devices are requiring this? And most importantly, what has changed in the past 20+ years to suddenly require this new functionality and how does any other operating system handle it? thanks, greg k-h