Up to [cvs.netbsd.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.8 / (download) - annotate - [select for diffs], Thu Oct 27 05:25:07 2011 UTC (6 months, 4 weeks ago) by jruoho
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
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,
HEAD
Changes since 1.7: +9 -3
lines
Diff to previous 1.7 (colored)
Revert the revision 1.5 in cpufreq(9). Instead, document that the KPI can not be used before interrupts have been enabled. Suggested by macallan@.
Revision 1.7 / (download) - annotate - [select for diffs], Tue Oct 25 18:26:09 2011 UTC (7 months ago) by christos
Branch: MAIN
Changes since 1.6: +7 -9
lines
Diff to previous 1.6 (colored)
back to using timespec, but convert to microseconds to prevent overflow.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Oct 25 11:35:49 2011 UTC (7 months ago) by jruoho
Branch: MAIN
Changes since 1.5: +10 -10
lines
Diff to previous 1.5 (colored)
Use microsecond rather than nanosecond resolution when sampling latencies.
Revision 1.5 / (download) - annotate - [select for diffs], Thu Oct 20 06:48:24 2011 UTC (7 months ago) by jruoho
Branch: MAIN
Changes since 1.4: +3 -5
lines
Diff to previous 1.4 (colored)
Do not use xcall(9) in cpufreq_register(9), as it requires kthreads to be running and may impose hacks like config_interrupts(9) in the backend.
Revision 1.4 / (download) - annotate - [select for diffs], Fri Sep 30 04:10:54 2011 UTC (7 months, 3 weeks ago) by jruoho
Branch: MAIN
Changes since 1.3: +2 -3
lines
Diff to previous 1.3 (colored)
Remove redundant assignment.
Revision 1.3 / (download) - annotate - [select for diffs], Fri Sep 30 04:01:21 2011 UTC (7 months, 3 weeks ago) by jruoho
Branch: MAIN
Changes since 1.2: +49 -62
lines
Diff to previous 1.2 (colored)
Fix bugs noted by alnsn@. Namely, preallocate the global structure in order to avoid locking issues during deregistration.
Revision 1.2 / (download) - annotate - [select for diffs], Wed Sep 28 15:52:48 2011 UTC (7 months, 3 weeks ago) by jruoho
Branch: MAIN
Changes since 1.1: +3 -11
lines
Diff to previous 1.1 (colored)
Initialize cpufreq(9) normally from main().
Revision 1.1 / (download) - annotate - [select for diffs], Wed Sep 28 10:55:48 2011 UTC (7 months, 3 weeks ago) by jruoho
Branch: MAIN
Add a simple cpufreq(9). This is slightly improved version presented on tech-kern@ with proper locking and few additional functions, mainly required for ioctl(9)/cpuctl(8).