Re: [ide-scsi] "structure has no member named `tag'"

From: Douglas Gilbert (dougg@torque.net)
Date: Tue Dec 03 2002 - 18:30:16 EST


"Rusty Lynch" <rusty@linux.co.intel.com> wrote
>
> There was a discussion on this at
> http://marc.theaimsgroup.com/?t=103861087100001&r=1&w=2
>
> To get past this you can just change the line to compare
> ->name instead ->tag until the real fix lands.

For lk 2.5.50-bk3 that attached patch should work.

Doug Gilbert


--- linux/drivers/scsi/ide-scsi.c 2002-11-23 13:01:23.000000000 +1100
+++ linux/drivers/scsi/ide-scsi.c2550mike 2002-12-01 00:44:26.000000000 +1100
@@ -764,7 +764,7 @@
 
         if (disk) {
                 struct Scsi_Device_Template **p = disk->private_data;
- if (strcmp((*p)->tag, "sg") == 0)
+ if (strcmp((*p)->scsi_driverfs_driver.name, "sg") == 0)
                         return test_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
         }
         return test_bit(IDESCSI_TRANSFORM, &scsi->transform);

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



This archive was generated by hypermail 2b29 : Sat Dec 07 2002 - 22:00:17 EST