From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Ott Subject: Re: [PATCH 8/9] PCI: hotplug: Embed hotplug_slot Date: Mon, 3 Sep 2018 19:54:49 +0200 (CEST) Message-ID: References: <9918fbca94bcfc03d1560b191d138d3e6664cc86.1534686485.git.lukas@wunner.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: In-Reply-To: <9918fbca94bcfc03d1560b191d138d3e6664cc86.1534686485.git.lukas@wunner.de> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+glppe-linuxppc-embedded-2=m.gmane.org@lists.ozlabs.org Sender: "Linuxppc-dev" To: Lukas Wunner Cc: linux-pci@vger.kernel.org, platform-driver-x86@vger.kernel.org, Paul Mackerras , Scott Murray , Sebastian Ott , linux-acpi@vger.kernel.org, Bjorn Helgaas , Darren Hart , Len Brown , linux-s390@vger.kernel.org, acpi4asus-user@lists.sourceforge.net, Gavin Shan , Sinan Kaya , Mika Westerberg , Gerald Schaefer , Greg Kroah-Hartman , "Rafael J. Wysocki" , Corentin Chary , linuxppc-dev@lists.ozlabs.org, Andy Shevchenko List-Id: linux-acpi@vger.kernel.org On Sun, 19 Aug 2018, Lukas Wunner wrote: > When the PCI hotplug core and its first user, cpqphp, were introduced in > February 2002 with historic commit a8a2069f432c, cpqphp allocated a slot > struct for its internal use plus a hotplug_slot struct to be registered > with the hotplug core and linked the two with pointers: > https://git.kernel.org/tglx/history/c/a8a2069f432c > > Nowadays, the predominant pattern in the tree is to embed ("subclass") > such structures in one another and cast to the containing struct with > container_of(). But it wasn't until July 2002 that container_of() was > introduced with historic commit ec4f214232cf: > https://git.kernel.org/tglx/history/c/ec4f214232cf > > pnv_php, introduced in 2016, did the right thing and embedded struct > hotplug_slot in its internal struct pnv_php_slot, but all other drivers > cargo-culted cpqphp's design and linked separate structs with pointers. > > Embedding structs is preferrable to linking them with pointers because > it requires fewer allocations, thereby reducing overhead and simplifying > error paths. Casting an embedded struct to the containing struct > becomes a cheap subtraction rather than a dereference. And having fewer > pointers reduces the risk of them pointing nowhere either accidentally > or due to an attack. > > Convert all drivers to embed struct hotplug_slot in their internal slot > struct. The "private" pointer in struct hotplug_slot thereby becomes > unused, so drop it. > > Signed-off-by: Lukas Wunner > Cc: Rafael J. Wysocki > Cc: Len Brown > Cc: Scott Murray > Cc: Benjamin Herrenschmidt > Cc: Paul Mackerras > Cc: Michael Ellerman > Cc: Gavin Shan > Cc: Sebastian Ott > Cc: Gerald Schaefer > Cc: Corentin Chary > Cc: Darren Hart > Cc: Andy Shevchenko for s390_pci_hpc.c: Acked-by: Sebastian Ott