Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.55.8.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:46 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.55: +3 -6
lines
Diff to previous 1.55 (colored) next main 1.56 (colored)
sync with head
Revision 1.56.2.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:39 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.56: +2 -5
lines
Diff to previous 1.56 (colored) next main 1.57 (colored)
merge to -current.
Revision 1.57 / (download) - annotate - [select for diffs], Thu Feb 2 19:43:05 2012 UTC (3 months, 3 weeks ago) by tls
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.56: +2 -5
lines
Diff to previous 1.56 (colored)
Entropy-pool implementation move and cleanup. 1) Move core entropy-pool code and source/sink/sample management code to sys/kern from sys/dev. 2) Remove use of NRND as test for presence of entropy-pool code throughout source tree. 3) Remove use of RND_ENABLED in device drivers as microoptimization to avoid expensive operations on disabled entropy sources; make the rnd_add calls do this directly so all callers benefit. 4) Fix bug in recent rnd_add_data()/rnd_add_uint32() changes that might have lead to slight entropy overestimation for some sources. 5) Add new source types for environmental sensors, power sensors, VM system events, and skew between clocks, with a sample implementation for each. ok releng to go in before the branch due to the difficulty of later pullup (widespread #ifdef removal and moved files). Tested with release builds on amd64 and evbarm and live testing on amd64.
Revision 1.56 / (download) - annotate - [select for diffs], Sat Nov 19 22:51:23 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.55: +2 -2
lines
Diff to previous 1.55 (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.48.40.4 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:46 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.40.3: +1 -14
lines
Diff to previous 1.48.40.3 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)
sync with head.
Revision 1.54.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:33 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.54: +1 -14
lines
Diff to previous 1.54 (colored) next main 1.55 (colored)
sync with head
Revision 1.54.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:34 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.54: +1 -14
lines
Diff to previous 1.54 (colored) next main 1.55 (colored)
Sync with HEAD.
Revision 1.55 / (download) - annotate - [select for diffs], Mon Apr 5 07:20:25 2010 UTC (2 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
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.54: +1 -14
lines
Diff to previous 1.54 (colored)
Push the bpf_ops usage back into bpf.h. Push the common ifp->if_bpf check into the inline functions as well the fourth argument for bpf_attach.
Revision 1.48.40.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:45 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.40.2: +4 -6
lines
Diff to previous 1.48.40.2 (colored) to branchpoint 1.48 (colored)
sync with head
Revision 1.54 / (download) - annotate - [select for diffs], Tue Jan 19 22:07:00 2010 UTC (2 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
uebayasi-xip-base
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.53: +4 -4
lines
Diff to previous 1.53 (colored)
Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump.
Revision 1.53 / (download) - annotate - [select for diffs], Mon Jan 18 20:45:12 2010 UTC (2 years, 4 months ago) by pooka
Branch: MAIN
Changes since 1.52: +1 -3
lines
Diff to previous 1.52 (colored)
Remove unused macro definition (the NetBSD version would just not go through a compiler).
Revision 1.48.40.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:34 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.40.1: +2 -2
lines
Diff to previous 1.48.40.1 (colored) to branchpoint 1.48 (colored)
sync with head
Revision 1.50.10.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:25 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.50: +6 -6
lines
Diff to previous 1.50 (colored) next main 1.51 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.52 / (download) - annotate - [select for diffs], Wed May 6 10:34:32 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,
matt-premerge-20091211,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base
Changes since 1.51: +2 -2
lines
Diff to previous 1.51 (colored)
struct device * -> device_t, no functional changes intended.
Revision 1.48.40.1 / (download) - annotate - [select for diffs], Mon May 4 08:12:56 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48: +6 -34
lines
Diff to previous 1.48 (colored)
sync with head.
Revision 1.50.4.1 / (download) - annotate - [select for diffs], Tue Apr 28 07:35:56 2009 UTC (3 years ago) by skrll
Branch: nick-hppapmap
Changes since 1.50: +5 -5
lines
Diff to previous 1.50 (colored) next main 1.51 (colored)
Sync with HEAD.
Revision 1.51 / (download) - annotate - [select for diffs], Sun Mar 29 05:26:43 2009 UTC (3 years, 1 month ago) by dholland
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base
Changes since 1.50: +5 -5
lines
Diff to previous 1.50 (colored)
Merge patch from PR 12605, which tidies up allocation of transmit DMA maps. Generalize it to also tidy up allocation of receive DMA maps. And change a few of the symbol names involved to (1) make sure all uses have been fixed and (2) make it clearer what's actually going on. Previously the driver was using DMA maps off the free list without fully allocating them, apparently in order to save two or three lines releasing them on error paths. According to the submitter of the PR (H.Saito) this was causing it to reuse a map already in use when under load, resulting in panics. I'm not sure if that ought to have been possible or if it reflected an interrupt handling bug somewhere else, but the change is an improvement regardless, so we'll go with it. Compile-tested only, but I've crosschecked the diffs and all that and it's a pretty noninvasive change. (Is anyone actually using this driver rather than tlp?)
Revision 1.48.36.2 / (download) - annotate - [select for diffs], Sun Jun 29 09:33:09 2008 UTC (3 years, 10 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.36.1: +1 -1
lines
Diff to previous 1.48.36.1 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)
Sync with HEAD.
Revision 1.48.42.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:31:11 2008 UTC (3 years, 11 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.48: +2 -30
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.49.2.1 / (download) - annotate - [select for diffs], Wed Jun 18 16:33:18 2008 UTC (3 years, 11 months ago) by simonb
Branch: simonb-wapbl
Changes since 1.49: +2 -2
lines
Diff to previous 1.49 (colored) next main 1.50 (colored)
Sync with head.
Revision 1.48.38.2 / (download) - annotate - [select for diffs], Tue Jun 17 09:14:41 2008 UTC (3 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.48.38.1: +2 -2
lines
Diff to previous 1.48.38.1 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)
sync with head.
Revision 1.50 / (download) - annotate - [select for diffs], Thu Jun 12 22:44:47 2008 UTC (3 years, 11 months ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-base4,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
simonb-wapbl-nbase,
simonb-wapbl-base,
nick-hppapmap-base2,
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,
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,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-audiomp2-base,
ad-audiomp2
Branch point for: nick-hppapmap,
jym-xensuspend
Changes since 1.49: +2 -2
lines
Diff to previous 1.49 (colored)
use device_lookup_private to get softc
Revision 1.48.38.1 / (download) - annotate - [select for diffs], Wed Jun 4 02:05:14 2008 UTC (3 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.48: +1 -29
lines
Diff to previous 1.48 (colored)
sync with head
Revision 1.48.36.1 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:38 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48: +1 -29
lines
Diff to previous 1.48 (colored)
Sync with HEAD.
Revision 1.49 / (download) - annotate - [select for diffs], Thu May 22 01:27:32 2008 UTC (4 years ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pf42-base3
Branch point for: simonb-wapbl
Changes since 1.48: +1 -29
lines
Diff to previous 1.48 (colored)
Delete non-illuminating #ifdef-OTHER_OPERATING_SYSTEM code that confuses ctags(1).
Revision 1.40.4.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:36:55 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.40.4.2: +6 -6
lines
Diff to previous 1.40.4.2 (colored) to branchpoint 1.40 (colored) next main 1.41 (colored)
sync with head.
Revision 1.46.4.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:17 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.46: +6 -6
lines
Diff to previous 1.46 (colored) next main 1.47 (colored)
Sync with HEAD.
Revision 1.48 / (download) - annotate - [select for diffs], Sun Mar 4 17:55:10 2007 UTC (5 years, 2 months ago) by chris
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-pf42-baseX,
yamt-pf42-base2,
yamt-pf42-base,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
yamt-idlelwp-base8,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking2,
vmlocking-nbase,
vmlocking-base,
vmlocking,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
reinoud-bufcleanup,
nick-net80211-sync-base,
nick-net80211-sync,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
mjf-ufs-trans-base,
mjf-ufs-trans,
mjf-devfs-base,
mjf-devfs,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-nbase,
matt-armv6-base,
matt-armv6,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
jmcneill-pm-base,
jmcneill-pm,
jmcneill-base,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
bouyer-xenamd64,
ad-socklock-base1
Branch point for: yamt-pf42,
yamt-nfs-mp,
wrstuden-revivesa,
mjf-devfs2
Changes since 1.47: +5 -5
lines
Diff to previous 1.47 (colored)
Fix caddr_t fallout for cats kernel builds.
Revision 1.47 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:20 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.46: +6 -6
lines
Diff to previous 1.46 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.45.6.1 / (download) - annotate - [select for diffs], Fri Jan 12 00:57:41 2007 UTC (5 years, 4 months ago) by ad
Branch: newlock2
Changes since 1.45: +53 -33
lines
Diff to previous 1.45 (colored) next main 1.46 (colored)
Sync with head.
Revision 1.40.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:44 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.40.4.1: +53 -33
lines
Diff to previous 1.40.4.1 (colored) to branchpoint 1.40 (colored)
sync with head.
Revision 1.45.8.1 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:43 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.45: +53 -33
lines
Diff to previous 1.45 (colored) next main 1.46 (colored)
sync with head.
Revision 1.46 / (download) - annotate - [select for diffs], Wed Nov 22 01:54:09 2006 UTC (5 years, 6 months ago) by uebayasi
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.45: +53 -33
lines
Diff to previous 1.45 (colored)
Use C99 initializers where needed.
Revision 1.43.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:17 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.43: +4 -4
lines
Diff to previous 1.43 (colored) next main 1.44 (colored)
sync with head
Revision 1.44.2.1 / (download) - annotate - [select for diffs], Mon Jun 26 12:51:21 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
sync with head.
Revision 1.40.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:04 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.40: +6 -6
lines
Diff to previous 1.40 (colored)
sync with head.
Revision 1.44.8.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:35 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
Sync with head.
Revision 1.43.6.2 / (download) - annotate - [select for diffs], Thu Jun 1 22:36:44 2006 UTC (5 years, 11 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.43.6.1: +2 -2
lines
Diff to previous 1.43.6.1 (colored) next main 1.44 (colored)
Sync with head.
Revision 1.45 / (download) - annotate - [select for diffs], Mon May 29 15:12:57 2006 UTC (5 years, 11 months ago) by drochner
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
gdamore-uart-base,
gdamore-uart,
chap-midi-nbase,
chap-midi-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored)
gcc4 found that it can't store #define TULIP_TXTIMER 4 in u_int32_t tulip_txtimer : 2; /* transmission timer */ gcc4 appears to be right. "tulip_txtimer" is purely used by software, so give it the full integer. (Appearently the txtimer could never work.)
Revision 1.43.6.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:14 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (colored)
Sync with head.
Revision 1.43.2.1 / (download) - annotate - [select for diffs], Sat Feb 18 15:39:07 2006 UTC (6 years, 3 months ago) by yamt
Branch: yamt-uio_vmspace
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (colored) next main 1.44 (colored)
sync with head.
Revision 1.44 / (download) - annotate - [select for diffs], Thu Feb 16 20:17:19 2006 UTC (6 years, 3 months ago) by perry
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base,
peter-altq,
elad-kernelauth-base,
elad-kernelauth
Branch point for: yamt-pdpolicy,
chap-midi
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (colored)
Change "inline" back to "__inline" in .h files -- C99 is still too new, and some apps compile things in C89 mode. C89 keywords stay. As per core@.
Revision 1.43 / (download) - annotate - [select for diffs], Sat Dec 24 23:41:34 2005 UTC (6 years, 5 months ago) by perry
Branch: MAIN
Branch point for: yamt-uio_vmspace,
simonb-timecounters,
rpaulo-netinet-merge-pcb
Changes since 1.42: +3 -3
lines
Diff to previous 1.42 (colored)
__inline__ -> inline
Revision 1.42 / (download) - annotate - [select for diffs], Sat Dec 24 23:29:06 2005 UTC (6 years, 5 months ago) by perry
Branch: MAIN
Changes since 1.41: +3 -3
lines
Diff to previous 1.41 (colored)
__asm__ -> __asm
Revision 1.41 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:49 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.40: +1 -1
lines
Diff to previous 1.40 (colored)
merge ktrace-lwp.
Revision 1.38.14.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:06 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.38: +8 -8
lines
Diff to previous 1.38 (colored) next main 1.39 (colored)
sync with -current
Revision 1.38.16.2 / (download) - annotate - [select for diffs], Sat Mar 19 08:35:11 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.38.16.1: +7 -7
lines
Diff to previous 1.38.16.1 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.38.6.2 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:18 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.38.6.1: +7 -7
lines
Diff to previous 1.38.6.1 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored)
Sync with HEAD. Hi Perry!
Revision 1.40 / (download) - annotate - [select for diffs], Sun Feb 27 00:27:32 2005 UTC (7 years, 2 months ago) by perry
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,
yamt-km-base4,
yamt-km-base3,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
ktrace-lwp-base,
kent-audio2-base
Branch point for: yamt-lazymbuf
Changes since 1.39: +7 -7
lines
Diff to previous 1.39 (colored)
nuke trailing whitespace
Revision 1.38.6.1 / (download) - annotate - [select for diffs], Tue Feb 15 21:33:13 2005 UTC (7 years, 3 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.38: +2 -2
lines
Diff to previous 1.38 (colored)
Sync with HEAD.
Revision 1.38.16.1 / (download) - annotate - [select for diffs], Sat Feb 12 18:17:47 2005 UTC (7 years, 3 months ago) by yamt
Branch: yamt-km
Changes since 1.38: +2 -2
lines
Diff to previous 1.38 (colored)
sync with head.
Revision 1.39 / (download) - annotate - [select for diffs], Fri Feb 11 06:21:21 2005 UTC (7 years, 3 months ago) by simonb
Branch: MAIN
CVS Tags: yamt-km-base2,
matt-timespec
Changes since 1.38: +2 -2
lines
Diff to previous 1.38 (colored)
White space nit- don't put a space before/after increment/decrement operators.
Revision 1.35.6.2 / (download) - annotate - [select for diffs], Fri Oct 18 02:43:03 2002 UTC (9 years, 7 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.35.6.1: +1 -2
lines
Diff to previous 1.35.6.1 (colored) to branchpoint 1.35 (colored) next main 1.36 (colored)
Catch up to -current.
Revision 1.36.2.1 / (download) - annotate - [select for diffs], Thu Oct 10 18:40:40 2002 UTC (9 years, 7 months ago) by jdolecek
Branch: kqueue
Changes since 1.36: +1 -2
lines
Diff to previous 1.36 (colored) next main 1.37 (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.38 / (download) - annotate - [select for diffs], Tue Oct 1 01:39:38 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
CVS Tags: 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,
nathanw_sa_before_merge,
nathanw_sa_base,
kqueue-beforemerge,
kqueue-base,
kqueue-aftermerge,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
fvdl_fs64_base
Branch point for: yamt-km,
ktrace-lwp,
kent-audio2
Changes since 1.37: +1 -2
lines
Diff to previous 1.37 (colored)
Remove uneecessary extern decl of de_ca.
Revision 1.37 / (download) - annotate - [select for diffs], Fri Sep 27 20:40:05 2002 UTC (9 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
Declare all cfattach structures const.
Revision 1.35.6.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:04:40 2001 UTC (10 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.35: +2 -2
lines
Diff to previous 1.35 (colored)
Catch up to -current.
Revision 1.36 / (download) - annotate - [select for diffs], Wed Jun 13 10:46:04 2001 UTC (10 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
thorpej-devvp-base,
thorpej-devvp,
pre-chs-ubcperf,
post-chs-ubcperf,
newlock-base,
newlock,
netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
ifpoll-base,
ifpoll,
gehenna-devsw-base,
gehenna-devsw,
eeh-devprop-base,
eeh-devprop
Branch point for: kqueue
Changes since 1.35: +2 -2
lines
Diff to previous 1.35 (colored)
withough -> without
Revision 1.32.8.1 / (download) - annotate - [select for diffs], Mon Nov 20 11:42:21 2000 UTC (11 years, 6 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.32: +7 -5
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
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.35 / (download) - annotate - [select for diffs], Wed May 3 20:52:29 2000 UTC (12 years ago) by thorpej
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base,
netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2,
netbsd-1-5,
minoura-xpg4dl-base,
minoura-xpg4dl
Branch point for: nathanw_sa
Changes since 1.34: +4 -4
lines
Diff to previous 1.34 (colored)
`typedef void ifnet_ret_t;' isn't valid C -- use #define, instead.
Revision 1.34 / (download) - annotate - [select for diffs], Thu Mar 23 07:01:38 2000 UTC (12 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.33: +3 -1
lines
Diff to previous 1.33 (colored)
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.33 / (download) - annotate - [select for diffs], Sat Jan 15 18:39:32 2000 UTC (12 years, 4 months ago) by matt
Branch: MAIN
CVS Tags: chs-ubc2-newbase
Changes since 1.32: +2 -2
lines
Diff to previous 1.32 (colored)
Fixes for 21143 and MII in full-duplex mode.
Revision 1.32 / (download) - annotate - [select for diffs], Thu Apr 1 14:55:25 1999 UTC (13 years, 1 month ago) by tsubai
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
wrstuden-devbsize,
netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
netbsd-1-4,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame,
fvdl-softdep-base,
fvdl-softdep,
comdex-fall-1999-base,
comdex-fall-1999,
chs-ubc2-base,
chs-ubc2
Branch point for: thorpej_scsipi
Changes since 1.31: +2 -2
lines
Diff to previous 1.31 (colored)
Fix typo. (From PR 7027)
Revision 1.31.4.1 / (download) - annotate - [select for diffs], Fri Dec 11 04:53:02 1998 UTC (13 years, 5 months ago) by kenh
Branch: kenh-if-detach
Changes since 1.31: +4 -4
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
The beginnings of interface detach support. Still some bugs, but mostly works for me. This work was originally by Bill Studenmund, and cleaned up by me.
Revision 1.31 / (download) - annotate - [select for diffs], Tue Sep 29 22:40:52 1998 UTC (13 years, 7 months ago) by matt
Branch: MAIN
CVS Tags: kenh-if-detach-base,
chs-ubc-base,
chs-ubc
Branch point for: kenh-if-detach
Changes since 1.30: +2 -2
lines
Diff to previous 1.30 (colored)
Invert the RXCOPY test. Note that most new platforms will not have relaxed alignment so the de driver should just work on them.
Revision 1.30 / (download) - annotate - [select for diffs], Tue Sep 15 17:26:47 1998 UTC (13 years, 8 months ago) by matt
Branch: MAIN
Changes since 1.29: +2 -1
lines
Diff to previous 1.29 (colored)
Fix a problem where txput could "lose" dmamaps if it couldn't actually place the packet into the ring for some reason.
Revision 1.29 / (download) - annotate - [select for diffs], Tue Sep 15 02:39:03 1998 UTC (13 years, 8 months ago) by matt
Branch: MAIN
Changes since 1.28: +2 -1
lines
Diff to previous 1.28 (colored)
This commit fixes two bugs in the de driver. The first is that the descriptor count gets miscounted on txprobes. The second (and more important) is that transmit stalls should now be fixed. The problem was not due to lack of ring resources but dmamaps. When Jason changed the driver to use pre-allocated maps (instead of the dynamic ones I used), and when there were no more maps, the driver just gave up instead of calling tx_intr to free any transmitted but unreclaimed dma maps. Since there was nothing being transmitted, no transmit interrupts would fire to restore things (and OACTIVE prevented other transmits from happenning). So it stayed starved until another interrupt cause (like a received packet) "woke" it up.
Revision 1.28 / (download) - annotate - [select for diffs], Thu Aug 13 02:10:53 1998 UTC (13 years, 9 months ago) by eeh
Branch: MAIN
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored)
Merge paddr_t changes into the main branch.
Revision 1.27.2.1 / (download) - annotate - [select for diffs], Thu Jul 30 14:04:01 1998 UTC (13 years, 9 months ago) by eeh
Branch: eeh-paddr_t
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored) next main 1.28 (colored)
Split vm_offset_t and vm_size_t into paddr_t, psize_t, vaddr_t, and vsize_t.
Revision 1.27 / (download) - annotate - [select for diffs], Mon May 25 22:13:28 1998 UTC (14 years ago) by mark
Branch: MAIN
CVS Tags: eeh-paddr_t-base
Branch point for: eeh-paddr_t
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
Define TULIP_COPY_RXDATA for arm32 as well as alpha.
Revision 1.26 / (download) - annotate - [select for diffs], Wed Feb 11 01:28:29 1998 UTC (14 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.25: +1 -3
lines
Diff to previous 1.25 (colored)
Don't try to dynamically create and destroy DMA maps. Instead, keep it simple, and allocate one for each transmit and receive descriptor. In addition to being simpler and faster, this fixes a serious memory leak in the transmit path.
Revision 1.25 / (download) - annotate - [select for diffs], Sat Feb 7 21:13:34 1998 UTC (14 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.24: +3 -2
lines
Diff to previous 1.24 (colored)
Create RX DMA maps with ALLOCNOW. These maps are essentially always loaded, and recovering from a resource shortage error is much harder in the receive case.
Revision 1.24 / (download) - annotate - [select for diffs], Sat Feb 7 10:27:15 1998 UTC (14 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.23: +3 -3
lines
Diff to previous 1.23 (colored)
Use BUS_DMA_NOWAIT where appropriate. Don't create DMA maps with BUS_DMA_ALLOCNOW.
Revision 1.23 / (download) - annotate - [select for diffs], Fri Feb 6 20:57:19 1998 UTC (14 years, 3 months ago) by matt
Branch: MAIN
Changes since 1.22: +83 -5
lines
Diff to previous 1.22 (colored)
A version of the de driver which does bus_dma. Note that it has not been tested on any other platform other than i386. Use of bus_dma(9) can be turned by defining TULIP_BUS_DMA_NOTX and TULIP_BUS_DMA_NORX. These allow one to determine if the problem is in the transmit or receive path. A problem reported by mycroft is also fixed.
Revision 1.22 / (download) - annotate - [select for diffs], Mon Oct 20 14:33:01 1997 UTC (14 years, 7 months ago) by matt
Branch: MAIN
CVS Tags: netbsd-1-3-base,
netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA,
netbsd-1-3
Changes since 1.21: +2 -1
lines
Diff to previous 1.21 (colored)
21142 / 21143 chips always use ISVSROM format. (print out message is SROM checksum is invalid).
Revision 1.21 / (download) - annotate - [select for diffs], Thu Oct 16 22:02:32 1997 UTC (14 years, 7 months ago) by matt
Branch: MAIN
Changes since 1.20: +2 -1
lines
Diff to previous 1.20 (colored)
Fix pr's port-i386/4127 kern/4190 kern/3700.
Revision 1.20 / (download) - annotate - [select for diffs], Wed Oct 15 19:07:18 1997 UTC (14 years, 7 months ago) by matt
Branch: MAIN
Changes since 1.19: +4 -2
lines
Diff to previous 1.19 (colored)
Fix media/console interaction problem on Alpha. Fix 21142/21143 problems with 10Mb/s links.
Revision 1.19 / (download) - annotate - [select for diffs], Wed Oct 15 06:12:44 1997 UTC (14 years, 7 months ago) by explorer
Branch: MAIN
Changes since 1.18: +7 -1
lines
Diff to previous 1.18 (colored)
Add and/or update rnd_*() hooks
Revision 1.14.2.2 / (download) - annotate - [select for diffs], Tue Oct 14 10:24:25 1997 UTC (14 years, 7 months ago) by thorpej
Branch: marc-pcmcia
Changes since 1.14.2.1: +4 -1
lines
Diff to previous 1.14.2.1 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored)
Update marc-pcmcia branch from trunk.
Revision 1.18 / (download) - annotate - [select for diffs], Mon Oct 13 00:47:45 1997 UTC (14 years, 7 months ago) by explorer
Branch: MAIN
CVS Tags: marc-pcmcia-base
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
o Make usage of /dev/random dependant on pseudo-device rnd # /dev/random and in-kernel generator in config files. o Add declaration to all architectures. o Clean up copyright message in rnd.c, rnd.h, and rndpool.c to include that this code is derived in part from Ted Tyso's linux code.
Revision 1.17 / (download) - annotate - [select for diffs], Fri Oct 10 01:19:43 1997 UTC (14 years, 7 months ago) by explorer
Branch: MAIN
Changes since 1.16: +4 -1
lines
Diff to previous 1.16 (colored)
Add hooks to insert timing info into the random system
Revision 1.14.2.1 / (download) - annotate - [select for diffs], Wed Aug 27 23:32:31 1997 UTC (14 years, 9 months ago) by thorpej
Branch: marc-pcmcia
Changes since 1.14: +87 -16
lines
Diff to previous 1.14 (colored)
Update marc-pcmcia branch from trunk.
Revision 1.16 / (download) - annotate - [select for diffs], Mon Aug 25 19:02:19 1997 UTC (14 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-signal-base,
thorpej-signal
Changes since 1.15: +2 -0
lines
Diff to previous 1.15 (colored)
Add RCS tags that got lost.
Revision 1.15 / (download) - annotate - [select for diffs], Mon Aug 25 18:56:50 1997 UTC (14 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.14: +86 -17
lines
Diff to previous 1.14 (colored)
Merge with 970703 snapshot of Matt Thomas's de driver.
Revision 1.1.1.8 / (download) - annotate - [select for diffs] (vendor branch), Mon Aug 25 18:37:56 1997 UTC (14 years, 9 months ago) by thorpej
Branch: thomas
CVS Tags: de-970703
Changes since 1.1.1.7: +85 -9
lines
Diff to previous 1.1.1.7 (colored)
Import the 970703 snapshot of Matt Thomas's "de" driver.
Revision 1.14 / (download) - annotate - [select for diffs], Sat Jul 19 09:49:45 1997 UTC (14 years, 10 months ago) by cgd
Branch: MAIN
CVS Tags: marc-pcmcia-bp
Branch point for: marc-pcmcia
Changes since 1.13: +5 -1
lines
Diff to previous 1.13 (colored)
don't expect/provide pci_decompose_tag to be a MI, public function. It wasn't intended to be to begin with, and uses of it (e.g. the one in the 'de' driver) are quite likely to be incorrect.
Revision 1.13 / (download) - annotate - [select for diffs], Sun Jun 8 18:46:36 1997 UTC (14 years, 11 months ago) by thorpej
Branch: MAIN
CVS Tags: bouyer-scsipi
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored)
Put back Matt Thomas's revision ID, per PR 3723, submitted by enami tsugutomo <enami@ba2.so-net.or.jp>.
Revision 1.12 / (download) - annotate - [select for diffs], Fri Jun 6 23:15:01 1997 UTC (14 years, 11 months ago) by mellon
Branch: MAIN
Changes since 1.11: +32 -15
lines
Diff to previous 1.11 (colored)
Clean up conflicts during merge (thomas de-970603)
Revision 1.1.1.7 / (download) - annotate - [select for diffs] (vendor branch), Fri Jun 6 22:38:10 1997 UTC (14 years, 11 months ago) by mellon
Branch: thomas
CVS Tags: thomas-de-970603
Changes since 1.1.1.6: +31 -14
lines
Diff to previous 1.1.1.6 (colored)
Matt Thomas's if_de driver, 1997/6/3 snapshot
Revision 1.11 / (download) - annotate - [select for diffs], Wed May 7 18:45:06 1997 UTC (15 years ago) by thorpej
Branch: MAIN
Changes since 1.10: +4 -2
lines
Diff to previous 1.10 (colored)
Merge 970327 "de" update.
Revision 1.1.1.6 / (download) - annotate - [select for diffs] (vendor branch), Wed May 7 18:41:40 1997 UTC (15 years ago) by thorpej
Branch: thomas
CVS Tags: de-970327
Changes since 1.1.1.5: +3 -1
lines
Diff to previous 1.1.1.5 (colored)
Update from Matt Thomas (oof, this has been on my todo list for a while!) This adds support for the Cogent 4-port cards.
Revision 1.10 / (download) - annotate - [select for diffs], Sun Apr 13 19:48:50 1997 UTC (15 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.9: +4 -3
lines
Diff to previous 1.9 (colored)
clean up space/tag comments
Revision 1.9 / (download) - annotate - [select for diffs], Wed Mar 26 01:33:35 1997 UTC (15 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.8: +5 -3
lines
Diff to previous 1.8 (colored)
Resolve conflicts from merge.
Revision 1.1.1.5 / (download) - annotate - [select for diffs] (vendor branch), Wed Mar 26 01:30:02 1997 UTC (15 years, 2 months ago) by thorpej
Branch: thomas
CVS Tags: de-970325
Changes since 1.1.1.4: +5 -3
lines
Diff to previous 1.1.1.4 (colored)
Update from Matt Thomas <matt@3am-software.com>. Fixes a couple of media-related bugs, and now properly groks Asante versions of Tulip cards.
Revision 1.8 / (download) - annotate - [select for diffs], Sun Mar 23 09:37:31 1997 UTC (15 years, 2 months ago) by veego
Branch: MAIN
Changes since 1.7: +4 -2
lines
Diff to previous 1.7 (colored)
Resolve conflicts from merge.
Revision 1.1.1.4 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 23 09:28:13 1997 UTC (15 years, 2 months ago) by veego
Branch: thomas
CVS Tags: de-970322
Changes since 1.1.1.3: +4 -2
lines
Diff to previous 1.1.1.3 (colored)
New DEC Tulip driver from Matt Thomas <matt@3am-software.com>. - Fix the mbuf leak while probing. - Stop probing after saying "autosense problem" if the interface is down.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Mar 19 02:37:39 1997 UTC (15 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.6: +44 -27
lines
Diff to previous 1.6 (colored)
Resolve conflicts from merge.
Revision 1.1.1.3 / (download) - annotate - [select for diffs] (vendor branch), Wed Mar 19 02:31:16 1997 UTC (15 years, 2 months ago) by thorpej
Branch: thomas
CVS Tags: de-970318
Changes since 1.1.1.2: +49 -6
lines
Diff to previous 1.1.1.2 (colored)
Update from Matt Thomas. Fixes several media-selection and full-duplex related bugs. Also, fix a bug that was causing hangs and machine-checks on Alpha systems in some cases.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Mar 17 03:44:51 1997 UTC (15 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.5: +53 -40
lines
Diff to previous 1.5 (colored)
Resolve conflicts from merge.
Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Mon Mar 17 03:41:26 1997 UTC (15 years, 2 months ago) by thorpej
Branch: thomas
CVS Tags: de-970313a
Changes since 1.1.1.1: +40 -21
lines
Diff to previous 1.1.1.1 (colored)
New DEC Tulip driver from Matt Thomas <matt@3am-software.com>. Highligts: - Supports media selection via if_media - Support for Asante and better support for ZNYX boards - Support for 21143 chips (such as found on the DE500-BA) - Should be able to pick the BNC on the on-board 21040-based interface in DEC Multias. - Squish a bug here and there.
Revision 1.5 / (download) - annotate - [select for diffs], Sat Mar 15 18:11:57 1997 UTC (15 years, 2 months ago) by is
Branch: MAIN
Changes since 1.4: +36 -4
lines
Diff to previous 1.4 (colored)
New ARP system, supports IPv4 over any hardware link. Some of the stuff (e.g., rarpd, bootpd, dhcpd etc., libsa) still will only support Ethernet. Tcpdump itself should be ok, but libpcap needs lot of work. For the detailed change history, look at the commit log entries for the is-newarp branch.
Revision 1.3.4.2 / (download) - annotate - [select for diffs], Wed Mar 12 16:20:06 1997 UTC (15 years, 2 months ago) by is
Branch: is-newarp
Changes since 1.3.4.1: +3 -3
lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
Merge in changes from The Trunk
Revision 1.4 / (download) - annotate - [select for diffs], Thu Mar 6 22:32:24 1997 UTC (15 years, 2 months ago) by thorpej
Branch: MAIN
CVS Tags: is-newarp-before-merge
Changes since 1.3: +3 -3
lines
Diff to previous 1.3 (colored)
Patch from Matt Thomas to deal with the fact that Pass 2.[012] of the 21140A-A[CDE] have a buggy receiver which may hand and/or corrupt data on receive overflows.
Revision 1.3.4.1 / (download) - annotate - [select for diffs], Thu Feb 27 17:14:09 1997 UTC (15 years, 3 months ago) by is
Branch: is-newarp
Changes since 1.3: +36 -4
lines
Diff to previous 1.3 (colored)
This is a maze of twisty little #ifdef's., all different. I hope I didn't break anything when converting it.
Revision 1.3 / (download) - annotate - [select for diffs], Mon Jan 13 00:15:31 1997 UTC (15 years, 4 months ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-setroot,
mrg-vm-swap,
is-newarp-base
Branch point for: is-newarp
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
Fix a couple of minor nits so that this compiles on the alpha. Noticed by Matt Jacob (mjacob@feral.com).
Revision 1.2 / (download) - annotate - [select for diffs], Sat Jan 11 04:47:36 1997 UTC (15 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.1: +2 -0
lines
Diff to previous 1.1 (colored)
Merge into mainline, tidy up some debug code.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Jan 11 04:30:07 1997 UTC (15 years, 4 months ago) by thorpej
Branch: thomas
CVS Tags: de-961217
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Update from Matt Thomas <matt@3am-software.com>. Supports more Tulip-based cards, including new SMC and Kingston cards.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Jan 11 04:30:07 1997 UTC (15 years, 4 months ago) by thorpej
Branch: MAIN
Initial revision