Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.3.4.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:46:28 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.3.4.1: +50 -0
lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored)
Sync with HEAD.
Revision 1.3.2.2 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:51 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.3.2.1: +50 -0
lines
Diff to previous 1.3.2.1 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:37 2010 UTC (22 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2.2.2: +3 -3
lines
Diff to previous 1.2.2.2 (colored) next main 1.3 (colored)
sync with head
Revision 1.3.4.1, Sun Jun 6 18:58:24 2010 UTC (23 months, 2 weeks ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.3: +0 -50
lines
FILE REMOVED
file pci_verbose.h was added on branch uebayasi-xip on 2010-08-17 06:46:28 +0000
Revision 1.3.2.1, Sun Jun 6 18:58:24 2010 UTC (23 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.3: +0 -50
lines
FILE REMOVED
file pci_verbose.h was added on branch yamt-nfs-mp on 2010-08-11 22:53:51 +0000
Revision 1.3 / (download) - annotate - [select for diffs], Sun Jun 6 18:58:24 2010 UTC (23 months, 2 weeks ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
netbsd-6-base,
netbsd-6,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
jruoho-x86intr,
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,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
HEAD
Branch point for: yamt-nfs-mp,
uebayasi-xip
Changes since 1.2: +3 -3
lines
Diff to previous 1.2 (colored)
Update pciverbose module to use module_autoload() rather than module_load(). Load the module right before each attempt to use its features, and let the module subsystem handle unloading.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Sun May 30 05:17:36 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2.2.1: +50 -0
lines
Diff to previous 1.2.2.1 (colored)
sync with head
Revision 1.2.2.1, Fri May 28 02:24:27 2010 UTC (23 months, 4 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2: +0 -50
lines
FILE REMOVED
file pci_verbose.h was added on branch rmind-uvmplock on 2010-05-30 05:17:36 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Fri May 28 02:24:27 2010 UTC (23 months, 4 weeks ago) by pgoyette
Branch: MAIN
Branch point for: rmind-uvmplock
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
Fix symbol name in multiple-inclusion protection. (missing trailing '_')
Revision 1.1 / (download) - annotate - [select for diffs], Thu May 27 05:53:35 2010 UTC (2 years ago) by pgoyette
Branch: MAIN
Extract pci_verbose interface definitions into their own header file so we don't need to include pcivar.h in the module. pcivar.h tries to pull in machine/pci_machdep.h which doesn't exist on all machine/architecture combos. Keeping track and building the module only for those that work would have been a maintenance headache; this change allows us to build the module on all systems, regardless of whether the system has pci support or not.