Re: Delkin Devices CFA not recognized

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> I tracked the problem down to ata_id_is_cfa() in include/linux/ata.h.
> The Delkin card doesn't match either assumption in that function.
> On the Delkin card, id[0] is 0x844a and id[83] is 0.

844A is not CF so the kernel is behaving correctly.
83 = 0 means it doesn't support the CFA feature set as an ATA device

So the question is why it is reporting 844A

My guess would be that it's trying to report a low byte of 'removable
device' not 'removable media'

> The simple fix for me is to change the id[0] check ata_id_is_cfa() in to
> include 0x844a.
> 
> --- linux-2.6.33-rc8.orig/include/linux/ata.h
> +++ linux-2.6.33-rc8/include/linux/ata.h
> @@ -841,7 +841,8 @@
> 
>  static inline int ata_id_is_cfa(const u16 *id)
>  {
> -	if (id[ATA_ID_CONFIG] == 0x848A)	/* Traditional CF */
> +	if ((id[ATA_ID_CONFIG] == 0x848A) ||	/* Traditional CF */
> +	    (id[ATA_ID_CONFIG] == 0x844A))	/* Delkin Devices CF */
>  		return 1;
>  	/*
>  	 * CF specs don't require specific value in the word 0 anymore and yet
> ---
> 
> While that works, it doesn't seem like a very good solution.
> Here are some of the ATA-related logs after the change:

If they simply got the identifier wrong then it ought to be fine. Might
be worth double checking it's removable behaviour is right. The one thing
you might do is to change in your hack is for the Delkin case also doing
a memcpy(id + whatever, "Delkin Devices", ..) to check the vendor info
matches the expected case. I'm not sure thats even worth it as I can't
see it triggering on anything but misidentified cards anyway.

Submit it to Jeff with a signed off by line.

Alan
--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Filesystems]     [Linux SCSI]     [Linux RAID]     [Git]     [Kernel Newbies]     [Linux Newbie]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Samba]     [Device Mapper]

  Powered by Linux