On Thu, Nov 01, 2007 at 08:05:06PM +0200, Boaz Harrosh wrote: > @@ -287,8 +287,13 @@ struct request { > /* > * when request is used as a packet command carrier > */ > - unsigned int cmd_len; > + unsigned short cmd_len; > + unsigned short varlen_cdb_len; /* length of varlen_cdb buffer */ > unsigned char cmd[BLK_MAX_CDB]; > + unsigned char *varlen_cdb; /* an optional variable-length cdb. > + * points to a user buffer that must be > + * valid until end of request > + */ > Try this instead: unsigned int cmd_len; - unsigned char cmd[BLK_MAX_CDB]; + unsigned char _cmd[BLK_MAX_CDB]; + unsigned char *cmd; Then initialise cmd to the address of _cmd. If you need to override it later (ie patch 3), you can. -- Intel are signing my paycheques ... these opinions are still mine "Bill, look, we understand that you're interested in selling us this operating system, but compare it to ours. We can't possibly take such a retrograde step." - 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