The NetBSD Project

CVS log for src/sys/arch/sparc/dev/tctrl.c

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

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun Sep 26 16:36:19 2021 UTC (3 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, 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, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +3 -3 lines
Driver "kqfilter" entry points return an error code, so if an invalid
filter is requested, return EINVAL rather than 1.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Sep 26 01:16:08 2021 UTC (3 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +3 -3 lines
Change the kqueue filterops::f_isfd field to filterops::f_flags, and
define a flag FILTEROP_ISFD that has the meaning of the prior f_isfd.
Field and flag name aligned with OpenBSD.

This does not constitute a functional or ABI change, as the field location
and size, and the value placed in that field, are the same as the previous
code, but we're bumping __NetBSD_Version__ so 3rd-party module source code
can adapt, as needed.

NetBSD 9.99.89

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

Revision 1.63: download - view: text, markup, annotated - select for diffs
Mon Jan 4 15:29:34 2021 UTC (4 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: 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-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +4 -6 lines
Use sel{record,remove}_knote().

Revision 1.62: download - view: text, markup, annotated - select for diffs
Sat Jun 13 05:31:28 2020 UTC (4 years, 10 months ago) by jdc
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +4 -3 lines
Initialise the mutex before we use it.

Revision 1.55.2.3: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:43 2017 UTC (7 years, 4 months ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.55.2.2: preferred, colored; branchpoint 1.55: preferred, colored; next MAIN 1.56: preferred, colored
Changes since revision 1.55.2.2: +26 -21 lines
update from HEAD

Revision 1.61: download - view: text, markup, annotated - select for diffs
Wed Oct 25 08:12:37 2017 UTC (7 years, 6 months ago) by maya
Branches: MAIN
CVS tags: tls-maxphys-base-20171202, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, 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, pgoyette-compat, 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.60: preferred, colored
Changes since revision 1.60: +8 -4 lines
Use C99 initializer for filterops

Mostly done with spatch with touchups for indentation

@@
expression a;
identifier b,c,d;
identifier p;
@@
const struct filterops p =
- 	{ a, b, c, d
+ 	{
+ 	.f_isfd = a,
+ 	.f_attach = b,
+ 	.f_detach = c,
+ 	.f_event = d,
};

Revision 1.59.4.1: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:20 2017 UTC (8 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +22 -21 lines
Sync with HEAD

Revision 1.59.8.1: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:56:26 2017 UTC (8 years, 3 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +22 -21 lines
Sync with HEAD.  (Note that most of these changes are simply $NetBSD$
tag issues.)

Revision 1.60: download - view: text, markup, annotated - select for diffs
Sun Dec 11 16:25:54 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, 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, bouyer-socketcan-base, bouyer-socketcan
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +22 -21 lines
catch up with sd changes.

Revision 1.55.2.2: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:24 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.55.2.1: preferred, colored; branchpoint 1.55: preferred, colored
Changes since revision 1.55.2.1: +15 -6 lines
Rebase to HEAD as of a few days ago.

Revision 1.58.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:54:08 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.58: preferred, colored; next MAIN 1.59: preferred, colored
Changes since revision 1.58: +3 -2 lines
Rebase.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Fri Jul 25 08:10:34 2014 UTC (10 years, 9 months ago) by dholland
Branches: MAIN
CVS tags: tls-maxphys-base, tls-earlyentropy-base, pgoyette-localcount-base, 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, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406, nick-nhusb-base, 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, localcount-20160914
Branch point for: pgoyette-localcount, nick-nhusb
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -2 lines
Add d_discard to all struct cdevsw instances I could find.

All have been set to "nodiscard"; some should get a real implementation.

Revision 1.53.2.3: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:08 2014 UTC (10 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.53.2.2: preferred, colored; branchpoint 1.53: preferred, colored; next MAIN 1.54: preferred, colored
Changes since revision 1.53.2.2: +14 -6 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.56.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:25 2014 UTC (10 years, 11 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56: +14 -6 lines
sync with head

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sun Mar 16 05:20:25 2014 UTC (11 years, 1 month ago) by dholland
Branches: MAIN
CVS tags: yamt-pagecache-base9, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Branch point for: tls-earlyentropy
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +13 -4 lines
Change (mostly mechanically) every cdevsw/bdevsw I can find to use
designated initializers.

I have not built every extant kernel so I have probably broken at
least one build; however I've also found and fixed some wrong
cdevsw/bdevsw entries so even if so I think we come out ahead.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Sat Oct 19 19:40:23 2013 UTC (11 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +3 -4 lines
- remove unused but set variables.
- use __USE() where necessary.
- remove useless 'volatile' markers

kd.c:consinit() might be wrong for old proms, but i've not
changed it really.

Revision 1.55.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 03:01:43 2012 UTC (12 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -3 lines
Resync to 2012-11-19 00:00:00 UTC

Revision 1.53.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:20:21 2012 UTC (12 years, 6 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.53.2.1: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.2.1: +3 -3 lines
sync with head

Revision 1.56: download - view: text, markup, annotated - select for diffs
Sat Oct 27 17:18:11 2012 UTC (12 years, 6 months ago) by chs
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: rmind-smpnet
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -3 lines
split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.

Revision 1.53.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:06:54 2012 UTC (13 years ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +4 -4 lines
sync with head

Revision 1.53.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 5 21:33:19 2012 UTC (13 years ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.53: preferred, colored; next MAIN 1.54: preferred, colored
Changes since revision 1.53: +4 -4 lines
sync to latest -current.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Sun Mar 25 08:48:40 2012 UTC (13 years, 1 month ago) by martin
Branches: MAIN
CVS tags: yamt-pagecache-base5, yamt-pagecache-base4, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base10
Branch point for: tls-maxphys
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -3 lines
Make explicitly clear that we mean raw I/O on device passthru, not just
generic passthru.

Revision 1.54: download - view: text, markup, annotated - select for diffs
Tue Mar 13 18:40:28 2012 UTC (13 years, 1 month ago) by elad
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +4 -4 lines
Replace the remaining KAUTH_GENERIC_ISSUSER authorization calls with
something meaningful. All relevant documentation has been updated or
written.

Most of these changes were brought up in the following messages:

    http://mail-index.netbsd.org/tech-kern/2012/01/18/msg012490.html
    http://mail-index.netbsd.org/tech-kern/2012/01/19/msg012502.html
    http://mail-index.netbsd.org/tech-kern/2012/02/17/msg012728.html

Thanks to christos, manu, njoly, and jmmv for input.

Huge thanks to pgoyette for spinning these changes through some build
cycles and ATF.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Mon Jul 18 00:31:13 2011 UTC (13 years, 9 months ago) by mrg
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-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, jmcneill-usbmp-pre-base2, 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, jmcneill-usbmp
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +32 -31 lines
convert the remaining sparc drivers to CFATTACH_DECL_NEW/cfdata_t/device_t.
(cgsix_obio.c was only partially converted with the rest of the cgsix code
when it was changed some time ago.)

Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri Jul 1 18:50:41 2011 UTC (13 years, 10 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +3 -3 lines
#include <sys/bus.h> instead of <machine/bus.h>.

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

Revision 1.51: download - view: text, markup, annotated - select for diffs
Mon Jun 20 16:33:42 2011 UTC (13 years, 10 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +5 -2 lines
Initialize sensor states before registering

Revision 1.46.4.3: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:02:57 2010 UTC (15 years, 1 month ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.46.4.2: preferred, colored; branchpoint 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46.4.2: +2 -3 lines
sync with head

Revision 1.50: download - view: text, markup, annotated - select for diffs
Sat Nov 21 04:16:51 2009 UTC (15 years, 5 months ago) by rmind
Branches: MAIN
CVS tags: yamt-nfs-mp-base9, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base7, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1, uebayasi-xip-base, uebayasi-xip, rmind-uvmplock-nbase, rmind-uvmplock-base, rmind-uvmplock, matt-premerge-20091211, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, jruoho-x86intr-base, jruoho-x86intr, cherry-xenmp-base, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: cherry-xenmp
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -3 lines
Use lwp_getpcb() on sparc{64} and sun2/3 MD code, clean from struct user usage.

Revision 1.46.4.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:11:54 2009 UTC (15 years, 11 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.46.4.1: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.1: +21 -24 lines
sync with head.

Revision 1.48.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:16:00 2008 UTC (16 years, 6 months ago) by haad
Branches: haad-dm
Diff to: previous 1.48: preferred, colored; next MAIN 1.49: preferred, colored
Changes since revision 1.48: +3 -3 lines
Sync with HEAD.

Revision 1.45.6.4: download - view: text, markup, annotated - select for diffs
Sun Sep 28 10:40:08 2008 UTC (16 years, 7 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.45.6.3: preferred, colored; branchpoint 1.45: preferred, colored; next MAIN 1.46: preferred, colored
Changes since revision 1.45.6.3: +1 -1 lines
Sync with HEAD.

Revision 1.47.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:33:33 2008 UTC (16 years, 7 months ago) by wrstuden
Branches: wrstuden-revivesa
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: +3 -3 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.47.4.2: download - view: text, markup, annotated - select for diffs
Fri Jul 18 16:37:29 2008 UTC (16 years, 9 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.47.4.1: preferred, colored; branchpoint 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47.4.1: +3 -3 lines
Sync with head.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Jul 17 14:43:38 2008 UTC (16 years, 9 months ago) by cegger
Branches: MAIN
CVS tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, simonb-wapbl-nbase, simonb-wapbl-base, 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, 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, jymxensuspend-base, jym-xensuspend, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +3 -3 lines
 make this compile

Revision 1.45.6.3: download - view: text, markup, annotated - select for diffs
Sun Jun 29 09:33:00 2008 UTC (16 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.45.6.2: preferred, colored; branchpoint 1.45: preferred, colored
Changes since revision 1.45.6.2: +18 -21 lines
Sync with HEAD.

Revision 1.47.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:30:43 2008 UTC (16 years, 10 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +20 -23 lines
Sync w/ -current. 34 merge conflicts to follow.

Revision 1.47.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 18 16:32:48 2008 UTC (16 years, 10 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +20 -23 lines
Sync with head.

Revision 1.46.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 17 09:14:12 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-pf42
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: +20 -23 lines
sync with head.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Wed Jun 11 21:25:31 2008 UTC (16 years, 10 months ago) by drochner
Branches: MAIN
CVS tags: yamt-pf42-base4, wrstuden-revivesa-base-1, wrstuden-revivesa-base
Branch point for: haad-dm
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +20 -23 lines
mechanical changes to use device_private() or device_lookup_private()
to get softcs, makes the code compile under the stricter type checking
introduced earlier today

Revision 1.45.6.2: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:40 2008 UTC (16 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.45.6.1: preferred, colored; branchpoint 1.45: preferred, colored
Changes since revision 1.45.6.1: +0 -7 lines
Sync with HEAD.

Revision 1.46.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:32:46 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -9 lines
sync with head.

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

Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon Apr 28 20:23:35 2008 UTC (17 years ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base2, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa, simonb-wapbl
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -9 lines
Remove clause 3 and 4 from TNF licenses

Revision 1.45.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 3 12:42:25 2008 UTC (17 years ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +4 -3 lines
Sync with HEAD.

Revision 1.45.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 24 07:15:04 2008 UTC (17 years, 1 month ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.45: preferred, colored; next MAIN 1.46: preferred, colored
Changes since revision 1.45: +4 -3 lines
sync with head.

Revision 1.42.10.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:22 2008 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
Diff to: previous 1.42.10.2: preferred, colored; branchpoint 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42.10.2: +11 -13 lines
sync with HEAD

Revision 1.26.16.7: download - view: text, markup, annotated - select for diffs
Mon Mar 17 09:14:24 2008 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.6: preferred, colored; branchpoint 1.26: preferred, colored; next MAIN 1.27: preferred, colored
Changes since revision 1.26.16.6: +4 -3 lines
sync with head.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Sat Mar 1 14:16:49 2008 UTC (17 years, 2 months ago) by rmind
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +4 -3 lines
Welcome to 4.99.55:

- Add a lot of missing selinit() and seldestroy() calls.

- Merge selwakeup() and selnotify() calls into a single selnotify().

- Add an additional 'events' argument to selnotify() call.  It will
  indicate which event (POLL_IN, POLL_OUT, etc) happen.  If unknown,
  zero may be used.

Note: please pass appropriate value of 'events' where possible.
Proposed on: <tech-kern>

Revision 1.26.16.6: download - view: text, markup, annotated - select for diffs
Wed Feb 27 08:36:25 2008 UTC (17 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.5: preferred, colored; branchpoint 1.26: preferred, colored
Changes since revision 1.26.16.5: +9 -12 lines
sync with head.

Revision 1.43.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:05:03 2008 UTC (17 years, 2 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.43.2.1: preferred, colored; branchpoint 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43.2.1: +9 -12 lines
Sync with HEAD.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Feb 12 17:30:58 2008 UTC (17 years, 2 months ago) by joerg
Branches: MAIN
CVS tags: nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, hpcarm-cleanup-base
Branch point for: mjf-devfs2, keiichi-mipv6
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +9 -12 lines
Introduce device_find_by_xname and device_find_by_driver_unit to replace
alldevs iterations all over src.

Patch discussed with and improved on suggestioned from cube@.

Revision 1.42.10.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:48:53 2008 UTC (17 years, 3 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.42.10.1: preferred, colored; branchpoint 1.42: preferred, colored
Changes since revision 1.42.10.1: +23 -23 lines
sync with HEAD

Revision 1.26.16.5: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:26:12 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.4: preferred, colored; branchpoint 1.26: preferred, colored
Changes since revision 1.26.16.4: +23 -23 lines
sync with head

Revision 1.37.2.3: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:39:10 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking
Diff to: previous 1.37.2.2: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.2.2: +23 -23 lines
Sync with HEAD.

Revision 1.42.8.1: download - view: text, markup, annotated - select for diffs
Wed Nov 21 21:53:29 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42: +23 -23 lines
Sync with HEAD.

Revision 1.43.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 19 00:46:51 2007 UTC (17 years, 5 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +23 -23 lines
Sync with HEAD.

Revision 1.42.14.1: download - view: text, markup, annotated - select for diffs
Sun Nov 18 19:34:40 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42: +23 -23 lines
Sync with HEAD

Revision 1.44: download - view: text, markup, annotated - select for diffs
Fri Nov 16 08:00:12 2007 UTC (17 years, 5 months ago) by xtraeme
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, matt-armv6-base, jmcneill-pm-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +23 -23 lines
Extend the envsys2 API (one more time, sorry) as defined in:

http://mail-index.netbsd.org/tech-kern/2007/11/09/0001.html

sysmon_envsys_create() and sysmon_envsys_destroy() were added to
create/destroy sysmon_envsys objects (and its TAILQ/LIST for sensors/events).

sysmon_envsys_sensor_attach() and sysmon_envsys_sensor_detach() were
added to attach/detach sensors to a specified sysmon_envsys device.

The events framework is now per device and configurable via the
ENVSYS_SETDICTIONARY ioctl or /etc/envsys.conf and envstat(8).

Update all users and documentation to reflect these changes.

Revision 1.42.10.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:22:22 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2 lines
sync with HEAD

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:57:12 2007 UTC (17 years, 6 months ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4, jmcneill-base
Branch point for: mjf-devfs
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2 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.38.4.1: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:25:12 2007 UTC (17 years, 6 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38: +51 -100 lines
Sync with HEAD

Revision 1.26.16.4: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:29:57 2007 UTC (17 years, 7 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.3: preferred, colored; branchpoint 1.26: preferred, colored
Changes since revision 1.26.16.3: +79 -149 lines
sync with head.

Revision 1.37.2.2: download - view: text, markup, annotated - select for diffs
Sun Jul 15 13:16:59 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.37.2.1: preferred, colored; branchpoint 1.37: preferred, colored
Changes since revision 1.37.2.1: +51 -100 lines
Sync with head.

Revision 1.37.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 20:02:20 2007 UTC (17 years, 9 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37: +78 -148 lines
Sync with head.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Jul 9 20:52:30 2007 UTC (17 years, 9 months ago) by ad
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
Branch point for: matt-armv6, jmcneill-pm, bouyer-xenamd64
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +14 -22 lines
Merge some of the less invasive changes from the vmlocking branch:

- kthread, callout, devsw API changes
- select()/poll() improvements
- miscellaneous MT safety improvements

Revision 1.41: download - view: text, markup, annotated - select for diffs
Wed Jul 4 00:32:35 2007 UTC (17 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +3 -3 lines
s/cur_tre/edata/ => should fix the build error reported by rjs@.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Jul 1 20:01:44 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +4 -4 lines
Use PSWITCH_EVENT_{PRESSED,RELEASED} for consistency with other drivers
using the sysmon_power framework.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Sun Jul 1 07:37:21 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +37 -78 lines
Imported envsys 2, a brief description of the new features:
(Part 2: drivers)

* Support for detachable sensors.
* Cleaned up the API for simplicity and efficiency.
* Ability to send capacity/critical/warning events to powerd(8).
* Adapted all the code to the new locking order.
* Compatibility with the old envsys API: the ENVSYS_GTREINFO
  and ENVSYS_GTREDATA ioctl(2)s are supported.
* Added support for a 'dictionary based communication channel' between
  sysmon_power(9) and powerd(8), that means there is no 32 bytes event
  size restriction anymore.
* Binary compatibility with old envstat(8) and powerd(8) via COMPAT_40.
* All drivers with the n^2 gtredata bug were fixed, PR kern/36226.

Tested by:

blymn: smsc(4).
bouyer: ipmi(4), mfi(4).
kefren: ug(4).
njoly: viaenv(4), adt7463.c.
riz: owtemp(4).
xtraeme: acpiacad(4), acpibat(4), acpitz(4), aiboost(4), it(4), lm(4).

Revision 1.37.2.1: download - view: text, markup, annotated - select for diffs
Sun May 27 12:28:12 2007 UTC (17 years, 11 months ago) by ad
Branches: vmlocking
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +29 -50 lines
Sync with head.

Revision 1.36.2.2: download - view: text, markup, annotated - select for diffs
Sun Apr 15 16:03:07 2007 UTC (18 years ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.36.2.1: preferred, colored; branchpoint 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36.2.1: +29 -50 lines
sync with head.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Wed Apr 11 16:30:26 2007 UTC (18 years ago) by macallan
Branches: MAIN
CVS tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic
Branch point for: ppcoea-renovation
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +29 -50 lines
clean up tadpole_request() API
from mrg

Revision 1.36.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:50:29 2007 UTC (18 years, 1 month ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +3 -3 lines
Sync with HEAD.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sun Mar 4 06:00:44 2007 UTC (18 years, 1 month ago) by christos
Branches: MAIN
CVS tags: reinoud-bufcleanup
Branch point for: vmlocking, mjf-ufs-trans
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +3 -3 lines
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

Revision 1.26.16.3: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:08:15 2007 UTC (18 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.2: preferred, colored; branchpoint 1.26: preferred, colored
Changes since revision 1.26.16.2: +3 -3 lines
sync with head.

Revision 1.35.4.1: download - view: text, markup, annotated - select for diffs
Fri Jan 12 01:00:59 2007 UTC (18 years, 3 months ago) by ad
Branches: newlock2
Diff to: previous 1.35: preferred, colored; next MAIN 1.36: preferred, colored
Changes since revision 1.35: +3 -3 lines
Sync with head.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Thu Jan 4 17:50:00 2007 UTC (18 years, 3 months ago) by elad
Branches: MAIN
CVS tags: post-newlock2-merge, newlock2-nbase, newlock2-base, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +3 -3 lines
Consistent usage of KAUTH_GENERIC_ISSUSER.

Revision 1.26.16.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:58 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26.16.1: preferred, colored; branchpoint 1.26: preferred, colored
Changes since revision 1.26.16.1: +4 -4 lines
sync with head.

Revision 1.29.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:43:09 2006 UTC (18 years, 7 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +340 -107 lines
sync with head

Revision 1.29.8.3: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:42:47 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.29.8.2: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.8.2: +4 -4 lines
sync with head

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sun Jul 23 22:06:07 2006 UTC (18 years, 9 months ago) by ad
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, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, rpaulo-netinet-merge-pcb-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, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: newlock2
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +4 -4 lines
Use the LWP cached credentials where sane.

Revision 1.26.16.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:55:54 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +606 -321 lines
sync with head.

Revision 1.29.6.2: download - view: text, markup, annotated - select for diffs
Thu Jun 1 22:35:25 2006 UTC (18 years, 11 months ago) by kardel
Branches: simonb-timecounters
CVS tags: simonb-timcounters-final
Diff to: previous 1.29.6.1: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.6.1: +5 -3 lines
Sync with head.

Revision 1.31.2.1: download - view: text, markup, annotated - select for diffs
Wed May 24 15:48:22 2006 UTC (18 years, 11 months ago) by tron
Branches: peter-altq
Diff to: previous 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31: +11 -9 lines
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.

Revision 1.29.8.2: download - view: text, markup, annotated - select for diffs
Wed May 24 10:57:14 2006 UTC (18 years, 11 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.29.8.1: preferred, colored; branchpoint 1.29: preferred, colored
Changes since revision 1.29.8.1: +11 -9 lines
sync with head.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun May 14 21:56:33 2006 UTC (18 years, 11 months ago) by elad
Branches: MAIN
CVS tags: yamt-pdpolicy-base6, yamt-pdpolicy-base5, simonb-timecounters-base, gdamore-uart-base, gdamore-uart, chap-midi-nbase, chap-midi-base, chap-midi
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +5 -3 lines
integrate kauth.

Revision 1.30.2.5: download - view: text, markup, annotated - select for diffs
Sat May 13 10:26:28 2006 UTC (18 years, 11 months ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.30.2.4: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30.2.4: +3 -2 lines
sprinkle some #include <sys/kauth.h> in files that use kauth kpi but
don't include it yet. hopefully this will prevent some fallout.

Revision 1.30.2.4: download - view: text, markup, annotated - select for diffs
Thu May 11 23:27:03 2006 UTC (18 years, 11 months ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.30.2.3: preferred, colored
Changes since revision 1.30.2.3: +8 -8 lines
sync with head

Revision 1.29.6.1: download - view: text, markup, annotated - select for diffs
Sat Apr 22 11:37:57 2006 UTC (19 years ago) by simonb
Branches: simonb-timecounters
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +337 -106 lines
Sync with head.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Apr 20 12:13:51 2006 UTC (19 years ago) by blymn
Branches: MAIN
CVS tags: elad-kernelauth-base
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +8 -8 lines
Prefix iostat structure elements with io_

Revision 1.30.2.3: download - view: text, markup, annotated - select for diffs
Wed Apr 19 02:33:44 2006 UTC (19 years ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.30.2.2: preferred, colored
Changes since revision 1.30.2.2: +59 -22 lines
sync with head - hopefully this will work

Revision 1.32: download - view: text, markup, annotated - select for diffs
Fri Apr 14 13:09:05 2006 UTC (19 years ago) by blymn
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +8 -8 lines
Make i/o statistics collection more generic, include tape drives and
nfs mounts in the set of devices that statistics will be reported on.

Revision 1.29.8.1: download - view: text, markup, annotated - select for diffs
Mon Mar 13 09:07:02 2006 UTC (19 years, 1 month ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +337 -106 lines
sync with head.

Revision 1.30.2.2: download - view: text, markup, annotated - select for diffs
Fri Mar 10 14:54:50 2006 UTC (19 years, 1 month ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.30.2.1: preferred, colored
Changes since revision 1.30.2.1: +3 -3 lines
generic_authorize() -> kauth_authorize_generic().

Revision 1.31: download - view: text, markup, annotated - select for diffs
Wed Mar 8 01:17:49 2006 UTC (19 years, 1 month ago) by macallan
Branches: MAIN
CVS tags: yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, peter-altq-base
Branch point for: peter-altq
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +53 -16 lines
report lid and AC power state to sysmon

Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Wed Mar 8 00:43:13 2006 UTC (19 years, 1 month ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +4 -3 lines
Adapt to kernel authorization KPI.

I expect *some* lossage here...

Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Mar 6 21:43:29 2006 UTC (19 years, 1 month ago) by macallan
Branches: MAIN
Branch point for: elad-kernelauth
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +286 -92 lines
- use a lock to serialize tadpole_request()
- add a callback to signal monitor detection on the external VGA port
- don't call tadpole-request() in interrupt context
- use a kernel thread for various not time-critical work like device
  monitoring, LCD status updates, external event handling and so on
(the monitoring stuff is preliminary and to be replaced by a more generic API)

Revision 1.29: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:19:05 2005 UTC (19 years, 4 months ago) by christos
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base
Branch point for: yamt-pdpolicy, simonb-timecounters, rpaulo-netinet-merge-pcb
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +12 -12 lines
merge ktrace-lwp.

Revision 1.24.2.6: download - view: text, markup, annotated - select for diffs
Sun Dec 11 10:28:26 2005 UTC (19 years, 4 months ago) by christos
Branches: ktrace-lwp
Diff to: previous 1.24.2.5: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.2.5: +88 -130 lines
Sync with head.

Revision 1.27.6.1: download - view: text, markup, annotated - select for diffs
Tue Nov 22 16:08:02 2005 UTC (19 years, 5 months ago) by yamt
Branches: yamt-readahead
Diff to: previous 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27: +88 -130 lines
sync with head.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Wed Nov 16 02:13:18 2005 UTC (19 years, 5 months ago) by uwe
Branches: MAIN
CVS tags: yamt-readahead-base3, yamt-readahead-base2, ktrace-lwp-base
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +88 -130 lines
ANSIify function declarations/defintions.  Use uint<N>_t.
Drop trailing whitespace.
Same binary code is produced for GENERIC.MP + KGDB + DDB.

Revision 1.24.2.5: download - view: text, markup, annotated - select for diffs
Thu Nov 10 13:58:55 2005 UTC (19 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.24.2.4: preferred, colored
Changes since revision 1.24.2.4: +241 -147 lines
Sync with HEAD. Here we go again...

Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Jul 6 11:31:16 2005 UTC (19 years, 9 months ago) by macallan
Branches: MAIN
CVS tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-readahead-pervnode, yamt-readahead-perfile, yamt-readahead-base, thorpej-vnode-attr-base, thorpej-vnode-attr
Branch point for: yamt-readahead
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +241 -147 lines
changed envsys support to use the sysmon API, added support for the power
button ( see powerd(8) )

Revision 1.24.2.4: download - view: text, markup, annotated - select for diffs
Fri Feb 4 07:09:16 2005 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.24.2.3: preferred, colored
Changes since revision 1.24.2.3: +20 -20 lines
Adapt to branch.

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

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

Revision 1.24.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:40:46 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +5 -2 lines
Sync with HEAD

Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Feb 13 11:36:17 2004 UTC (21 years, 2 months ago) by wiz
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, 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-audio2-base, kent-audio2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-lazymbuf
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -3 lines
Uppercase CPU, plural is CPUs.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Jul 15 00:04:57 2003 UTC (21 years, 9 months ago) by lukem
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +4 -1 lines
__KERNEL_RCSID()

Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun Jun 29 22:28:56 2003 UTC (21 years, 10 months ago) by fvdl
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +9 -10 lines
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Sun Jun 29 09:56:25 2003 UTC (21 years, 10 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +11 -10 lines
More changes for providing lwpid for ktrace (sparc GENERIC built)

Revision 1.13.6.6: download - view: text, markup, annotated - select for diffs
Wed Dec 11 06:12:05 2002 UTC (22 years, 4 months ago) by thorpej
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.13.6.5: preferred, colored; branchpoint 1.13: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13.6.5: +5 -5 lines
Sync with HEAD.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Dec 10 13:44:50 2002 UTC (22 years, 4 months ago) by pk
Branches: MAIN
CVS tags: nathanw_sa_before_merge, nathanw_sa_base, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +3 -3 lines
Remove the `flags' argument from bus_intr_establish().

Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Nov 26 19:50:29 2002 UTC (22 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3 lines
si_ -> sel_

Revision 1.13.6.5: download - view: text, markup, annotated - select for diffs
Mon Nov 11 22:04:30 2002 UTC (22 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.13.6.4: preferred, colored; branchpoint 1.13: preferred, colored
Changes since revision 1.13.6.4: +54 -3 lines
Catch up to -current

Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed Oct 23 09:12:10 2002 UTC (22 years, 6 months ago) by jdolecek
Branches: MAIN
CVS tags: kqueue-aftermerge
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +54 -3 lines
merge kqueue branch into -current

kqueue provides a stateful and efficient event notification framework
currently supported events include socket, file, directory, fifo,
pipe, tty and device changes, and monitoring of processes and signals

kqueue is supported by all writable filesystems in NetBSD tree
(with exception of Coda) and all device drivers supporting poll(2)

based on work done by Jonathan Lemon for FreeBSD
initial NetBSD port done by Luke Mewburn and Jason Thorpe

Revision 1.13.6.4: download - view: text, markup, annotated - select for diffs
Fri Oct 18 02:39:55 2002 UTC (22 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.13.6.3: preferred, colored; branchpoint 1.13: preferred, colored
Changes since revision 1.13.6.3: +4 -4 lines
Catch up to -current.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Oct 14 02:08:39 2002 UTC (22 years, 6 months ago) by takemura
Branches: MAIN
CVS tags: kqueue-beforemerge
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1 lines
Moved MI APM definitions into dev/apm.

Revision 1.12.4.6: download - view: text, markup, annotated - select for diffs
Thu Oct 10 18:36:13 2002 UTC (22 years, 6 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.4.5: preferred, colored; branchpoint 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12.4.5: +14 -6 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.12.4.5: download - view: text, markup, annotated - select for diffs
Wed Oct 2 22:02:25 2002 UTC (22 years, 7 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.4.4: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.4.4: +4 -4 lines
do not need the (void *) cast for kn_hook anymore

Revision 1.18: download - view: text, markup, annotated - select for diffs
Wed Oct 2 16:02:16 2002 UTC (22 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: kqueue-base
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2 lines
Add trailing ; to CFATTACH_DECL.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Tue Oct 1 18:57:53 2002 UTC (22 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -4 lines
Use CFATTACH_DECL().

Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Sep 27 20:35:53 2002 UTC (22 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
Declare all cfattach structures const.

Revision 1.13.6.3: download - view: text, markup, annotated - select for diffs
Tue Sep 17 21:17:43 2002 UTC (22 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.13.6.2: preferred, colored; branchpoint 1.13: preferred, colored
Changes since revision 1.13.6.2: +11 -3 lines
Catch up to -current.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Sep 6 13:18:43 2002 UTC (22 years, 7 months ago) by gehenna
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +11 -3 lines
Merge the gehenna-devsw branch into the trunk.

This merge changes the device switch tables from static array to
dynamically generated by config(8).

- All device switches is defined as a constant structure in device drivers.

- The new grammer ``device-major'' is introduced to ``files''.

	device-major <prefix> char <num> [block <num>] [<rules>]

- All device major numbers must be listed up in port dependent majors.<arch>
  by using this grammer.

- Added the new naming convention.
  The name of the device switch must be <prefix>_[bc]devsw for auto-generation
  of device switch tables.

- The backward compatibility of loading block/character device
  switch by LKM framework is broken. This is necessary to convert
  from block/character device major to device name in runtime and vice versa.

- The restriction to assign device major by LKM is completely removed.
  We don't need to reserve LKM entries for dynamic loading of device switch.

- In compile time, device major numbers list is packed into the kernel and
  the LKM framework will refer it to assign device major number dynamically.

Revision 1.12.4.4: download - view: text, markup, annotated - select for diffs
Tue Jun 18 17:13:38 2002 UTC (22 years, 10 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.4.3: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.4.3: +3 -2 lines
make compile

Revision 1.14.4.1: download - view: text, markup, annotated - select for diffs
Fri May 17 15:40:51 2002 UTC (22 years, 11 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +11 -3 lines
Add device switch.

Revision 1.13.6.2: download - view: text, markup, annotated - select for diffs
Mon Apr 1 07:42:43 2002 UTC (23 years, 1 month ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.13.6.1: preferred, colored; branchpoint 1.13: preferred, colored
Changes since revision 1.13.6.1: +1230 -0 lines
Catch up to -current.
(CVS: It's not just a program. It's an adventure!)

Revision 1.12.4.3: download - view: text, markup, annotated - select for diffs
Sat Mar 16 15:59:48 2002 UTC (23 years, 1 month ago) by jdolecek
Branches: kqueue
Diff to: previous 1.12.4.2: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.4.2: +6 -5 lines
Catch up with -current.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Mon Mar 11 16:27:02 2002 UTC (23 years, 1 month ago) by pk
Branches: MAIN
CVS tags: 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, gehenna-devsw-base, eeh-devprop-base, eeh-devprop
Branch point for: gehenna-devsw
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +6 -5 lines
* `bus_type_t' is gone.
* Use BUS_ADDR() where appropriate to encode I/O space and physical
  address offset into a `bus_addr_t' value.
* Drop obio_bus_map() since it's now completely equivalent to bus_space_map()
* Use bus_space_map2() to map device space at a fixed virtual address.
* Remove the virtual address argument from sbus_sbus_addr()

Revision 1.13.2.1: download - view: text, markup, annotated - select for diffs
Wed Oct 10 11:56:33 2001 UTC (23 years, 6 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.13: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13: +17 -13 lines
Convert all remaining devices.

Revision 1.12.4.2: download - view: text, markup, annotated - select for diffs
Sun Sep 9 06:27:31 2001 UTC (23 years, 7 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.12.4.1: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.4.1: +51 -2 lines
Add kqueue support (not yet compiled).

Revision 1.12.4.1: download - view: text, markup, annotated - select for diffs
Sat Aug 25 06:15:52 2001 UTC (23 years, 8 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
Merge Aug 24 -current into the kqueue branch.

Revision 1.13.6.1
Mon Aug 20 12:20:06 2001 UTC (23 years, 8 months ago) by nathanw
Branches: nathanw_sa
FILE REMOVED
Changes since revision 1.13: +0 -1229 lines
file tctrl.c was added on branch nathanw_sa on 2002-04-01 07:42:43 +0000

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Aug 20 12:20:06 2001 UTC (23 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base3, thorpej-devvp-base2, thorpej-devvp-base, pre-chs-ubcperf, post-chs-ubcperf, newlock-base, newlock, ifpoll-base
Branch point for: thorpej-devvp, nathanw_sa
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
"wierd" is weird.

Revision 1.2.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 20 20:25:34 2000 UTC (24 years, 5 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2: +883 -154 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.10.2.2: download - view: text, markup, annotated - select for diffs
Wed Jul 26 07:28:33 2000 UTC (24 years, 9 months ago) by toddpw
Branches: netbsd-1-5
CVS tags: 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
Diff to: previous 1.10.2.1: preferred, colored; branchpoint 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10.2.1: +1 -1 lines
Pull up tctrl.c 1.12, and ts102reg.h 1.6 (both requested by toddpw):
  Prevent kernel freeze during boot on some Sparcbook 3gx's (namely, mine).
  Sparc "tctrl0" device was sensitive to undefined bits in the hardware.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Jul 25 09:57:59 2000 UTC (24 years, 9 months ago) by toddpw
Branches: MAIN
CVS tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base
Branch point for: kqueue
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
Ignore all undefined bits in the Tadpole microcontroller status register.
Only the low nibble is defined, and on at least one 3gx (mine) there is an
undefined bit which reads as a one -- bit 6 (0x40). This screwed tctrl_intr()
which would loop forever, thinking it always had new events to process.

Revision 1.10.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 19 02:53:13 2000 UTC (24 years, 9 months ago) by mrg
Branches: netbsd-1-5
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -3 lines
pull up sparc/sparc64 bus_intr_establish() changes, necessary for sparc64
(originally done by pk, approved by thorpej):

>Add a `device class' interrupt level argument (from machine/intr.h)
>to bus_interrupt_establish().
>
>It's currently only used in sparc64/dev/psycho.c to assign a CPU interrupt
>level to devices in PCI slots.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Jul 9 20:57:47 2000 UTC (24 years, 9 months ago) by pk
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -3 lines
Add a `device class' interrupt level argument (from machine/intr.h)
to bus_interrupt_establish().

It's currently only used in sparc64/dev/psycho.c to assign a CPU interrupt
level to devices in PCI slots.

Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 17:03:57 2000 UTC (24 years, 10 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9: +3 -2 lines
Sync w/ netbsd-1-5-base.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Jun 4 19:15:03 2000 UTC (24 years, 10 months ago) by cgd
Branches: MAIN
CVS tags: netbsd-1-5-base
Branch point for: netbsd-1-5
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +3 -2 lines
Implement the more flexiable `evcnt' interface as discussed (briefly) on
tech-kern and now documented in evcnt(9).

Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Apr 4 17:20:54 2000 UTC (25 years ago) by thorpej
Branches: MAIN
CVS tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
Fix fallout from callout.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Mar 23 06:44:45 2000 UTC (25 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +6 -2 lines
New callout mechanism with two major improvements over the old
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
  resource allocation.
- Insertion and removal of callouts is constant time, important as
  this facility is used quite a lot in the kernel.

The old timeout()/untimeout() API has been removed from the kernel.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Mar 14 21:24:54 2000 UTC (25 years, 1 month ago) by jdc
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +17 -1 lines
Add port power management ioctls.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Mar 9 07:04:08 2000 UTC (25 years, 1 month ago) by garbled
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +229 -6 lines
New features:
tctrl now initializes the state of the internal LCD icons.  The icons
are unprogrammed at boot time.  This incidentally makes the DC-POWER icon
work.

Fixes:
Fix my stupidity in the ENVSYS stuff, and actually follow the API.

Revision 1.2.8.1: download - view: text, markup, annotated - select for diffs
Mon Dec 27 18:33:47 1999 UTC (25 years, 4 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2: +637 -152 lines
Pull up to last week's -current.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Dec 17 00:32:25 1999 UTC (25 years, 4 months ago) by garbled
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, chs-ubc2-newbase
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +16 -5 lines
avoid uninterruptable sleep on a CMD_REQ ioctl.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Dec 15 08:12:30 1999 UTC (25 years, 4 months ago) by garbled
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +621 -150 lines
add <machine/tctrl.h> where needed.
Add some undocumented commands to the ts102 registers file, and fix a few
typos.

Modifications to tctrl.c:

Add entrypoints to driver for open/close/ioctl/poll.
Make device work with apmd. (still no support for suspend/sleep)
Make device work with ENVSYS API.
Slightly restructure handling of events.
Add function to make microcontroller requests.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Nov 21 15:23:02 1999 UTC (25 years, 5 months ago) by pk
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +6 -3 lines
Check presence of Sbus interrupt properties before using them.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed Aug 11 00:46:06 1999 UTC (25 years, 8 months ago) by matt
Branches: MAIN
CVS tags: fvdl-softdep-base, fvdl-softdep, comdex-fall-1999-base, comdex-fall-1999
Branch point for: wrstuden-devbsize, thorpej_scsipi
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +112 -56 lines
This now works properly and uses interrupts.  If you close the lid, the
screen will turn off and when you open the lid screen turns on.  If you
do too rapidly, the driver won't be notified but you can press the micro
switch and it will come back.  Also "halt -p" now works so you don't
have to do Pause-P to powerdown.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Aug 9 18:39:58 1999 UTC (25 years, 8 months ago) by matt
Branches: MAIN
Add a driver for the Tadpole SPARCbook microcontroller.  It doesn't
do much yet (except for power down support).  As sson as I figure
out to get its interrupts enabled, it will be much more functional.
(e.g., print console messages on low power warnings, be able to turn
off the TFT, etc.).

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>