On Fri, Mar 30, 2007 at 03:21:33PM -0700, Ed Lin wrote:
> +     if (hba->cardtype == st_shasta) {
>               req->lun = lun;
>               req->target = id;
> +     } else if (hba->cardtype == st_yosemite){
> +             req->lun = id * ST_MAX_LUN_PER_TARGET + lun;
> +             req->target = 0;
> +     } else {
> +             /* st_vsc and st_vsc1 */
> +             req->lun = 0;
> +             req->target = id * ST_MAX_LUN_PER_TARGET + lun;

I don't get why you can't export id as targer and lun as lun for
the !st_shasta types.  Could you explain in detail what the problem
with that approach would be?

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to