#include <linux/completion.h>
int gdth_set_info(struct Scsi_Host *host, char *buffer, int length)
gdth_ha_str *ha = shost_priv(host);
TRACE2(("gdth_set_info() ha %d\n",ha->hanum,));
if (strncmp(buffer,"gdth",4) == 0) {
ret_val = gdth_set_asc_info(host, buffer, length, ha);
static int gdth_set_asc_info(struct Scsi_Host *host, char *buffer,
int length, gdth_ha_str *ha)
int orig_length, drive, wb_mode;
char cmnd[MAX_COMMAND_SIZE];
memset(&gdtcmd, 0, sizeof(gdth_cmd_str));
TRACE2(("gdth_set_asc_info() ha %d\n",ha->hanum));
orig_length = length + 5;
if (length >= 5 && strncmp(buffer,"flush",5)==0) {
if (length && *buffer>='0' && *buffer<='9') {
drive = (int)(*buffer-'0');
if (length && *buffer>='0' && *buffer<='9') {
drive = drive*10 + (int)(*buffer-'0');
printk("GDT: Flushing host drive %d .. ",drive);
printk("GDT: Flushing all host drives .. ");
for (i = 0; i < MAX_HDRIVES; ++i) {
if (ha->hdr[i].present) {
if (drive != -1 && i != drive)