Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.25.8.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:58 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.25: +5 -8
lines
Diff to previous 1.25 (colored) next main 1.26 (colored)
sync with head
Revision 1.26.2.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:53 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.26: +3 -5
lines
Diff to previous 1.26 (colored) next main 1.27 (colored)
merge to -current.
Revision 1.27 / (download) - annotate - [select for diffs], Mon Jan 30 19:41:23 2012 UTC (3 months, 3 weeks ago) by drochner
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
HEAD
Changes since 1.26: +3 -5
lines
Diff to previous 1.26 (colored)
Use pci_aprint_devinfo(9) instead of pci_devinfo+aprint_{normal,naive}
where it looks straightforward, and pci_aprint_devinfo_fancy in a few
others where drivers want to supply their own device names instead
of the pcidevs generated one. More complicated cases, where names
are composed at runtime, are left alone for now. It certainly makes
sense to simplify the drivers here rather than inventing a catch-all API.
This should serve as as example for new drivers, and also ensure
consistent output in the AB_QUIET ("boot -q") case. Also, it avoids
excessive stack usage where drivers attach child devices because the
buffer for the device name is not kept on the local stack anymore.
Revision 1.26 / (download) - annotate - [select for diffs], Sat Nov 19 22:51:24 2011 UTC (6 months ago) by tls
Branch: MAIN
CVS Tags: jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base
Branch point for: jmcneill-usbmp
Changes since 1.25: +4 -5
lines
Diff to previous 1.25 (colored)
First step of random number subsystem rework described in <20111022023242.BA26F14A158@mail.netbsd.org>. This change includes the following: An initial cleanup and minor reorganization of the entropy pool code in sys/dev/rnd.c and sys/dev/rndpool.c. Several bugs are fixed. Some effort is made to accumulate entropy more quickly at boot time. A generic interface, "rndsink", is added, for stream generators to request that they be re-keyed with good quality entropy from the pool as soon as it is available. The arc4random()/arc4randbytes() implementation in libkern is adjusted to use the rndsink interface for rekeying, which helps address the problem of low-quality keys at boot time. An implementation of the FIPS 140-2 statistical tests for random number generator quality is provided (libkern/rngtest.c). This is based on Greg Rose's implementation from Qualcomm. A new random stream generator, nist_ctr_drbg, is provided. It is based on an implementation of the NIST SP800-90 CTR_DRBG by Henric Jungheim. This generator users AES in a modified counter mode to generate a backtracking-resistant random stream. An abstraction layer, "cprng", is provided for in-kernel consumers of randomness. The arc4random/arc4randbytes API is deprecated for in-kernel use. It is replaced by "cprng_strong". The current cprng_fast implementation wraps the existing arc4random implementation. The current cprng_strong implementation wraps the new CTR_DRBG implementation. Both interfaces are rekeyed from the entropy pool automatically at intervals justifiable from best current cryptographic practice. In some quick tests, cprng_fast() is about the same speed as the old arc4randbytes(), and cprng_strong() is about 20% faster than rnd_extract_data(). Performance is expected to improve. The AES code in src/crypto/rijndael is no longer an optional kernel component, as it is required by cprng_strong, which is not an optional kernel component. The entropy pool output is subjected to the rngtest tests at startup time; if it fails, the system will reboot. There is approximately a 3/10000 chance of a false positive from these tests. Entropy pool _input_ from hardware random numbers is subjected to the rngtest tests at attach time, as well as the FIPS continuous-output test, to detect bad or stuck hardware RNGs; if any are detected, they are detached, but the system continues to run. A problem with rndctl(8) is fixed -- datastructures with pointers in arrays are no longer passed to userspace (this was not a security problem, but rather a major issue for compat32). A new kernel will require a new rndctl. The sysctl kern.arandom() and kern.urandom() nodes are hooked up to the new generators, but the /dev/*random pseudodevices are not, yet. Manual pages for the new kernel interfaces are forthcoming.
Revision 1.24.4.1 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:58 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.24: +2 -4
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
sync with head
Revision 1.25 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:09 2010 UTC (18 months, 1 week ago) by uebayasi
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
jruoho-x86intr,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: yamt-pagecache
Changes since 1.24: +2 -4
lines
Diff to previous 1.24 (colored)
Don't pull in the whole uvm(9) API to access only PAGE_SIZE and some other constants. These are provided by sys/param.h now.
Revision 1.16.4.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:59 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.4.2: +4 -4
lines
Diff to previous 1.16.4.2 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
sync with head
Revision 1.24 / (download) - annotate - [select for diffs], Thu Nov 26 15:17:10 2009 UTC (2 years, 5 months ago) by njoly
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
uebayasi-xip,
matt-premerge-20091211
Branch point for: rmind-uvmplock
Changes since 1.23: +4 -4
lines
Diff to previous 1.23 (colored)
Cleanup interrupt establish error messages. Do not mix aprint_error/aprint_normal/printf calls for a single line.
Revision 1.16.4.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:40 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.4.1: +7 -8
lines
Diff to previous 1.16.4.1 (colored) to branchpoint 1.16 (colored)
sync with head
Revision 1.17.2.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:30 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.17: +56 -57
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.23 / (download) - annotate - [select for diffs], Tue May 12 08:23:01 2009 UTC (3 years ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
use device_private(). "looks good" ad@ XXX for the device_t/softc split, please check the driver that no cases have been missed.
Revision 1.22 / (download) - annotate - [select for diffs], Wed May 6 10:34:33 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.21: +6 -7
lines
Diff to previous 1.21 (colored)
struct device * -> device_t, no functional changes intended.
Revision 1.21 / (download) - annotate - [select for diffs], Wed May 6 09:25:17 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.20: +4 -4
lines
Diff to previous 1.20 (colored)
struct cfdata * -> cfdata_t, no functional changes intended.
Revision 1.16.4.1 / (download) - annotate - [select for diffs], Mon May 4 08:13:02 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16: +52 -53
lines
Diff to previous 1.16 (colored)
sync with head.
Revision 1.16.12.2 / (download) - annotate - [select for diffs], Tue Apr 28 07:35:59 2009 UTC (3 years ago) by skrll
Branch: nick-hppapmap
Changes since 1.16.12.1: +51 -51
lines
Diff to previous 1.16.12.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
Sync with HEAD.
Revision 1.20 / (download) - annotate - [select for diffs], Sat Apr 18 14:58:03 2009 UTC (3 years, 1 month ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base
Changes since 1.19: +16 -16
lines
Diff to previous 1.19 (colored)
Remove extra whitespace added by a stupid tool. XXX: more in src/sys/arch
Revision 1.19 / (download) - annotate - [select for diffs], Wed Mar 18 17:06:50 2009 UTC (3 years, 2 months ago) by cegger
Branch: MAIN
Changes since 1.18: +16 -16
lines
Diff to previous 1.18 (colored)
bcopy -> memcpy
Revision 1.18 / (download) - annotate - [select for diffs], Wed Mar 18 16:00:19 2009 UTC (3 years, 2 months ago) by cegger
Branch: MAIN
Changes since 1.17: +37 -37
lines
Diff to previous 1.17 (colored)
bzero -> memset
Revision 1.16.12.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:18:28 2009 UTC (3 years, 4 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.16: +3 -4
lines
Diff to previous 1.16 (colored)
Sync with HEAD.
Revision 1.15.6.2 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:02 2009 UTC (3 years, 4 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.15.6.1: +1 -2
lines
Diff to previous 1.15.6.1 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)
Sync with HEAD.
Revision 1.17 / (download) - annotate - [select for diffs], Fri Dec 19 18:49:38 2008 UTC (3 years, 5 months ago) by cegger
Branch: MAIN
CVS Tags: nick-hppapmap-base2,
mjf-devfs2-base
Branch point for: jym-xensuspend
Changes since 1.16: +3 -4
lines
Diff to previous 1.16 (colored)
use M_ZERO on malloc() and remove subsequent bzero().
Revision 1.15.6.1 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:44 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.15: +24 -31
lines
Diff to previous 1.15 (colored)
Sync with HEAD.
Revision 1.16 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:38 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
netbsd-5-base,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
hpcarm-cleanup-nbase,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-audiomp2-base,
ad-audiomp2
Branch point for: yamt-nfs-mp,
nick-hppapmap
Changes since 1.15: +24 -31
lines
Diff to previous 1.15 (colored)
use aprint_*_dev and device_xname
Revision 1.13.8.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:50 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.13.8.1: +17 -17
lines
Diff to previous 1.13.8.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored)
sync with HEAD
Revision 1.13.14.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:59 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.13: +19 -16
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Sync with HEAD.
Revision 1.7.2.5 / (download) - annotate - [select for diffs], Mon Feb 4 09:23:32 2008 UTC (4 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.7.2.4: +17 -17
lines
Diff to previous 1.7.2.4 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
sync with head.
Revision 1.15 / (download) - annotate - [select for diffs], Sat Feb 2 02:39:01 2008 UTC (4 years, 3 months ago) by tls
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
ad-socklock-base1
Branch point for: mjf-devfs2
Changes since 1.14: +17 -17
lines
Diff to previous 1.14 (colored)
From Darran Hunt at Coyote Point: don't truncate HMAC to 96 bits unless actually asked to. Fixed in FreeBSD a while ago, discussed on tech-kern and tech-crypto.
Revision 1.7.2.4 / (download) - annotate - [select for diffs], Mon Jan 21 09:44:14 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.7.2.3: +4 -1
lines
Diff to previous 1.7.2.3 (colored) to branchpoint 1.7 (colored)
sync with head
Revision 1.13.8.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:54:02 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.13: +4 -1
lines
Diff to previous 1.13 (colored)
sync with HEAD
Revision 1.13.16.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:47:07 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.13: +4 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Sync with head.
Revision 1.13.20.1 / (download) - annotate - [select for diffs], Thu Dec 13 21:55:53 2007 UTC (4 years, 5 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.13: +4 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Sync with HEAD
Revision 1.13.18.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:32:25 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-kmem
Changes since 1.13: +4 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
sync with head.
Revision 1.14 / (download) - annotate - [select for diffs], Tue Dec 11 11:25:53 2007 UTC (4 years, 5 months ago) by lukem
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
vmlocking2-base3,
matt-armv6-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Changes since 1.13: +4 -1
lines
Diff to previous 1.13 (colored)
use __KERNEL_RCSID()
Revision 1.7.2.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:37:24 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.7.2.2: +15 -15
lines
Diff to previous 1.7.2.2 (colored) to branchpoint 1.7 (colored)
sync with head.
Revision 1.12.4.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:08:02 2007 UTC (4 years, 10 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Sync with head.
Revision 1.13 / (download) - annotate - [select for diffs], Mon Jul 9 21:00:58 2007 UTC (4 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
vmlocking-base,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
mjf-ufs-trans-base,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
jmcneill-pm-base,
jmcneill-pm,
jmcneill-base,
hpcarm-cleanup,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
bouyer-xenamd64
Branch point for: yamt-kmem,
vmlocking2,
mjf-devfs,
matt-armv6,
bouyer-xeni386
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored)
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.12.2.1 / (download) - annotate - [select for diffs], Sun Jul 1 21:48:15 2007 UTC (4 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Adapt to callout API change.
Revision 1.11.4.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:28 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.11: +14 -14
lines
Diff to previous 1.11 (colored) next main 1.12 (colored)
Sync with HEAD.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:26 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup
Branch point for: vmlocking,
mjf-ufs-trans
Changes since 1.11: +14 -14
lines
Diff to previous 1.11 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.7.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:48 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.7.2.1: +3 -2
lines
Diff to previous 1.7.2.1 (colored) to branchpoint 1.7 (colored)
sync with head.
Revision 1.9.10.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:47 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.9.10.1: +6 -6
lines
Diff to previous 1.9.10.1 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)
sync with head.
Revision 1.9.8.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:33 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.9: +3 -2
lines
Diff to previous 1.9 (colored) next main 1.10 (colored)
Sync with head.
Revision 1.11 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:10 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
post-newlock2-merge,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
matt-nb4-arm-base,
matt-nb4-arm,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp
Changes since 1.10: +6 -6
lines
Diff to previous 1.10 (colored)
__unused removal on arguments; approved by core.
Revision 1.9.10.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:19 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.9: +7 -6
lines
Diff to previous 1.9 (colored)
sync with head
Revision 1.10 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:33 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.9: +7 -6
lines
Diff to previous 1.9 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.8.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:19 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
sync with head
Revision 1.7.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:07 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.7: +3 -3
lines
Diff to previous 1.7 (colored)
sync with head.
Revision 1.8.6.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:16 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
Sync with head.
Revision 1.8.10.1 / (download) - annotate - [select for diffs], Wed Apr 19 03:25:38 2006 UTC (6 years, 1 month ago) by elad
Branch: elad-kernelauth
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
sync with head.
Revision 1.8.8.1 / (download) - annotate - [select for diffs], Sat Apr 1 12:07:18 2006 UTC (6 years, 1 month ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
sync with head.
Revision 1.8.12.1 / (download) - annotate - [select for diffs], Fri Mar 31 09:45:23 2006 UTC (6 years, 1 month ago) by tron
Branch: peter-altq
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Mar 28 17:38:34 2006 UTC (6 years, 1 month ago) by thorpej
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
Use device_unit().
Revision 1.4.4.7 / (download) - annotate - [select for diffs], Sun Dec 11 10:28:59 2005 UTC (6 years, 5 months ago) by christos
Branch: ktrace-lwp
Changes since 1.4.4.6: +2 -2
lines
Diff to previous 1.4.4.6 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)
Sync with head.
Revision 1.7.8.1 / (download) - annotate - [select for diffs], Tue Nov 29 21:23:15 2005 UTC (6 years, 5 months ago) by yamt
Branch: yamt-readahead
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
sync with head.
Revision 1.8 / (download) - annotate - [select for diffs], Fri Nov 25 16:16:46 2005 UTC (6 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-readahead-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base,
ktrace-lwp-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
peter-altq,
elad-kernelauth
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored)
- De-couple the software crypto implementation from the rest of the framework. There is no need to waste the space if you are only using algoritms provided by hardware accelerators. To get the software implementations, add "pseudo-device swcr" to your kernel config. - Lazily initialize the opencrypto framework when crypto drivers (either hardware or swcr) register themselves with the framework.
Revision 1.4.4.6 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:03 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.4.5: +16 -27
lines
Diff to previous 1.4.4.5 (colored) to branchpoint 1.4 (colored)
Sync with HEAD. Here we go again...
Revision 1.7 / (download) - annotate - [select for diffs], Tue Jun 28 00:28:42 2005 UTC (6 years, 10 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base2,
yamt-readahead-base,
thorpej-vnode-attr-base,
thorpej-vnode-attr
Branch point for: yamt-readahead,
yamt-lazymbuf
Changes since 1.6: +13 -24
lines
Diff to previous 1.6 (colored)
Use ANSI function decls and static.
Revision 1.6 / (download) - annotate - [select for diffs], Mon May 30 04:35:23 2005 UTC (6 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.5: +4 -4
lines
Diff to previous 1.5 (colored)
- const poisoning - avoid variable shadowing.
Revision 1.4.10.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:12 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.4: +14 -14
lines
Diff to previous 1.4 (colored) next main 1.5 (colored)
sync with -current
Revision 1.4.12.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:35:12 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.4: +14 -14
lines
Diff to previous 1.4 (colored) next main 1.5 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.4.4.5 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:26 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.4.4: +14 -14
lines
Diff to previous 1.4.4.4 (colored) to branchpoint 1.4 (colored)
Sync with HEAD. Hi Perry!
Revision 1.5 / (download) - annotate - [select for diffs], Sun Feb 27 00:27:34 2005 UTC (7 years, 2 months ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
kent-audio2-base
Changes since 1.4: +14 -14
lines
Diff to previous 1.4 (colored)
nuke trailing whitespace
Revision 1.4.4.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:08 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.4.3: +1 -1
lines
Diff to previous 1.4.4.3 (colored) to branchpoint 1.4 (colored)
Fix the sync with head I botched.
Revision 1.4.4.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:06 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.4.2: +1 -1
lines
Diff to previous 1.4.4.2 (colored) to branchpoint 1.4 (colored)
Sync with HEAD.
Revision 1.4.4.2 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:12 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4.4.1: +2842 -0
lines
Diff to previous 1.4.4.1 (colored) to branchpoint 1.4 (colored)
Sync with HEAD
Revision 1.4.4.1, Thu Aug 28 19:00:52 2003 UTC (8 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4: +0 -2842
lines
FILE REMOVED
file ubsec.c was added on branch ktrace-lwp on 2004-08-03 10:49:12 +0000
Revision 1.4 / (download) - annotate - [select for diffs], Thu Aug 28 19:00:52 2003 UTC (8 years, 8 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-km-base2,
yamt-km-base,
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,
matt-timespec,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
ktrace-lwp,
kent-audio2
Changes since 1.3: +142 -89
lines
Diff to previous 1.3 (colored)
* Make matching and chip info table-driven. * Print product name and revision at attach time. * Use aprint_*().
Revision 1.3 / (download) - annotate - [select for diffs], Wed Aug 27 22:07:57 2003 UTC (8 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.2: +7 -7
lines
Diff to previous 1.2 (colored)
Fix some diagnotic printfs.
Revision 1.2 / (download) - annotate - [select for diffs], Thu Aug 21 20:00:15 2003 UTC (8 years, 9 months ago) by jonathan
Branch: MAIN
Changes since 1.1: +7 -40
lines
Diff to previous 1.1 (colored)
Remove #ifdef _OpenBSD__ code which sets the softc pointer `sc' by passing an index into ubsec_cd.cd_devs[]: that causes too much confusion with the checks that sc is non-null.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Aug 1 00:08:55 2003 UTC (8 years, 9 months ago) by jonathan
Branch: MAIN
Preliminary port of merged OpenBSD/FreeBSD ubsec driver for Bluesteel Networks/Broadcom line of cryptographic accelerators.