The NetBSD Project

CVS log for src/sys/arch/powerpc/include/types.h

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

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.64.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 3 22:28:34 2021 UTC (3 years, 7 months ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.64: preferred, colored; next MAIN 1.65: preferred, colored
Changes since revision 1.64: +7 -6 lines
Sync with HEAD.

Revision 1.65.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 3 21:44:47 2021 UTC (3 years, 7 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.65: preferred, colored; next MAIN 1.66: preferred, colored
Changes since revision 1.65: +6 -6 lines
Sync with HEAD.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Thu Apr 1 04:35:46 2021 UTC (3 years, 8 months ago) by simonb
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-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-altq-separation-base, thorpej-altq-separation, perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, netbsd-10-base, 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, HEAD
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +6 -6 lines
Whitespace: #define<tab>

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sat Jan 23 19:38:53 2021 UTC (3 years, 10 months ago) by christos
Branches: MAIN
Branch point for: thorpej-cfargs
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +2 -1 lines
Document via __HAVE_BUS_SPACE_8 platforms that implement bus_space_*_8

Revision 1.64: download - view: text, markup, annotated - select for diffs
Mon Jun 22 05:34:57 2020 UTC (4 years, 5 months ago) by rin
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -1 lines
Fix previous; hide userland ABI details for kernel as suggested by joerg:

http://mail-index.netbsd.org/source-changes-d/2020/06/21/msg012745.html

- Revive __lwp_settcb(), and call _lwp_setprivate(2) from it.

- Keep l_private opaque pointer for kernel; store raw value of %r2 in it.
  In the previous commit message, I wrote,

http://mail-index.netbsd.org/source-changes/2020/06/21/msg118524.html

> - Make sure that, like other ports, l_private represents address of tcb,
>   not biased one as in %r2.

  but, it turned out to be wrong. mips stores a biased address, at least.
  It is userland responsibility to interpret returned values from
  lwp_getprivate(2).

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun Jun 21 00:39:59 2020 UTC (4 years, 5 months ago) by rin
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +1 -2 lines
Fix inconsistency b/w kernel and userland recognitions of TLS, as well as
inconsistency whether it is biased or not in kernel.

- Obsolete __lwp_settcb() in order to let kernel know new TLS address via
  _lwp_setprivate(2). Alternatively, we can call _lwp_setprivate(2) within
  __lwp_settcb() like mips, but it is just double handling; we adjust %r2
  appropriately in _lwp_setprivate(2) via cpu_lwp_setprivate().

- Make sure that, like other ports, l_private represents address of tcb,
  not biased one as in %r2. This guarantees that the returned values from
  _lwp_getprivate(2) and __lwp_getprivate_fast() are always same. Also,
  we can obsolete PTRACE_LWP_GETPRIVATE() macro.

Now, *_pl_private tests in tests/lib/libc/sys successfully pass, while
no other tests become newly falling.

Revision 1.56.14.3: download - view: text, markup, annotated - select for diffs
Tue Apr 21 18:42:10 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.56.14.2: preferred, colored; branchpoint 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56.14.2: +6 -0 lines
Sync with HEAD

Revision 1.61.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 20 11:28:59 2020 UTC (4 years, 7 months ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.61: preferred, colored; next MAIN 1.62: preferred, colored
Changes since revision 1.61: +7 -1 lines
Sync with HEAD

Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu Apr 16 22:11:12 2020 UTC (4 years, 7 months ago) by rin
Branches: MAIN
CVS tags: phil-wifi-20200421, bouyer-xenpvh-base2, bouyer-xenpvh-base1
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +7 -1 lines
Discard __HAVE_UNLOCKED_PMAP for 4xx; 4xx is uniprocessor architecture,
and everything gets more than 10 times slower by __HAVE_UNLOCKED_PMAP.

Note that we support three supervisor-level architectures for powerpc:
oea, booke, and 4xx. We have three different implementations of pmap as
a result. Whereas oea and booke support multiprocessor, 4xx does not.

Revision 1.56.14.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:07:49 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.56.14.1: preferred, colored; branchpoint 1.56: preferred, colored
Changes since revision 1.56.14.1: +4 -3 lines
Merge changes from current as of 20200406

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sun Mar 22 17:33:58 2020 UTC (4 years, 8 months ago) by ad
Branches: MAIN
CVS tags: phil-wifi-20200411, phil-wifi-20200406, bouyer-xenpvh-base
Branch point for: bouyer-xenpvh
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +4 -1 lines
Temporarily mark hppa, mips, powerpc and riscv with __HAVE_UNLOCKED_PMAP,
for the benefit of UVM.

These need some pmap changes to support concurrent faults on the same
object.  I have changes to do just that, but they're a work in progress.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Fri Dec 6 06:38:39 2019 UTC (4 years, 11 months ago) by mrg
Branches: MAIN
CVS tags: is-mlppp-base, is-mlppp, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +1 -3 lines
revert this change from early this year.  it appears the
changes macallan@ commited to fix FIRMWORKSBUGS issues
in openfirmware() have fixed the hangs seen on PegasosII.

hooray!

---
Log Message:
workaround a problem with the pegasos firmware interface:
attempting to use /dev/openfirm on this machine hangs hard.

this isn't a new problem, and i've been meaning to try to
figure it out for years, but it's become a problem since
the xf86-video-radeon driver gained code to look for the
macppc model using this interface.

this is why xorg-server 1.18 and 1.20 hang recently on the
pegasosII.

this change is fairly ugly but i couldn't think of a less
ugly method to avoid /dev/openfirm working just on this
one platform.  introduce new __OPENFIRMIO_OPEN_CHECK_BROKEN
macro and associated __openfirmio_open_check_broken(), and
use them in the new openfirmopen() to fail opens.

include proplib.h in macppc and ofppc autoconf.h since they
use it.
---

Revision 1.56.14.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:06:39 2019 UTC (5 years, 5 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +6 -1 lines
Sync with HEAD

Revision 1.59: download - view: text, markup, annotated - select for diffs
Sun Apr 7 05:25:55 2019 UTC (5 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: phil-wifi-20191119, phil-wifi-20190609, 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
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -1 lines
Detangle some of the PowerPC CPU configuration spaghetti.

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sat Apr 6 03:06:27 2019 UTC (5 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +2 -1 lines
Overhaul the API used to fetch and store individual memory cells in
userspace.  The old fetch(9) and store(9) APIs (fubyte(), fuword(),
subyte(), suword(), etc.) are retired and replaced with new ufetch(9)
and ustore(9) APIs that can return proper error codes, etc. and are
implemented consistently across all platforms.  The interrupt-safe
variants are no longer supported (and several of the existing attempts
at fuswintr(), etc. were buggy and not actually interrupt-safe).

Also augmement the ucas(9) API, making it consistently available on
all plaforms, supporting uniprocessor and multiprocessor systems, even
those that do not have CAS or LL/SC primitives.

Welcome to NetBSD 8.99.37.

Revision 1.56.12.1: download - view: text, markup, annotated - select for diffs
Fri Jan 18 08:50:21 2019 UTC (5 years, 10 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56: +3 -1 lines
Synch with HEAD

Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue Jan 8 07:46:11 2019 UTC (5 years, 10 months ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-20190127, pgoyette-compat-20190118
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +3 -1 lines
workaround a problem with the pegasos firmware interface:
attempting to use /dev/openfirm on this machine hangs hard.

this isn't a new problem, and i've been meaning to try to
figure it out for years, but it's become a problem since
the xf86-video-radeon driver gained code to look for the
macppc model using this interface.

this is why xorg-server 1.18 and 1.20 hang recently on the
pegasosII.


this change is fairly ugly but i couldn't think of a less
ugly method to avoid /dev/openfirm working just on this
one platform.  introduce new __OPENFIRMIO_OPEN_CHECK_BROKEN
macro and associated __openfirmio_open_check_broken(), and
use them in the new openfirmopen() to fail opens.

include proplib.h in macppc and ofppc autoconf.h since they
use it.

Revision 1.47.2.2: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:37 2017 UTC (7 years ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.47.2.1: preferred, colored; branchpoint 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47.2.1: +12 -10 lines
update from HEAD

Revision 1.54.4.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:53:33 2017 UTC (7 years, 7 months ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54: +4 -4 lines
Sync with HEAD

Revision 1.54.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:18 2017 UTC (7 years, 8 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54: +4 -4 lines
Sync with HEAD

Revision 1.49.6.4: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:18 2017 UTC (7 years, 9 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.49.6.3: preferred, colored; branchpoint 1.49: preferred, colored; next MAIN 1.50: preferred, colored
Changes since revision 1.49.6.3: +4 -4 lines
Sync with HEAD

Revision 1.56: download - view: text, markup, annotated - select for diffs
Fri Jan 27 17:22:39 2017 UTC (7 years, 10 months ago) by christos
Branches: MAIN
CVS tags: tls-maxphys-base-20171202, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-compat-base, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, 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, 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, matt-nb8-mediatek-base, matt-nb8-mediatek, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1
Branch point for: phil-wifi, pgoyette-compat
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +1 -2 lines
remove __HAVE_COMPAT_NETBSD32

Revision 1.55: download - view: text, markup, annotated - select for diffs
Thu Jan 26 15:55:10 2017 UTC (7 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +5 -4 lines
provide __HAVE_COMPAT_NETBSD32 and fix multiple include protection consistently.

Revision 1.49.6.3: download - view: text, markup, annotated - select for diffs
Sat Mar 19 11:30:04 2016 UTC (8 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.49.6.2: preferred, colored; branchpoint 1.49: preferred, colored
Changes since revision 1.49.6.2: +9 -8 lines
Sync with HEAD

Revision 1.54: download - view: text, markup, annotated - select for diffs
Sun Jan 24 19:49:35 2016 UTC (8 years, 10 months ago) by christos
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, localcount-20160914, bouyer-socketcan-base
Branch point for: pgoyette-localcount, bouyer-socketcan
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +7 -6 lines
expose __register32_t for frame.h

Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Jan 23 22:31:20 2016 UTC (8 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -2 lines
expose the kernel types for standalone code.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat Jan 23 21:22:14 2016 UTC (8 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +4 -4 lines
Hide {p,v}{addr,size}_t and register_t (and a couple more types that
are machine-specific) from userland unless _KERNEL/_KMEMUSER and a
new _KERNTYPES variables is defined. The _KERNTYPES should be fixed
for many subsystems that should not be using it (rump)...

Revision 1.49.6.2: download - view: text, markup, annotated - select for diffs
Tue Sep 22 12:05:49 2015 UTC (9 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.49.6.1: preferred, colored; branchpoint 1.49: preferred, colored
Changes since revision 1.49.6.1: +2 -2 lines
Sync with HEAD

Revision 1.51: download - view: text, markup, annotated - select for diffs
Thu Aug 27 12:30:51 2015 UTC (9 years, 3 months ago) by pooka
Branches: MAIN
CVS tags: nick-nhusb-base-20151226, nick-nhusb-base-20150921
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
Fix PTHREAD_FOO_INITIALIZER for C++ by not using volatile in the relevant
pthread types in C++ builds, attempt 2.

The problem with attempt 1 was making assumptions of what the MD
__cpu_simple_lock_t (declared volatile) looks like.  To get a same type
except non-volatile, we change the MD type to __cpu_simple_lock_nv_t
and typedef __cpu_simple_lock_t as a volatile __cpu_simple_lock_nv_t.
IMO, __cpu_simple_lock_t should not be volatile at all, but changing it
now is too risky.

Fixes at least Rumprun w/ gcc 5.1/5.2.  Furthermore, the mpd application
(and possibly others) will no longer require NetBSD-specific patches.

Tested: build.sh for i386, Rumprun for x86_64 w/ gcc 5.2.

Based on the patch from Christos in lib/49989.

Revision 1.49.6.1: download - view: text, markup, annotated - select for diffs
Mon Apr 6 15:18:00 2015 UTC (9 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -1 lines
Sync with HEAD

Revision 1.49.4.1: download - view: text, markup, annotated - select for diffs
Wed Dec 31 06:51:08 2014 UTC (9 years, 11 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, 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
Diff to: previous 1.49: preferred, colored; next MAIN 1.50: preferred, colored
Changes since revision 1.49: +2 -1 lines
Pull up following revision(s) (requested by chs in ticket #364):
	lib/libc/tls/tls.c: revision 1.8
	libexec/ld.elf_so/tls.c: revision 1.10
	sys/arch/powerpc/include/types.h: revision 1.50
	sys/arch/powerpc/powerpc/sig_machdep.c: revision 1.44
fix powerpc TLS problems by removing the hacks for PPC EABI.
the kernel no longer treats R2 specially and its use as
the TLS register is now handled entirely in userland.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Sun Dec 14 23:49:17 2014 UTC (9 years, 11 months ago) by chs
Branches: MAIN
CVS tags: nick-nhusb-base-20150606, nick-nhusb-base-20150406
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -1 lines
fix powerpc TLS problems by removing the hacks for PPC EABI.
the kernel no longer treats R2 specially and its use as
the TLS register is now handled entirely in userland.

Revision 1.47.2.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:19 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -2 lines
Rebase to HEAD as of a few days ago.

Revision 1.46.2.2: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:04 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.46.2.1: preferred, colored; branchpoint 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46.2.1: +1 -2 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.49: download - view: text, markup, annotated - select for diffs
Tue Mar 18 18:20:41 2014 UTC (10 years, 8 months ago) by riastradh
Branches: MAIN
CVS tags: yamt-pagecache-base9, 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, nick-nhusb-base, netbsd-7-base
Branch point for: nick-nhusb, netbsd-7
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -1 lines
Merge riastradh-drm2 to HEAD.

Revision 1.47.4.1: download - view: text, markup, annotated - select for diffs
Wed Aug 28 23:59:20 2013 UTC (11 years, 3 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47: +1 -2 lines
sync with head

Revision 1.47.10.1: download - view: text, markup, annotated - select for diffs
Tue Jul 23 21:07:34 2013 UTC (11 years, 4 months ago) by riastradh
Branches: riastradh-drm2
Diff to: previous 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47: +1 -2 lines
sync with HEAD

Revision 1.48: download - view: text, markup, annotated - select for diffs
Wed Jul 17 23:27:02 2013 UTC (11 years, 4 months ago) by matt
Branches: MAIN
CVS tags: riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -2 lines
kcpuset_t changes for the pmap and removal of __cpuset_t

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

Revision 1.46.8.1: download - view: text, markup, annotated - select for diffs
Wed Jun 13 19:44:11 2012 UTC (12 years, 5 months ago) by riz
Branches: netbsd-6
CVS tags: 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, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Diff to: previous 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46: +4 -1 lines
Pull up following revision(s) (requested by matt in ticket #340):
	sys/arch/powerpc/include/types.h: revision 1.47
	sys/arch/powerpc/include/userret.h: revision 1.24
Add __HAVE_RAS support.  Do it in userret.

Revision 1.46.6.1: download - view: text, markup, annotated - select for diffs
Sat Jun 2 11:09:06 2012 UTC (12 years, 6 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46: +4 -1 lines
sync to latest -current.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Sat May 26 00:31:07 2012 UTC (12 years, 6 months ago) by matt
Branches: MAIN
CVS tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, riastradh-drm2-base, khorben-n900, jmcneill-usbmp-base10, agc-symver-base, agc-symver
Branch point for: tls-maxphys, rmind-smpnet, riastradh-drm2
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +4 -1 lines
Add __HAVE_RAS support.  Do it in userret.

Revision 1.33.32.2: download - view: text, markup, annotated - select for diffs
Fri Oct 14 17:21:26 2011 UTC (13 years, 1 month ago) by matt
Branches: matt-nb5-pq3
Diff to: previous 1.33.32.1: preferred, colored; branchpoint 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33.32.1: +7 -1 lines
Sync with current pulling P2020 and other newer processor support.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Sun Jul 17 23:23:54 2011 UTC (13 years, 4 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, 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-audiomp3-base, jmcneill-audiomp3
Branch point for: yamt-pagecache, netbsd-6, jmcneill-usbmp
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -1 lines
Enable new-style <sys/bus.h> on several PowerPC ports supporting PCI
buses.  Make non-inline implementations of bus_space(9) and bus_dma(9)
routines and move them to appropriate .c files.

This may leave amigappc in a bad state, sorry.  Fortunately, it will be
easy to repair by imitating the bus.h -> bus_{defs,funcs}.h split in
some other PowerPC port.

Revision 1.40.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:19:31 2011 UTC (13 years, 5 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.40: preferred, colored; next MAIN 1.41: preferred, colored
Changes since revision 1.40: +6 -1 lines
Catchup with rmind-uvmplock merge.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Thu Jun 23 01:27:20 2011 UTC (13 years, 5 months ago) by matt
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -1 lines
Switch to using the common <common/pmap/tlb/tlb.h>

Revision 1.44: download - view: text, markup, annotated - select for diffs
Tue Jun 14 03:12:43 2011 UTC (13 years, 5 months ago) by matt
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +2 -1 lines
Add mm_md_kernacc and now kmem tools work again.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Jun 13 21:19:02 2011 UTC (13 years, 5 months ago) by matt
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -1 lines
Add __HAVE_CPU_UAREA_ROUTINES support so that uareas will be direct-mapped.
(This avoids the nasty tlb recursion problem on ibm4xx as well on mpc85xx).

Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun Jun 12 06:10:41 2011 UTC (13 years, 5 months ago) by matt
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +3 -1 lines
need mm_md_direct_mapped_phys support.

Revision 1.34.4.4: download - view: text, markup, annotated - select for diffs
Sun Jun 12 00:24:04 2011 UTC (13 years, 5 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.34.4.3: preferred, colored; branchpoint 1.34: preferred, colored; next MAIN 1.35: preferred, colored
Changes since revision 1.34.4.3: +1 -0 lines
sync with head

Revision 1.36.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:06:28 2011 UTC (13 years, 6 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36: +12 -2 lines
Sync with HEAD.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Jun 5 16:52:25 2011 UTC (13 years, 6 months ago) by matt
Branches: MAIN
CVS tags: rmind-uvmplock-nbase, rmind-uvmplock-base
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -1 lines
Remove <machine/atomic.h>; use <sys/atomic.h> instead.
Add <powerpc/cpuset.h> (for mpc85xx pmap).
Add some initial MP code for mpc85xx
Rework ipi code to be common across all ppcs
Change PPC to keep curlwp in %r13 while in the kernel.
Move astpending from cpu_info to mdlwp
Improve cpu_need_resched to be more MP friendly.

Revision 1.34.4.3: download - view: text, markup, annotated - select for diffs
Tue May 31 03:04:14 2011 UTC (13 years, 6 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.34.4.2: preferred, colored; branchpoint 1.34: preferred, colored
Changes since revision 1.34.4.2: +6 -0 lines
sync with head

Revision 1.40: download - view: text, markup, annotated - select for diffs
Mon May 2 02:01:33 2011 UTC (13 years, 7 months ago) by matt
Branches: MAIN
CVS tags: jym-xensuspend-nbase, jym-xensuspend-base, cherry-xenmp-base
Branch point for: cherry-xenmp
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +7 -1 lines
Move powerpc to use pcu to manage FPU/AltiVec/SPE.

Revision 1.34.4.2: download - view: text, markup, annotated - select for diffs
Thu Apr 21 01:41:19 2011 UTC (13 years, 7 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.34.4.1: preferred, colored; branchpoint 1.34: preferred, colored
Changes since revision 1.34.4.1: +4 -4 lines
sync with head

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Apr 7 02:04:06 2011 UTC (13 years, 7 months ago) by matt
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -2 lines
Get rid of cpu_lwp_setprivate since it's not needed on powerpc.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Mar 12 07:29:41 2011 UTC (13 years, 8 months ago) by matt
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +5 -4 lines
Add TLS defines.

Revision 1.34.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:51:37 2011 UTC (13 years, 9 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +8 -4 lines
sync with head

Revision 1.36.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 15:09:58 2011 UTC (13 years, 9 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36: +4 -1 lines
Sync with HEAD

Revision 1.37: download - view: text, markup, annotated - select for diffs
Thu Feb 24 04:28:47 2011 UTC (13 years, 9 months ago) by joerg
Branches: MAIN
CVS tags: bouyer-quota2-nbase
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +4 -1 lines
Allow storing and receiving the LWP private pointer via ucontext_t
on all platforms except VAX and IA64. Add fast access via register for
AMD64, i386 and SH3 ports. Use this fast access in libpthread to replace
the stack based pthread_self(). Implement skeleton support for Alpha,
HPPA, PowerPC, SPARC and SPARC64, but leave it disabled.

Ports that support this feature provide __HAVE____LWP_GETPRIVATE_FAST in
machine/types.h and a corresponding __lwp_getprivate_fast in
machine/mcontext.h.

This material is based upon work partially supported by
The NetBSD Foundation under a contract with Joerg Sonnenberger.

Revision 1.33.32.1: download - view: text, markup, annotated - select for diffs
Fri Jan 7 01:58:09 2011 UTC (13 years, 10 months ago) by matt
Branches: matt-nb5-pq3
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +7 -1 lines
Add PRIx{P,V}{ADDR,SIZE} and PRIxREGISTER

Revision 1.36: download - view: text, markup, annotated - select for diffs
Wed Dec 22 01:03:03 2010 UTC (13 years, 11 months ago) by matt
Branches: MAIN
CVS tags: uebayasi-xip-base7, matt-mips64-premerge-20101231, jruoho-x86intr-base, bouyer-quota2-base
Branch point for: jruoho-x86intr, bouyer-quota2
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +5 -5 lines
Add a define __HAVE_CPU_DATA_FIRST which means that cpu_data is the first
member in struct cpu_info.

Revision 1.34.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 17 06:45:03 2010 UTC (14 years, 3 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.34: preferred, colored; next MAIN 1.35: preferred, colored
Changes since revision 1.34: +2 -1 lines
Sync with HEAD.

Revision 1.33.10.2: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:52:34 2010 UTC (14 years, 3 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.33.10.1: preferred, colored; branchpoint 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33.10.1: +2 -1 lines
sync with head.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Wed Jul 7 01:20:50 2010 UTC (14 years, 4 months ago) by chs
Branches: MAIN
CVS tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -1 lines
implement cpu_lwp_setprivate() on several platforms.

Revision 1.33.10.1: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:02:50 2010 UTC (14 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +10 -1 lines
sync with head

Revision 1.34: download - view: text, markup, annotated - select for diffs
Fri Dec 11 05:52:03 2009 UTC (14 years, 11 months ago) by matt
Branches: MAIN
CVS tags: yamt-nfs-mp-base9, uebayasi-xip-base1, uebayasi-xip-base, matt-premerge-20091211
Branch point for: uebayasi-xip, rmind-uvmplock
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +10 -1 lines
Add PRIx{P,V}{ADDR,SIZE}, PRIu{P,V}SIZE, and PRIxREGISTER{,32,64} for all
(except where they will be added via merge).  These should be used to print
{p,v}{addr,size}_t and register*_t as appropriate.

Revision 1.28.10.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:17 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.28.10.2: preferred, colored; branchpoint 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28.10.2: +4 -10 lines
sync with HEAD

Revision 1.29.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:04:58 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.29.2.1: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.2.1: +4 -8 lines
Sync with HEAD.

Revision 1.24.16.5: download - view: text, markup, annotated - select for diffs
Mon Feb 4 09:22:22 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.16.4: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.16.4: +4 -8 lines
sync with head.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Jan 31 05:30:00 2008 UTC (16 years, 10 months ago) by matt
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, yamt-nfs-mp-base2, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, 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, nick-net80211-sync-base, nick-net80211-sync, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, nick-hppapmap, 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, mjf-devfs2-base, mjf-devfs2, mjf-devfs-base, matt-nb5-pq3-base, 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, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, jymxensuspend-base, jym-xensuspend, hpcarm-cleanup-nbase, hpcarm-cleanup-base, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, haad-dm, ad-socklock-base1, ad-audiomp2-base, ad-audiomp2
Branch point for: yamt-nfs-mp, matt-nb5-pq3
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +4 -8 lines
Add register{32,64}_t

Revision 1.30.6.2: download - view: text, markup, annotated - select for diffs
Wed Jan 23 19:27:24 2008 UTC (16 years, 10 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.30.6.1: preferred, colored; branchpoint 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30.6.1: +0 -2 lines
Sync with HEAD.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Jan 20 18:09:08 2008 UTC (16 years, 10 months ago) by joerg
Branches: MAIN
CVS tags: bouyer-xeni386-nbase
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +1 -3 lines
Now that __HAVE_TIMECOUNTER and __HAVE_GENERIC_TODR are invariants,
remove the conditionals and the code associated with the undef case.

Revision 1.28.10.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:47:50 2008 UTC (16 years, 10 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.28.10.1: preferred, colored; branchpoint 1.28: preferred, colored
Changes since revision 1.28.10.1: +7 -1 lines
sync with HEAD

Revision 1.30.6.1: download - view: text, markup, annotated - select for diffs
Tue Jan 8 22:10:19 2008 UTC (16 years, 10 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -1 lines
Sync with HEAD

Revision 1.31: download - view: text, markup, annotated - select for diffs
Tue Jan 8 13:47:49 2008 UTC (16 years, 10 months ago) by joerg
Branches: MAIN
CVS tags: matt-armv6-base, bouyer-xeni386-base
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -1 lines
Finish conversion of ppc and evbppc to timecounter.
Tested by simonb@ on WALNUT.

Revision 1.29.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:17:39 2007 UTC (16 years, 11 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +5 -1 lines
Sync with HEAD.

Revision 1.24.16.4: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:25:54 2007 UTC (16 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.16.3: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.16.3: +5 -1 lines
sync with head

Revision 1.27.14.3: download - view: text, markup, annotated - select for diffs
Mon Dec 3 19:03:57 2007 UTC (17 years ago) by ad
Branches: vmlocking
Diff to: previous 1.27.14.2: preferred, colored; branchpoint 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27.14.2: +1 -5 lines
Sync with HEAD.

Revision 1.27.14.2: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:38:24 2007 UTC (17 years ago) by ad
Branches: vmlocking
Diff to: previous 1.27.14.1: preferred, colored; branchpoint 1.27: preferred, colored
Changes since revision 1.27.14.1: +9 -1 lines
Sync with HEAD.

Revision 1.28.8.1: download - view: text, markup, annotated - select for diffs
Mon Dec 3 16:14:07 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28: +5 -1 lines
Sync with HEAD.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Nov 29 00:58:26 2007 UTC (17 years ago) by ad
Branches: MAIN
CVS tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, jmcneill-pm-base, cube-autoconf-base, cube-autoconf
Branch point for: bouyer-xeni386
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +5 -1 lines
__HAVE_ATOMIC64_OPS if 64-bit

Revision 1.28.10.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:20:39 2007 UTC (17 years ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -1 lines
sync with HEAD

Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:56:41 2007 UTC (17 years, 1 month ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4, jmcneill-base, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: mjf-devfs
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -1 lines
Merge the ppcoea-renovation branch to HEAD.

This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree.  Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches.  The work
for this branch was done by a variety of people, too long to list here.

TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.

NOTES:
pmppc was removed as an arch, and moved to a evbppc target.

Revision 1.24.16.3: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:28:59 2007 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.16.2: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.16.2: +1 -2 lines
sync with head.

Revision 1.27.22.2: download - view: text, markup, annotated - select for diffs
Thu Aug 2 05:34:19 2007 UTC (17 years, 4 months ago) by macallan
Branches: ppcoea-renovation
Diff to: previous 1.27.22.1: preferred, colored; branchpoint 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27.22.1: +0 -0 lines
sync with HEAD

Revision 1.27.16.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 20:01:27 2007 UTC (17 years, 4 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27: +1 -2 lines
Sync with head.

Revision 1.27.14.1: download - view: text, markup, annotated - select for diffs
Sun May 27 12:27:57 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -2 lines
Sync with head.

Revision 1.27.22.1: download - view: text, markup, annotated - select for diffs
Tue May 22 17:27:21 2007 UTC (17 years, 6 months ago) by matt
Branches: ppcoea-renovation
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -2 lines
Update to HEAD.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu May 17 14:51:26 2007 UTC (17 years, 6 months ago) by yamt
Branches: MAIN
CVS tags: yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, ppcoea-renovation-base, nick-csl-alignment-base5, nick-csl-alignment-base, nick-csl-alignment, mjf-ufs-trans-base, matt-mips64-base, matt-mips64, hpcarm-cleanup, bouyer-xenamd64
Branch point for: matt-armv6, jmcneill-pm
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -2 lines
merge yamt-idlelwp branch.  asked by core@.  some ports still needs work.

from doc/BRANCHES:

	idle lwp, and some changes depending on it.

	1. separate context switching and thread scheduling.
	   (cf. gmcgarry_ctxsw)
	2. implement idle lwp.
	3. clean up related MD/MI interfaces.
	4. make scheduler(s) modular.

Revision 1.27.10.1: download - view: text, markup, annotated - select for diffs
Tue Apr 3 15:20:10 2007 UTC (17 years, 8 months ago) by matt
Branches: yamt-idlelwp
Diff to: previous 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27: +1 -2 lines
Adapt powerpc to yamt-idlelwp.  Nuke cpu_setfunc.
Don't define _HAVE_BITENDIAN_BITOPS.  Misc cleanups.

Revision 1.24.16.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:44 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.16.1: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.16.1: +3 -2 lines
sync with head.

Revision 1.26.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:42:28 2006 UTC (18 years, 2 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.26: preferred, colored; next MAIN 1.27: preferred, colored
Changes since revision 1.26: +3 -2 lines
sync with head

Revision 1.26.8.1: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:42:40 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.26: preferred, colored; next MAIN 1.27: preferred, colored
Changes since revision 1.26: +3 -2 lines
sync with head

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sat Aug 5 21:26:49 2006 UTC (18 years, 4 months ago) by sanjayl
Branches: MAIN
CVS tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, yamt-splraiseipl-base2, yamt-splraiseipl-base, yamt-splraiseipl, yamt-pdpolicy-base9, yamt-pdpolicy-base8, yamt-pdpolicy-base7, yamt-idlelwp-base8, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, thorpej-atomic-base, thorpej-atomic, rpaulo-netinet-merge-pcb-base, reinoud-bufcleanup, post-newlock2-merge, newlock2-nbase, newlock2-base, newlock2, 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, ad-audiomp-base, ad-audiomp, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-idlelwp, vmlocking, ppcoea-renovation, mjf-ufs-trans
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +3 -2 lines
1st cut of Powermac G5 support (uses bridge mode).

Revision 1.24.16.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:55:03 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
sync with head.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Sat Dec 24 20:07:28 2005 UTC (18 years, 11 months ago) by perry
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, peter-altq-base, peter-altq, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi
Branch point for: yamt-pdpolicy, rpaulo-netinet-merge-pcb
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +2 -2 lines
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:18:43 2005 UTC (18 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +1 -1 lines
merge ktrace-lwp.

Revision 1.20.2.3: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:20:41 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.20.2.2: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20.2.2: +1 -1 lines
Fix the sync with head I botched.

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

Revision 1.20.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:39:29 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +7 -2 lines
Sync with HEAD

Revision 1.24: download - view: text, markup, annotated - select for diffs
Fri Sep 26 22:46:01 2003 UTC (21 years, 2 months ago) by nathanw
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, yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, thorpej-vnode-attr-base, thorpej-vnode-attr, 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, 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, ktrace-lwp-base, kent-audio2-base, kent-audio2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-lazymbuf
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +6 -1 lines
Move __cpu_simple_lock_t and __SIMPLELOCK_{UN,}LOCKED to machine/types.h
so that they can be used in a namespace-friendly way.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu Sep 25 18:42:18 2003 UTC (21 years, 2 months ago) by matt
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Add siginfo support for PowerPC.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Jul 21 16:10:50 2003 UTC (21 years, 4 months ago) by hannken
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -2 lines
Typo: __HAVE_BITENDIAN_BITOPS -> __HAVE_BIGENDIAN_BITOPS

Revision 1.21: download - view: text, markup, annotated - select for diffs
Fri Jul 18 01:08:11 2003 UTC (21 years, 4 months ago) by matt
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Elimindate MD setrunqueue/remrunqueue (which were out-of-date compared to
the canonical versions in kern_synch.c).  Define __HAVE_BIGENDIAN_BITOPS
so the canonical versions will be used but will store priorities in the
desired (MSB) order for PowerPC (which allows the use of the cntlzw (count
leading zeroes, word) instruction in locore_subr.S to find the proper
priority).

Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Apr 28 23:16:23 2003 UTC (21 years, 7 months ago) by bjh21
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -2 lines
Add a new feature-test macro, _NETBSD_SOURCE.  If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.

This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
  can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
  various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
  !defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.

I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them.  In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.

Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Jan 18 21:28:10 2003 UTC (21 years, 10 months ago) by matt
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
Make register_t.  Change the printfs in trap.c to match.

Revision 1.12.8.6: download - view: text, markup, annotated - select for diffs
Fri Jan 17 16:07:14 2003 UTC (21 years, 10 months ago) by thorpej
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.12.8.5: preferred, colored; branchpoint 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12.8.5: +6 -3 lines
Sync with HEAD.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Thu Jan 16 09:17:01 2003 UTC (21 years, 10 months ago) by matt
Branches: MAIN
CVS tags: nathanw_sa_before_merge, nathanw_sa_base
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +6 -3 lines
A small LP64 fix.

Revision 1.12.8.5: download - view: text, markup, annotated - select for diffs
Fri Oct 18 02:39:31 2002 UTC (22 years, 1 month ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.12.8.4: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.8.4: +3 -2 lines
Catch up to -current.

Revision 1.12.2.3: download - view: text, markup, annotated - select for diffs
Thu Oct 10 18:35:20 2002 UTC (22 years, 1 month ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.2.2: preferred, colored; branchpoint 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12.2.2: +3 -2 lines
sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Sep 22 08:31:00 2002 UTC (22 years, 2 months ago) by simonb
Branches: MAIN
CVS tags: kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -3 lines
Use "#define\t" instead of "#define ".

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sun Sep 22 04:11:34 2002 UTC (22 years, 2 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -1 lines
Add __HAVE_MD_RUNQUEUE flag for MD code to override MI run queue primitives.

Revision 1.12.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 6 08:39:17 2002 UTC (22 years, 3 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.2.1: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.1: +14 -8 lines
sync kqueue branch with HEAD

Revision 1.13.8.2: download - view: text, markup, annotated - select for diffs
Sat Aug 31 13:45:46 2002 UTC (22 years, 3 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.13.8.1: preferred, colored; branchpoint 1.13: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13.8.1: +13 -8 lines
catch up with -current.

Revision 1.12.8.4: download - view: text, markup, annotated - select for diffs
Tue Aug 27 23:45:16 2002 UTC (22 years, 3 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.12.8.3: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.8.3: +13 -8 lines
Catch up to -current.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Aug 14 15:41:58 2002 UTC (22 years, 3 months ago) by matt
Branches: MAIN
CVS tags: gehenna-devsw-base
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +13 -8 lines
Prepare for PPC64.  Use register_t for mtmsr/mfmsr since the msr on PPC64
is 64bits wide.  Define proper types for PPC64 if _LP64 is defined.

Revision 1.12.8.3: download - view: text, markup, annotated - select for diffs
Thu Aug 1 02:43:04 2002 UTC (22 years, 4 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.12.8.2: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.8.2: +2 -1 lines
Catch up to -current.

Revision 1.13.8.1: download - view: text, markup, annotated - select for diffs
Tue Jul 16 13:09:58 2002 UTC (22 years, 4 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -1 lines
catch up with -current.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Fri Jul 5 18:45:21 2002 UTC (22 years, 5 months ago) by matt
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -1 lines
Peform a rototill over the powerpc-based ports.

Move the trap/vector initialization for MPC6xx ports to mpc6xx_machdep.c
Also move softnet, install_extintr, mapiodev, kvtop.  Add common BAT
initialization code.

Add user Altivec support.

Fix calls to OF_call_method in macppc/macppc/machdep.c.

Use ci_fpuproc in cpu_info instead of separate fpuproc.

Add separate syscall.c and defined __HAVE_SYSCALL_INTERN.

Revision 1.12.8.2: download - view: text, markup, annotated - select for diffs
Mon Apr 1 07:42:05 2002 UTC (22 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.12.8.1: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.8.1: +56 -0 lines
Catch up to -current.
(CVS: It's not just a program. It's an adventure!)

Revision 1.12.2.1: download - view: text, markup, annotated - select for diffs
Sat Mar 16 15:59:17 2002 UTC (22 years, 8 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
Catch up with -current.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Feb 28 03:17:35 2002 UTC (22 years, 9 months ago) by simonb
Branches: MAIN
CVS tags: 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: gehenna-devsw
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
Use "#define<tab>".

Revision 1.11.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 21 19:32:25 2001 UTC (23 years, 5 months ago) by nathanw
Diff to: previous 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11: +3 -17 lines
Catch up to -current.

Revision 1.12.8.1
Sat Apr 28 15:41:32 2001 UTC (23 years, 7 months ago) by nathanw
Branches: nathanw_sa
FILE REMOVED
Changes since revision 1.12: +0 -56 lines
file types.h was added on branch nathanw_sa on 2002-04-01 07:42:05 +0000

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Apr 28 15:41:32 2001 UTC (23 years, 7 months ago) by kleink
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
Branch point for: nathanw_sa, kqueue
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +3 -17 lines
* Move definitions of exact-width integer types from <machine/types.h>
  to <sys/types.h> and <sys/stdint.h>.
* Add a new C99 <stdint.h> header, which provides integer types of
  explicit width, related limits and integer constant macros.
* Extend <inttypes.h> to provide <stdint.h> definitions and format
  macros for printf() and scanf().
* Add C99 strtoimax() and strtoumax() functions.
* Use the latter within scanf().
* Add C99 %j, %t and %z printf()/scanf() conversions for
  intmax_t, pointer-type and size_t arguments.

Revision 1.8.12.3: download - view: text, markup, annotated - select for diffs
Mon Mar 12 13:29:14 2001 UTC (23 years, 8 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.8.12.2: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.12.2: +3 -8 lines
Sync with HEAD.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Mar 4 03:25:34 2001 UTC (23 years, 9 months ago) by matt
Branches: MAIN
CVS tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -8 lines
Nuke vm_offset_t, vm_size_t from powerpc.

Revision 1.8.12.2: download - view: text, markup, annotated - select for diffs
Fri Jan 5 17:34:57 2001 UTC (23 years, 11 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.8.12.1: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.12.1: +10 -11 lines
Sync with HEAD

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jan 3 10:09:02 2001 UTC (23 years, 11 months ago) by takemura
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +10 -11 lines
replace 'long long' with int64_t to compile stand alone program with
compiler other than GCC.

Revision 1.8.12.1: download - view: text, markup, annotated - select for diffs
Mon Nov 20 20:31:13 2000 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1 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.8.20.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 17:02:41 2000 UTC (24 years, 5 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8: +3 -1 lines
Sync w/ netbsd-1-5-base.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Jun 11 16:32:45 2000 UTC (24 years, 5 months ago) by tsubai
Branches: MAIN
CVS tags: 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
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1 lines
Add cpu_counter().

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Aug 13 02:10:39 1998 UTC (26 years, 3 months ago) by eeh
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, 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, kenh-if-detach-base, kenh-if-detach, kame_14_19990705, kame_14_19990628, kame_141_19991130, kame, fvdl-softdep-base, fvdl-softdep, 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, minoura-xpg4dl
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +9 -1 lines
Merge paddr_t changes into the main branch.

Revision 1.7.2.2: download - view: text, markup, annotated - select for diffs
Wed Aug 12 02:51:11 1998 UTC (26 years, 3 months ago) by eeh
Branches: eeh-paddr_t
Diff to: previous 1.7.2.1: preferred, colored; branchpoint 1.7: preferred, colored; next MAIN 1.8: preferred, colored
Changes since revision 1.7.2.1: +4 -1 lines
Protect XOPEN and POSIX code from vm_offset_t, paddr_t, vaddr_t, vm_size_t, psize_t, and vsize_t.

Revision 1.7.2.1: download - view: text, markup, annotated - select for diffs
Thu Jul 30 14:03:49 1998 UTC (26 years, 4 months ago) by eeh
Branches: eeh-paddr_t
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +6 -1 lines
Split vm_offset_t and vm_size_t into paddr_t, psize_t, vaddr_t, and vsize_t.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Jun 14 20:09:23 1998 UTC (26 years, 5 months ago) by kleink
Branches: MAIN
CVS tags: eeh-paddr_t-base
Branch point for: eeh-paddr_t
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -6 lines
GC the unused `physadr' type, which was not able to hold a complete physical
address on 2 architectures anyhow.  Also, move the definition of the `label_t'
type inside _KERNEL protection, since it is specific to the in-kernel
setjmp()/longjmp() implementations.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Feb 23 03:21:40 1998 UTC (26 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +23 -17 lines
Clean up, add physadr.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Jan 27 09:16:00 1998 UTC (26 years, 10 months ago) by sakamoto
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +6 -1 lines
Import DDB from OpenBSD/powerpc.

Revision 1.3.8.1: download - view: text, markup, annotated - select for diffs
Wed Nov 5 04:39:19 1997 UTC (27 years, 1 month ago) by thorpej
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA
Diff to: previous 1.3: preferred, colored; next MAIN 1.4: preferred, colored
Changes since revision 1.3: +3 -1 lines
Update from trunk: Mark usese of long long with /* LONGLONG */ for lint.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Nov 5 04:36:30 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -1 lines
Mark uses of long long with /* LONGLONG */ for lint.  From
Chris Demetriou <cgd@pa.dec.com>.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Apr 16 23:03:16 1997 UTC (27 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-signal-base, thorpej-signal, netbsd-1-3-base, marc-pcmcia-bp, marc-pcmcia-base, marc-pcmcia, bouyer-scsipi
Branch point for: netbsd-1-3
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -3 lines
Nuke __BROKEN_INDIRECT_CONFIG

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Dec 5 00:13:57 1996 UTC (28 years ago) by cgd
Branches: MAIN
CVS tags: thorpej-setroot, mrg-vm-swap, is-newarp-before-merge, is-newarp-base, is-newarp
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -1 lines
First step inn removing config_scan() and the hacks that gave devices
on indirect-config busses a (permanent) softc that they could share
between 'match' and 'attach' routines:

Define __BROKEN_INDIRECT_CONFIG so that old autoconfiguration
interfaces are used, until drivers are converted to use the new
interfaces (actually, converted back to use the _older_ interfaces)
which prohibit indirect configuration devices from receiving a softc
in their match routine that they can share with their attach routine.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Sep 30 16:34:36 1996 UTC (28 years, 2 months ago) by ws
Branches: MAIN
PowerPC port

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>