[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YZKr1Rqfx6Cmw+Ok@kroah.com>
Date: Mon, 15 Nov 2021 19:49:57 +0100
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Iwona Winiarska <iwona.winiarska@...el.com>
Cc: linux-kernel@...r.kernel.org, openbmc@...ts.ozlabs.org,
devicetree@...r.kernel.org, linux-aspeed@...ts.ozlabs.org,
linux-arm-kernel@...ts.infradead.org, linux-hwmon@...r.kernel.org,
linux-doc@...r.kernel.org, Rob Herring <robh+dt@...nel.org>,
Joel Stanley <joel@....id.au>,
Andrew Jeffery <andrew@...id.au>,
Jean Delvare <jdelvare@...e.com>,
Guenter Roeck <linux@...ck-us.net>,
Arnd Bergmann <arnd@...db.de>, Olof Johansson <olof@...om.net>,
Jonathan Corbet <corbet@....net>,
Borislav Petkov <bp@...en8.de>,
Pierre-Louis Bossart <pierre-louis.bossart@...ux.intel.com>,
Tony Luck <tony.luck@...el.com>,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Jae Hyun Yoo <jae.hyun.yoo@...ux.intel.com>,
Dan Williams <dan.j.williams@...el.com>,
Randy Dunlap <rdunlap@...radead.org>,
Zev Weiss <zweiss@...inix.com>,
David Muller <d.mueller@...oft.ch>,
Dave Hansen <dave.hansen@...el.com>
Subject: Re: [PATCH v3 06/13] peci: Add device detection
On Mon, Nov 15, 2021 at 07:25:45PM +0100, Iwona Winiarska wrote:
> +void peci_device_destroy(struct peci_device *device)
> +{
> + bool killed;
> +
> + device_lock(&device->dev);
> + killed = kill_device(&device->dev);
Eeek, why call this?
> + device_unlock(&device->dev);
> +
> + if (!killed)
> + return;
What happened if something changed after you unlocked it?
Why is kill_device() required at all? That's a very rare function to
call, and one that only one "bus" calls today because it is very
special (i.e. crazy and broken...)
thanks,
greg k-h
Powered by blists - more mailing lists