On Mon, 04 Dec 2006 15:18:20 -0800 akpm@xxxxxxxx wrote: Hi, What's the status of these 30 scsi patches from akpm? Thanks. > From: Adrian Bunk <bunk@xxxxxxxxx> > > This patch contains the following cleanups: > - make needlessly global functions static > - every file should #include the headers containing the prototypes for > it's global functions > > Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> > Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> > Signed-off-by: Andrew Morton <akpm@xxxxxxxx> > --- > > drivers/scsi/scsi_sysctl.c | 1 + > drivers/scsi/scsi_sysfs.c | 3 ++- > drivers/scsi/scsi_transport_fc.c | 2 +- > drivers/scsi/sr.c | 2 +- > 4 files changed, 5 insertions(+), 3 deletions(-) > > diff -puN drivers/scsi/scsi_sysctl.c~drivers-scsi-small-cleanups drivers/scsi/scsi_sysctl.c > --- a/drivers/scsi/scsi_sysctl.c~drivers-scsi-small-cleanups > +++ a/drivers/scsi/scsi_sysctl.c > @@ -9,6 +9,7 @@ > #include <linux/sysctl.h> > > #include "scsi_logging.h" > +#include "scsi_priv.h" > > > static ctl_table scsi_table[] = { > diff -puN drivers/scsi/scsi_sysfs.c~drivers-scsi-small-cleanups drivers/scsi/scsi_sysfs.c > --- a/drivers/scsi/scsi_sysfs.c~drivers-scsi-small-cleanups > +++ a/drivers/scsi/scsi_sysfs.c > @@ -16,6 +16,7 @@ > #include <scsi/scsi_host.h> > #include <scsi/scsi_tcq.h> > #include <scsi/scsi_transport.h> > +#include <scsi/scsi_driver.h> > > #include "scsi_priv.h" > #include "scsi_logging.h" > @@ -764,7 +765,7 @@ void scsi_remove_device(struct scsi_devi > } > EXPORT_SYMBOL(scsi_remove_device); > > -void __scsi_remove_target(struct scsi_target *starget) > +static void __scsi_remove_target(struct scsi_target *starget) > { > struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); > unsigned long flags; > diff -puN drivers/scsi/scsi_transport_fc.c~drivers-scsi-small-cleanups drivers/scsi/scsi_transport_fc.c > --- a/drivers/scsi/scsi_transport_fc.c~drivers-scsi-small-cleanups > +++ a/drivers/scsi/scsi_transport_fc.c > @@ -1797,7 +1797,7 @@ fc_rport_final_delete(void *data) > * Notes: > * This routine assumes no locks are held on entry. > **/ > -struct fc_rport * > +static struct fc_rport * > fc_rport_create(struct Scsi_Host *shost, int channel, > struct fc_rport_identifiers *ids) > { > diff -puN drivers/scsi/sr.c~drivers-scsi-small-cleanups drivers/scsi/sr.c > --- a/drivers/scsi/sr.c~drivers-scsi-small-cleanups > +++ a/drivers/scsi/sr.c > @@ -174,7 +174,7 @@ static void scsi_cd_put(struct scsi_cd * > * an inode for that to work, and we do not always have one. > */ > > -int sr_media_change(struct cdrom_device_info *cdi, int slot) > +static int sr_media_change(struct cdrom_device_info *cdi, int slot) > { > struct scsi_cd *cd = cdi->handle; > int retval; > _ --- ~Randy - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html