* [PATCH 02/38] move atp870u_remove to .devexit.text
[not found] <1259096853-18909-1-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:06 ` Uwe Kleine-König
[not found] ` <1259096853-18909-3-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
0 siblings, 2 replies; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
The function atp870u_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Alan Cox <alan@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
drivers/scsi/atp870u.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/atp870u.c b/drivers/scsi/atp870u.c
index b137e56..1059167 100644
--- a/drivers/scsi/atp870u.c
+++ b/drivers/scsi/atp870u.c
@@ -3143,7 +3143,7 @@ static int atp870u_biosparam(struct scsi_device *disk, struct block_device *dev,
return 0;
}
-static void atp870u_remove (struct pci_dev *pdev)
+static void __devexit atp870u_remove (struct pci_dev *pdev)
{
struct atp_unit *devext = pci_get_drvdata(pdev);
struct Scsi_Host *pshost = devext->host;
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 05/38] move initio_remove_one to .devexit.text
[not found] ` <1259096853-18909-4-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-6-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
The function initio_remove_one is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Alan Cox <alan@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
drivers/scsi/initio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c
index 89a5948..8bbfd99 100644
--- a/drivers/scsi/initio.c
+++ b/drivers/scsi/initio.c
@@ -2964,7 +2964,7 @@ out_disable_device:
* finished being used.
*/
-static void initio_remove_one(struct pci_dev *pdev)
+static void __devexit initio_remove_one(struct pci_dev *pdev)
{
struct Scsi_Host *host = pci_get_drvdata(pdev);
struct initio_host *s = (struct initio_host *)host->hostdata;
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 07/38] move lasi700_driver_remove to .devexit.text
[not found] ` <1259096853-18909-6-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-8-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, Kyle McMartin,
Kay Sievers, James Bottomley, linux-scsi, Helge Deller
The function lasi700_driver_remove is used only wrapped by __devexit_p
so define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Helge Deller <deller@gmx.de>
---
drivers/scsi/lasi700.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/lasi700.c b/drivers/scsi/lasi700.c
index b3d3131..a192914 100644
--- a/drivers/scsi/lasi700.c
+++ b/drivers/scsi/lasi700.c
@@ -147,7 +147,7 @@ lasi700_probe(struct parisc_device *dev)
return -ENODEV;
}
-static int __exit
+static int __devexit
lasi700_driver_remove(struct parisc_device *dev)
{
struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 09/38] move megaraid_detach_one to .devexit.text
[not found] ` <1259096853-18909-8-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-10-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Neela Syam Kolli, James E.J. Bottomley, Yang Hongyang,
linux-scsi
The function megaraid_detach_one is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Neela Syam Kolli <megaraidlinux@lsi.com>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/megaraid/megaraid_mbox.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/megaraid/megaraid_mbox.c b/drivers/scsi/megaraid/megaraid_mbox.c
index 234f0b7..9fc9cf7 100644
--- a/drivers/scsi/megaraid/megaraid_mbox.c
+++ b/drivers/scsi/megaraid/megaraid_mbox.c
@@ -76,7 +76,7 @@ static int megaraid_init(void);
static void megaraid_exit(void);
static int megaraid_probe_one(struct pci_dev*, const struct pci_device_id *);
-static void megaraid_detach_one(struct pci_dev *);
+static void __devexit megaraid_detach_one(struct pci_dev *);
static void megaraid_mbox_shutdown(struct pci_dev *);
static int megaraid_io_attach(adapter_t *);
@@ -551,7 +551,7 @@ out_probe_one:
*
* This routine is also called from the PCI hotplug system.
*/
-static void
+static void __devexit
megaraid_detach_one(struct pci_dev *pdev)
{
adapter_t *adapter;
--
1.6.5.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 14/38] move NCR_Q720_remove to .devexit.text
[not found] ` <1259096853-18909-13-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-15-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, James E.J. Bottomley, linux-scsi
The function NCR_Q720_remove is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/NCR_Q720.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/NCR_Q720.c b/drivers/scsi/NCR_Q720.c
index a8bbdc2..1a398a8 100644
--- a/drivers/scsi/NCR_Q720.c
+++ b/drivers/scsi/NCR_Q720.c
@@ -325,7 +325,7 @@ NCR_Q720_remove_one(struct Scsi_Host *host)
ncr53c8xx_release(host);
}
-static int __exit
+static int __devexit
NCR_Q720_remove(struct device *dev)
{
struct NCR_Q720_private *p = dev_get_drvdata(dev);
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 18/38] move sgiwd93_remove to .devexit.text
[not found] ` <1259096853-18909-17-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 19/38] move snirm710_driver_remove " Uwe Kleine-König
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, James Bottomley, Dmitri Vorobiev,
linux-scsi
The function sgiwd93_remove is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/sgiwd93.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c
index 0807b26..4f33f7a 100644
--- a/drivers/scsi/sgiwd93.c
+++ b/drivers/scsi/sgiwd93.c
@@ -297,7 +297,7 @@ out:
return err;
}
-static int __exit sgiwd93_remove(struct platform_device *pdev)
+static int __devexit sgiwd93_remove(struct platform_device *pdev)
{
struct Scsi_Host *host = platform_get_drvdata(pdev);
struct ip22_hostdata *hdata = (struct ip22_hostdata *) host->hostdata;
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 19/38] move snirm710_driver_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 18/38] move sgiwd93_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-20-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, Kay Sievers,
James Bottomley, Greg Kroah-Hartman, linux-scsi
The function snirm710_driver_remove is used only wrapped by __devexit_p
so define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>
---
drivers/scsi/sni_53c710.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/sni_53c710.c b/drivers/scsi/sni_53c710.c
index 37b3359..c941a00 100644
--- a/drivers/scsi/sni_53c710.c
+++ b/drivers/scsi/sni_53c710.c
@@ -116,7 +116,7 @@ static int __init snirm710_probe(struct platform_device *dev)
return -ENODEV;
}
-static int __exit snirm710_driver_remove(struct platform_device *dev)
+static int __devexit snirm710_driver_remove(struct platform_device *dev)
{
struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
struct NCR_700_Host_Parameters *hostdata =
--
1.6.5.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 21/38] move stex_remove to .devexit.text
[not found] ` <1259096853-18909-20-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-22-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Willem Riede, James E.J. Bottomley, Kai Mäkisara,
James Bottomley, Ed Lin, Yang Hongyang, linux-scsi, osst-users
The function stex_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Willem Riede <osst@riede.org>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: "Kai Mäkisara" <Kai.Makisara@kolumbus.fi>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Ed Lin <ed.lin@promise.com>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-scsi@vger.kernel.org
Cc: osst-users@lists.sourceforge.net
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/stex.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c
index 09fa886..09ee386 100644
--- a/drivers/scsi/stex.c
+++ b/drivers/scsi/stex.c
@@ -1679,7 +1679,7 @@ static void stex_hba_free(struct st_hba *hba)
hba->dma_mem, hba->dma_handle);
}
-static void stex_remove(struct pci_dev *pdev)
+static void __devexit stex_remove(struct pci_dev *pdev)
{
struct st_hba *hba = pci_get_drvdata(pdev);
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 23/38] move zalon_remove to .devexit.text
[not found] ` <1259096853-18909-22-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-24-git-send-email-u.kleine-koenig@pengutronix.de>
0 siblings, 1 reply; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, James Bottomley, Kyle McMartin,
Kay Sievers, Helge Deller, linux-scsi, Greg Kroah-Hartman
The function zalon_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Helge Deller <deller@gmx.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/scsi/zalon.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/zalon.c b/drivers/scsi/zalon.c
index 27e84e4..1f8c03d 100644
--- a/drivers/scsi/zalon.c
+++ b/drivers/scsi/zalon.c
@@ -167,7 +167,7 @@ static struct parisc_device_id zalon_tbl[] = {
MODULE_DEVICE_TABLE(parisc, zalon_tbl);
-static int __exit zalon_remove(struct parisc_device *dev)
+static int __devexit zalon_remove(struct parisc_device *dev)
{
struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 27/38] move bfad_pci_remove to .devexit.text
[not found] ` <1259096853-18909-26-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, Jing Huang, James Bottomley, linux-scsi
The function bfad_pci_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Jing Huang <huangj@brocade.com>
Cc: James Bottomley <James.Bottomley@suse.de>
Cc: linux-kernel@vger.kernel.org
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: linux-scsi@vger.kernel.org
---
drivers/scsi/bfa/bfad.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/bfa/bfad.c b/drivers/scsi/bfa/bfad.c
index 6f2be5a..c4d3c91 100644
--- a/drivers/scsi/bfa/bfad.c
+++ b/drivers/scsi/bfa/bfad.c
@@ -1000,7 +1000,7 @@ out:
/**
* PCI remove entry.
*/
-void
+void __devexit
bfad_pci_remove(struct pci_dev *pdev)
{
struct bfad_s *bfad = pci_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:06 ` [PATCH 02/38] move atp870u_remove to .devexit.text Uwe Kleine-König
[not found] ` <1259096853-18909-3-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:38 ` James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
1 sibling, 2 replies; 13+ messages in thread
From: James Bottomley @ 2009-11-24 21:38 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Yang Hongyang, Alan Cox, linux-scsi, Alan Cox
On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> The function atp870u_remove is used only wrapped by __devexit_p so define
> it using __devexit.
But there's really no point to this. HOTPLUG is always defined on SCSI
systems that have these drivers, which means that _devinit/exit are
nops. That makes the change purely cosmetic and not worth churning two
dozen drivers for.
Even for the EMBEDDED cases that should care about this, the maintainers
have indicated that the memory savings simply aren't worth the hassle of
tracking the sectional updates.
James
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
@ 2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
1 sibling, 0 replies; 13+ messages in thread
From: Uwe Kleine-König @ 2009-11-25 9:26 UTC (permalink / raw)
To: James Bottomley
Cc: linux-kernel, akpm, Yang Hongyang, Alan Cox, linux-scsi, Alan Cox
On Tue, Nov 24, 2009 at 03:38:16PM -0600, James Bottomley wrote:
> On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> > The function atp870u_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> But there's really no point to this. HOTPLUG is always defined on SCSI
> systems that have these drivers, which means that _devinit/exit are
> nops. That makes the change purely cosmetic and not worth churning two
> dozen drivers for.
>
> Even for the EMBEDDED cases that should care about this, the maintainers
> have indicated that the memory savings simply aren't worth the hassle of
> tracking the sectional updates.
I think there are people that care. Anyhow, then the best thing you can
do is something like
find drivers/scsi -type f -print0 | xargs perl -p -i -e 's/\b__(dev)?exit(_p)?\b//'
Then my scripts will drop the scsi related patches.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
@ 2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
1 sibling, 0 replies; 13+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2009-11-25 13:38 UTC (permalink / raw)
To: James Bottomley
Cc: Uwe Kleine-König, linux-kernel, akpm, Yang Hongyang,
Alan Cox, linux-scsi, Alan Cox
On Tuesday 24 November 2009 10:38:16 pm James Bottomley wrote:
> On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> > The function atp870u_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> But there's really no point to this. HOTPLUG is always defined on SCSI
> systems that have these drivers, which means that _devinit/exit are
> nops. That makes the change purely cosmetic and not worth churning two
> dozen drivers for.
Looking at things from a bit different angle:
These tags still have some value as a documentation and help
in maintaining some level of the coherency between different
parts of a kernel (which is a Good Thing).
--
Bartlomiej Zolnierkiewicz
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2009-11-25 13:38 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1259096853-18909-1-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:06 ` [PATCH 02/38] move atp870u_remove to .devexit.text Uwe Kleine-König
[not found] ` <1259096853-18909-3-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-4-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 05/38] move initio_remove_one " Uwe Kleine-König
[not found] ` <1259096853-18909-6-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 07/38] move lasi700_driver_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-8-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 09/38] move megaraid_detach_one " Uwe Kleine-König
[not found] ` <1259096853-18909-10-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-11-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-12-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-13-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 14/38] move NCR_Q720_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-15-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-16-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-17-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 18/38] move sgiwd93_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 19/38] move snirm710_driver_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-20-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 21/38] move stex_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-22-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 23/38] move zalon_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-24-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-25-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-26-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 27/38] move bfad_pci_remove " Uwe Kleine-König
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox