The NetBSD Project

CVS log for src/sys/arch/sun3/sun3/locore2.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / arch / sun3 / sun3

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.104: download - view: text, markup, annotated - select for diffs
Sat Jan 13 18:51:38 2024 UTC (12 months, 1 week ago) by thorpej
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +4 -4 lines
Switch the sun68k platforms over to the common m68k vector table.

Revision 1.103: download - view: text, markup, annotated - select for diffs
Sat Jul 11 13:07:01 2020 UTC (4 years, 6 months ago) by nia
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-1-RELEASE, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +3 -3 lines
Fix various typos of "system" in comments. Mainly copypasto errors.

from vezhlys on freenode.

Revision 1.101.30.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:06:49 2019 UTC (5 years, 7 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.101: preferred, colored; next MAIN 1.102: preferred, colored
Changes since revision 1.101: +4 -4 lines
Sync with HEAD

Revision 1.101.28.1: download - view: text, markup, annotated - select for diffs
Thu Sep 6 06:55:43 2018 UTC (6 years, 4 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.101: preferred, colored; next MAIN 1.102: preferred, colored
Changes since revision 1.101: +4 -4 lines
Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

Revision 1.102: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:29:28 2018 UTC (6 years, 4 months ago) by riastradh
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, isaki-audio2-base, isaki-audio2, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +4 -4 lines
Rename min/max -> uimin/uimax for better honesty.

These functions are defined on unsigned int.  The generic name
min/max should not silently truncate to 32 bits on 64-bit systems.
This is purely a name change -- no functional change intended.

HOWEVER!  Some subsystems have

	#define min(a, b)	((a) < (b) ? (a) : (b))
	#define max(a, b)	((a) > (b) ? (a) : (b))

even though our standard name for that is MIN/MAX.  Although these
may invite multiple evaluation bugs, these do _not_ cause integer
truncation.

To avoid `fixing' these cases, I first changed the name in libkern,
and then compile-tested every file where min/max occurred in order to
confirm that it failed -- and thus confirm that nothing shadowed
min/max -- before changing it.

I have left a handful of bootloaders that are too annoying to
compile-test, and some dead code:

cobalt ews4800mips hp300 hppa ia64 luna68k vax
acorn32/if_ie.c (not included in any kernels)
macppc/if_gm.c (superseded by gem(4))

It should be easy to fix the fallout once identified -- this way of
doing things fails safe, and the goal here, after all, is to _avoid_
silent integer truncations, not introduce them.

Maybe one day we can reintroduce min/max as type-generic things that
never silently truncate.  But we should avoid doing that for a while,
so that existing code has a chance to be detected by the compiler for
conversion to uimin/uimax without changing the semantics until we can
properly audit it all.  (Who knows, maybe in some cases integer
truncation is actually intended!)

Revision 1.100.2.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:26 2014 UTC (10 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.100: preferred, colored; next MAIN 1.101: preferred, colored
Changes since revision 1.100: +7 -7 lines
Rebase to HEAD as of a few days ago.

Revision 1.99.8.2: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:10 2014 UTC (10 years, 8 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.99.8.1: preferred, colored; branchpoint 1.99: preferred, colored; next MAIN 1.100: preferred, colored
Changes since revision 1.99.8.1: +7 -7 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.100.4.1: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:27 2014 UTC (10 years, 8 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.100: preferred, colored; next MAIN 1.101: preferred, colored
Changes since revision 1.100: +7 -7 lines
sync with head

Revision 1.101: download - view: text, markup, annotated - select for diffs
Sat Sep 7 15:56:11 2013 UTC (11 years, 4 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base-20171202, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-base, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406, nick-nhusb-base, nick-nhusb, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: phil-wifi, pgoyette-compat
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +7 -7 lines
Whitespace cleanup.

Revision 1.99.8.1: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:20:27 2012 UTC (12 years, 2 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +11 -2 lines
sync with head

Revision 1.100: download - view: text, markup, annotated - select for diffs
Fri Aug 10 14:33:35 2012 UTC (12 years, 5 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, agc-symver-base, agc-symver
Branch point for: tls-maxphys, rmind-smpnet
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +11 -2 lines
Appease gcc -fno-common:
 - initialize cn_tab in locore2.c:_bootstrap() for early printf calls
Tested on sun3 (3/160 on TME) and sun3x (real 3/80).

XXX: sun3 with >16MB RAM gets "panic: ubc_init: failed to map ubc_object"

Revision 1.98.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:52:12 2011 UTC (13 years, 10 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.98: preferred, colored; next MAIN 1.99: preferred, colored
Changes since revision 1.98: +3 -3 lines
sync with head

Revision 1.98.2.1: download - view: text, markup, annotated - select for diffs
Fri Oct 22 07:21:37 2010 UTC (14 years, 3 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.98: preferred, colored; next MAIN 1.99: preferred, colored
Changes since revision 1.98: +3 -3 lines
Sync with HEAD (-D20101022).

Revision 1.99: download - view: text, markup, annotated - select for diffs
Fri Oct 15 15:55:53 2010 UTC (14 years, 3 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, uebayasi-xip-base7, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, rmind-uvmplock-nbase, rmind-uvmplock-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, 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-base10, jmcneill-usbmp-base, jmcneill-usbmp, jmcneill-audiomp3-base, jmcneill-audiomp3, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +3 -3 lines
Make common kernel module binaries work on both sun3 and sun3x.
Tested on 3/160 (on TME) and (real) 3/80.

XXX: module files can be loaded only on single user?

Revision 1.90.44.4: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:03:03 2010 UTC (14 years, 10 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.90.44.3: preferred, colored; branchpoint 1.90: preferred, colored; next MAIN 1.91: preferred, colored
Changes since revision 1.90.44.3: +6 -8 lines
sync with head

Revision 1.98: download - view: text, markup, annotated - select for diffs
Sun Nov 29 15:13:22 2009 UTC (15 years, 1 month ago) by pooka
Branches: MAIN
CVS tags: yamt-nfs-mp-base9, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base2, uebayasi-xip-base1, uebayasi-xip-base, matt-premerge-20091211
Branch point for: uebayasi-xip, rmind-uvmplock
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +3 -3 lines
Initialize before set.

Revision 1.97: download - view: text, markup, annotated - select for diffs
Sun Nov 29 15:06:40 2009 UTC (15 years, 1 month ago) by pooka
Branches: MAIN
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +3 -3 lines
fix build. (hi rmind)

Revision 1.96: download - view: text, markup, annotated - select for diffs
Fri Nov 27 03:23:14 2009 UTC (15 years, 1 month ago) by rmind
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +6 -6 lines
- Use uvm_lwp_setuarea() instead of directly setting address to lwp_t::l_addr.
- Replace most remaining uses of l_addr with uvm_lwp_getuarea() or lwp_getpcb().
- Amend assembly in ports where it accesses PCB via struct user.
- Rename L_ADDR to L_PCB in few places.  Reduce sys/user.h inclusions.

Revision 1.95: download - view: text, markup, annotated - select for diffs
Thu Nov 26 00:19:23 2009 UTC (15 years, 1 month ago) by matt
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +5 -7 lines
Kill proc0paddr.  Use lwp0.l_addr instead.

Revision 1.90.44.3: download - view: text, markup, annotated - select for diffs
Wed Aug 19 18:46:48 2009 UTC (15 years, 5 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.90.44.2: preferred, colored; branchpoint 1.90: preferred, colored
Changes since revision 1.90.44.2: +2 -4 lines
sync with head.

Revision 1.94: download - view: text, markup, annotated - select for diffs
Tue Aug 11 17:04:20 2009 UTC (15 years, 5 months ago) by matt
Branches: MAIN
CVS tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +2 -4 lines
Remove all declarations of physmem from sys/arch.  Add an include of
<sys/systm.h> to the one file that did not already contain it.
This now means that physmem can be changed by updating systm.h and uvm_page.c
(excluding fixing printfs)

Revision 1.92.4.1: download - view: text, markup, annotated - select for diffs
Wed May 13 17:18:39 2009 UTC (15 years, 8 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.92: preferred, colored; next MAIN 1.93: preferred, colored
Changes since revision 1.92: +3 -2 lines
Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.90.44.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:12:01 2009 UTC (15 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.90.44.1: preferred, colored; branchpoint 1.90: preferred, colored
Changes since revision 1.90.44.1: +5 -4 lines
sync with head.

Revision 1.91.8.2: download - view: text, markup, annotated - select for diffs
Tue Mar 3 18:29:27 2009 UTC (15 years, 10 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.91.8.1: preferred, colored; branchpoint 1.91: preferred, colored; next MAIN 1.92: preferred, colored
Changes since revision 1.91.8.1: +3 -2 lines
Sync with HEAD.

Revision 1.93: download - view: text, markup, annotated - select for diffs
Fri Feb 13 22:41:03 2009 UTC (15 years, 11 months ago) by apb
Branches: MAIN
CVS tags: yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, jymxensuspend-base
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +3 -2 lines
Use "defopt MODULAR" in sys/conf/files, and #include "opt_modular.h"
in all kernel sources that use the MODULAR option.
Proposed in tech-kern on 18 Jan 2009.

Revision 1.91.8.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:16:56 2009 UTC (16 years ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +4 -4 lines
Sync with HEAD.

Revision 1.90.40.2: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:34 2009 UTC (16 years ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.90.40.1: preferred, colored; branchpoint 1.90: preferred, colored; next MAIN 1.91: preferred, colored
Changes since revision 1.90.40.1: +2 -2 lines
Sync with HEAD.

Revision 1.91.6.1: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:13:33 2008 UTC (16 years, 1 month ago) by haad
Branches: haad-dm
Diff to: previous 1.91: preferred, colored; next MAIN 1.92: preferred, colored
Changes since revision 1.91: +4 -4 lines
Update haad-dm branch to haad-dm-base2.

Revision 1.92: download - view: text, markup, annotated - select for diffs
Wed Nov 12 12:36:08 2008 UTC (16 years, 2 months ago) by ad
Branches: MAIN
CVS tags: mjf-devfs2-base, haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Branch point for: jym-xensuspend
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +4 -4 lines
Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.

Revision 1.90.40.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:46 2008 UTC (16 years, 7 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +2 -9 lines
Sync with HEAD.

Revision 1.90.42.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:32:57 2008 UTC (16 years, 8 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.90: preferred, colored; next MAIN 1.91: preferred, colored
Changes since revision 1.90: +2 -9 lines
sync with head.

Revision 1.90.44.1: download - view: text, markup, annotated - select for diffs
Fri May 16 02:23:21 2008 UTC (16 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +2 -9 lines
sync with head.

Revision 1.91: download - view: text, markup, annotated - select for diffs
Mon Apr 28 20:23:38 2008 UTC (16 years, 8 months ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base2, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, 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, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, 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, hpcarm-cleanup-nbase, haad-dm-base1
Branch point for: nick-hppapmap, haad-dm
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +2 -9 lines
Remove clause 3 and 4 from TNF licenses

Revision 1.86.2.3: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:30:40 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.86.2.2: preferred, colored; branchpoint 1.86: preferred, colored; next MAIN 1.87: preferred, colored
Changes since revision 1.86.2.2: +3 -3 lines
sync with head.

Revision 1.88.4.2: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:51:09 2007 UTC (17 years, 10 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.88.4.1: preferred, colored; branchpoint 1.88: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88.4.1: +3 -3 lines
Sync with HEAD.

Revision 1.90: download - view: text, markup, annotated - select for diffs
Sun Mar 4 06:00:54 2007 UTC (17 years, 10 months ago) by christos
Branches: MAIN
CVS tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, yamt-idlelwp-base8, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, vmlocking-base, vmlocking, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, reinoud-bufcleanup, ppcoea-renovation-base, ppcoea-renovation, nick-net80211-sync-base, nick-net80211-sync, nick-csl-alignment-base5, nick-csl-alignment-base, nick-csl-alignment, mjf-ufs-trans-base, mjf-ufs-trans, mjf-devfs-base, mjf-devfs, matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, matt-armv6-nbase, matt-armv6-base, matt-armv6, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, jmcneill-pm-base, jmcneill-pm, jmcneill-base, hpcarm-cleanup-base, hpcarm-cleanup, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp, mjf-devfs2
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +3 -3 lines
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

Revision 1.88.4.1: download - view: text, markup, annotated - select for diffs
Tue Feb 27 16:53:19 2007 UTC (17 years, 10 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +6 -6 lines
- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.

Revision 1.86.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:08:36 2007 UTC (17 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.86.2.1: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.1: +6 -6 lines
sync with head.

Revision 1.89: download - view: text, markup, annotated - select for diffs
Thu Feb 22 16:45:48 2007 UTC (17 years, 11 months ago) by thorpej
Branches: MAIN
CVS tags: ad-audiomp-base, ad-audiomp
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +6 -6 lines
TRUE -> true, FALSE -> false

Revision 1.86.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:47:12 2006 UTC (18 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +3 -3 lines
sync with head.

Revision 1.87.20.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:29:36 2006 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.87: preferred, colored; next MAIN 1.88: preferred, colored
Changes since revision 1.87: +3 -3 lines
Sync with head.

Revision 1.87.22.1: download - view: text, markup, annotated - select for diffs
Fri Oct 6 13:27:04 2006 UTC (18 years, 3 months ago) by tsutsui
Branches: yamt-splraiseipl
Diff to: previous 1.87: preferred, colored; next MAIN 1.88: preferred, colored
Changes since revision 1.87: +3 -3 lines
Sync files of recent sun3 and sun68k merge and intersil7170(4) changes
with HEAD to build sun3 kernel on this branch.

Revision 1.88: download - view: text, markup, annotated - select for diffs
Sun Oct 1 03:53:27 2006 UTC (18 years, 3 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, yamt-splraiseipl-base2, 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
Branch point for: yamt-idlelwp
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +3 -3 lines
First attempt at bus_space(9) support for sun3 with common sun68k/bus.c:
- make sun3 port use common sun68k files as much as possible
- add temporary options _SUN2_ in std.sun2 until sun3 can share all
  sun68k files (autoconf.c and isr.c are not yet)
- move sun68kvme declaration temporary as well from files.sun68k to files.sun2
- rename and move sun68k_find_prom_map() function to MD sources since it
  can't be shared with sun3
- add bus tag members to struct confargs and initilize them where appropriate

XXX1: MD bus_dma(9) backends are not implemented (yet).
XXX2: more code (obio etc.) should be shared among sun3, sun3x and sun2.

Revision 1.87: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:19:27 2005 UTC (19 years, 1 month ago) by christos
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, 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, yamt-pdpolicy-base, yamt-pdpolicy, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, rpaulo-netinet-merge-pcb-base, rpaulo-netinet-merge-pcb, peter-altq-base, peter-altq, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +2 -2 lines
merge ktrace-lwp.

Revision 1.82.2.5: download - view: text, markup, annotated - select for diffs
Thu Nov 10 13:59:54 2005 UTC (19 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.82.2.4: preferred, colored; next MAIN 1.83: preferred, colored
Changes since revision 1.82.2.4: +10 -10 lines
Sync with HEAD. Here we go again...

Revision 1.86: download - view: text, markup, annotated - select for diffs
Sun Jun 19 20:00:28 2005 UTC (19 years, 7 months ago) by thorpej
Branches: 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
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +9 -9 lines
Move common Sun ID PROM definitions into <dev/sun/idprom.h>.

Revision 1.85: download - view: text, markup, annotated - select for diffs
Fri Jun 3 15:04:21 2005 UTC (19 years, 7 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +3 -3 lines
Constify.

Revision 1.83.8.1: download - view: text, markup, annotated - select for diffs
Fri Apr 29 11:28:26 2005 UTC (19 years, 8 months ago) by kent
Branches: kent-audio2
Diff to: previous 1.83: preferred, colored; next MAIN 1.84: preferred, colored
Changes since revision 1.83: +14 -14 lines
sync with -current

Revision 1.82.2.4: download - view: text, markup, annotated - select for diffs
Mon Jan 24 08:34:54 2005 UTC (20 years ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.82.2.3: preferred, colored
Changes since revision 1.82.2.3: +14 -14 lines
Sync with HEAD.

Revision 1.84: download - view: text, markup, annotated - select for diffs
Sat Jan 22 15:36:10 2005 UTC (20 years ago) by chs
Branches: MAIN
CVS tags: yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, netbsd-3-base, 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, 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-3, kent-audio2-base
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +14 -14 lines
de-__P, remove register, ansify, b* -> mem*, u_int*_t -> uint*_t.

Revision 1.82.2.3: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:23:28 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.82.2.2: preferred, colored
Changes since revision 1.82.2.2: +2 -2 lines
Fix the sync with head I botched.

Revision 1.82.2.2: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:41:48 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.82.2.1: preferred, colored
Changes since revision 1.82.2.1: +0 -0 lines
Sync with HEAD.

Revision 1.82.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:42:12 2004 UTC (20 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +4 -1 lines
Sync with HEAD

Revision 1.83: download - view: text, markup, annotated - select for diffs
Tue Jul 15 03:36:18 2003 UTC (21 years, 6 months ago) by lukem
Branches: MAIN
CVS tags: 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, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: kent-audio2
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +4 -1 lines
__KERNEL_RCSID()

Revision 1.82: download - view: text, markup, annotated - select for diffs
Sun Apr 27 10:43:27 2003 UTC (21 years, 8 months ago) by ragge
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +5 -3 lines
Preserve the symbol table in the LKM || KSYMS cases also.

Revision 1.81: download - view: text, markup, annotated - select for diffs
Sat Jan 18 07:03:35 2003 UTC (22 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +7 -7 lines
Merge the nathanw_sa branch.

Revision 1.77.4.2: download - view: text, markup, annotated - select for diffs
Fri Sep 6 08:42:11 2002 UTC (22 years, 4 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.77.4.1: preferred, colored; branchpoint 1.77: preferred, colored; next MAIN 1.78: preferred, colored
Changes since revision 1.77.4.1: +4 -4 lines
sync kqueue branch with HEAD

Revision 1.79.14.1: download - view: text, markup, annotated - select for diffs
Sat Aug 31 14:52:45 2002 UTC (22 years, 4 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.79: preferred, colored; next MAIN 1.80: preferred, colored
Changes since revision 1.79: +4 -4 lines
catch up with -current.

Revision 1.79.6.5: download - view: text, markup, annotated - select for diffs
Tue Aug 13 02:19:00 2002 UTC (22 years, 5 months ago) by nathanw
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.79.6.4: preferred, colored; branchpoint 1.79: preferred, colored; next MAIN 1.80: preferred, colored
Changes since revision 1.79.6.4: +4 -4 lines
Catch up to -current.

Revision 1.80: download - view: text, markup, annotated - select for diffs
Fri Aug 2 18:19:59 2002 UTC (22 years, 5 months ago) by soren
Branches: MAIN
CVS tags: nathanw_sa_before_merge, nathanw_sa_base, kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, gehenna-devsw-base, fvdl_fs64_base
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +4 -4 lines
G/c vestiges of old sun3-specific SYMTAB_SPACE support.

Revision 1.79.6.4: download - view: text, markup, annotated - select for diffs
Fri Jul 12 01:39:51 2002 UTC (22 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.79.6.3: preferred, colored; branchpoint 1.79: preferred, colored
Changes since revision 1.79.6.3: +1 -2 lines
No longer need to pull in lwp.h; proc.h pulls it in for us.

Revision 1.79.6.3: download - view: text, markup, annotated - select for diffs
Mon Jun 24 22:08:30 2002 UTC (22 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.79.6.2: preferred, colored; branchpoint 1.79: preferred, colored
Changes since revision 1.79.6.2: +2 -2 lines
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.79.6.2: download - view: text, markup, annotated - select for diffs
Sun Nov 18 19:39:01 2001 UTC (23 years, 2 months ago) by scw
Branches: nathanw_sa
Diff to: previous 1.79.6.1: preferred, colored; branchpoint 1.79: preferred, colored
Changes since revision 1.79.6.1: +352 -0 lines
MD Scheduler Activation bits for sun3/3x.
Compile-tested only.

Revision 1.77.4.1: download - view: text, markup, annotated - select for diffs
Thu Sep 13 01:14:56 2001 UTC (23 years, 4 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +4 -4 lines
Update the kqueue branch to HEAD.

Revision 1.79.6.1
Wed Sep 5 14:12:21 2001 UTC (23 years, 4 months ago) by scw
Branches: nathanw_sa
FILE REMOVED
Changes since revision 1.79: +0 -351 lines
file locore2.c was added on branch nathanw_sa on 2001-11-18 19:39:01 +0000

Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed Sep 5 14:12:21 2001 UTC (23 years, 4 months ago) by tsutsui
Branches: MAIN
CVS tags: thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base3, thorpej-devvp-base2, thorpej-devvp-base, thorpej-devvp, pre-chs-ubcperf, post-chs-ubcperf, 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, ifpoll-base, eeh-devprop-base, eeh-devprop
Branch point for: nathanw_sa, gehenna-devsw
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +3 -3 lines
bcopy() -> memcpy(), bzero() -> memset()

Revision 1.78: download - view: text, markup, annotated - select for diffs
Wed Sep 5 13:21:09 2001 UTC (23 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +2 -2 lines
- vm_offset_t -> vaddr_t, vsize_t, paddr_t
- vm_size_t -> vsize_t
- remove register prefixes
- misc cleanup

Revision 1.74.14.3: download - view: text, markup, annotated - select for diffs
Mon Mar 12 13:29:41 2001 UTC (23 years, 10 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.74.14.2: preferred, colored; branchpoint 1.74: preferred, colored; next MAIN 1.75: preferred, colored
Changes since revision 1.74.14.2: +48 -66 lines
Sync with HEAD.

Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu Feb 22 07:11:12 2001 UTC (23 years, 11 months ago) by chs
Branches: MAIN
CVS tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base
Branch point for: kqueue
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +48 -66 lines
switch sun3 to ELF.  highlight include:
add "%" prefix to register names in assembly code.
change assembly functions to return values in %a0 instead of %d0.
C symbols no longer prepend an underscore, adjust assembly code for this.
32-bit values are now 32-bit aligned instead of 16-bit aligned,
adjust structure packing and padding to override this where necessary.
make EXEC_ELF std, make EXEC_AOUT and COMPAT_AOUT_M68K optional.
use the MI loadfile() instead of several home-grown versions.

Revision 1.74.14.2: download - view: text, markup, annotated - select for diffs
Sun Feb 11 19:12:48 2001 UTC (23 years, 11 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.74.14.1: preferred, colored; branchpoint 1.74: preferred, colored
Changes since revision 1.74.14.1: +3 -4 lines
Sync with HEAD.

Revision 1.76: download - view: text, markup, annotated - select for diffs
Sat Feb 3 12:59:48 2001 UTC (23 years, 11 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +3 -4 lines
Use macro in <m68k/m68k.h> for cputype and mmutype.

Revision 1.74.14.1: download - view: text, markup, annotated - select for diffs
Mon Nov 20 20:28:01 2000 UTC (24 years, 2 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +2 -2 lines
Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.

Revision 1.75: download - view: text, markup, annotated - select for diffs
Thu Jun 29 07:19:07 2000 UTC (24 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +2 -2 lines
remove include of <vm/vm.h>. <vm/vm.h> -> <uvm/uvm_extern.h>

Revision 1.74: download - view: text, markup, annotated - select for diffs
Sat Jul 4 22:18:43 1998 UTC (26 years, 6 months ago) by jonathan
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, netbsd-1-5, netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4, minoura-xpg4dl-base, minoura-xpg4dl, kenh-if-detach-base, kenh-if-detach, kame_14_19990705, kame_14_19990628, kame_141_19991130, kame, fvdl-softdep-base, fvdl-softdep, eeh-paddr_t-base, eeh-paddr_t, comdex-fall-1999-base, comdex-fall-1999, chs-ubc2-newbase, chs-ubc2-base, chs-ubc2, chs-ubc-base, chs-ubc
Branch point for: thorpej_scsipi
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +3 -1 lines
defopt DDB.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Fri Jun 12 20:06:30 1998 UTC (26 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +46 -30 lines
In _save_symtab, ignore any symbol table if preserving it would
cause our memory use to exceed the 1MB limit (on the 3/50 only).

Revision 1.72: download - view: text, markup, annotated - select for diffs
Thu Feb 5 04:57:41 1998 UTC (26 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +22 -18 lines
Merge arch/sun3x into arch/sun3

Revision 1.71.4.1: download - view: text, markup, annotated - select for diffs
Tue Jan 27 19:51:06 1998 UTC (26 years, 11 months ago) by gwr
Branches: gwr-3x3
Diff to: previous 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71: +22 -18 lines
Merged Sun3 and Sun3X kernel sources.

Revision 1.70.2.1: download - view: text, markup, annotated - select for diffs
Thu Oct 30 05:33:48 1997 UTC (27 years, 2 months ago) by mellon
Diff to: previous 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70: +2 -14 lines
Pull rev 1.71 up from trunk (gwr)

Revision 1.71: download - view: text, markup, annotated - select for diffs
Thu Oct 30 00:59:40 1997 UTC (27 years, 2 months ago) by gwr
Branches: MAIN
CVS tags: gwr-3x3-base
Branch point for: gwr-3x3
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +2 -14 lines
Move some variables from _startup.c into pmap.c (used only there).
Re-organize pmap_bootstrap, and shorten some function names.

Revision 1.66.4.2: download - view: text, markup, annotated - select for diffs
Tue Oct 14 10:19:21 1997 UTC (27 years, 3 months ago) by thorpej
Diff to: previous 1.66.4.1: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66.4.1: +27 -332 lines
Update marc-pcmcia branch from trunk.

Revision 1.70: download - view: text, markup, annotated - select for diffs
Mon Oct 6 20:04:05 1997 UTC (27 years, 3 months ago) by gwr
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +24 -321 lines
Move some of the VM initialization work from _startup.c to pmap.c
where it is normally found.

Revision 1.69: download - view: text, markup, annotated - select for diffs
Sat Oct 4 19:46:17 1997 UTC (27 years, 3 months ago) by gwr
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +4 -1 lines
Move the call to cninit() up a level (easier to find).

Revision 1.68: download - view: text, markup, annotated - select for diffs
Sat Oct 4 19:39:23 1997 UTC (27 years, 3 months ago) by gwr
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +1 -12 lines
Move dumppage initialization from sun3_startup.c to machdep.c
(so it can be a normal kmem_alloc)

Revision 1.66.4.1: download - view: text, markup, annotated - select for diffs
Mon Sep 22 06:32:47 1997 UTC (27 years, 4 months ago) by thorpej
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +2 -4 lines
Update marc-pcmcia branch from trunk.

Revision 1.67: download - view: text, markup, annotated - select for diffs
Fri Sep 19 13:55:38 1997 UTC (27 years, 4 months ago) by leo
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +2 -4 lines
Implement the kernel part of pr-1891. This allows for a more flexible sized
msgbuf. Note that old 'dmesg' and 'syslogd' binaries will continue running,
though old 'dmesg' binaries will output a few bytes of junk at the start of
the buffer, and will miss a few bytes at the end of the buffer.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Tue Jun 10 19:25:28 1997 UTC (27 years, 7 months ago) by veego
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +8 -8 lines
s/_round_seg/m68k_round_seg/ s/_trunc_seg/m68k_trunc_seg/
s/_round_page/m68k_round_page/ s/_trunc_page/m68k_trunc_page/

Revision 1.65: download - view: text, markup, annotated - select for diffs
Mon Apr 28 22:06:20 1997 UTC (27 years, 8 months ago) by gwr
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +29 -21 lines
Be quiet in _save_symtab() unless there is a problem.
Improve some comments (and sync with sun3x code).

Revision 1.64: download - view: text, markup, annotated - select for diffs
Thu Mar 13 15:58:56 1997 UTC (27 years, 10 months ago) by gwr
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +8 -8 lines
s/sun3_/_/ in sun3_(round|trunc)_(page|seg) macros

Revision 1.61.2.1: download - view: text, markup, annotated - select for diffs
Wed Mar 12 14:05:24 1997 UTC (27 years, 10 months ago) by is
Diff to: previous 1.61: preferred, colored; next MAIN 1.62: preferred, colored
Changes since revision 1.61: +9 -8 lines
Merge in changes from The Trunk

Revision 1.63: download - view: text, markup, annotated - select for diffs
Tue Feb 18 15:30:01 1997 UTC (27 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +1 -2 lines
Define "cold" over in autoconf.c

Revision 1.62: download - view: text, markup, annotated - select for diffs
Mon Feb 10 23:42:05 1997 UTC (27 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +9 -7 lines
Set cputype,mmutype at compile-time.

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sun Feb 2 08:36:39 1997 UTC (27 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +8 -1 lines
Declare and set cputype and mmutype.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Mon Jan 27 21:59:54 1997 UTC (27 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +1 -2 lines
Nuke sunmon.h, add machdep.h

Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Jan 27 20:50:42 1997 UTC (27 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +30 -19 lines
Use sunmon_abort() instead of mon_panic(), etc.

Revision 1.58: download - view: text, markup, annotated - select for diffs
Mon Jan 27 17:14:34 1997 UTC (27 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +52 -274 lines
Remove code that is now in sun3/sunmon.c (shared with sun3x)
Rename some functions (remove sun3 prefix).  Fix copyright.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Mon Dec 30 21:13:50 1996 UTC (28 years ago) by gwr
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +0 -13 lines
Remove some junk.

Revision 1.56: download - view: text, markup, annotated - select for diffs
Tue Dec 17 21:11:39 1996 UTC (28 years, 1 month ago) by gwr
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +70 -71 lines
Make this compile with -Werror -Wall -Wstrict-prototypes
(finally! yea!)  Also get rid of __BROKEN_INDIRECT_CONFIG

Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed Nov 20 18:57:38 1996 UTC (28 years, 2 months ago) by gwr
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +22 -17 lines
Most  files that were copyright Adam Glass and/or Gordon W. Ross
are now copyright The NetBSD Foundation (rights assigned).

Revision 1.54: download - view: text, markup, annotated - select for diffs
Sun Oct 13 03:47:55 1996 UTC (28 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -3 lines
backout previous kprintf change

Revision 1.53: download - view: text, markup, annotated - select for diffs
Fri Oct 11 00:47:26 1996 UTC (28 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -3 lines
printf -> kprintf, sprintf -> ksprintf

Revision 1.52: download - view: text, markup, annotated - select for diffs
Sun May 5 06:02:37 1996 UTC (28 years, 8 months ago) by gwr
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +45 -32 lines
Kernel crash dumps now work on the sun3.  (Yea!)

Revision 1.51: download - view: text, markup, annotated - select for diffs
Tue Mar 26 15:16:59 1996 UTC (28 years, 10 months ago) by gwr
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -14 lines
New autoconfig design that controls attach order.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Feb 20 22:05:38 1996 UTC (28 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +5 -3 lines
use phys_map for DVMA like the sparc

Revision 1.49: download - view: text, markup, annotated - select for diffs
Fri Feb 16 18:06:19 1996 UTC (28 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +14 -9 lines
Improved delay() implementation with lower overhead,
makes very short delays much more accurate.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Tue Oct 17 23:16:40 1995 UTC (29 years, 3 months ago) by gwr
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +9 -1 lines
Explain why sun3_context_equiv() can not just call set_segmap_allctx().

Revision 1.47: download - view: text, markup, annotated - select for diffs
Tue Sep 26 04:02:27 1995 UTC (29 years, 4 months ago) by gwr
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +37 -20 lines
New DVMA interface, and various cleanup.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Jul 5 19:36:48 1995 UTC (29 years, 6 months ago) by gwr
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +4 -4 lines
Do not advance esym if the SYMTAB_SPACE option is set.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Jun 27 14:42:38 1995 UTC (29 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +6 -5 lines
Fix uses of btoc() which requires an unsigned arg.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Tue Jun 13 22:21:40 1995 UTC (29 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +9 -9 lines
Fix cpuspeed values for Carerra and similar.
Enable the virtual address cache on the 3/260

Revision 1.43: download - view: text, markup, annotated - select for diffs
Fri Jun 9 21:58:32 1995 UTC (29 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +7 -21 lines
More liberal check for exec header.  Nuke machine type defines (support all)

Revision 1.42: download - view: text, markup, annotated - select for diffs
Fri Jun 2 16:46:22 1995 UTC (29 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +76 -9 lines
Use the exec header left by the boot program to validate the
symbol table size, and then preserve symbols for ddb.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Wed May 24 21:08:42 1995 UTC (29 years, 8 months ago) by gwr
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +3 -27 lines
Update cpu_fork() to eliminate double mapping of kernel stacks.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Wed Apr 26 23:42:35 1995 UTC (29 years, 9 months ago) by gwr
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +8 -5 lines
Disable the cache stuff for now.  Add more comments.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Apr 13 22:07:03 1995 UTC (29 years, 9 months ago) by gwr
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +3 -1 lines
prepare to enable the cache

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Apr 8 04:46:59 1995 UTC (29 years, 9 months ago) by gwr
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +12 -4 lines
minor cleanup

Revision 1.37: download - view: text, markup, annotated - select for diffs
Fri Apr 7 04:44:55 1995 UTC (29 years, 9 months ago) by gwr
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +14 -12 lines
Make sure curproc->p_addr is set before any faults occur.
Put msgbuf in page zero (so its location is predictable).

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Mar 26 19:37:41 1995 UTC (29 years, 10 months ago) by gwr
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +10 -4 lines
Add/fix some comments.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Fri Mar 24 17:27:44 1995 UTC (29 years, 10 months ago) by gwr
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -23 lines
Determine FPU type during autoconfig.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon Feb 13 22:24:26 1995 UTC (29 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -33 lines
DVMA slave mapping support.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Feb 11 21:08:49 1995 UTC (29 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +55 -59 lines
Cleanup related to sfc/dfc register use.  Make FPU code conditional
on run-time fpu_type value (in preparation for real FPU probe).

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Feb 7 04:39:42 1995 UTC (29 years, 11 months ago) by gwr
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +5 -5 lines
Add ddb commands:  machine {abort|halt|reboot}

Revision 1.31: download - view: text, markup, annotated - select for diffs
Wed Jan 18 17:22:42 1995 UTC (30 years ago) by gwr
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +12 -11 lines
Disable the NMI clock earlier, so the PROM does not touch the ZS chip
while we are using it.  (No need to preserve orig_nmi_vect either).

Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Jan 11 20:39:19 1995 UTC (30 years ago) by gwr
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +9 -8 lines
Cleanup

Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Dec 13 18:43:03 1994 UTC (30 years, 1 month ago) by gwr
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +6 -8 lines
Nuke the "vmempage" used by /dev/mem (our pmap doesn't like it).
Instead, allocate a DVMA page as needed (like vmapbuf/vunmapbuf).

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Dec 12 19:00:09 1994 UTC (30 years, 1 month ago) by gwr
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +7 -2 lines
New autoconfig interface to support VME, etc.

Revision 1.27.2.1: download - view: text, markup, annotated - select for diffs
Wed Nov 30 22:50:39 1994 UTC (30 years, 1 month ago) by gwr
Diff to: previous 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27: +12 -1 lines
Make a branch that works with the 1.0 code base.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Mon Nov 21 21:39:09 1994 UTC (30 years, 2 months ago) by gwr
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +287 -174 lines
Lots of changes.  Fairly stable now.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Oct 26 19:04:39 1994 UTC (30 years, 3 months ago) by gwr
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -1 lines
Move sun3_round_up_seg() here from param.h as a temporary measure.
Eventually, it should be eliminated from these two files as well.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Oct 26 09:13:09 1994 UTC (30 years, 3 months ago) by cgd
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
new RCS ID format.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue Sep 20 16:50:30 1994 UTC (30 years, 4 months ago) by gwr
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +544 -471 lines
Get boothowto flags from PROM flags; fix reboot.

Revision 1.22.2.1: download - view: text, markup, annotated - select for diffs
Tue Jul 12 21:11:58 1994 UTC (30 years, 6 months ago) by cgd
Diff to: previous 1.22: preferred, colored; next MAIN 1.23: preferred, colored
Changes since revision 1.22: +4 -4 lines
updates from trunk, per gwr

Revision 1.23: download - view: text, markup, annotated - select for diffs
Mon Jul 11 03:41:33 1994 UTC (30 years, 6 months ago) by gwr
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +4 -4 lines
miscellaneous cleanup

Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Jun 28 22:06:02 1994 UTC (30 years, 7 months ago) by gwr
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +20 -4 lines
Make setsoft* use the real software interrupt register.
Integrate several fixes from the amiga port (and drop COMPAT_HPUX for now).
Add lots of debugging checks to pmap.c - still needs work.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Fri May 6 07:47:12 1994 UTC (30 years, 8 months ago) by gwr
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Tracking 4.4 integration

Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed May 4 05:51:36 1994 UTC (30 years, 8 months ago) by gwr
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +61 -15 lines
Enable/disable clocks in sun3_stop()
Add functions to call sun3_stop() with the appropriate arg.
Set the cpuspeed according to the machine type.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Apr 18 06:10:12 1994 UTC (30 years, 9 months ago) by glass
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -6 lines
some incredibly trivial cleanup

Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Apr 17 06:31:30 1994 UTC (30 years, 9 months ago) by glass
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -10 lines
compiles again. also cleanup of development printfs. and trap stuff

Revision 1.17: download - view: text, markup, annotated - select for diffs
Tue Mar 1 08:23:15 1994 UTC (30 years, 10 months ago) by glass
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +15 -15 lines
bugs fixed and cleanup

Revision 1.16: download - view: text, markup, annotated - select for diffs
Wed Feb 23 08:29:50 1994 UTC (30 years, 11 months ago) by glass
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -6 lines
boots, presents shell prompt, and doesn't crash immediately

Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Feb 4 08:21:07 1994 UTC (30 years, 11 months ago) by glass
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +1 -1 lines
sun3 port works under NetBSD-current now.  rcsids probably fucked

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Nov 23 05:29:18 1993 UTC (31 years, 2 months ago) by glass
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +9 -8 lines
Now works with current tree, as opposed to the july 8th tree in which it was
written.
Requires magnum infrastructure now, particularly the clock stuff.
Fails to exec init because the /sbin/init binary
is a sunos binary.  Next step is to integrate sunos compatibility code
from /sys/compat/sunos, and the amiga port.
Does not yet implement MACHINE_NOCONTIG support.

[from glass Mon Nov 22 21:22:45 PST 1993  home tag: home2]

Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Oct 12 05:27:33 1993 UTC (31 years, 3 months ago) by glass
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +22 -31 lines
sun3 port updated. netboot integrated.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Aug 28 15:38:24 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +33 -0 lines
last snapshot before uploading.  we still have serious clock problems

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Aug 22 21:27:14 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +32 -10 lines
gets past enablertclock(), now time to deal with the mountroot mess

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Aug 21 02:18:02 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +104 -14 lines
snapshot. for uploading.  gets lost in swtch after enablertclock()

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Aug 15 23:04:21 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +11 -0 lines
runs up to and including configure().
todo: exceptions, interrupt support, make isrs affect vector table
kernel/user stacks

Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Aug 13 13:17:01 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -2 lines
snapshot.  ready to call configure(), partial integration of torek's config 
stuff, i.e it looks to do the right thing but we haven't written any code
yet :)

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Aug 8 12:22:33 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +182 -7 lines
lots of changes, too many printfs

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Aug 5 23:10:26 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +49 -45 lines
gets to consinit() and blows up

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Aug 3 22:38:25 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +65 -42 lines
it links with out any unresolved symbols, last few are just stubs
because we aren't likely to get near execing init for a while

Revision 1.4: download - view: text, markup, annotated - select for diffs
Mon Aug 2 02:08:56 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +208 -11 lines
cleanup, one time compile with -Wall, include systm.h
conversion to new asm.h, removal of ALTENTRY(), ENTRY() pairs replaced by
TWOENTRY().
moved idprom fetching stuff to sun3_startup
bug fixes to pmap
added to sun3_startup.c support for initializing the vm layout, and for
verifying the hardware vs the -Ds from config(8)
still doesn't link. but list is much shorter, and much stupider

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Jul 30 17:06:29 1993 UTC (31 years, 5 months ago) by glass
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +26 -3 lines
snapshot.  working on vm bootstrapping problems, and resolution of undefined
symbols.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Jun 27 00:46:37 1993 UTC (31 years, 7 months ago) by glass
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2 lines
clock.c: now compiles even if address is bogus :)
conf.c: compiled, until prom addition :)
cons.c: add entry for prom driver
lib.s: remove some includes; we're being included by locore.s
locore.s: include asm.h, syscall.h, add icode
m68k.s: now included by locore.s
added signal.s; contains signal support
sun3_startup.c: fixed compile bug in vector table initialization; fixed mon
	usage
swapgeneric.c: doesn't refer to drivers we don't have

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Jun 25 10:31:59 1993 UTC (31 years, 7 months ago) by glass
Branches: MAIN
initial commit

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>