* [PATCH 1/7] scsi: Export scsi_bus_type
@ 2011-12-06 16:37 Holger Macht
2012-01-18 8:05 ` James Bottomley
0 siblings, 1 reply; 2+ messages in thread
From: Holger Macht @ 2011-12-06 16:37 UTC (permalink / raw)
To: linux-acpi, linux-scsi; +Cc: Matthew Garrett
From: Matthew Garrett <mjg@redhat.com>
We need scsi_bus_type in order to be able to bind ata devices against
acpi devices. Export it from the scsi core.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Acked-by: Holger Macht <holger@homac.de>
---
drivers/scsi/scsi_priv.h | 1 -
include/scsi/scsi.h | 2 ++
2 files changed, 2 insertions(+), 1 deletion(-)
Index: linux/drivers/scsi/scsi_priv.h
===================================================================
--- linux.orig/drivers/scsi/scsi_priv.h
+++ linux/drivers/scsi/scsi_priv.h
@@ -134,7 +134,6 @@ extern int scsi_sysfs_target_initialize(
extern struct scsi_transport_template blank_transport_template;
extern void __scsi_remove_device(struct scsi_device *);
-extern struct bus_type scsi_bus_type;
extern const struct attribute_group *scsi_sysfs_shost_attr_groups[];
/* scsi_netlink.c */
Index: linux/include/scsi/scsi.h
===================================================================
--- linux.orig/include/scsi/scsi.h
+++ linux/include/scsi/scsi.h
@@ -187,6 +187,8 @@ struct scsi_cmnd;
#define SCSI_MAX_VARLEN_CDB_SIZE 260
+extern struct bus_type scsi_bus_type;
+
/* defined in T10 SCSI Primary Commands-2 (SPC2) */
struct scsi_varlen_cdb_hdr {
__u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH 1/7] scsi: Export scsi_bus_type
2011-12-06 16:37 [PATCH 1/7] scsi: Export scsi_bus_type Holger Macht
@ 2012-01-18 8:05 ` James Bottomley
0 siblings, 0 replies; 2+ messages in thread
From: James Bottomley @ 2012-01-18 8:05 UTC (permalink / raw)
To: Holger Macht; +Cc: linux-acpi, linux-scsi, Matthew Garrett
On Tue, 2011-12-06 at 17:37 +0100, Holger Macht wrote:
> From: Matthew Garrett <mjg@redhat.com>
>
> We need scsi_bus_type in order to be able to bind ata devices against
> acpi devices. Export it from the scsi core.
>
> Signed-off-by: Matthew Garrett <mjg@redhat.com>
> Acked-by: Holger Macht <holger@homac.de
If you're transmitting a patch, that needs to be a signed-off-by not an
acked-by (because you're part of the transmission sequence).
> drivers/scsi/scsi_priv.h | 1 -
> include/scsi/scsi.h | 2 ++
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> Index: linux/drivers/scsi/scsi_priv.h
> ===================================================================
> --- linux.orig/drivers/scsi/scsi_priv.h
> +++ linux/drivers/scsi/scsi_priv.h
> @@ -134,7 +134,6 @@ extern int scsi_sysfs_target_initialize(
> extern struct scsi_transport_template blank_transport_template;
> extern void __scsi_remove_device(struct scsi_device *);
>
> -extern struct bus_type scsi_bus_type;
> extern const struct attribute_group *scsi_sysfs_shost_attr_groups[];
>
> /* scsi_netlink.c */
> Index: linux/include/scsi/scsi.h
> ===================================================================
> --- linux.orig/include/scsi/scsi.h
> +++ linux/include/scsi/scsi.h
> @@ -187,6 +187,8 @@ struct scsi_cmnd;
>
> #define SCSI_MAX_VARLEN_CDB_SIZE 260
>
> +extern struct bus_type scsi_bus_type;
> +
For about the third time, no to this: You're exposing deep SCSI internal
magic you shouldn't be touching. The whole reason scsi_bus_type is in
scsi_priv is that only SCSI internals should be touching it. We don't
want its use to leak outside of this.
The only reason you need it is because the odd type acpi_bus_type
insists on a bus_type parent. So the correct fix is some type of
wrapper in scsi_lib.c:
scsi_register_acpi_bus_type(struct acpi_bus_type *bus)
{
bus->bus = &scsi_bus_type;
return register_acpi_bus_type(bus);
}
EXPORT_SYMBOL_GPL(scsi_register_acpi_bus_type);
For symmetry we probably want the unregister (it can be a pure inline
passthrough).
James
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-18 8:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-06 16:37 [PATCH 1/7] scsi: Export scsi_bus_type Holger Macht
2012-01-18 8:05 ` James Bottomley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox