|
@@ -363,6 +363,8 @@ static int ahd_linux_run_command(struct ahd_softc*,
|
|
|
struct scsi_cmnd *);
|
|
|
static void ahd_linux_setup_tag_info_global(char *p);
|
|
|
static int aic79xx_setup(char *c);
|
|
|
+static void ahd_freeze_simq(struct ahd_softc *ahd);
|
|
|
+static void ahd_release_simq(struct ahd_softc *ahd);
|
|
|
|
|
|
static int ahd_linux_unit;
|
|
|
|
|
@@ -2016,13 +2018,13 @@ ahd_linux_queue_cmd_complete(struct ahd_softc *ahd, struct scsi_cmnd *cmd)
|
|
|
cmd->scsi_done(cmd);
|
|
|
}
|
|
|
|
|
|
-void
|
|
|
+static void
|
|
|
ahd_freeze_simq(struct ahd_softc *ahd)
|
|
|
{
|
|
|
scsi_block_requests(ahd->platform_data->host);
|
|
|
}
|
|
|
|
|
|
-void
|
|
|
+static void
|
|
|
ahd_release_simq(struct ahd_softc *ahd)
|
|
|
{
|
|
|
scsi_unblock_requests(ahd->platform_data->host);
|