I have 9272-8i and it have been working well on netbsd-9 since several weeks ago.
> mfii0 at pci1 dev 0 function 0: "LSI MegaRAID SAS 9272-8i", firmware > 23.34.0-0019, 512MB cache > mfii0: interrupting at ioapic0 pin 16 Could you all who have problem with mfii(4) test with the following diff? Index: mfii.c =================================================================== RCS file: /cvsroot/src/sys/dev/pci/mfii.c,v retrieving revision 1.15 diff -u -p -r1.15 mfii.c --- mfii.c 13 May 2022 10:44:38 -0000 1.15 +++ mfii.c 21 Jun 2022 07:46:51 -0000 @@ -1840,7 +1840,11 @@ mfii_load_mfa(struct mfii_softc *sc, str static void mfii_start(struct mfii_softc *sc, struct mfii_ccb *ccb) { +#if defined(__LP64__) && 0 u_long *r = (u_long *)&ccb->ccb_req; +#else + uint32_t *r = (uint32_t *)&ccb->ccb_req; +#endif bus_dmamap_sync(sc->sc_dmat, MFII_DMA_MAP(sc->sc_requests), ccb->ccb_request_offset, MFII_REQUEST_SIZE, -- ----------------------------------------------- SAITOH Masanobu (msai...@execsw.org msai...@netbsd.org)