Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.12.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:27 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.12: +8 -6
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Sync with HEAD.
Revision 1.11.4.2 / (download) - annotate - [select for diffs], Thu Apr 21 01:42:01 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.11.4.1: +6 -4
lines
Diff to previous 1.11.4.1 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored)
sync with head
Revision 1.13 / (download) - annotate - [select for diffs], Mon Apr 4 20:37:56 2011 UTC (13 months, 3 weeks ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
HEAD
Changes since 1.12: +8 -6
lines
Diff to previous 1.12 (colored)
Neither pci_dma64_available(), pci_probe_device(), pci_mapreg_map(9),
pci_find_rom(), pci_intr_map(9), pci_enumerate_bus(), nor the match
predicate passed to pciide_compat_intr_establish() should ever modify
their pci_attach_args argument, so make their pci_attach_args arguments
const and deal with the fallout throughout the kernel.
For the most part, these changes add a 'const' where there was no
'const' before, however, some drivers and MD code used to modify
pci_attach_args. Now those drivers either copy their pci_attach_args
and modify the copy, or refrain from modifying pci_attach_args:
Xen: according to Manuel Bouyer, writing to pci_attach_args in
pci_intr_map() was a leftover from Xen 2. Probably a bug. I
stopped writing it. I have not tested this change.
siside(4): sis_hostbr_match() needlessly wrote to pci_attach_args.
Probably a bug. I use a temporary variable. I have not tested this
change.
slide(4): sl82c105_chip_map() overwrote the caller's pci_attach_args.
Probably a bug. Use a local pci_attach_args. I have not tested
this change.
viaide(4): via_sata_chip_map() and via_sata_chip_map_new() overwrote the
caller's pci_attach_args. Probably a bug. Make a local copy of the
caller's pci_attach_args and modify the copy. I have not tested
this change.
While I'm here, make pci_mapreg_submap() static.
With these changes in place, I have tested the compilation of these
kernels:
alpha GENERIC
amd64 GENERIC XEN3_DOM0
arc GENERIC
atari HADES MILAN-PCIIDE
bebox GENERIC
cats GENERIC
cobalt GENERIC
evbarm-eb NSLU2
evbarm-el ADI_BRH ARMADILLO9 CP3100 GEMINI GEMINI_MASTER GEMINI_SLAVE GUMSTIX
HDL_G IMX31LITE INTEGRATOR IQ31244 IQ80310 IQ80321 IXDP425 IXM1200
KUROBOX_PRO LUBBOCK MARVELL_NAS NAPPI SHEEVAPLUG SMDK2800 TEAMASA_NPWR
TEAMASA_NPWR_FC TS7200 TWINTAIL ZAO425
evbmips-el AP30 DBAU1500 DBAU1550 MALTA MERAKI MTX-1 OMSAL400 RB153 WGT624V3
evbmips64-el XLSATX
evbppc EV64260 MPC8536DS MPC8548CDS OPENBLOCKS200 OPENBLOCKS266
OPENBLOCKS266_OPT P2020RDB PMPPC RB800 WALNUT
hp700 GENERIC
i386 ALL XEN3_DOM0 XEN3_DOMU
ibmnws GENERIC
macppc GENERIC
mvmeppc GENERIC
netwinder GENERIC
ofppc GENERIC
prep GENERIC
sandpoint GENERIC
sgimips GENERIC32_IP2x
sparc GENERIC_SUN4U KRUPS
sparc64 GENERIC
As of Sun Apr 3 15:26:26 CDT 2011, I could not compile these kernels
with or without my patches in place:
### evbmips-el GDIUM
nbmake: nbmake: don't know how to make /home/dyoung/pristine-nbsd/src/sys/arch/mips/mips/softintr.c. Stop
### evbarm-el MPCSA_GENERIC
src/sys/arch/evbarm/conf/MPCSA_GENERIC:318: ds1672rtc*: unknown device `ds1672rtc'
### ia64 GENERIC
/tmp/genassym.28085/assym.c: In function 'f111':
/tmp/genassym.28085/assym.c:67: error: invalid application of 'sizeof' to incomplete type 'struct pcb'
/tmp/genassym.28085/assym.c:76: error: dereferencing pointer to incomplete type
### sgimips GENERIC32_IP3x
crmfb.o: In function `crmfb_attach':
crmfb.c:(.text+0x2304): undefined reference to `ddc_read_edid'
crmfb.c:(.text+0x2304): relocation truncated to fit: R_MIPS_26 against `ddc_read_edid'
crmfb.c:(.text+0x234c): undefined reference to `edid_parse'
crmfb.c:(.text+0x234c): relocation truncated to fit: R_MIPS_26 against `edid_parse'
crmfb.c:(.text+0x2354): undefined reference to `edid_print'
crmfb.c:(.text+0x2354): relocation truncated to fit: R_MIPS_26 against `edid_print'
Revision 1.11.4.1 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:58 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.11: +3 -3
lines
Diff to previous 1.11 (colored)
sync with head
Revision 1.11.2.1 / (download) - annotate - [select for diffs], Sat Nov 6 08:08:32 2010 UTC (18 months, 2 weeks ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.11: +3 -3
lines
Diff to previous 1.11 (colored) next main 1.12 (colored)
Sync with HEAD.
Revision 1.12 / (download) - annotate - [select for diffs], Fri Nov 5 18:07:24 2010 UTC (18 months, 2 weeks ago) by jakllsch
Branch: MAIN
CVS Tags: uebayasi-xip-base4,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: jruoho-x86intr
Changes since 1.11: +3 -3
lines
Diff to previous 1.11 (colored)
Pave the way for detachment of pciide(4)-family ATA controllers.
Revision 1.10.4.1 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:59 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.10: +4 -4
lines
Diff to previous 1.10 (colored) next main 1.11 (colored)
sync with head
Revision 1.11 / (download) - annotate - [select for diffs], Thu Nov 26 15:17:10 2009 UTC (2 years, 5 months ago) by njoly
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
matt-premerge-20091211
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.10: +4 -4
lines
Diff to previous 1.10 (colored)
Cleanup interrupt establish error messages. Do not mix aprint_error/aprint_normal/printf calls for a single line.
Revision 1.9.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:53 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.9: +32 -34
lines
Diff to previous 1.9 (colored) next main 1.10 (colored)
Sync with HEAD.
Revision 1.3.10.6 / (download) - annotate - [select for diffs], Mon Mar 24 09:38:51 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.10.5: +32 -34
lines
Diff to previous 1.3.10.5 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
sync with head.
Revision 1.9.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:49 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.9: +32 -34
lines
Diff to previous 1.9 (colored) next main 1.10 (colored)
sync with head.
Revision 1.7.24.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:50 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.7.24.1: +33 -34
lines
Diff to previous 1.7.24.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
sync with HEAD
Revision 1.10 / (download) - annotate - [select for diffs], Tue Mar 18 20:46:37 2008 UTC (4 years, 2 months ago) by cube
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
nick-hppapmap,
netbsd-5-base,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
mjf-devfs2-base,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base,
jym-xensuspend,
hpcarm-cleanup-nbase,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-socklock-base1,
ad-audiomp2-base,
ad-audiomp2
Branch point for: yamt-nfs-mp
Changes since 1.9: +32 -34
lines
Diff to previous 1.9 (colored)
Split device_t and softc for ATA devices, as well as wd(4). Other cosmetic changes where appropriate.
Revision 1.8.2.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:59 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.8: +5 -4
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
Sync with HEAD.
Revision 1.3.10.5 / (download) - annotate - [select for diffs], Mon Feb 11 14:59:40 2008 UTC (4 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.10.4: +5 -4
lines
Diff to previous 1.3.10.4 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Feb 5 07:02:00 2008 UTC (4 years, 3 months ago) by simonb
Branch: MAIN
CVS Tags: nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
hpcarm-cleanup-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Changes since 1.8: +5 -4
lines
Diff to previous 1.8 (colored)
Print the "bus-master DMA support present" message out the same other a few other SATA drivers do. Nicer output than just a line with ": DMA" on it...
Revision 1.7.28.1 / (download) - annotate - [select for diffs], Tue Nov 13 16:01:34 2007 UTC (4 years, 6 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.7: +8 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
Sync with HEAD
Revision 1.7.24.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:29:31 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.7: +8 -3
lines
Diff to previous 1.7 (colored)
sync with HEAD
Revision 1.7.22.1 / (download) - annotate - [select for diffs], Sun Oct 28 20:11:08 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.7: +8 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
Sync with HEAD.
Revision 1.3.10.4 / (download) - annotate - [select for diffs], Sat Oct 27 11:33:31 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.10.3: +8 -3
lines
Diff to previous 1.3.10.3 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.8 / (download) - annotate - [select for diffs], Wed Oct 24 23:08:07 2007 UTC (4 years, 7 months ago) by xtraeme
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking2,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
matt-armv6-base,
jmcneill-pm-base,
jmcneill-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: mjf-devfs
Changes since 1.7: +8 -3
lines
Diff to previous 1.7 (colored)
- Add support for the ServerWorks HT-1000 IDE Controller in rccide. - Add support for another ServerWorks HT-1000 SATA Controller. From OpenBSD.
Revision 1.3.14.2 / (download) - annotate - [select for diffs], Fri Jan 12 00:57:43 2007 UTC (5 years, 4 months ago) by ad
Branch: newlock2
Changes since 1.3.14.1: +4 -2
lines
Diff to previous 1.3.14.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Sync with head.
Revision 1.3.10.3 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:48 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.10.2: +39 -112
lines
Diff to previous 1.3.10.2 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.3.18.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:47 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.3.18.1: +39 -113
lines
Diff to previous 1.3.18.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
sync with head.
Revision 1.7 / (download) - annotate - [select for diffs], Thu Nov 30 19:32:37 2006 UTC (5 years, 5 months ago) by hannken
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
vmlocking-base,
vmlocking,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
post-newlock2-merge,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup,
ad-audiomp-base,
ad-audiomp
Branch point for: matt-armv6,
jmcneill-pm,
bouyer-xenamd64
Changes since 1.6: +4 -2
lines
Diff to previous 1.6 (colored)
Enable WDC_CAPABILITY_WIDEREGS. With this change LBA48 operations no longer wrap at 128GB. Tested on an "ServerWorks HT-1000 SATA Controller (rev. 0x00)". Approved by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.3.14.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:33 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.3: +37 -112
lines
Diff to previous 1.3 (colored)
Sync with head.
Revision 1.6 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:10 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.5: +5 -5
lines
Diff to previous 1.5 (colored)
__unused removal on arguments; approved by core.
Revision 1.5 / (download) - annotate - [select for diffs], Wed Oct 25 17:34:49 2006 UTC (5 years, 7 months ago) by bouyer
Branch: MAIN
Changes since 1.4: +34 -110
lines
Diff to previous 1.4 (colored)
Use common wdc_sataprobe() where possible; explain why we can't in satalink.c
Revision 1.3.18.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:19 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.3: +5 -4
lines
Diff to previous 1.3 (colored)
sync with head
Revision 1.4 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:33 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.3: +5 -4
lines
Diff to previous 1.3 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.3.16.2 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:19 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.3.16.1: +388 -0
lines
Diff to previous 1.3.16.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
sync with head
Revision 1.3.10.2 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:06 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.10.1: +388 -0
lines
Diff to previous 1.3.10.1 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.3.4.3 / (download) - annotate - [select for diffs], Thu May 4 12:25:50 2006 UTC (6 years ago) by tron
Branch: netbsd-3
CVS Tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Changes since 1.3.4.2: +24 -2
lines
Diff to previous 1.3.4.2 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Pull up following revision(s) (requested by jonathan in ticket #1298): sys/dev/pci/svwsata.c: revision 1.2 share/man/man4/svwsata.4: revision 1.2 Also support Serverwork Frodo4, Frodo8 and HT-1000 in svwsata. From OpenBSD.
Revision 1.3.4.2 / (download) - annotate - [select for diffs], Thu May 4 12:12:07 2006 UTC (6 years ago) by tron
Branch: netbsd-3
Changes since 1.3.4.1: +366 -0
lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored)
Pull up following revision(s) (requested by jonathan in ticket #1298): share/man/man4/pciide.4: revision 1.60 share/man/man4/Makefile: revision 1.376 via patch sys/dev/pci/svwsata.c: revision 1.1 sys/dev/pci/files.pci: revision 1.243 sys/arch/i386/conf/INSTALL: revision 1.281 sys/dev/pci/pcidevs: revision 1.771 via patch sys/dev/pci/pciidevar.h: revision 1.33 sys/arch/i386/conf/XEN0: revision 1.34 sys/arch/i386/conf/GENERIC: revision 1.732 sys/dev/pci/pciide_svwsata_reg.h: revision 1.1 Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger.
Revision 1.3.2.2 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:16 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.3.2.1: +388 -0
lines
Diff to previous 1.3.2.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Sync with head.
Revision 1.1.2.1 / (download) - annotate - [select for diffs], Wed Apr 19 03:25:38 2006 UTC (6 years, 1 month ago) by elad
Branch: elad-kernelauth
Changes since 1.1: +25 -3
lines
Diff to previous 1.1 (colored) next main 1.2 (colored)
sync with head.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Sat Apr 1 12:07:18 2006 UTC (6 years, 1 month ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2.2.2: +3 -3
lines
Diff to previous 1.2.2.2 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head.
Revision 1.2.4.1 / (download) - annotate - [select for diffs], Fri Mar 31 09:45:23 2006 UTC (6 years, 1 month ago) by tron
Branch: peter-altq
Changes since 1.2: +3 -3
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
Revision 1.3.16.1, Wed Mar 29 04:16:50 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.3: +0 -388
lines
FILE REMOVED
file svwsata.c was added on branch rpaulo-netinet-merge-pcb on 2006-09-09 02:52:19 +0000
Revision 1.3.10.1, Wed Mar 29 04:16:50 2006 UTC (6 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3: +0 -388
lines
FILE REMOVED
file svwsata.c was added on branch yamt-lazymbuf on 2006-06-21 15:05:06 +0000
Revision 1.3.4.1, Wed Mar 29 04:16:50 2006 UTC (6 years, 1 month ago) by tron
Branch: netbsd-3
Changes since 1.3: +0 -388
lines
FILE REMOVED
file svwsata.c was added on branch netbsd-3 on 2006-05-04 12:12:07 +0000
Revision 1.3.2.1, Wed Mar 29 04:16:50 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
Changes since 1.3: +0 -388
lines
FILE REMOVED
file svwsata.c was added on branch simonb-timecounters on 2006-04-22 11:39:16 +0000
Revision 1.3 / (download) - annotate - [select for diffs], Wed Mar 29 04:16:50 2006 UTC (6 years, 1 month ago) by thorpej
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
yamt-lazymbuf,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
newlock2,
netbsd-3
Changes since 1.2: +3 -3
lines
Diff to previous 1.2 (colored)
Use device_cfdata().
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Mon Mar 13 09:07:27 2006 UTC (6 years, 2 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2.2.1: +388 -0
lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored)
sync with head.
Revision 1.2.2.1, Tue Mar 7 22:11:25 2006 UTC (6 years, 2 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2: +0 -388
lines
FILE REMOVED
file svwsata.c was added on branch yamt-pdpolicy on 2006-03-13 09:07:27 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Tue Mar 7 22:11:25 2006 UTC (6 years, 2 months ago) by bouyer
Branch: MAIN
CVS Tags: yamt-pdpolicy-base2,
peter-altq-base
Branch point for: yamt-pdpolicy,
peter-altq
Changes since 1.1: +24 -2
lines
Diff to previous 1.1 (colored)
Also support Serverwork Frodo4, Frodo8 and HT-1000 in svwsata. From OpenBSD.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Mar 6 18:35:24 2006 UTC (6 years, 2 months ago) by bouyer
Branch: MAIN
Branch point for: elad-kernelauth
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger.