The NetBSD Project

CVS log for src/sys/arch/shark/isa/clock.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.20 / (download) - annotate - [select for diffs], Sat Dec 9 00:02:10 2023 UTC (4 months, 1 week ago) by andvar
Branch: MAIN
CVS Tags: HEAD
Changes since 1.19: +4 -4 lines
Diff to previous 1.19 (colored) to selected 1.8.2.1 (colored)

add static in from hatTest() and hatWedge() to fix TESTHAT option build.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Apr 7 19:33:37 2022 UTC (2 years ago) by andvar
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, 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, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored) to selected 1.8.2.1 (colored)

fix various typos in comments.

Revision 1.17.18.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:06:45 2019 UTC (4 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) next main 1.18 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD

Revision 1.17.16.1 / (download) - annotate - [select for diffs], Thu Sep 6 06:55:41 2018 UTC (5 years, 7 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) next main 1.18 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD

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

Revision 1.18 / (download) - annotate - [select for diffs], Mon Sep 3 16:29:27 2018 UTC (5 years, 7 months ago) by riastradh
Branch: 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-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, netbsd-9-base, netbsd-9-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, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, 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
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) to selected 1.8.2.1 (colored)

Rename min/max -> uimin/uimax for better honesty.

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

HOWEVER!  Some subsystems have

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

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

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

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

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

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

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

Revision 1.16.64.1 / (download) - annotate - [select for diffs], Sun Dec 3 11:36:42 2017 UTC (6 years, 4 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.16: +3 -3 lines
Diff to previous 1.16 (colored) next main 1.17 (colored) to selected 1.8.2.1 (colored)

update from HEAD

Revision 1.16.84.1 / (download) - annotate - [select for diffs], Sat Jul 9 20:24:56 2016 UTC (7 years, 9 months ago) by skrll
Branch: nick-nhusb
Changes since 1.16: +3 -3 lines
Diff to previous 1.16 (colored) next main 1.17 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD

Revision 1.17 / (download) - annotate - [select for diffs], Thu Jul 7 06:55:38 2016 UTC (7 years, 9 months ago) by msaitoh
Branch: 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-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-base, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, netbsd-8-base, 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, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.16: +3 -3 lines
Diff to previous 1.16 (colored) to selected 1.8.2.1 (colored)

KNF. Remove extra spaces. No functional change.

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Tue Jan 1 15:39:56 2008 UTC (16 years, 3 months ago) by chris
Branch: chris-arm-intr-rework
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.14.16.1 / (download) - annotate - [select for diffs], Wed Dec 26 22:24:54 2007 UTC (16 years, 3 months ago) by rjs
Branch: hpcarm-cleanup
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.15.4.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:22:12 2007 UTC (16 years, 5 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.8.2.1 (colored)

sync with HEAD

Revision 1.16 / (download) - annotate - [select for diffs], Wed Oct 17 19:57:09 2007 UTC (16 years, 6 months ago) by garbled
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-pagecache-tag8, yamt-pagecache-base9, yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-pagecache, yamt-nfs-mp-base9, 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-base11, yamt-nfs-mp-base10, yamt-nfs-mp-base, yamt-nfs-mp, yamt-lazymbuf-base15, yamt-lazymbuf-base14, yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, 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, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, rmind-uvmplock-nbase, rmind-uvmplock-base, rmind-uvmplock, rmind-smpnet-nbase, rmind-smpnet-base, rmind-smpnet, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406, nick-nhusb-base, nick-net80211-sync-base, nick-net80211-sync, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, nick-hppapmap, 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, 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, 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, mjf-devfs, matt-premerge-20091211, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, 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-premerge-20101231, matt-mips64-base2, matt-armv6-nbase, matt-armv6-base, khorben-n900, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, jymxensuspend-base, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend, jruoho-x86intr-base, jruoho-x86intr, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base10, jmcneill-usbmp-base, jmcneill-usbmp, jmcneill-pm-base, jmcneill-base, jmcneill-audiomp3-base, jmcneill-audiomp3, hpcarm-cleanup-nbase, hpcarm-cleanup-base, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, haad-dm, cube-autoconf-base, cube-autoconf, chris-arm-intr-rework-base7, chris-arm-intr-rework-base6, chris-arm-intr-rework-base5, chris-arm-intr-rework-base4, chris-arm-intr-rework-base3, cherry-xenmp-base, cherry-xenmp, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2, agc-symver-base, agc-symver, ad-socklock-base1, ad-audiomp2-base, ad-audiomp2
Branch point for: tls-maxphys, nick-nhusb
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.8.2.1 (colored)

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.14.10.1 / (download) - annotate - [select for diffs], Wed Oct 3 19:25:05 2007 UTC (16 years, 6 months ago) by garbled
Branch: ppcoea-renovation
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD

Revision 1.8.2.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:29:48 2007 UTC (16 years, 7 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.8.2.2: +4 -3 lines
Diff to previous 1.8.2.2 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored) to selected 1.8.2.1 (colored)

sync with head.

Revision 1.13.10.1 / (download) - annotate - [select for diffs], Mon Sep 3 07:04:03 2007 UTC (16 years, 7 months ago) by wrstuden
Branch: wrstuden-fixsa
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored) next main 1.14 (colored) to selected 1.8.2.1 (colored)

Sync w/ NetBSD-4-RC_1

Revision 1.13.4.1 / (download) - annotate - [select for diffs], Tue Aug 28 19:33:25 2007 UTC (16 years, 7 months ago) by liamjfoy
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-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, matt-nb4-arm-base, matt-nb4-arm
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored) next main 1.14 (colored) to selected 1.8.2.1 (colored)

Pull up following revision(s) (requested by tsutsui in ticket #844):
	sys/arch/shark/isa/isa_irq.S: revision 1.8
	sys/arch/shark/isa/clock.c: revision 1.15
Make clockintr() return 1 since it's always handled so that
clock interrupt is properly acounted by evcnt(9) in isa_irq.S.

In irq_setmasks(), refer spl_masks[current_spl_level] directly
rather than spl_mask which is a saved value in splraise() and
splx() functions because the latter one is not always sync'ed with
current_spl_level and interrupt state could be mangled.
Okay'ed by chris@, and should close PR port-shark/22355.

Revision 1.14.2.1 / (download) - annotate - [select for diffs], Mon Aug 20 18:38:50 2007 UTC (16 years, 8 months ago) by ad
Branch: vmlocking
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.14.14.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:47:40 2007 UTC (16 years, 8 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.14.18.1 / (download) - annotate - [select for diffs], Thu Aug 9 02:37:02 2007 UTC (16 years, 8 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.14.12.1 / (download) - annotate - [select for diffs], Tue Aug 7 18:05:41 2007 UTC (16 years, 8 months ago) by matt
Branch: matt-mips64
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.15 / (download) - annotate - [select for diffs], Sat Aug 4 20:14:21 2007 UTC (16 years, 8 months ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, ppcoea-renovation-base, nick-csl-alignment-base5, matt-mips64-base, chris-arm-intr-rework-base2, chris-arm-intr-rework-base, bouyer-xenamd64
Branch point for: matt-armv6, chris-arm-intr-rework
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) to selected 1.8.2.1 (colored)

Make clockintr() return 1 since it's always handled so that
clock interrupt is properly acounted by evcnt(9) in isa_irq.S.

Revision 1.13.6.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:50:25 2007 UTC (17 years, 1 month ago) by rmind
Branch: yamt-idlelwp
Changes since 1.13: +3 -2 lines
Diff to previous 1.13 (colored) next main 1.14 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Mar 8 20:48:39 2007 UTC (17 years, 1 month ago) by matt
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup, nick-csl-alignment-base, mjf-ufs-trans-base, mjf-ufs-trans
Branch point for: vmlocking, ppcoea-renovation, nick-csl-alignment, matt-mips64, jmcneill-pm, hpcarm-cleanup
Changes since 1.13: +3 -2 lines
Diff to previous 1.13 (colored) to selected 1.8.2.1 (colored)

Clean the bitrotting ofw code.  Don't export export the underlying irq
dispatch mechanism to the rest of the kernel; they don't need to know.
Nuke IRQSTATS entirely.

XXX ofwgencfg_clock needs to taught about timecounters

Revision 1.8.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:46:55 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.8.2.1: +96 -203 lines
Diff to previous 1.8.2.1 (colored) to branchpoint 1.8 (colored)

sync with head.

Revision 1.11.2.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:29:31 2006 UTC (17 years, 5 months ago) by ad
Branch: newlock2
Changes since 1.11: +96 -204 lines
Diff to previous 1.11 (colored) next main 1.12 (colored) to selected 1.8.2.1 (colored)

Sync with head.

Revision 1.10.18.1 / (download) - annotate - [select for diffs], Sat Sep 16 17:36:03 2006 UTC (17 years, 7 months ago) by rpaulo
Branch: abandoned-netbsd-4
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored) next main 1.11 (colored) to selected 1.8.2.1 (colored)

Pull up following revision(s) (requested by tsutsui in ticket #164):
	sys/arch/shark/isa/clock.c: revision 1.11
Add __insn_barrier() to avoid too aggressive optimization by gcc4.
GENERIC compiled by gcc4 now works on my FUNAI's DNARD.

Revision 1.10.8.1 / (download) - annotate - [select for diffs], Thu Sep 14 12:31:17 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.10: +96 -203 lines
Diff to previous 1.10 (colored) next main 1.11 (colored) to selected 1.8.2.1 (colored)

sync with head.

Revision 1.13 / (download) - annotate - [select for diffs], Wed Sep 13 07:13:03 2006 UTC (17 years, 7 months ago) by gdamore
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, yamt-splraiseipl-base2, yamt-splraiseipl-base, yamt-splraiseipl, yamt-pdpolicy-base9, post-newlock2-merge, newlock2-nbase, newlock2-base, netbsd-4-base, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp, wrstuden-fixsa, netbsd-4
Changes since 1.12: +20 -116 lines
Diff to previous 1.12 (colored) to selected 1.8.2.1 (colored)

Convert shark to timecounters.  Tested by numerous folks, ok christos@,
martin@.

Revision 1.12 / (download) - annotate - [select for diffs], Tue Sep 12 17:07:14 2006 UTC (17 years, 7 months ago) by gdamore
Branch: MAIN
Changes since 1.11: +98 -110 lines
Diff to previous 1.11 (colored) to selected 1.8.2.1 (colored)

ANSIfy & KNF.

Revision 1.10.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:43:07 2006 UTC (17 years, 7 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored) next main 1.11 (colored) to selected 1.8.2.1 (colored)

sync with head

Revision 1.11 / (download) - annotate - [select for diffs], Tue Sep 5 15:50:37 2006 UTC (17 years, 7 months ago) by tsutsui
Branch: MAIN
CVS Tags: rpaulo-netinet-merge-pcb-base
Branch point for: newlock2
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored) to selected 1.8.2.1 (colored)

Add __insn_barrier() to avoid too aggressive optimization by gcc4.
GENERIC compiled by gcc4 now works on my FUNAI's DNARD.

Revision 1.8.2.1 / (download) - annotate - [selected], Wed Jun 21 14:55:47 2006 UTC (17 years, 9 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.8: +6 -6 lines
Diff to previous 1.8 (colored)

sync with head.

Revision 1.10 / (download) - annotate - [select for diffs], Sat Dec 24 20:07:32 2005 UTC (18 years, 3 months ago) by perry
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base8, yamt-pdpolicy-base7, 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, abandoned-netbsd-4-base
Branch point for: yamt-pdpolicy, rpaulo-netinet-merge-pcb, abandoned-netbsd-4
Changes since 1.9: +6 -6 lines
Diff to previous 1.9 (colored) to selected 1.8.2.1 (colored)

Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.

Revision 1.9 / (download) - annotate - [select for diffs], Sun Dec 11 12:19:02 2005 UTC (18 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored) to selected 1.8.2.1 (colored)

merge ktrace-lwp.

Revision 1.4.2.4 / (download) - annotate - [select for diffs], Thu Nov 10 13:58:50 2005 UTC (18 years, 5 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.2.3: +8 -8 lines
Diff to previous 1.4.2.3 (colored) next main 1.5 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD. Here we go again...

Revision 1.8 / (download) - annotate - [select for diffs], Fri Jun 3 13:03:35 2005 UTC (18 years, 10 months ago) by scw
Branch: MAIN
CVS Tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-readahead-pervnode, yamt-readahead-perfile, yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base, yamt-readahead, thorpej-vnode-attr-base, thorpej-vnode-attr, ktrace-lwp-base
Branch point for: yamt-lazymbuf
Changes since 1.7: +8 -8 lines
Diff to previous 1.7 (colored) to selected 1.8.2.1 (colored)

Appease -Wshadow

Revision 1.4.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:21:48 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.2.2: +2 -2 lines
Diff to previous 1.4.2.2 (colored) to selected 1.8.2.1 (colored)

Fix the sync with head I botched.

Revision 1.4.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:40:16 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.2.1: +0 -0 lines
Diff to previous 1.4.2.1 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD.

Revision 1.4.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:40:33 2004 UTC (19 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4: +38 -3 lines
Diff to previous 1.4 (colored) to selected 1.8.2.1 (colored)

Sync with HEAD

Revision 1.7 / (download) - annotate - [select for diffs], Fri Feb 13 11:36:17 2004 UTC (20 years, 2 months ago) by wiz
Branch: 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
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored) to selected 1.8.2.1 (colored)

Uppercase CPU, plural is CPUs.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Aug 7 16:29:33 2003 UTC (20 years, 8 months ago) by agc
Branch: MAIN
Changes since 1.5: +34 -3 lines
Diff to previous 1.5 (colored) to selected 1.8.2.1 (colored)

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22364, verified by myself.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Jul 15 03:36:01 2003 UTC (20 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.4: +5 -1 lines
Diff to previous 1.4 (colored) to selected 1.8.2.1 (colored)

__KERNEL_RCSID()

Revision 1.4 / (download) - annotate - [select for diffs], Sun Feb 2 10:24:40 2003 UTC (21 years, 2 months ago) by wiz
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.8.2.1 (colored)

guarantee, not guarentee. Idea from miod@openbsd.

Revision 1.1.2.3 / (download) - annotate - [select for diffs], Fri Oct 18 02:39:46 2002 UTC (21 years, 6 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.1.2.2: +15 -18 lines
Diff to previous 1.1.2.2 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored) to selected 1.8.2.1 (colored)

Catch up to -current.

Revision 1.1.14.3 / (download) - annotate - [select for diffs], Thu Oct 10 18:36:00 2002 UTC (21 years, 6 months ago) by jdolecek
Branch: kqueue
Changes since 1.1.14.2: +2 -2 lines
Diff to previous 1.1.14.2 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored) to selected 1.8.2.1 (colored)

sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work

Revision 1.3 / (download) - annotate - [select for diffs], Sat Oct 5 17:01:49 2002 UTC (21 years, 6 months ago) by chs
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base, kqueue-beforemerge, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Changes since 1.2: +14 -17 lines
Diff to previous 1.2 (colored) to selected 1.8.2.1 (colored)

add missing protos.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Sep 27 15:36:42 2002 UTC (21 years, 6 months ago) by provos
Branch: MAIN
CVS Tags: kqueue-base
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.8.2.1 (colored)

remove trailing \n in panic().  approved perry.

Revision 1.1.14.2 / (download) - annotate - [select for diffs], Sun Jun 23 17:41:20 2002 UTC (21 years, 9 months ago) by jdolecek
Branch: kqueue
Changes since 1.1.14.1: +669 -0 lines
Diff to previous 1.1.14.1 (colored) to branchpoint 1.1 (colored) to selected 1.8.2.1 (colored)

catch up with -current on kqueue branch

Revision 1.1.2.2 / (download) - annotate - [select for diffs], Thu Feb 28 04:11:51 2002 UTC (22 years, 1 month ago) by nathanw
Branch: nathanw_sa
Changes since 1.1.2.1: +669 -0 lines
Diff to previous 1.1.2.1 (colored) to branchpoint 1.1 (colored) to selected 1.8.2.1 (colored)

Catch up to -current.

Revision 1.1.14.1, Sun Feb 10 01:57:51 2002 UTC (22 years, 2 months ago) by jdolecek
Branch: kqueue
Changes since 1.1: +0 -669 lines
FILE REMOVED

file clock.c was added on branch kqueue on 2002-06-23 17:41:20 +0000

Revision 1.1.2.1, Sun Feb 10 01:57:51 2002 UTC (22 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.1: +0 -669 lines
FILE REMOVED

file clock.c was added on branch nathanw_sa on 2002-02-28 04:11:51 +0000

Revision 1.1 / (download) - annotate - [select for diffs], Sun Feb 10 01:57:51 2002 UTC (22 years, 2 months ago) by thorpej
Branch: 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, gehenna-devsw-base, gehenna-devsw, eeh-devprop-base, eeh-devprop
Branch point for: nathanw_sa, kqueue
Diff to selected 1.8.2.1 (colored)

Kill arch/arm32.  The last platform supported there, Shark, is now
in arch/shark.

(NOTE: arch/dnard, a premature move to split out the Shark support
code, is going to be deleted.  It has bit-rotted.)

This form allows you to request diff's 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.




CVSweb <webmaster@jp.NetBSD.org>