Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.36.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:09 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.36: +3 -3
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
Sync with HEAD.
Revision 1.34.2.3 / (download) - annotate - [select for diffs], Thu Apr 21 01:41:48 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.34.2.2: +1 -1
lines
Diff to previous 1.34.2.2 (colored) to branchpoint 1.34 (colored) next main 1.35 (colored)
sync with head
Revision 1.37 / (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.36: +3 -3
lines
Diff to previous 1.36 (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.34.2.2 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:34 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.34.2.1: +2 -4
lines
Diff to previous 1.34.2.1 (colored) to branchpoint 1.34 (colored)
sync with head
Revision 1.32.8.1 / (download) - annotate - [select for diffs], Sat Nov 20 00:18:59 2010 UTC (18 months ago) by riz
Branch: netbsd-5
CVS Tags: matt-nb5-pq3-base,
matt-nb5-pq3
Changes since 1.32: +4 -2
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
Pull up following revision(s) (requested by jakllsch in ticket #1362): sys/dev/pci/pcidevs: revision 1.1026 sys/dev/pci/agp_intel.c: revision 1.35 sys/dev/pci/agp_i810.c: revision 1.67 Add Intel 82855GM Host-AGP Bridge. regen Add (non-IGP) AGP port support for Intel 82855GM. agp_intel tested with radeondrm(4). agp_i810 tested with i915drm(4).
Revision 1.36 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:05 2010 UTC (18 months, 1 week ago) by uebayasi
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: jruoho-x86intr
Changes since 1.35: +2 -4
lines
Diff to previous 1.35 (colored)
Don't pull in the whole uvm(9) API to access only PAGE_SIZE and some other constants. These are provided by sys/param.h now.
Revision 1.31.4.3 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:41 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.31.4.2: +4 -2
lines
Diff to previous 1.31.4.2 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored)
sync with head.
Revision 1.34.2.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:31 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.34: +4 -2
lines
Diff to previous 1.34 (colored)
sync with head
Revision 1.33.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:29 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.33: +6 -4
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Sync with HEAD.
Revision 1.35 / (download) - annotate - [select for diffs], Sun Apr 4 14:40:05 2010 UTC (2 years, 1 month ago) by jakllsch
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1
Changes since 1.34: +4 -2
lines
Diff to previous 1.34 (colored)
Add (non-IGP) AGP port support for Intel 82855GM. agp_intel tested with radeondrm(4). agp_i810 tested with i915drm(4).
Revision 1.31.4.2 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:42 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.31.4.1: +4 -4
lines
Diff to previous 1.31.4.1 (colored) to branchpoint 1.31 (colored)
sync with head
Revision 1.34 / (download) - annotate - [select for diffs], Wed Feb 24 22:37:59 2010 UTC (2 years, 3 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Changes since 1.33: +4 -4
lines
Diff to previous 1.33 (colored)
A pointer typedef entails trading too much flexibility to declare const and non-const types, and the kernel uses both const and non-const PMF qualifiers and device suspensors, so change the pmf_qual_t and device_suspensor_t typedefs from "pointers to const" to non-pointer, non-const types.
Revision 1.33 / (download) - annotate - [select for diffs], Fri Jan 8 19:56:51 2010 UTC (2 years, 4 months ago) by dyoung
Branch: MAIN
CVS Tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Changes since 1.32: +4 -4
lines
Diff to previous 1.32 (colored)
Expand PMF_FN_* macros.
Revision 1.31.4.1 / (download) - annotate - [select for diffs], Mon May 4 08:12:54 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored)
sync with head.
Revision 1.28.6.3 / (download) - annotate - [select for diffs], Sun Jun 29 09:33:08 2008 UTC (3 years, 10 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.28.6.2: +4 -4
lines
Diff to previous 1.28.6.2 (colored) to branchpoint 1.28 (colored) next main 1.29 (colored)
Sync with HEAD.
Revision 1.31.6.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:31:10 2008 UTC (3 years, 11 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.31.2.1 / (download) - annotate - [select for diffs], Tue Jun 17 09:14:40 2008 UTC (3 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
sync with head.
Revision 1.32 / (download) - annotate - [select for diffs], Mon Jun 9 06:49:54 2008 UTC (3 years, 11 months ago) by freza
Branch: MAIN
CVS Tags: yamt-pf42-base4,
yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
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,
mjf-devfs2-base,
matt-premerge-20091211,
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,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base,
jym-xensuspend,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-audiomp2-base,
ad-audiomp2
Branch point for: netbsd-5
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored)
o Split device_t/softc for agp(4). o agp_ali.c: remove unused 'agp' member from agp_ali_softc. o drm: agp_find_device() returns 'void *', not a device_t. o Use device_t, cfdata_t instead of struct pointers. o Don't cast void pointers in assignments.
Revision 1.28.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:36 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.28.6.1: +1 -1
lines
Diff to previous 1.28.6.1 (colored) to branchpoint 1.28 (colored)
Sync with HEAD.
Revision 1.31 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:36 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
hpcarm-cleanup-nbase
Branch point for: yamt-pf42,
yamt-nfs-mp,
wrstuden-revivesa
Changes since 1.30: +3 -3
lines
Diff to previous 1.30 (colored)
use aprint_*_dev and device_xname
Revision 1.28.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:48 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.28: +7 -7
lines
Diff to previous 1.28 (colored)
Sync with HEAD.
Revision 1.28.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:46 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.28: +7 -7
lines
Diff to previous 1.28 (colored) next main 1.29 (colored)
sync with head.
Revision 1.22.10.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:44 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.22.10.2: +9 -6
lines
Diff to previous 1.22.10.2 (colored) to branchpoint 1.22 (colored) next main 1.23 (colored)
sync with HEAD
Revision 1.15.2.8 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:10 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.7: +4 -4
lines
Diff to previous 1.15.2.7 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)
sync with head.
Revision 1.30 / (download) - annotate - [select for diffs], Fri Feb 29 06:13:39 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
ad-socklock-base1
Changes since 1.29: +4 -4
lines
Diff to previous 1.29 (colored)
Use PMF_FN_ARGS, PMF_FN_PROTO.
Revision 1.15.2.7 / (download) - annotate - [select for diffs], Wed Feb 27 08:36:34 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.6: +7 -4
lines
Diff to previous 1.15.2.6 (colored) to branchpoint 1.15 (colored)
sync with head.
Revision 1.29 / (download) - annotate - [select for diffs], Thu Feb 21 22:26:35 2008 UTC (4 years, 3 months ago) by drochner
Branch: MAIN
CVS Tags: hpcarm-cleanup-base
Changes since 1.28: +5 -5
lines
Diff to previous 1.28 (colored)
clean up the error bit clear code: -use an aligned pci config space address as everyone else -- I'm sorry about that because I like gson's way a lot -- it keeps the address offset due to alignment visually close to the data shift --, but since aligned addresses are used everywhere else in definitions, this causes confusion -the mask applied to the data didn't make much sense, a look at the FreeBSD code where this code originates from suggests that there was just a mistake -- one trailing zero missing -- anyway, the datasheet tells that the error bits are all write-one- to-clear, so just write back the value and we are done
Revision 1.23.2.3 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:55 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.23.2.2: +7 -5
lines
Diff to previous 1.23.2.2 (colored) to branchpoint 1.23 (colored) next main 1.24 (colored)
Sync with HEAD.
Revision 1.28 / (download) - annotate - [select for diffs], Fri Feb 15 13:28:25 2008 UTC (4 years, 3 months ago) by gson
Branch: MAIN
CVS Tags: nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Changes since 1.27: +7 -4
lines
Diff to previous 1.27 (colored)
Fix unaligned write to PCI configuration space. Should fix PR kern/37824.
Revision 1.15.2.6 / (download) - annotate - [select for diffs], Mon Jan 21 09:43:34 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.5: +13 -38
lines
Diff to previous 1.15.2.5 (colored) to branchpoint 1.15 (colored)
sync with head
Revision 1.22.10.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:53:31 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.22.10.1: +24 -39
lines
Diff to previous 1.22.10.1 (colored) to branchpoint 1.22 (colored)
sync with HEAD
Revision 1.25.2.2 / (download) - annotate - [select for diffs], Tue Jan 8 22:11:10 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.25.2.1: +0 -1
lines
Diff to previous 1.25.2.1 (colored) to branchpoint 1.25 (colored) next main 1.26 (colored)
Sync with HEAD
Revision 1.27 / (download) - annotate - [select for diffs], Fri Jan 4 21:18:00 2008 UTC (4 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: matt-armv6-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Changes since 1.26: +2 -3
lines
Diff to previous 1.26 (colored)
Start detangling lock.h from intr.h. This is likely to cause short term breakage, but the mess of dependencies has been regularly breaking the build recently anyhow.
Revision 1.25.2.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:54:37 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.25: +3 -3
lines
Diff to previous 1.25 (colored)
Sync with HEAD
Revision 1.23.2.2 / (download) - annotate - [select for diffs], Thu Dec 27 00:45:13 2007 UTC (4 years, 5 months ago) by mjf
Branch: mjf-devfs
Changes since 1.23.2.1: +13 -37
lines
Diff to previous 1.23.2.1 (colored) to branchpoint 1.23 (colored)
Sync with HEAD.
Revision 1.24.2.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:46:39 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.24: +13 -37
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
Sync with head.
Revision 1.26 / (download) - annotate - [select for diffs], Sat Dec 15 00:39:28 2007 UTC (4 years, 5 months ago) by perry
Branch: MAIN
CVS Tags: vmlocking2-base3
Changes since 1.25: +3 -3
lines
Diff to previous 1.25 (colored)
__FUNCTION__ -> __func__
Revision 1.24.4.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:31:44 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-kmem
Changes since 1.24: +12 -36
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
sync with head.
Revision 1.25 / (download) - annotate - [select for diffs], Sun Dec 9 20:28:05 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Changes since 1.24: +12 -36
lines
Diff to previous 1.24 (colored)
Merge jmcneill-pm branch.
Revision 1.22.8.5 / (download) - annotate - [select for diffs], Sat Dec 8 16:21:22 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.22.8.4: +3 -3
lines
Diff to previous 1.22.8.4 (colored) to branchpoint 1.22 (colored) next main 1.23 (colored)
Rename pnp(9) -> pmf(9), as requested by many.
Revision 1.23.2.1 / (download) - annotate - [select for diffs], Mon Nov 19 00:48:05 2007 UTC (4 years, 6 months ago) by mjf
Branch: mjf-devfs
Changes since 1.23: +13 -3
lines
Diff to previous 1.23 (colored)
Sync with HEAD.
Revision 1.15.2.5 / (download) - annotate - [select for diffs], Thu Nov 15 11:44:18 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.4: +13 -3
lines
Diff to previous 1.15.2.4 (colored) to branchpoint 1.15 (colored)
sync with head.
Revision 1.22.14.2 / (download) - annotate - [select for diffs], Tue Nov 13 16:01:12 2007 UTC (4 years, 6 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.22.14.1: +11 -1
lines
Diff to previous 1.22.14.1 (colored) to branchpoint 1.22 (colored) next main 1.23 (colored)
Sync with HEAD
Revision 1.24 / (download) - annotate - [select for diffs], Mon Nov 12 20:00:17 2007 UTC (4 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: yamt-kmem,
vmlocking2
Changes since 1.23: +13 -3
lines
Diff to previous 1.23 (colored)
Merge bunch of AGP changes from jmcneill-pm.
Revision 1.22.10.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:28:36 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
sync with HEAD
Revision 1.22.8.4 / (download) - annotate - [select for diffs], Tue Nov 6 14:27:20 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.22.8.3: +9 -12
lines
Diff to previous 1.22.8.3 (colored) to branchpoint 1.22 (colored)
Refactor PNP API: - Make suspend/resume directly a device functionality. It consists of three layers (class logic, device logic, bus logic), all of them being optional. This replaces D0/D3 transitions. - device_is_active returns true if the device was not disabled and was not suspended (even partially), device_is_enabled returns true if the device was enabled. - Change pnp_global_transition into pnp_system_suspend and pnp_system_resume. Before running any suspend/resume handlers, check that all currently attached devices support power management and bail out otherwise. The latter is not done for the shutdown/panic case. - Make the former bus-specific generic network handlers a class handler. - Make PNP message like volume up/down/toogle PNP events. Each device can register what events they are interested in and whether the handler should be global or not. - Introduce device_active API for devices to mark themselve in use from either the system or the device. Use this to implement the idle handling for audio and input devices. This is intended to replace most ad-hoc watchdogs as well. - Fix somes situations in which audio resume would lose mixer settings. - Make USB host controllers better deal with suspend in the light of shared interrupts. - Flush filesystem cache on suspend. - Flush disk caches on suspend. Put ATA disks into standby on suspend as well. - Adopt drivers to use the new PNP API. - Fix a critical bug in the generic cardbus layer that made D0->D3 break. - Fix ral(4) to set if_stop. - Convert cbb(4) to the new PNP API. - Apply the PCI Express SCI fix on resume again.
Revision 1.15.2.4 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:31 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.3: +3 -3
lines
Diff to previous 1.15.2.3 (colored) to branchpoint 1.15 (colored)
sync with head.
Revision 1.22.8.3 / (download) - annotate - [select for diffs], Fri Oct 26 15:45:51 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.22.8.2: +3 -3
lines
Diff to previous 1.22.8.2 (colored) to branchpoint 1.22 (colored)
Sync with HEAD. Follow the merge of pmap.c on i386 and amd64 and move pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup code to restore CR4 before jumping back into kernel space as the large page option might cover that.
Revision 1.22.14.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:38:47 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
Sync with HEAD.
Revision 1.21.8.2 / (download) - annotate - [select for diffs], Tue Oct 23 20:08:43 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.21.8.1: +3 -3
lines
Diff to previous 1.21.8.1 (colored) to branchpoint 1.21 (colored) next main 1.22 (colored)
Sync with head.
Revision 1.23 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:39 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: jmcneill-base
Branch point for: mjf-devfs
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.22.8.2 / (download) - annotate - [select for diffs], Mon Oct 1 05:37:32 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.22.8.1: +13 -40
lines
Diff to previous 1.22.8.1 (colored) to branchpoint 1.22 (colored)
Extend device API by device_power_private and device_power_set_private. The latter is a temporary mean until the pnp_register API itself is overhault. This functions allow a generic power handler to store its state independent of the driver. Use this and revamp the PCI power handling. Pretty much all PCI devices had power handlers that did the same thing, generalize this in pci_generic_power_register/deregister and the handler. This interface offers callbacks for the drivers to save and restore state on transistions. After a long discussion with jmcneill@ it was considered to be powerful enough until evidence is shown that devices can handle D1/D2 with less code and higher speed than without the full save/restore. The generic code is carefully written to handle device without PCI-PM support and ensure that the correct registers are written to when D3 loses all state. Reimplement the generic PCI network device handling on top of PCI generic power handling. Introduce pci_disable_retry as used and implemented locally at least by ath(4) and iwi(4). Use it in this drivers to restore behaviour from before the introduction of generic PCI network handling. Convert all PCI drivers that were using pnp_register to the new framework. The only exception is vga(4) as it is commonly used as console device. Add a note therein that this should be fixed later.
Revision 1.15.2.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:36:19 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.2: +2 -3
lines
Diff to previous 1.15.2.2 (colored) to branchpoint 1.15 (colored)
sync with head.
Revision 1.22.8.1 / (download) - annotate - [select for diffs], Wed Aug 8 11:51:31 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.22: +49 -33
lines
Diff to previous 1.22 (colored)
Add Intel (older version) AGP power management support.
Revision 1.21.10.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:06:57 2007 UTC (4 years, 10 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.21: +2 -3
lines
Diff to previous 1.21 (colored) next main 1.22 (colored)
Sync with head.
Revision 1.21.4.1 / (download) - annotate - [select for diffs], Sun Apr 15 16:03:24 2007 UTC (5 years, 1 month ago) by yamt
Branch: yamt-idlelwp
Changes since 1.21: +2 -3
lines
Diff to previous 1.21 (colored) next main 1.22 (colored)
sync with head.
Revision 1.21.8.1 / (download) - annotate - [select for diffs], Tue Apr 10 13:24:24 2007 UTC (5 years, 1 month ago) by ad
Branch: vmlocking
Changes since 1.21: +2 -3
lines
Diff to previous 1.21 (colored)
Sync with head.
Revision 1.21.12.1 / (download) - annotate - [select for diffs], Thu Mar 29 19:27:46 2007 UTC (5 years, 1 month ago) by reinoud
Branch: reinoud-bufcleanup
Changes since 1.21: +2 -3
lines
Diff to previous 1.21 (colored) next main 1.22 (colored)
Pullup to -current
Revision 1.22 / (download) - annotate - [select for diffs], Mon Mar 26 22:42:39 2007 UTC (5 years, 2 months ago) by hubertf
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-idlelwp-base8,
vmlocking-base,
thorpej-atomic-base,
thorpej-atomic,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
mjf-ufs-trans-base,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup
Branch point for: matt-armv6,
jmcneill-pm,
bouyer-xenamd64
Changes since 1.21: +2 -3
lines
Diff to previous 1.21 (colored)
Remove duplicate include of <sys/agpio.h> From: Slava Semushin <php-coder@altlinux.ru>
Revision 1.15.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:41 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15.2.1: +4 -3
lines
Diff to previous 1.15.2.1 (colored) to branchpoint 1.15 (colored)
sync with head.
Revision 1.18.12.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:41 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.18.12.1: +3 -3
lines
Diff to previous 1.18.12.1 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)
sync with head.
Revision 1.18.10.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:28 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.18: +4 -3
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Sync with head.
Revision 1.21 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:08 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
post-newlock2-merge,
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,
matt-nb4-arm-base,
matt-nb4-arm,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp,
vmlocking,
reinoud-bufcleanup,
mjf-ufs-trans
Changes since 1.20: +3 -3
lines
Diff to previous 1.20 (colored)
__unused removal on arguments; approved by core.
Revision 1.18.12.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:15 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.18: +5 -4
lines
Diff to previous 1.18 (colored)
sync with head
Revision 1.20 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:27 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.19: +3 -3
lines
Diff to previous 1.19 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.19 / (download) - annotate - [select for diffs], Sun Sep 24 03:53:09 2006 UTC (5 years, 8 months ago) by jmcneill
Branch: MAIN
Changes since 1.18: +4 -3
lines
Diff to previous 1.18 (colored)
Add "name" parameter to powerhook_establish, to aid debugging. No objections on tech-kern@
Revision 1.17.2.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:16 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.17: +41 -2
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
sync with head
Revision 1.15.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:03 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.15: +42 -3
lines
Diff to previous 1.15 (colored)
sync with head.
Revision 1.17.4.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:13 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.17: +41 -2
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
Sync with head.
Revision 1.17.8.1 / (download) - annotate - [select for diffs], Wed Apr 19 03:25:33 2006 UTC (6 years, 1 month ago) by elad
Branch: elad-kernelauth
Changes since 1.17: +41 -2
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
sync with head.
Revision 1.17.6.1 / (download) - annotate - [select for diffs], Mon Mar 13 09:07:26 2006 UTC (6 years, 2 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.17: +41 -2
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
sync with head.
Revision 1.18 / (download) - annotate - [select for diffs], Sat Mar 11 02:35:06 2006 UTC (6 years, 2 months ago) by jmcneill
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,
yamt-pdpolicy-base2,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
peter-altq-base,
peter-altq,
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,
newlock2
Changes since 1.17: +41 -2
lines
Diff to previous 1.17 (colored)
Add Intel AGP powerhook. Tested on an 82855PM.
Revision 1.14.14.1 / (download) - annotate - [select for diffs], Tue Feb 14 20:39:35 2006 UTC (6 years, 3 months ago) by riz
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.14: +3 -3
lines
Diff to previous 1.14 (colored) next main 1.15 (colored)
Pull up following revision(s) (requested by tron in ticket #1168): sys/dev/pci/agp_i810.c: revision 1.28 sys/arch/i386/pci/pchb.c: revision 1.57 sys/dev/pci/agpvar.h: revision 1.11 sys/dev/pci/agp_via.c: revision 1.9 sys/dev/pci/agp.c: revision 1.37 sys/dev/pci/agpreg.h: revision 1.10 sys/dev/pci/pcidevs: revision 1.757 sys/dev/pci/agp_amd.c: revision 1.14 sys/dev/pci/agp_intel.c: revision 1.17 sys/dev/pci/agp_sis.c: revision 1.8 sys/dev/pci/agp_ali.c: revision 1.9 sys/arch/i386/pci/pchb_rnd.c: revision 1.16 PR/32550: Michael Eriksson: No agp(4) support for i915 integrated graphics
Revision 1.16.2.1 / (download) - annotate - [select for diffs], Wed Feb 1 14:52:08 2006 UTC (6 years, 3 months ago) by yamt
Branch: yamt-uio_vmspace
Changes since 1.16: +3 -3
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
sync with head.
Revision 1.17 / (download) - annotate - [select for diffs], Mon Jan 16 22:59:36 2006 UTC (6 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
elad-kernelauth
Changes since 1.16: +3 -3
lines
Diff to previous 1.16 (colored)
PR/32550: Michael Eriksson: No agp(4) support for i915 integrated graphics
Revision 1.16 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:48 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
Branch point for: yamt-uio_vmspace
Changes since 1.15: +2 -2
lines
Diff to previous 1.15 (colored)
merge ktrace-lwp.
Revision 1.10.2.4 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:00 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.3: +3 -3
lines
Diff to previous 1.10.2.3 (colored) next main 1.11 (colored)
Sync with HEAD. Here we go again...
Revision 1.15 / (download) - annotate - [select for diffs], Tue Jun 28 00:28:41 2005 UTC (6 years, 10 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
ktrace-lwp-base
Branch point for: yamt-lazymbuf
Changes since 1.14: +3 -3
lines
Diff to previous 1.14 (colored)
Use ANSI function decls and static.
Revision 1.10.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:00 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.2: +2 -2
lines
Diff to previous 1.10.2.2 (colored)
Fix the sync with head I botched.
Revision 1.10.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:02 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.1: +0 -0
lines
Diff to previous 1.10.2.1 (colored)
Sync with HEAD.
Revision 1.10.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:06 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10: +28 -17
lines
Diff to previous 1.10 (colored)
Sync with HEAD
Revision 1.14 / (download) - annotate - [select for diffs], Tue Aug 26 18:43:54 2003 UTC (8 years, 9 months ago) by tron
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
yamt-km-base2,
yamt-km-base,
yamt-km,
netbsd-3-base,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2,
matt-timespec,
kent-audio2-base,
kent-audio2,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: netbsd-3
Changes since 1.13: +21 -15
lines
Diff to previous 1.13 (colored)
Rework support for i845, i865 and i875P. agp(4) now doesn't "kill" the i82547EI on my i865PE motherboard any longer.
Revision 1.13 / (download) - annotate - [select for diffs], Tue Aug 26 17:28:13 2003 UTC (8 years, 9 months ago) by tron
Branch: MAIN
Changes since 1.12: +6 -6
lines
Diff to previous 1.12 (colored)
Replaces space with tabs.
Revision 1.12 / (download) - annotate - [select for diffs], Tue Jul 22 11:59:55 2003 UTC (8 years, 10 months ago) by simonb
Branch: MAIN
Changes since 1.11: +3 -2
lines
Diff to previous 1.11 (colored)
Clean up autoconfiguration output a little.
Revision 1.11 / (download) - annotate - [select for diffs], Sun Jul 6 12:39:41 2003 UTC (8 years, 10 months ago) by tron
Branch: MAIN
Changes since 1.10: +6 -2
lines
Diff to previous 1.10 (colored)
Handle i865 and i875P chipsets like the i845. This works good enough to make XFree86 work with agp(4) enabled on an i865PE motherboard.
Revision 1.10 / (download) - annotate - [select for diffs], Wed Jun 25 20:33:59 2003 UTC (8 years, 11 months ago) by ichiro
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.9: +46 -32
lines
Diff to previous 1.9 (colored)
The problem which stops in the middle of booting was solved. (kern/21843 Brian Stark <bpstark@pacbell.net>)
Revision 1.9 / (download) - annotate - [select for diffs], Sat Jun 14 11:44:51 2003 UTC (8 years, 11 months ago) by ichiro
Branch: MAIN
Changes since 1.8: +11 -7
lines
Diff to previous 1.8 (colored)
make compile
Revision 1.8 / (download) - annotate - [select for diffs], Sat Jun 14 11:40:20 2003 UTC (8 years, 11 months ago) by ichiro
Branch: MAIN
Changes since 1.7: +43 -19
lines
Diff to previous 1.7 (colored)
fix some bugs
Revision 1.7 / (download) - annotate - [select for diffs], Mon Jun 9 12:16:42 2003 UTC (8 years, 11 months ago) by ichiro
Branch: MAIN
Changes since 1.6: +110 -20
lines
Diff to previous 1.6 (colored)
fix bug report - xsrc/17810, kern/16898 add AGP configuration registers for i840/855PM, i840/i850E, 82443LX/BX/GX Although there chips are well alike, but initialization and so on procedures differ.
Revision 1.6 / (download) - annotate - [select for diffs], Fri Jan 31 00:07:40 2003 UTC (9 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.5: +5 -5
lines
Diff to previous 1.5 (colored)
Use aprint_*().
Revision 1.3.2.4 / (download) - annotate - [select for diffs], Thu Feb 28 04:13:57 2002 UTC (10 years, 2 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.3.2.3: +3 -4
lines
Diff to previous 1.3.2.3 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Catch up to -current.
Revision 1.2.2.4 / (download) - annotate - [select for diffs], Mon Feb 11 20:09:55 2002 UTC (10 years, 3 months ago) by jdolecek
Branch: kqueue
Changes since 1.2.2.3: +3 -4
lines
Diff to previous 1.2.2.3 (colored) next main 1.3 (colored)
Sync w/ -current.
Revision 1.5 / (download) - annotate - [select for diffs], Sat Jan 12 16:17:05 2002 UTC (10 years, 4 months ago) by tsutsui
Branch: MAIN
CVS Tags: newlock-base,
newlock,
netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
nathanw_sa_before_merge,
nathanw_sa_base,
kqueue-beforemerge,
kqueue-base,
kqueue-aftermerge,
ifpoll-base,
ifpoll,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
gehenna-devsw-base,
gehenna-devsw,
fvdl_fs64_base,
eeh-devprop-base,
eeh-devprop
Changes since 1.4: +3 -4
lines
Diff to previous 1.4 (colored)
Call malloc(9) with M_ZERO flag instead of memset() after malloc().
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Thu Jan 10 19:56:25 2002 UTC (10 years, 4 months ago) by thorpej
Branch: kqueue
Changes since 1.2.2.2: +4 -14
lines
Diff to previous 1.2.2.2 (colored)
Sync kqueue branch with -current.
Revision 1.3.2.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:15:07 2001 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.3.2.2: +4 -1
lines
Diff to previous 1.3.2.2 (colored) to branchpoint 1.3 (colored)
Catch up to -current.
Revision 1.4 / (download) - annotate - [select for diffs], Tue Nov 13 07:48:40 2001 UTC (10 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.3: +4 -1
lines
Diff to previous 1.3 (colored)
add RCSID
Revision 1.3.4.2 / (download) - annotate - [select for diffs], Mon Oct 1 12:45:51 2001 UTC (10 years, 7 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.3.4.1: +236 -0
lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Catch up with -current.
Revision 1.3.2.2 / (download) - annotate - [select for diffs], Fri Sep 21 22:35:53 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.3.2.1: +236 -0
lines
Diff to previous 1.3.2.1 (colored) to branchpoint 1.3 (colored)
Catch up to -current.
Revision 1.3.4.1, Sat Sep 15 00:25:00 2001 UTC (10 years, 8 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.3: +0 -236
lines
FILE REMOVED
file agp_intel.c was added on branch thorpej-devvp on 2001-10-01 12:45:51 +0000
Revision 1.3.2.1, Sat Sep 15 00:25:00 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.3: +0 -236
lines
FILE REMOVED
file agp_intel.c was added on branch nathanw_sa on 2001-09-21 22:35:53 +0000
Revision 1.3 / (download) - annotate - [select for diffs], Sat Sep 15 00:25:00 2001 UTC (10 years, 8 months ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
pre-chs-ubcperf,
post-chs-ubcperf
Branch point for: thorpej-devvp,
nathanw_sa
Changes since 1.2: +1 -14
lines
Diff to previous 1.2 (colored)
Clean up the AGP match/attach code somewhat.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Thu Sep 13 01:15:51 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.2.2.1: +249 -0
lines
Diff to previous 1.2.2.1 (colored)
Update the kqueue branch to HEAD.
Revision 1.2.2.1, Tue Sep 11 06:30:38 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.2: +0 -249
lines
FILE REMOVED
file agp_intel.c was added on branch kqueue on 2001-09-13 01:15:51 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Tue Sep 11 06:30:38 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
Branch point for: kqueue
Changes since 1.1: +5 -1
lines
Diff to previous 1.1 (colored)
Don't forget to install the pointer to the chip-specific chipc.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Sep 10 10:01:02 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
AGP GART support code. Originally written by Doug Rabson for FreeBSD, modifications to fit it into the NetBSD device/config structure and to use bus_dma by me.