diff --git a/[refs] b/[refs] index 75ac3a444368..59d4ee34a41d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 96aa1b419d47286db446f292cf898bb1a8b27f24 +refs/heads/master: 75230ff2751e88d594a13a70eae2c146f45e323b diff --git a/trunk/drivers/block/cciss.c b/trunk/drivers/block/cciss.c index 31064df1370a..ce1a75df5902 100644 --- a/trunk/drivers/block/cciss.c +++ b/trunk/drivers/block/cciss.c @@ -4519,6 +4519,12 @@ static __devinit int cciss_kdump_hard_reset_controller(struct pci_dev *pdev) misc_fw_support = readl(&cfgtable->misc_fw_support); use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET; + /* The doorbell reset seems to cause lockups on some Smart + * Arrays (e.g. P410, P410i, maybe others). Until this is + * fixed or at least isolated, avoid the doorbell reset. + */ + use_doorbell = 0; + rc = cciss_controller_hard_reset(pdev, vaddr, use_doorbell); if (rc) goto unmap_cfgtable;