The NetBSD Project

CVS log for src/sys/dev/pci/mpii.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / dev / pci

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.31: download - view: text, markup, annotated - select for diffs
Sun Feb 4 20:50:30 2024 UTC (10 months, 1 week ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -3 lines
s/substract/subtract/ in comments.

Revision 1.8.10.8: download - view: text, markup, annotated - select for diffs
Thu Oct 26 15:13:38 2023 UTC (13 months, 2 weeks ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE
Diff to: previous 1.8.10.7: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.10.7: +2 -4 lines
Pull up following revision(s) (requested by buhrow in ticket #1916):

	sys/dev/pci/mpii.c: revision 1.30

Fixes for PR kern/57133:

I can now explain why this assert is firing and have a fix for it.  It is a  regression introduced in R1.22 of mpii.c.

        If a request comes in and the IOC returns a MPII_SCSIIO_STATUS_CHECK_COND condition, after
 a successful transfer, or one that is a recovered error,
 mpii(4) correctly sets the xs->error to XS_SENSE, but incorrectly sets xs->resid to 0 before
 returning the xfer to the upper scsi layers.  Once the upper layers get it, they notice the
 XS_SENSE check condition and because it's a retryable error, they increment xs_requeuecnt, set
 ERESTART and send the xfer request down to the mpii(4) layer again for a retry. What they do
 not do is reset xs->resid equal to xs->datalen.  When the xfer comes down to mpii(4) again, the
 assert happens.  The fix is for the mpii(4) driver to leave xs->resid alone when it encounters
 a MPII_SCSIIO_STATUS_CHECK_COND condition.

This bug affects NetBSD-10, netbsd-9 and netbsd-8.

Revision 1.22.4.2: download - view: text, markup, annotated - select for diffs
Thu Oct 26 15:12:10 2023 UTC (13 months, 2 weeks ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE
Diff to: previous 1.22.4.1: preferred, colored; branchpoint 1.22: preferred, colored; next MAIN 1.23: preferred, colored
Changes since revision 1.22.4.1: +2 -4 lines
Pull up following revision(s) (requested by buhrow in ticket #1756):

	sys/dev/pci/mpii.c: revision 1.30

Fixes for PR kern/57133:

I can now explain why this assert is firing and have a fix for it.  It is a  regression introduced in R1.22 of mpii.c.

        If a request comes in and the IOC returns a MPII_SCSIIO_STATUS_CHECK_COND condition, after
 a successful transfer, or one that is a recovered error,
 mpii(4) correctly sets the xs->error to XS_SENSE, but incorrectly sets xs->resid to 0 before
 returning the xfer to the upper scsi layers.  Once the upper layers get it, they notice the
 XS_SENSE check condition and because it's a retryable error, they increment xs_requeuecnt, set
 ERESTART and send the xfer request down to the mpii(4) layer again for a retry. What they do
 not do is reset xs->resid equal to xs->datalen.  When the xfer comes down to mpii(4) again, the
 assert happens.  The fix is for the mpii(4) driver to leave xs->resid alone when it encounters
 a MPII_SCSIIO_STATUS_CHECK_COND condition.

This bug affects NetBSD-10, netbsd-9 and netbsd-8.

Revision 1.29.6.1: download - view: text, markup, annotated - select for diffs
Thu Oct 26 15:11:02 2023 UTC (13 months, 2 weeks ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +2 -4 lines
Pull up following revision(s) (requested by buhrow in ticket #435):

	sys/dev/pci/mpii.c: revision 1.30

Fixes for PR kern/57133:

I can now explain why this assert is firing and have a fix for it.  It is a  regression introduced in R1.22 of mpii.c.

        If a request comes in and the IOC returns a MPII_SCSIIO_STATUS_CHECK_COND condition, after
 a successful transfer, or one that is a recovered error,
 mpii(4) correctly sets the xs->error to XS_SENSE, but incorrectly sets xs->resid to 0 before
 returning the xfer to the upper scsi layers.  Once the upper layers get it, they notice the
 XS_SENSE check condition and because it's a retryable error, they increment xs_requeuecnt, set
 ERESTART and send the xfer request down to the mpii(4) layer again for a retry. What they do
 not do is reset xs->resid equal to xs->datalen.  When the xfer comes down to mpii(4) again, the
 assert happens.  The fix is for the mpii(4) driver to leave xs->resid alone when it encounters
 a MPII_SCSIIO_STATUS_CHECK_COND condition.

This bug affects NetBSD-10, netbsd-9 and netbsd-8.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Oct 25 00:21:49 2023 UTC (13 months, 2 weeks ago) by buhrow
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -4 lines


Fixes for PR kern/57133:

I can now explain why this assert is firing and have a fix for it.  It is a
 regression introduced in R1.22 of mpii.c.

        If a request comes in and the IOC returns a MPII_SCSIIO_STATUS_CHECK_COND condition, after
 a successful transfer, or one that is a recovered error,
 mpii(4) correctly sets the xs->error to XS_SENSE, but incorrectly sets xs->resid to 0 before
 returning the xfer to the upper scsi layers.  Once the upper layers get it, they notice the
 XS_SENSE check condition and because it's a retryable error, they increment xs_requeuecnt, set
 ERESTART and send the xfer request down to the mpii(4) layer again for a retry.  What they do
 not do is reset xs->resid equal to xs->datalen.  When the xfer comes down to mpii(4) again, the
 assert happens.  The fix is for the mpii(4) driver to leave xs->resid alone when it encounters
 a MPII_SCSIIO_STATUS_CHECK_COND condition.

This bug affects NetBSD-10, netbsd-9 and netbsd-8.

Revision 1.8.10.7: download - view: text, markup, annotated - select for diffs
Thu Sep 29 14:38:24 2022 UTC (2 years, 2 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.8.10.6: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.6: +8 -7 lines
Apply patch (requested by bouyer in ticket #1767):
Convert from pci_intr_map() to pci_intr_alloc(); makes the driver use
MSI/MSI-x when available.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Sat Aug 7 16:19:14 2021 UTC (3 years, 4 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, netbsd-10-base, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -3 lines
Merge thorpej-cfargs2.

Revision 1.28.8.1: download - view: text, markup, annotated - select for diffs
Wed Aug 4 21:27:00 2021 UTC (3 years, 4 months ago) by thorpej
Branches: thorpej-cfargs2
Diff to: previous 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28: +3 -3 lines
Adapt to CFARGS().

Revision 1.28: download - view: text, markup, annotated - select for diffs
Sat Apr 24 23:36:57 2021 UTC (3 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Branch point for: thorpej-cfargs2
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -5 lines
Merge thorpej-cfargs branch:

Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.

Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
  actually needed.
- Don't be explicit about what interface attribute is attaching if
  the device only has one.  (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
  situations, making is visibly easier to see when indirect config is
  in play, and allowing for future change in semantics.  (As of now,
  this is just a wrapper around config_match(), but that is an
  implementation detail.)

Remove unnecessary or redundant interface attributes where they're not
needed.

There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)

...and a sentinel value CFARG_EOL.

Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.

Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance.  This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).

Revision 1.25.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 3 22:28:46 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +37 -37 lines
Sync with HEAD.

Revision 1.27.2.3: download - view: text, markup, annotated - select for diffs
Sun Mar 28 20:41:04 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.27.2.2: preferred, colored; branchpoint 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27.2.2: +3 -6 lines
No need to pass interface attribute or locators to config_found().

Revision 1.27.2.2: download - view: text, markup, annotated - select for diffs
Mon Mar 22 16:23:45 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.27.2.1: preferred, colored; branchpoint 1.27: preferred, colored
Changes since revision 1.27.2.1: +3 -3 lines
Audit CFARG_IATTR in config_found() calls, and remove it in situations
where the interface attribute is not ambiguous.

Revision 1.27.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 22 02:01:01 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +6 -4 lines
Mechanical conversion of config_found_sm_loc() -> config_found().
CFARG_IATTR usage needs to be audited.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Feb 23 07:17:58 2021 UTC (3 years, 9 months ago) by skrll
Branches: MAIN
CVS tags: thorpej-futex-base, thorpej-cfargs-base
Branch point for: thorpej-cfargs
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +36 -36 lines
Whitespace (mostly trailing)

Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Feb 23 07:15:30 2021 UTC (3 years, 9 months ago) by skrll
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -3 lines
Use the PCI_MAPREG_TYPE macro.  No binary change.

Revision 1.8.10.6: download - view: text, markup, annotated - select for diffs
Sun Aug 9 14:17:48 2020 UTC (4 years, 4 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.8.10.5: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.5: +4 -2 lines
Pull up following revision(s) (requested by jnemeth in ticket #1596):

	sys/dev/pci/mpii.c: revision 1.25

make this compile without bio(4)

Revision 1.22.4.1: download - view: text, markup, annotated - select for diffs
Sun Aug 9 14:14:34 2020 UTC (4 years, 4 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +4 -2 lines
Pull up following revision(s) (requested by jnemeth in ticket #1044):

	sys/dev/pci/mpii.c: revision 1.25

make this compile without bio(4)

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sat Aug 8 19:39:28 2020 UTC (4 years, 4 months ago) by jnemeth
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +4 -2 lines
make this compile without bio(4)

Revision 1.11.4.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:04:27 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.11.4.2: preferred, colored; branchpoint 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11.4.2: +7 -37 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.11.4.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:08:09 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.11.4.1: preferred, colored; branchpoint 1.11: preferred, colored
Changes since revision 1.11.4.1: +153 -153 lines
Merge changes from current as of 20200406

Revision 1.24: download - view: text, markup, annotated - select for diffs
Thu Nov 28 17:09:10 2019 UTC (5 years ago) by maxv
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +153 -153 lines
localify

Revision 1.23: download - view: text, markup, annotated - select for diffs
Sun Nov 10 21:16:36 2019 UTC (5 years, 1 month ago) by chs
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +9 -39 lines
in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAIT
and remove code to handle failures that can no longer happen.

Revision 1.11.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:07:17 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1212 -2820 lines
Sync with HEAD

Revision 1.8.10.5: download - view: text, markup, annotated - select for diffs
Fri Mar 15 14:50:36 2019 UTC (5 years, 9 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1
Diff to: previous 1.8.10.4: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.4: +20 -15 lines
Pull up following revision(s) (requested by kardel in ticket #1217):

	sys/dev/pci/mpii.c: revision 1.22

PR/54045

fix mpii to adhere to physio diagnostic invariant that
fully processed data must not post an error:

1) verify expected scspi state via KASSERT() instead of just
    setting the variables.
2) set xs->resid only in known good conditions
3) insure setting errors in all error paths and refrain
    from clearing xs->resid in error paths.

While there do some cosmectic clean up:
1) extend and relocate some debug output
2) mpii HBAs can also manage non-disk devices like tapes etc,
    so log that physical "devices" instead of physical "disks" are
    attached or detached.

Tested with NEOSeries FlexStor II and luckily a broken tape drive 8-(

mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical device inserted in slot 9
mpii0: physical device inserted in slot 13
mpii0: physical device inserted in slot 16
st0 at scsibus0 target 9 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st0: density code 92, variable blocks, write-enabled
ch0 at scsibus0 target 9 lun 1: <BDT, FlexStor II, 5.50> changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st0: tagged queueing
ch0: tagged queueing
st1 at scsibus0 target 13 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st1: density code 92, variable blocks, write-enabled
st1: tagged queueing
ses0 at scsibus0 target 16 lun 0: <LSI, VirtualSES, 01> enclosure
services fixed

Note: pullup-8

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Mar 11 14:35:22 2019 UTC (5 years, 9 months ago) by kardel
Branches: MAIN
CVS tags: phil-wifi-20190609, netbsd-9-base, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, isaki-audio2-base, isaki-audio2
Branch point for: netbsd-9
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +20 -15 lines
PR/54045

fix mpii to adhere to physio diagnostic invariant that
fully processed data must not post an error:
1) verify expected scspi state via KASSERT() instead of just
   setting the variables.
2) set xs->resid only in known good conditions
3) insure setting errors in all error paths and refrain
   from clearing xs->resid in error paths.

While there do some cosmectic clean up:
1) extend and relocate some debug output
2) mpii HBAs can also manage non-disk devices like tapes etc,
   so log that physical "devices" instead of physical "disks" are
   attached or detached.

Tested with NEOSeries FlexStor II and luckily a broken tape drive 8-(

mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical device inserted in slot 9
mpii0: physical device inserted in slot 13
mpii0: physical device inserted in slot 16
st0 at scsibus0 target 9 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st0: density code 92, variable blocks, write-enabled
ch0 at scsibus0 target 9 lun 1: <BDT, FlexStor II, 5.50> changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st0: tagged queueing
ch0: tagged queueing
st1 at scsibus0 target 13 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st1: density code 92, variable blocks, write-enabled
st1: tagged queueing
ses0 at scsibus0 target 16 lun 0: <LSI, VirtualSES, 01> enclosure services fixed

Note: pullup-8

Revision 1.21: download - view: text, markup, annotated - select for diffs
Sun Feb 3 03:19:27 2019 UTC (5 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -2 lines
- add or adjust /* FALLTHROUGH */ where appropriate
- add __unreachable() after functions that can return but won't in
  this case, and thus can't be marked __dead easily

Revision 1.20: download - view: text, markup, annotated - select for diffs
Sun Jan 27 02:08:42 2019 UTC (5 years, 10 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -2 lines
Merge the [pgoyette-compat] branch

Revision 1.11.2.4: download - view: text, markup, annotated - select for diffs
Fri Jan 18 08:50:27 2019 UTC (5 years, 10 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.11.2.3: preferred, colored; branchpoint 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11.2.3: +3 -3 lines
Synch with HEAD

Revision 1.8.10.4: download - view: text, markup, annotated - select for diffs
Mon Jan 7 13:49:39 2019 UTC (5 years, 11 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.8.10.3: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.3: +3 -3 lines
Pull up following revision(s) (requested by kardel in ticket #1157):

	sys/dev/pci/mpii.c: revision 1.19

fix LUN handling (byte order issue)

now ch0 on a NEOSeries FlexStor II is detected again on LUN 1
this is a regression introduced in 1.15 update and 1.8.10.3 pullup

Tested with NEOSeries FlexStor II:
mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical disk inserted in slot 9
mpii0: physical disk inserted in slot 13
mpii0: physical disk inserted in slot 16
st0 at scsibus0 target 9 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st0: drive empty
st0: tagged queueing
st1 at scsibus0 target 13 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st1: drive empty
ch0 at scsibus0 target 13 lun 1: <BDT, FlexStor II, 5.50> changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st1: tagged queueing
ch0: tagged queueing
ses0 at scsibus0 target 16 lun 0: <LSI, VirtualSES, 01> enclosure
services fixed
ses0: SCSI-3 SES Device

Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Dec 28 15:06:07 2018 UTC (5 years, 11 months ago) by kardel
Branches: MAIN
CVS tags: pgoyette-compat-20190127, pgoyette-compat-20190118
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +3 -3 lines
fix LUN handling (byte order issue)

now ch0 on a NEOSeries FlexStor II is detected again on LUN 1
this is a regression introduced in 1.15 update and 1.8.10.3 pullup

Tested with NEOSeries FlexStor II:
mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical disk inserted in slot 9
mpii0: physical disk inserted in slot 13
mpii0: physical disk inserted in slot 16
st0 at scsibus0 target 9 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st0: drive empty
st0: tagged queueing
st1 at scsibus0 target 13 lun 0: <IBM, ULTRIUM-HH7, J4D1> tape removable
st1: drive empty
ch0 at scsibus0 target 13 lun 1: <BDT, FlexStor II, 5.50> changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st1: tagged queueing
ch0: tagged queueing
ses0 at scsibus0 target 16 lun 0: <LSI, VirtualSES, 01> enclosure services fixed
ses0: SCSI-3 SES Device

Revision 1.11.2.3: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:50 2018 UTC (5 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.11.2.2: preferred, colored; branchpoint 1.11: preferred, colored
Changes since revision 1.11.2.2: +1188 -1149 lines
Sync with HEAD, resolve a few conflicts

Revision 1.8.10.3: download - view: text, markup, annotated - select for diffs
Sat Dec 8 12:17:13 2018 UTC (6 years ago) by martin
Branches: netbsd-8
Diff to: previous 1.8.10.2: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.2: +1184 -1144 lines
Pull up following revision(s) (requested by bouyer in ticket #1131):

	sys/dev/pci/mpiireg.h: revision 1.2
	sys/dev/pci/mfii.c: revision 1.3
	share/man/man4/mpii.4: revision 1.3
	share/man/man4/mpii.4: revision 1.4
	sys/dev/pci/mpii.c: revision 1.15
	sys/dev/pci/mpii.c: revision 1.16
	sys/dev/pci/mpii.c: revision 1.17
	sys/dev/pci/mpii.c: revision 1.18

Update the mpii(4) driver to the latest OpenBSD version.

This adds support for the SAS3xxx LSI controllers, and this also makes the
driver MP-safe.

adjust mfii.c for changes in mpiireg.h

Tested with a
mpii0: SMC2008-IR, firmware 9.0.0.0 IR, MPI 2.0
Update for the new mpii(4) driver, mostly from OpenBSD.

Also tell the scsi layer that we are MPSAFE

Remove trailing whitespace

NULL-terminate mpii_devices[], this is the end condition of the loop
in mpii_match(). Noticed by Mike Pumford

There's no sensors for physical disks so don't try to detach them.

Revision 1.8.10.2: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:11:37 2018 UTC (6 years ago) by martin
Branches: netbsd-8
Diff to: previous 1.8.10.1: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.1: +6 -1659 lines
Pull up following revision(s) (requested by bouyer in ticket #1129):

	sys/arch/amd64/conf/XEN3_DOM0: revision 1.159
	sys/arch/amd64/conf/GENERIC: revision 1.508
	sys/arch/i386/conf/ALL: revision 1.458
	sys/dev/ic/mfi.c: revision 1.60
	sys/dev/pci/mpiireg.h: revision 1.1
	distrib/sets/lists/man/mi: revision 1.1628
	sys/dev/pci/mfii.c: revision 1.1,1.2 (adapted)
	sys/arch/i386/conf/GENERIC: revision 1.1194
	sys/dev/pci/mpii.c: revision 1.13
	sys/dev/ic/mfireg.h: revision 1.9
	share/man/man4/mfii.4: revision 1.1
	share/man/man4/Makefile: revision 1.673 (patch)
	sys/dev/pci/files.pci: revision 1.410
	share/man/man4/mfii.4: revision 1.2
	sys/arch/amd64/conf/ALL: revision 1.108
	sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.8 (patch, in XEN3_DOM0)

Add some definitions from OpenBSD, needed by the upcoming mfii driver.
No functionnal change.

 -

Move registers definitions to a separate file, needed for the upcomning mpii
driver. No functionnal change.

 -

Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.

Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.

Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry

It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.

Sponsored by LIP6.

 -

Add my name in copyright list

 -

add a man page for the new mpii, mostly from OpenBSD.

 -

Sort SEE ALSO. Fix date. Whitespace fixes.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Wed Dec 5 10:38:22 2018 UTC (6 years ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1226
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -4 lines
There's no sensors for physical disks so don't try to detach them.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Tue Dec 4 19:54:02 2018 UTC (6 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +4 -3 lines

NULL-terminate mpii_devices[], this is the end condition of the loop
in mpii_match(). Noticed by Mike Pumford

Revision 1.16: download - view: text, markup, annotated - select for diffs
Mon Dec 3 23:23:30 2018 UTC (6 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +3 -2 lines
Also tell the scsi layer that we are MPSAFE

Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Dec 3 22:34:36 2018 UTC (6 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +1188 -1149 lines
Update the mpii(4) driver to the latest OpenBSD version.
This adds support for the SAS3xxx LSI controllers, and this also makes the
driver MP-safe.
adjust mfii.c for changes in mpiireg.h

Tested with a
mpii0: SMC2008-IR, firmware 9.0.0.0 IR, MPI 2.0

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Dec 2 13:22:28 2018 UTC (6 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +4 -4 lines
use pci_intr_establish_xname()

Revision 1.11.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:32 2018 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.11.2.1: preferred, colored; branchpoint 1.11: preferred, colored
Changes since revision 1.11.2.1: +6 -1659 lines
Sync with HEAD, resolve a couple of conflicts

Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Nov 24 18:11:22 2018 UTC (6 years ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +6 -1659 lines
Move registers definitions to a separate file, needed for the upcomning mpii
driver. No functionnal change.

Revision 1.11.2.1: download - view: text, markup, annotated - select for diffs
Sat Oct 20 06:58:31 2018 UTC (6 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +7 -7 lines
Sync with head

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Oct 14 17:37:40 2018 UTC (6 years, 1 month ago) by jdolecek
Branches: MAIN
CVS tags: pgoyette-compat-1020
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +7 -7 lines
remove M_CANFAIL flag for malloc(9) - it was completely ignored, so had
actually no effect

Revision 1.8.10.1: download - view: text, markup, annotated - select for diffs
Sat Jun 9 14:32:52 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RELEASE, netbsd-8-0-RC2
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +25 -15 lines
Pull up following revision(s) (requested by maya in ticket #857):

	sys/dev/pci/mpii.c: revision 1.9

PR/52330: Jia-Ju Bai: mpii driver: a sleep-in-interrupt bug in mpii_intr
Since the enclosing routime mpii_event_raid already calls malloc with
M_NOWAIT, fix the cache routine to do the same. While there check the
result of the cache routine and change some error prints to aprint.

Revision 1.5.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 6 15:46:16 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5: +25 -15 lines
Pull up following revision(s) (requested by maya in ticket #1614):

	sys/dev/pci/mpii.c: revision 1.9

PR/52330: Jia-Ju Bai: mpii driver: a sleep-in-interrupt bug in mpii_intr
Since the enclosing routime mpii_event_raid already calls malloc with
M_NOWAIT, fix the cache routine to do the same. While there check the
result of the cache routine and change some error prints to aprint.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Jan 15 12:58:06 2018 UTC (6 years, 10 months ago) by maya
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-base, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, jdolecek-ncqfixes-base, jdolecek-ncqfixes
Branch point for: phil-wifi, pgoyette-compat
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -3 lines
indent to magic logic

Revision 1.1.8.2: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:37:08 2017 UTC (7 years ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.1.8.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.8.1: +37 -47 lines
update from HEAD

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Oct 9 23:24:22 2017 UTC (7 years, 2 months ago) by maya
Branches: MAIN
CVS tags: tls-maxphys-base-20171202
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +6 -4 lines
Reorder to avoid null deref before null test

Revision 1.5.6.4: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:52:06 2017 UTC (7 years, 3 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.5.6.3: preferred, colored; branchpoint 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5.6.3: +25 -15 lines
Sync with HEAD

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Jun 25 15:56:32 2017 UTC (7 years, 5 months ago) by christos
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +25 -15 lines
PR/52330: Jia-Ju Bai: mpii driver: a sleep-in-interrupt bug in mpii_intr
Since the enclosing routime mpii_event_raid already calls malloc with
M_NOWAIT, fix the cache routine to do the same. While there check the
result of the cache routine and change some error prints to aprint.

Revision 1.5.6.3: download - view: text, markup, annotated - select for diffs
Sun May 29 08:44:22 2016 UTC (8 years, 6 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.5.6.2: preferred, colored; branchpoint 1.5: preferred, colored
Changes since revision 1.5.6.2: +10 -8 lines
Sync with HEAD

Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon May 2 19:18:29 2016 UTC (8 years, 7 months ago) by christos
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, netbsd-8-base, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: netbsd-8
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +10 -8 lines
move scsipi_strvis -> libkern:strnvisx()
change the prototype to match userland
fix sizes of strings passed to it

Revision 1.5.6.2: download - view: text, markup, annotated - select for diffs
Sat Mar 19 11:30:11 2016 UTC (8 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.5.6.1: preferred, colored; branchpoint 1.5: preferred, colored
Changes since revision 1.5.6.1: +2 -4 lines
Sync with HEAD

Revision 1.7: download - view: text, markup, annotated - select for diffs
Mon Feb 8 16:27:51 2016 UTC (8 years, 10 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20160422, nick-nhusb-base-20160319
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -4 lines
PR/50785: David Binderman: Remove dead code.

Revision 1.5.6.1: download - view: text, markup, annotated - select for diffs
Mon Apr 6 15:18:10 2015 UTC (9 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +4 -26 lines
Sync with HEAD

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Mar 12 15:33:10 2015 UTC (9 years, 9 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +4 -26 lines
Dedup the conversion of bioc_disk and bioc_vol to envsys_data_t

Revision 1.1.8.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:43 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +91 -28 lines
Rebase to HEAD as of a few days ago.

Revision 1.1.6.3: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:25 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1.6.2: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.6.2: +91 -28 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.1.10.2: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:40 2014 UTC (10 years, 6 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1.10.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.10.1: +4 -5 lines
sync with head

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sat Mar 29 19:28:25 2014 UTC (10 years, 8 months ago) by christos
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, nick-nhusb-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0
Branch point for: nick-nhusb, netbsd-7
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +4 -3 lines
make pci_intr_string and eisa_intr_string take a buffer and a length
instead of relying in local static storage.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Oct 17 21:06:15 2013 UTC (11 years, 1 month ago) by christos
Branches: MAIN
CVS tags: riastradh-drm2-base3
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -4 lines
- remove unused variables
- move debugging code inside debugging sections

Revision 1.1.2.3: download - view: text, markup, annotated - select for diffs
Sat Sep 7 16:05:59 2013 UTC (11 years, 3 months ago) by bouyer
Branches: netbsd-6
Diff to: previous 1.1.2.2: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.2.2: +89 -25 lines
Pull up following revision(s) (requested by kardel in ticket #932):
	sys/dev/pci/mpii.c: revision 1.2
	sys/dev/pci/mpii.c: revision 1.3
Allow 8 luns instead of 1. This enables access to the changer device on
a Dell PV-124T:
ch0 at scsibus0 target 9 lun 1: <DELL, PV-124T, 0086> changer removable
ch0: 16 slots, 1 drive, 1 picker, 0 portals
fix issues when reading variable block sized tapes.
symptoms:
         generic HBA error on console when reading
         with a larger blocksize. blocks read
         are padded to requested block size with
         a 5a... a5... pattern.
problems fixed:
         - controller scsi_status values did not match
           the ones used by the spsipi layer.
           a mapping function was introduced.
         - when experiencing an underrun (read 64k and
           get a 63k block) the controller posted
           not a SUCCESS status but CHECK status. handle
           that like SUCCESS adjusting xs->resid and set
           XS_SENSE.
           now the correct data amount is returned and
           nothing is 'added' and no 'generic HBA error'
           occurs.
         - make decisions using variables and constants
           from the controller domain.

Revision 1.1.10.1: download - view: text, markup, annotated - select for diffs
Wed Aug 28 23:59:25 2013 UTC (11 years, 3 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +89 -25 lines
sync with head

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Aug 9 19:51:29 2013 UTC (11 years, 4 months ago) by kardel
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +88 -24 lines
fix issues when reading variable block sized tapes.

symptoms:
	generic HBA error on console when reading
	with a larger blocksize. blocks read
	are padded to requested block size with
	a 5a... a5... pattern.

problems fixed:
	- controller scsi_status values did not match
	  the ones used by the spsipi layer.
	  a mapping function was introduced.
	- when experiencing an underrun (read 64k and
	  get a 63k block) the controller posted
	  not a SUCCESS status but CHECK status. handle
	  that like SUCCESS adjusting xs->resid and set
	  XS_SENSE.
	  now the correct data amount is returned and
	  nothing is 'added' and no 'generic HBA error'
	  occurs.
	- make decisions using variables and constants
	  from the controller domain.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Aug 8 07:06:13 2013 UTC (11 years, 4 months ago) by kardel
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -3 lines
Allow 8 luns instead of 1. This enables access to the changer device on
a Dell PV-124T:
ch0 at scsibus0 target 9 lun 1: <DELL, PV-124T, 0086> changer removable
ch0: 16 slots, 1 drive, 1 picker, 0 portals

Revision 1.1.6.2: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:58 2012 UTC (12 years, 6 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.1.6.1: preferred, colored; branchpoint 1.1: preferred, colored
Changes since revision 1.1.6.1: +5536 -0 lines
sync with head.

Revision 1.1.4.2: download - view: text, markup, annotated - select for diffs
Sun Apr 29 23:04:51 2012 UTC (12 years, 7 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1.4.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.4.1: +5536 -0 lines
sync to latest -current.

Revision 1.1.2.2: download - view: text, markup, annotated - select for diffs
Mon Apr 23 16:31:36 2012 UTC (12 years, 7 months ago) by riz
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Diff to: previous 1.1.2.1: preferred, colored; branchpoint 1.1: preferred, colored
Changes since revision 1.1.2.1: +5536 -0 lines
Pull up following revision(s) (requested by bouyer in ticket #193):
	sys/arch/i386/conf/GENERIC: revision 1.1072
	sys/dev/pci/mpii.c: revision 1.1
	sys/arch/i386/conf/XEN3_DOM0: revision 1.66
	sys/dev/pci/files.pci: revision 1.357
	share/man/man4/Makefile: revision 1.584
	distrib/sets/lists/man/mi: revision 1.1387
	share/man/man4/mpii.4: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.354
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.83
	sys/arch/i386/conf/ALL: revision 1.337
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.

Revision 1.1.6.1
Thu Apr 19 17:50:51 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
FILE REMOVED
Changes since revision 1.1: +0 -5536 lines
file mpii.c was added on branch yamt-pagecache on 2012-05-23 10:07:58 +0000

Revision 1.1.4.1
Thu Apr 19 17:50:51 2012 UTC (12 years, 7 months ago) by mrg
Branches: jmcneill-usbmp
FILE REMOVED
Changes since revision 1.1: +0 -5536 lines
file mpii.c was added on branch jmcneill-usbmp on 2012-04-29 23:04:51 +0000

Revision 1.1.2.1
Thu Apr 19 17:50:51 2012 UTC (12 years, 7 months ago) by riz
Branches: netbsd-6
FILE REMOVED
Changes since revision 1.1: +0 -5536 lines
file mpii.c was added on branch netbsd-6 on 2012-04-23 16:31:36 +0000

Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Apr 19 17:50:51 2012 UTC (12 years, 7 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, jmcneill-usbmp-base9, jmcneill-usbmp-base10, agc-symver-base, agc-symver
Branch point for: yamt-pagecache, tls-maxphys, rmind-smpnet, netbsd-6, jmcneill-usbmp
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>