Up to [cvs.NetBSD.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: nathanw_sa
Revision 1.50.2.13 / (download) - annotate - [select for diffs], Wed Dec 11 06:43:08 2002 UTC (10 years, 5 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.50.2.12: +2 -2
lines
Diff to previous 1.50.2.12 (colored) to branchpoint 1.50 (colored) next main 1.51 (colored)
Sync with HEAD.
Revision 1.50.2.12 / (download) - annotate - [select for diffs], Mon Nov 11 22:13:58 2002 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.11: +2 -3
lines
Diff to previous 1.50.2.11 (colored) to branchpoint 1.50 (colored)
Catch up to -current
Revision 1.50.2.11 / (download) - annotate - [select for diffs], Fri Oct 18 02:44:55 2002 UTC (10 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.10: +3 -3
lines
Diff to previous 1.50.2.10 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.10 / (download) - annotate - [select for diffs], Tue Aug 27 23:47:30 2002 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.9: +2 -1
lines
Diff to previous 1.50.2.9 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.9 / (download) - annotate - [select for diffs], Thu Aug 1 02:46:24 2002 UTC (10 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.8: +6 -4
lines
Diff to previous 1.50.2.8 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.8 / (download) - annotate - [select for diffs], Mon Jun 24 22:10:56 2002 UTC (10 years, 10 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.7: +3 -3
lines
Diff to previous 1.50.2.7 (colored) to branchpoint 1.50 (colored)
Curproc->curlwp renaming. Change uses of "curproc->l_proc" back to "curproc", which is more like the original use. Bare uses of "curproc" are now "curlwp". "curproc" is now #defined in proc.h as ((curlwp) ? (curlwp)->l_proc) : NULL) so that it is always safe to reference curproc (*de*referencing curproc is another story, but that's always been true).
Revision 1.50.2.7 / (download) - annotate - [select for diffs], Mon Apr 1 07:47:56 2002 UTC (11 years, 1 month ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.6: +344 -202
lines
Diff to previous 1.50.2.6 (colored) to branchpoint 1.50 (colored)
Catch up to -current. (CVS: It's not just a program. It's an adventure!)
Revision 1.50.2.6 / (download) - annotate - [select for diffs], Tue Jan 8 00:32:37 2002 UTC (11 years, 4 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.5: +6 -2
lines
Diff to previous 1.50.2.5 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.5 / (download) - annotate - [select for diffs], Wed Nov 14 19:16:40 2001 UTC (11 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.4: +4 -1
lines
Diff to previous 1.50.2.4 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.4 / (download) - annotate - [select for diffs], Mon Oct 22 20:41:50 2001 UTC (11 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.3: +66 -3
lines
Diff to previous 1.50.2.3 (colored) to branchpoint 1.50 (colored)
Catch up to -current.
Revision 1.50.2.3 / (download) - annotate - [select for diffs], Wed Sep 26 19:55:05 2001 UTC (11 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.2: +62 -49
lines
Diff to previous 1.50.2.2 (colored) to branchpoint 1.50 (colored)
Catch up to -current. Again.
Revision 1.50.2.2 / (download) - annotate - [select for diffs], Fri Aug 24 00:11:35 2001 UTC (11 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50.2.1: +7 -1
lines
Diff to previous 1.50.2.1 (colored) to branchpoint 1.50 (colored)
Catch up with -current.
Revision 1.50.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:06:59 2001 UTC (11 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.50: +137 -129
lines
Diff to previous 1.50 (colored)
Catch up to -current.
Revision 1.50 / (download) - annotate - [select for diffs], Mon Jan 29 02:38:02 2001 UTC (12 years, 3 months ago) by enami
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.49: +32 -9
lines
Diff to previous 1.49 (colored)
Don't use PR_URGENT to allocate page header. We don't want to just panic on memory shortage. Instead, use the same wait/nowait condition with the item requested, and just cleanup and return failure if we can't allocate page header while we aren't allowed to wait.