created | 2022-10-22T01:06:07Z |
---|---|
begin | 2022-10-18T00:00:00Z |
end | 2022-10-19T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2022-10-18T07:04:20Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/dev/pci/mpii.c | log | diff | annotate |
message |
Document and report mpii(4) RAID 1E as such At least the built-in controller on sparc64 T4-2 machines supports 1E from which OpenBSD boots just fine, but bioctl(8) reports it as RAID 10: mpii0 at pci15 dev 0 function 0 "Symbios Logic SAS2008" rev 0x03: msi mpii0: Solana On-Board, firmware 9.0.0.0 IR, MPI 2.0 scsibus1 at mpii0: 834 targets sd0 at scsibus1 targ 0 lun 0: <LSI, Logical Volume, 3000> naa.600508e0000000006cd1dcd59022a30a sd0: 713824MB, 512 bytes/sector, 1461911552 sectors root on sd0a (efde5b2c6ab7b8ac.a) swap on sd0b dump on sd0b # bioctl mpii0 Volume Status Size Device mpii0 0 Online 748498714112 sd0 RAID10 0 Online 500107861504 0:2.0 noencl <ATA CT500MX500SSD1> 1 Online 500107861504 0:1.0 noencl <ATA CT500MX500SSD1> 2 Online 500107861504 0:0.0 noencl <ATA CT500MX500SSD1> mpii(4) simply munged 1E into 10. Report it as 0x1E just like softraid(4) RAID 1C is 0x1C internally: # ./obj/bioctl mpii0 | grep RAID mpii0 0 Online 748498714112 sd0 RAID1E OK jsing |
date | 2022-10-18T08:22:18Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/arch/macppc/dev/awacs.c | log | diff | annotate |
src/sys/arch/macppc/dev/i2s.c | log | diff | annotate | |
src/sys/dev/audio_if.h | log | diff | annotate | |
src/sys/dev/isa/ad1848.c | log | diff | annotate | |
src/sys/dev/isa/ess.c | log | diff | annotate | |
src/sys/dev/isa/gus.c | log | diff | annotate | |
src/sys/dev/isa/sbdsp.c | log | diff | annotate | |
src/sys/dev/pci/auacer.c | log | diff | annotate | |
message |
Remove unused AUDIO_PROP_{MMAP,INDEPENDENT} AUDIO_PROP_FULLDUPLEX is the only audio(9) in use, the other two died with commit 1cf2860827c8ca659d8097d8da94a5ae5b888c53 Author: ratchov <[email protected]> Date: Thu Jun 25 06:43:45 2015 +0000 Reimplement the audio driver in a simpler way, removing unused/unusable functionality. Same API and ABI except for the removed bits and no behaviour change for programs using libsndio. With help from armani@ and mpi@, thanks. but remained defined and set in drivers. and the following merely moved them when they were dead code already: commit 9215aa3dfad387bca877a805534df6dcfe8722eb Author: ratchov <[email protected]> Date: Wed Aug 31 07:22:43 2016 +0000 Delete unused ioctls and associated macros. Move macros that are still used internally by low-level drivers from sys/audioio.h to dev/audio_if.h instead of deleting them. None of this is used in base or ports; codesearch.debian.net only shows AUDIO_PROP_{CAPTURE,PLAYBACK} in firefox-esr, mozjs and cubeb. ratchov points out that audio_if.h and audioio.h are private interfaces and the codesearch shows SunOS and NetBSD bits (#ifdef'd out on OpenBSD). OK ratchov |
date | 2022-10-18T08:22:19Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/dev/pci/auglx.c | log | diff | annotate |
src/sys/dev/pci/auich.c | log | diff | annotate | |
src/sys/dev/pci/auixp.c | log | diff | annotate | |
src/sys/dev/pci/autri.c | log | diff | annotate | |
src/sys/dev/pci/auvia.c | log | diff | annotate | |
src/sys/dev/pci/azalia.c | log | diff | annotate | |
src/sys/dev/pci/cmpci.c | log | diff | annotate | |
src/sys/dev/pci/cs4280.c | log | diff | annotate | |
src/sys/dev/pci/cs4281.c | log | diff | annotate | |
src/sys/dev/pci/eap.c | log | diff | annotate | |
src/sys/dev/pci/emuxki.c | log | diff | annotate | |
src/sys/dev/pci/envy.c | log | diff | annotate | |
src/sys/dev/pci/esa.c | log | diff | annotate | |
src/sys/dev/pci/eso.c | log | diff | annotate | |
src/sys/dev/pci/fms.c | log | diff | annotate | |
src/sys/dev/pci/maestro.c | log | diff | annotate | |
src/sys/dev/pci/neo.c | log | diff | annotate | |
src/sys/dev/pci/sv.c | log | diff | annotate | |
src/sys/dev/pci/yds.c | log | diff | annotate | |
src/sys/dev/tc/bba.c | log | diff | annotate | |
message |
Remove unused AUDIO_PROP_{MMAP,INDEPENDENT} AUDIO_PROP_FULLDUPLEX is the only audio(9) in use, the other two died with commit 1cf2860827c8ca659d8097d8da94a5ae5b888c53 Author: ratchov <[email protected]> Date: Thu Jun 25 06:43:45 2015 +0000 Reimplement the audio driver in a simpler way, removing unused/unusable functionality. Same API and ABI except for the removed bits and no behaviour change for programs using libsndio. With help from armani@ and mpi@, thanks. but remained defined and set in drivers. and the following merely moved them when they were dead code already: commit 9215aa3dfad387bca877a805534df6dcfe8722eb Author: ratchov <[email protected]> Date: Wed Aug 31 07:22:43 2016 +0000 Delete unused ioctls and associated macros. Move macros that are still used internally by low-level drivers from sys/audioio.h to dev/audio_if.h instead of deleting them. None of this is used in base or ports; codesearch.debian.net only shows AUDIO_PROP_{CAPTURE,PLAYBACK} in firefox-esr, mozjs and cubeb. ratchov points out that audio_if.h and audioio.h are private interfaces and the codesearch shows SunOS and NetBSD bits (#ifdef'd out on OpenBSD). OK ratchov |
date | 2022-10-18T10:17:56Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/efi/efi.h | log | diff | annotate |
message |
Add definitions for runtime services related to EFI variables and system reset. ok krw@ |
date | 2022-10-18T15:12:13Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/dev/aplcpu.c | log | diff | annotate |
message |
No longer match on "apple,cluster-cpufreq" compatible string. ok miod@, kn@ |
date | 2022-10-18T16:07:59Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/dev/i2c/ds1307.c | log | diff | annotate |
message |
Add support for the DS1339 RTC, like found on the PiJuice. From Michal Mynar -- Thanks! ok deraadt@ |