RE: 2.4.17 panic on boot - patch for ide-pci

From: Alex Scheele (alex@packetstorm.nu)
Date: Tue Feb 05 2002 - 12:59:09 EST


[snip]
> --- drivers/ide/ide-pci.c Mon Feb 4 19:44:02 2002
> +++ drivers/ide/ide-pci.orig.c Mon Feb 4 19:37:50 2002
> @@ -836,11 +836,7 @@
> pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
> class_rev &= 0xff;
>
> - if(class_rev >= (sizeof(chipset_names)/sizeof(char *))) {
> - class_rev = (sizeof(chipset_names)/sizeof(char *)) - 1;
> - }
> -
> - strncpy(d->name, chipset_names[class_rev], strlen(d->name));
> + strcpy(d->name, chipset_names[class_rev]);
>
> switch(class_rev) {
> case 4:
> --- drivers/ide/hpt366.c Mon Feb 4 19:32:45 2002
> +++ drivers/ide/hpt366.orig.c Mon Feb 4 19:33:30 2002
> @@ -214,9 +214,6 @@
> pci_read_config_dword(bmide_dev, PCI_CLASS_REVISION, &class_rev);
> class_rev &= 0xff;
>
> - if(class_rev >= (sizeof(chipset_names)/sizeof(char *)))
> - class_rev = (sizeof(chipset_names)/sizeof(char *)) -1;
> -
> /*
> * at that point bibma+0x2 et bibma+0xa are byte registers
> * to investigate:

Seems u diffed the wrong way :) original file should be first.

--
	Alex (alex@packetstorm.nu)

- 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 : Thu Feb 07 2002 - 21:00:43 EST