FreeBSD Bugzilla – Attachment 253494 Details for
Bug 281177
13.2 works, 13.3 and 14.x installers panic on older qlogic isp card
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch to disable FTL handling on 24xx
281177.patch (text/plain), 478 bytes, created by
Joerg Pulz
on 2024-09-11 07:12:01 UTC
(
hide
)
Description:
patch to disable FTL handling on 24xx
Filename:
MIME Type:
Creator:
Joerg Pulz
Created:
2024-09-11 07:12:01 UTC
Size:
478 bytes
patch
obsolete
>diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c >index aa2f1fb74c59..7b47ea66a15e 100644 >--- a/sys/dev/isp/isp.c >+++ b/sys/dev/isp/isp.c >@@ -176,7 +176,11 @@ isp_get_flash_addrs(ispsoftc_t *isp) > fcp->flt_region_flt = ISP24XX_FLT_ADDR; > } > fcp->flt_length = 0; >- r = isp_read_flthdr_2xxx(isp); >+ if (IS_25XX(isp)) { >+ r = isp_read_flthdr_2xxx(isp); >+ } else { >+ r = -1; >+ } > if (r == 0) { > isp_read_flt_2xxx(isp); > } else { /* fallback to hardcoded NVRAM address */
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 281177
: 253494 |
255031
|
255032
|
255034
|
255035
|
255041