Up to [cvs.NetBSD.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: yamt-lazymbuf
Revision 1.101.2.13 / (download) - annotate - [select for diffs], Mon Mar 24 09:39:02 2008 UTC (5 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.12: +6 -4
lines
Diff to previous 1.101.2.12 (colored) next main 1.102 (colored)
sync with head.
Revision 1.101.2.12 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:34 2008 UTC (5 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.11: +6 -7
lines
Diff to previous 1.101.2.11 (colored)
sync with head.
Revision 1.101.2.11 / (download) - annotate - [select for diffs], Wed Feb 27 08:36:56 2008 UTC (5 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.10: +13 -13
lines
Diff to previous 1.101.2.10 (colored)
sync with head.
Revision 1.101.2.10 / (download) - annotate - [select for diffs], Mon Feb 11 14:59:58 2008 UTC (5 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.9: +3 -3
lines
Diff to previous 1.101.2.9 (colored)
sync with head.
Revision 1.101.2.9 / (download) - annotate - [select for diffs], Mon Feb 4 09:24:16 2008 UTC (5 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.8: +5 -3
lines
Diff to previous 1.101.2.8 (colored)
sync with head.
Revision 1.101.2.8 / (download) - annotate - [select for diffs], Mon Jan 21 09:46:20 2008 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.7: +266 -75
lines
Diff to previous 1.101.2.7 (colored)
sync with head
Revision 1.101.2.7 / (download) - annotate - [select for diffs], Fri Dec 7 17:33:07 2007 UTC (5 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.6: +38 -30
lines
Diff to previous 1.101.2.6 (colored)
sync with head
Revision 1.101.2.6 / (download) - annotate - [select for diffs], Thu Nov 15 11:44:49 2007 UTC (5 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.5: +907 -486
lines
Diff to previous 1.101.2.5 (colored)
sync with head.
Revision 1.101.2.5 / (download) - annotate - [select for diffs], Sat Oct 27 11:35:33 2007 UTC (5 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.4: +2 -13
lines
Diff to previous 1.101.2.4 (colored)
sync with head.
Revision 1.101.2.4 / (download) - annotate - [select for diffs], Mon Sep 3 14:41:04 2007 UTC (5 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.3: +56 -37
lines
Diff to previous 1.101.2.3 (colored)
sync with head.
Revision 1.101.2.3 / (download) - annotate - [select for diffs], Mon Feb 26 09:11:15 2007 UTC (6 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.2: +28 -12
lines
Diff to previous 1.101.2.2 (colored)
sync with head.
Revision 1.101.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:50:06 2006 UTC (6 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101.2.1: +64 -37
lines
Diff to previous 1.101.2.1 (colored)
sync with head.
Revision 1.101.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:09:38 2006 UTC (6 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.101: +423 -375
lines
Diff to previous 1.101 (colored)
sync with head.
Revision 1.101 / (download) - annotate - [select for diffs], Sat Jun 18 01:34:03 2005 UTC (7 years, 11 months ago) by thorpej
Branch: MAIN
Branch point for: yamt-lazymbuf
Changes since 1.100: +114 -84
lines
Diff to previous 1.100 (colored)
Fix some locking issues: - Make the locking rules for pr_rmpage() sane, and don't modify fields protected by the pool lock without actually holding it. - Always defer freeing the pool page to the back-end allocator, to avoid invoking the pool_allocator with the pool locked (which would violate the pool_allocator -> pool locking order). - Fix pool_reclaim() to not violate the pool_cache -> pool locking order by using a trylock. Reviewed by Chuq Silvers.