The NetBSD Project

CVS log for src/sys/dev/pci/if_pcn.c

[BACK] Up to [cvs.netbsd.org] / src / sys / dev / pci

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.52.8.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:48 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.52: +4 -15 lines
Diff to previous 1.52 (colored) next main 1.53 (colored)

sync with head

Revision 1.53.2.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:41 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.53: +3 -14 lines
Diff to previous 1.53 (colored) next main 1.54 (colored)

merge to -current.

Revision 1.54 / (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.53: +3 -14 lines
Diff to previous 1.53 (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.53 / (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.52: +3 -3 lines
Diff to previous 1.52 (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.49.4.2 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:43 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.49.4.1: +2 -4 lines
Diff to previous 1.49.4.1 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored)

sync with head

Revision 1.46.14.1 / (download) - annotate - [select for diffs], Sat Nov 20 17:38:28 2010 UTC (18 months ago) by riz
Branch: netbsd-5
CVS Tags: matt-nb5-pq3-base, matt-nb5-pq3
Changes since 1.46: +5 -5 lines
Diff to previous 1.46 (colored) next main 1.47 (colored)

Pull up following revision(s) (requested by hubertf in ticket #1385):
	sys/dev/pci/if_pcn.c: revision 1.51
silence "boot -z"

Revision 1.52 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:06 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.51: +2 -4 lines
Diff to previous 1.51 (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.49.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:46:25 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.49.2.1: +3 -3 lines
Diff to previous 1.49.2.1 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored)

Sync with HEAD.

Revision 1.46.4.4 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:48 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.46.4.3: +7 -9 lines
Diff to previous 1.46.4.3 (colored) to branchpoint 1.46 (colored) next main 1.47 (colored)

sync with head.

Revision 1.49.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:34 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.49: +7 -9 lines
Diff to previous 1.49 (colored)

sync with head

Revision 1.51 / (download) - annotate - [select for diffs], Fri Apr 30 21:17:19 2010 UTC (2 years ago) by hubertf
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2
Changes since 1.50: +5 -5 lines
Diff to previous 1.50 (colored)

silence "boot -z"

Revision 1.49.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:36 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.49: +4 -6 lines
Diff to previous 1.49 (colored)

Sync with HEAD.

Revision 1.50 / (download) - annotate - [select for diffs], Mon Apr 5 07:20:26 2010 UTC (2 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.49: +4 -6 lines
Diff to previous 1.49 (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.46.4.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:47 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.46.4.2: +4 -11 lines
Diff to previous 1.46.4.2 (colored) to branchpoint 1.46 (colored)

sync with head

Revision 1.49 / (download) - annotate - [select for diffs], Tue Jan 19 22:07:01 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.48: +4 -11 lines
Diff to previous 1.48 (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.46.4.2 / (download) - annotate - [select for diffs], Wed Sep 16 13:37:51 2009 UTC (2 years, 8 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.46.4.1: +17 -12 lines
Diff to previous 1.46.4.1 (colored) to branchpoint 1.46 (colored)

sync with head

Revision 1.48 / (download) - annotate - [select for diffs], Sun Sep 6 13:39:56 2009 UTC (2 years, 8 months ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, matt-premerge-20091211, jym-xensuspend-nbase
Changes since 1.47: +17 -12 lines
Diff to previous 1.47 (colored)

Replace shutdownhook_establish(9) with pmf_device_register1(9).
Tested Am79c973 PCnet-FAST III.

Revision 1.46.4.1 / (download) - annotate - [select for diffs], Sat May 16 10:41:35 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.46: +5 -5 lines
Diff to previous 1.46 (colored)

sync with head

Revision 1.46.18.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:26 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.46: +5 -5 lines
Diff to previous 1.46 (colored) next main 1.47 (colored)

Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.47 / (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-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, jymxensuspend-base, jym-xensuspend-base
Changes since 1.46: +5 -5 lines
Diff to previous 1.46 (colored)

struct device * -> device_t, no functional changes intended.

Revision 1.43.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:39 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.43.6.1: +77 -74 lines
Diff to previous 1.43.6.1 (colored) to branchpoint 1.43 (colored) next main 1.44 (colored)

Sync with HEAD.

Revision 1.46 / (download) - annotate - [select for diffs], Fri Apr 4 12:20:48 2008 UTC (4 years, 1 month ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-nfs-mp-base3, 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, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, nick-hppapmap, 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, mjf-devfs2-base, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, 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, netbsd-5, jym-xensuspend
Changes since 1.45: +79 -76 lines
Diff to previous 1.45 (colored)

Split device_t/softc with misc related changes.

Revision 1.43.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:50 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.43: +15 -15 lines
Diff to previous 1.43 (colored)

Sync with HEAD.

Revision 1.26.2.8 / (download) - annotate - [select for diffs], Mon Mar 24 09:38:51 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.7: +12 -12 lines
Diff to previous 1.26.2.7 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)

sync with head.

Revision 1.43.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:48 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.43: +15 -15 lines
Diff to previous 1.43 (colored) next main 1.44 (colored)

sync with head.

Revision 1.39.8.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:48 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.39.8.1: +24 -50 lines
Diff to previous 1.39.8.1 (colored) to branchpoint 1.39 (colored) next main 1.40 (colored)

sync with HEAD

Revision 1.45 / (download) - annotate - [select for diffs], Fri Mar 21 07:47:43 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15, yamt-lazymbuf-base14, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, ad-socklock-base1
Changes since 1.44: +12 -12 lines
Diff to previous 1.44 (colored)

pci_activate() expects for its void * argument to be a device_t,
so change the type of the argument to device_t.  Update each use
of pci_activate().

Use device_t and accessors.  Use aprint_*_dev().

Revision 1.26.2.7 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:11 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.6: +5 -5 lines
Diff to previous 1.26.2.6 (colored) to branchpoint 1.26 (colored)

sync with head.

Revision 1.44 / (download) - annotate - [select for diffs], Tue Mar 11 23:58:06 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored)

Prepare for PMF self-suspension: in the if_stop() methods, clear
IFF_UP and IFF_RUNNING before running the 'disable' step, instead
of after.  Soon I will handle the 'disable' step by calling into
PMF, which may call if_stop(, 0).  Ordinarily, that is harmless.
This change lets the if_stop() routines exit early when they find
on entry that IFF_RUNNING is not set.

Revision 1.41.2.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:57 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.41: +11 -37 lines
Diff to previous 1.41 (colored) next main 1.42 (colored)

Sync with HEAD.

Revision 1.26.2.6 / (download) - annotate - [select for diffs], Mon Jan 21 09:43:58 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.5: +11 -37 lines
Diff to previous 1.26.2.5 (colored) to branchpoint 1.26 (colored)

sync with head

Revision 1.41.8.1 / (download) - annotate - [select for diffs], Sun Jan 20 17:51:37 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.41: +11 -37 lines
Diff to previous 1.41 (colored) next main 1.42 (colored)

Sync with HEAD

Revision 1.43 / (download) - annotate - [select for diffs], Sun Jan 20 11:28:12 2008 UTC (4 years, 4 months ago) by jmmv
Branch: MAIN
CVS Tags: nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, hpcarm-cleanup-base, bouyer-xeni386-nbase, bouyer-xeni386-base
Branch point for: mjf-devfs2, keiichi-mipv6
Changes since 1.42: +5 -2 lines
Diff to previous 1.42 (colored)

Now that the driver goes through the mii_ifmedia_change indirection
instead of directly calling the pcn_79c970_mediachange function, we
must initialize sc->sc_mii.mii_ifp so that this last function is
passed a valid parameter.

Fixes a panic in pcn_79c970_mediachange that arose immediately when
trying to use this interface due to a NULL pointer dereference.
Hi dyoung@!

Revision 1.42 / (download) - annotate - [select for diffs], Sat Jan 19 22:10:18 2008 UTC (4 years, 4 months ago) by dyoung
Branch: MAIN
Changes since 1.41: +8 -37 lines
Diff to previous 1.41 (colored)

Make many ethernet drivers share the common code for MII media
handling, ether_mediastatus() and ether_mediachange().  Check for
a non-ENXIO error return from mii_mediachg().  (ENXIO indicates
that a PHY is suspended.)

This patch shrinks the source code size by 979 lines.  There was
a 5100-byte savings on the NetBSD/i386 kernel configuration, ALL.

I have made a few miscellaneous changes, too:

gem(4): use LIST_EMPTY(), LIST_FOREACH().
mtd(4): handle media ioctls, for a change!
axe(4): do not track link status in sc->axe_link any longer
nfe(4), aue(4), axe(4), udav(4), url(4): do not reset all PHYs
        on a change of media

Except for the change to mtd(4), no functional changes are intended.

XXX This patch affects more architectures than I can feasibly
XXX compile and run.  I have compiled macppc, sparc64, i386.  I
XXX have run the patches on i386 boxen with bnx(4) and sip(4).
XXX Compiling and running on evbmips (MERAKI, ADM5120) is in
XXX progress.

Revision 1.39.8.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:29:03 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.39: +5 -5 lines
Diff to previous 1.39 (colored)

sync with HEAD

Revision 1.26.2.5 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:59 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.4: +4 -4 lines
Diff to previous 1.26.2.4 (colored) to branchpoint 1.26 (colored)

sync with head.

Revision 1.39.6.2 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:15 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.39.6.1: +4 -4 lines
Diff to previous 1.39.6.1 (colored) to branchpoint 1.39 (colored) next main 1.40 (colored)

Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.

Revision 1.40.4.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:39:03 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.40: +4 -4 lines
Diff to previous 1.40 (colored) next main 1.41 (colored)

Sync with HEAD.

Revision 1.38.2.3 / (download) - annotate - [select for diffs], Tue Oct 23 20:09:00 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.38.2.2: +4 -4 lines
Diff to previous 1.38.2.2 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored)

Sync with head.

Revision 1.41 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:47 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, matt-armv6-base, jmcneill-pm-base, jmcneill-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-merge1, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: mjf-devfs, bouyer-xeni386
Changes since 1.40: +4 -4 lines
Diff to previous 1.40 (colored)

machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h

Revision 1.38.2.2 / (download) - annotate - [select for diffs], Tue Oct 9 13:41:45 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.38.2.1: +3 -3 lines
Diff to previous 1.38.2.1 (colored) to branchpoint 1.38 (colored)

Sync with head.

Revision 1.39.6.1 / (download) - annotate - [select for diffs], Mon Sep 3 16:48:17 2007 UTC (4 years, 8 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored)

Sync with HEAD.

Revision 1.26.2.4 / (download) - annotate - [select for diffs], Mon Sep 3 14:37:00 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.3: +12 -12 lines
Diff to previous 1.26.2.3 (colored) to branchpoint 1.26 (colored)

sync with head.

Revision 1.39.2.1 / (download) - annotate - [select for diffs], Mon Sep 3 10:21:01 2007 UTC (4 years, 8 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored) next main 1.40 (colored)

Sync with HEAD.

Revision 1.40 / (download) - annotate - [select for diffs], Wed Aug 29 22:33:43 2007 UTC (4 years, 8 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, nick-csl-alignment-base5
Branch point for: bouyer-xenamd64
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored)

Constify: LLADDR() -> CLLADDR().

Revision 1.38.4.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:07:39 2007 UTC (4 years, 10 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored) next main 1.39 (colored)

Sync with head.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Jul 9 21:00:55 2007 UTC (4 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: nick-csl-alignment-base, mjf-ufs-trans-base, matt-mips64-base, matt-mips64, hpcarm-cleanup
Branch point for: nick-csl-alignment, matt-armv6, jmcneill-pm
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (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.38.2.1 / (download) - annotate - [select for diffs], Sun Jul 1 21:48:09 2007 UTC (4 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored)

Adapt to callout API change.

Revision 1.36.4.2 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:20 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.36.4.1: +9 -9 lines
Diff to previous 1.36.4.1 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored)

Sync with HEAD.

Revision 1.38 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:22 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.37: +9 -9 lines
Diff to previous 1.37 (colored)

Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

Revision 1.36.4.1 / (download) - annotate - [select for diffs], Tue Feb 27 16:54:00 2007 UTC (5 years, 2 months ago) by yamt
Branch: yamt-idlelwp
Changes since 1.36: +4 -4 lines
Diff to previous 1.36 (colored)

- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.

Revision 1.26.2.3 / (download) - annotate - [select for diffs], Mon Feb 26 09:10:27 2007 UTC (5 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.2: +4 -4 lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored)

sync with head.

Revision 1.37 / (download) - annotate - [select for diffs], Wed Feb 21 23:00:01 2007 UTC (5 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: ad-audiomp-base, ad-audiomp
Changes since 1.36: +4 -4 lines
Diff to previous 1.36 (colored)

Replace the Mach-derived boolean_t type with the C99 bool type.  A
future commit will replace use of TRUE and FALSE with true and false.

Revision 1.26.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:45 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.1: +64 -26 lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored)

sync with head.

Revision 1.31.6.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:44 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.31.6.1: +66 -28 lines
Diff to previous 1.31.6.1 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored)

sync with head.

Revision 1.31.4.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:30 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.31: +64 -26 lines
Diff to previous 1.31 (colored) next main 1.32 (colored)

Sync with head.

Revision 1.36 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:09 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
Branch point for: yamt-idlelwp
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (colored)

__unused removal on arguments; approved by core.

Revision 1.25.2.2 / (download) - annotate - [select for diffs], Wed Nov 15 22:10:09 2006 UTC (5 years, 6 months ago) by bouyer
Branch: netbsd-3
Changes since 1.25.2.1: +2 -2 lines
Diff to previous 1.25.2.1 (colored) to branchpoint 1.25 (colored) next main 1.26 (colored)

Pull up following revision(s) (requested by thorpej in ticket #1586):
	sys/dev/pci/if_pcn.c: revision 1.35
Fix typo (enaddr[3] should be enaddr[2]), and add note to comment,
both in VMware bug-workaround section.

Revision 1.35 / (download) - annotate - [select for diffs], Wed Nov 15 03:21:54 2006 UTC (5 years, 6 months ago) by jdarrow
Branch: MAIN
Changes since 1.34: +4 -4 lines
Diff to previous 1.34 (colored)

Fix typo (enaddr[3] should be enaddr[2]), and add note to comment,
both in VMware bug-workaround section.

Revision 1.25.2.1 / (download) - annotate - [select for diffs], Sat Nov 11 22:06:32 2006 UTC (5 years, 6 months ago) by bouyer
Branch: netbsd-3
Changes since 1.25: +42 -4 lines
Diff to previous 1.25 (colored)

Pull up following revision(s) (requested by thorpej in ticket #1577):
	sys/dev/pci/if_pcn.c: revision 1.34
Detect if we're talking to a VMware virtual interface, and, if so,
limit the number of Tx segments to 8 to work around a VMware bug.

Revision 1.34 / (download) - annotate - [select for diffs], Wed Nov 1 06:42:12 2006 UTC (5 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.33: +44 -4 lines
Diff to previous 1.33 (colored)

Detect if we're talking to a VMware virtual interface, and, if so,
limit the number of Tx segments to 8 to work around a VMware bug.

Revision 1.33 / (download) - annotate - [select for diffs], Tue Oct 31 14:04:29 2006 UTC (5 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.32: +22 -24 lines
Diff to previous 1.32 (colored)

In the pcn driver:
- Remove the PCN_NO_PROM option.  Instead, query the am79c970-no-eeprom
  property, and read the MAC address from the CSRs if that property is TRUE.

In the ibmnws port:
- Implement device_register().
- In device_register(), set the am79c970-no-eeprom property for the
  built-in Ethernet.

Revision 1.31.6.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:17 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.31: +4 -4 lines
Diff to previous 1.31 (colored)

sync with head

Revision 1.32 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:30 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.31: +4 -4 lines
Diff to previous 1.31 (colored)

- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386

Revision 1.28.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.28: +22 -23 lines
Diff to previous 1.28 (colored) next main 1.29 (colored)

sync with head

Revision 1.30.2.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:27 2006 UTC (5 years, 10 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.30: +8 -23 lines
Diff to previous 1.30 (colored) next main 1.31 (colored)

Merge from HEAD.

Revision 1.29.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.29: +10 -23 lines
Diff to previous 1.29 (colored) next main 1.30 (colored)

sync with head.

Revision 1.26.2.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.26: +26 -27 lines
Diff to previous 1.26 (colored)

sync with head.

Revision 1.29.8.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:36 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.29: +10 -23 lines
Diff to previous 1.29 (colored) next main 1.30 (colored)

Sync with head.

Revision 1.31 / (download) - annotate - [select for diffs], Sat Jun 17 23:34:27 2006 UTC (5 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base, yamt-pdpolicy-base9, yamt-pdpolicy-base8, yamt-pdpolicy-base7, yamt-pdpolicy-base6, rpaulo-netinet-merge-pcb-base, chap-midi-nbase, chap-midi-base, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2
Changes since 1.30: +8 -23 lines
Diff to previous 1.30 (colored)

re-factor the pci powestate api. reviewed by gimpy

Revision 1.30 / (download) - annotate - [select for diffs], Wed Jun 14 13:30:35 2006 UTC (5 years, 11 months ago) by tsutsui
Branch: MAIN
CVS Tags: gdamore-uart-base
Branch point for: gdamore-uart
Changes since 1.29: +4 -2 lines
Diff to previous 1.29 (colored)

Call pcn_reset() in pcn_shutdown() so that my 7248 (prep) firmware
can netboot even after reboot without powercycle.

Revision 1.28.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
CVS Tags: simonb-timcounters-final
Changes since 1.28: +14 -2 lines
Diff to previous 1.28 (colored) next main 1.29 (colored)

Sync with head.

Revision 1.28.2.1 / (download) - annotate - [select for diffs], Wed Mar 1 09:28:21 2006 UTC (6 years, 2 months ago) by yamt
Branch: yamt-uio_vmspace
Changes since 1.28: +14 -2 lines
Diff to previous 1.28 (colored) next main 1.29 (colored)

sync with head.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Feb 22 02:57:26 2006 UTC (6 years, 3 months ago) by garbled
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, simonb-timecounters-base, peter-altq-base, peter-altq, elad-kernelauth-base, elad-kernelauth
Branch point for: yamt-pdpolicy, chap-midi
Changes since 1.28: +14 -2 lines
Diff to previous 1.28 (colored)

IBM makes a pcn card that shows up as:
Trident Microsystems 4DWAVE DX (ethernet network, revision 0x25)
Unfortunately, this is an autri sound card.  Special case the match routines
for both drivers so if_pcn properly picks it up, and autri doesn't.

Revision 1.28 / (download) - annotate - [select for diffs], Sat Dec 24 20:27:42 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.27: +6 -6 lines
Diff to previous 1.27 (colored)

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

Revision 1.27 / (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.26: +2 -2 lines
Diff to previous 1.26 (colored)

merge ktrace-lwp.

Revision 1.19.2.7 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:01 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19.2.6: +8 -14 lines
Diff to previous 1.19.2.6 (colored) next main 1.20 (colored)

Sync with HEAD. Here we go again...

Revision 1.26 / (download) - annotate - [select for diffs], Sat May 7 09:15:44 2005 UTC (7 years ago) by is
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.25: +8 -14 lines
Diff to previous 1.25 (colored)

As discussed on tech-net: don't suppress any PHYs to enable multiple
external PHYs. The internal PHY at MII (nr 31) will be the last instance,
so it won't be the default instance when external PHYs are present.

Revision 1.24.4.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.24: +12 -12 lines
Diff to previous 1.24 (colored) next main 1.25 (colored)

sync with -current

Revision 1.24.6.1 / (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.24: +12 -12 lines
Diff to previous 1.24 (colored) next main 1.25 (colored)

sync with head.  xen and whitespace.  xen part is not finished.

Revision 1.19.2.6 / (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.19.2.5: +12 -12 lines
Diff to previous 1.19.2.5 (colored)

Sync with HEAD.

Hi Perry!

Revision 1.25 / (download) - annotate - [select for diffs], Sun Feb 27 00:27:33 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, kent-audio2-base
Branch point for: netbsd-3
Changes since 1.24: +12 -12 lines
Diff to previous 1.24 (colored)

nuke trailing whitespace

Revision 1.22.4.1 / (download) - annotate - [select for diffs], Mon Jan 24 21:43:53 2005 UTC (7 years, 4 months ago) by he
Branch: netbsd-2
CVS Tags: 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
Changes since 1.22: +6 -3 lines
Diff to previous 1.22 (colored) next main 1.23 (colored)

Pull up revision 1.24 (requested by thorpej in ticket #939):
  When adding or deleting multicast addresses, only change
  the address filter if the interface is marked RUNNING.
  Fixes PR#27678.

Revision 1.19.2.5 / (download) - annotate - [select for diffs], Tue Nov 2 07:52:10 2004 UTC (7 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19.2.4: +6 -3 lines
Diff to previous 1.19.2.4 (colored)

Sync with HEAD.

Revision 1.24 / (download) - annotate - [select for diffs], Sat Oct 30 18:09:22 2004 UTC (7 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-km-base2, yamt-km-base, matt-timespec, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-km, kent-audio2
Changes since 1.23: +6 -3 lines
Diff to previous 1.23 (colored)

When adding/deleting multicast addresses, only whack the address
filter if the interface is marked RUNNING.

Fixes kern/27678.

Revision 1.19.2.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19.2.3: +2 -2 lines
Diff to previous 1.19.2.3 (colored)

Fix the sync with head I botched.

Revision 1.19.2.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19.2.2: +2 -2 lines
Diff to previous 1.19.2.2 (colored)

Sync with HEAD.

Revision 1.19.2.2 / (download) - annotate - [select for diffs], Wed Aug 25 06:58:05 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19.2.1: +70 -70 lines
Diff to previous 1.19.2.1 (colored)

Sync with HEAD.

Revision 1.23 / (download) - annotate - [select for diffs], Sat Aug 21 22:48:18 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.22: +70 -70 lines
Diff to previous 1.22 (colored)

Use ANSI function decls and make use of static.

Revision 1.19.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:08 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.19: +40 -3 lines
Diff to previous 1.19 (colored)

Sync with HEAD

Revision 1.22 / (download) - annotate - [select for diffs], Sat Oct 25 18:31:11 2003 UTC (8 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: netbsd-2-base, 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
Branch point for: netbsd-2
Changes since 1.21: +4 -3 lines
Diff to previous 1.21 (colored)

Fix uninitialized variable warnings

Revision 1.21 / (download) - annotate - [select for diffs], Sun Oct 19 03:32:25 2003 UTC (8 years, 7 months ago) by matt
Branch: MAIN
Changes since 1.20: +20 -2 lines
Diff to previous 1.20 (colored)

Add PCN_NO_PROM flag.  (read the macaddr from the chip assuming the "BIOS"
has properly written it).  From John Gordon.

Revision 1.20 / (download) - annotate - [select for diffs], Mon Jul 21 08:38:56 2003 UTC (8 years, 10 months ago) by jdolecek
Branch: MAIN
Changes since 1.19: +20 -2 lines
Diff to previous 1.19 (colored)

add rnd hooks

Revision 1.19 / (download) - annotate - [select for diffs], Sun Mar 30 19:20:37 2003 UTC (9 years, 1 month ago) by jdolecek
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.18: +12 -12 lines
Diff to previous 1.18 (colored)

sprinkle some const qualifiers

Revision 1.4.6.12 / (download) - annotate - [select for diffs], Sun Dec 29 20:49:23 2002 UTC (9 years, 4 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.4.6.11: +8 -6 lines
Diff to previous 1.4.6.11 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

Sync with HEAD.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Dec 23 02:58:37 2002 UTC (9 years, 5 months ago) by tsutsui
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base, fvdl_fs64_base
Changes since 1.17: +8 -6 lines
Diff to previous 1.17 (colored)

Replace magic numbers for power management control with PCI_PMCSR* macros.

XXX Should we use pci_get_powerstate() and pci_set_powerstate() in pci.c?

Revision 1.9.4.3 / (download) - annotate - [select for diffs], Sat Nov 30 13:57:46 2002 UTC (9 years, 5 months ago) by he
Branch: netbsd-1-6
CVS Tags: 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
Changes since 1.9.4.2: +13 -7 lines
Diff to previous 1.9.4.2 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)

Pull up revision 1.11 (requested by thorpej in ticket #767):
  Add support for memory-mapped PCnet-PCI chips.

Revision 1.4.6.11 / (download) - annotate - [select for diffs], Mon Nov 11 22:11:06 2002 UTC (9 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.10: +6 -6 lines
Diff to previous 1.4.6.10 (colored) to branchpoint 1.4 (colored)

Catch up to -current

Revision 1.9.4.2 / (download) - annotate - [select for diffs], Wed Oct 23 07:09:15 2002 UTC (9 years, 7 months ago) by lukem
Branch: netbsd-1-6
Changes since 1.9.4.1: +4 -4 lines
Diff to previous 1.9.4.1 (colored) to branchpoint 1.9 (colored)

Pull up revision 1.16 (requested by thorpej in ticket #940):
Fix typos in media configuration register init.  From patch posted
to tech-kern by Erik Anggard <erik.anggard@packetfront.com>.
May address PR 16346.

Revision 1.17 / (download) - annotate - [select for diffs], Wed Oct 23 01:50:12 2002 UTC (9 years, 7 months ago) by perry
Branch: MAIN
CVS Tags: kqueue-beforemerge, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw
Changes since 1.16: +6 -6 lines
Diff to previous 1.16 (colored)

fix lint warnings about things being stringified under cpp -traditional

Revision 1.4.6.10 / (download) - annotate - [select for diffs], Tue Oct 22 18:15:20 2002 UTC (9 years, 7 months ago) by thorpej
Branch: nathanw_sa
Changes since 1.4.6.9: +5 -5 lines
Diff to previous 1.4.6.9 (colored) to branchpoint 1.4 (colored)

Sync with HEAD.

Revision 1.16 / (download) - annotate - [select for diffs], Tue Oct 22 16:13:44 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.15: +4 -4 lines
Diff to previous 1.15 (colored)

Fix typos in media configuration register init.  From patch posted
to tech-kern by Erik Anggard <erik.anggard@packetfront.com>.

May address PR 16346.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Oct 21 23:38:10 2002 UTC (9 years, 7 months ago) by fair
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

Change the "dontcare bits" argument to ifmedia_init() to IFM_IMASK
so that it is possible select PHY instances other than the first
one (instance zero), if there is more than one PHY attached.

Revision 1.4.6.9 / (download) - annotate - [select for diffs], Fri Oct 18 02:43:05 2002 UTC (9 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.8: +4 -5 lines
Diff to previous 1.4.6.8 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.4.4.7 / (download) - annotate - [select for diffs], Thu Oct 10 18:40:44 2002 UTC (9 years, 7 months ago) by jdolecek
Branch: kqueue
Changes since 1.4.4.6: +15 -10 lines
Diff to previous 1.4.4.6 (colored) to branchpoint 1.4 (colored) next main 1.5 (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.14 / (download) - annotate - [select for diffs], Wed Oct 2 16:51:27 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
CVS Tags: kqueue-base
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored)

Add trailing ; to CFATTACH_DECL.

Revision 1.13 / (download) - annotate - [select for diffs], Mon Sep 30 20:37:35 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.12: +4 -5 lines
Diff to previous 1.12 (colored)

Use CFATTACH_DECL().

Revision 1.12 / (download) - annotate - [select for diffs], Fri Sep 27 20:40:13 2002 UTC (9 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored)

Declare all cfattach structures const.

Revision 1.4.6.8 / (download) - annotate - [select for diffs], Tue Sep 17 21:20:16 2002 UTC (9 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.7: +13 -7 lines
Diff to previous 1.4.6.7 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.4.4.6 / (download) - annotate - [select for diffs], Fri Sep 6 08:45:16 2002 UTC (9 years, 8 months ago) by jdolecek
Branch: kqueue
Changes since 1.4.4.5: +3 -3 lines
Diff to previous 1.4.4.5 (colored) to branchpoint 1.4 (colored)

sync kqueue branch with HEAD

Revision 1.11 / (download) - annotate - [select for diffs], Wed Sep 4 01:36:07 2002 UTC (9 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.10: +13 -7 lines
Diff to previous 1.10 (colored)

Add support for memory-mapped PCnet-PCI chips.

Revision 1.9.2.1 / (download) - annotate - [select for diffs], Thu Aug 29 05:22:39 2002 UTC (9 years, 8 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored) next main 1.10 (colored)

catch up with -current.

Revision 1.4.6.7 / (download) - annotate - [select for diffs], Tue Aug 13 02:19:38 2002 UTC (9 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.6: +3 -3 lines
Diff to previous 1.4.6.6 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.9.4.1 / (download) - annotate - [select for diffs], Fri Aug 2 01:28:29 2002 UTC (9 years, 9 months ago) by lukem
Branch: netbsd-1-6
CVS Tags: netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

Pull up revision 1.10 (requested by thorpej in ticket #605):
Fix a typo which caused the wrong register to be updated when
the media is not full-duplex.

Revision 1.10 / (download) - annotate - [select for diffs], Fri Aug 2 01:12:32 2002 UTC (9 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: gehenna-devsw-base
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

Fix a typo which caused the wrong register to be updated when
the media is not full-duplex.

Revision 1.4.4.5 / (download) - annotate - [select for diffs], Sun Jun 23 17:47:41 2002 UTC (9 years, 11 months ago) by jdolecek
Branch: kqueue
Changes since 1.4.4.4: +7 -9 lines
Diff to previous 1.4.4.4 (colored) to branchpoint 1.4 (colored)

catch up with -current on kqueue branch

Revision 1.4.6.6 / (download) - annotate - [select for diffs], Thu Jun 20 03:45:26 2002 UTC (9 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.5: +7 -9 lines
Diff to previous 1.4.6.5 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 3 00:16:12 2002 UTC (10 years ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-6-base
Branch point for: netbsd-1-6, gehenna-devsw
Changes since 1.8: +7 -9 lines
Diff to previous 1.8 (colored)

Bump the number of Tx DMA segments from 8 to 16 (the zero-copy socket
code sometimes sees more than 8).

Revision 1.4.6.5 / (download) - annotate - [select for diffs], Thu Feb 28 04:14:01 2002 UTC (10 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.4: +3 -3 lines
Diff to previous 1.4.6.4 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.4.4.4 / (download) - annotate - [select for diffs], Mon Feb 11 20:09:58 2002 UTC (10 years, 3 months ago) by jdolecek
Branch: kqueue
Changes since 1.4.4.3: +3 -3 lines
Diff to previous 1.4.4.3 (colored) to branchpoint 1.4 (colored)

Sync w/ -current.

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jan 29 04:45:47 2002 UTC (10 years, 3 months ago) by nisimura
Branch: MAIN
CVS Tags: newlock-base, newlock, ifpoll-base, ifpoll, eeh-devprop-base, eeh-devprop
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

DANAS (disable autonegotiation) bit of BCR32 takes its effect when
set, not cleared.

Revision 1.4.4.3 / (download) - annotate - [select for diffs], Thu Jan 10 19:56:42 2002 UTC (10 years, 4 months ago) by thorpej
Branch: kqueue
Changes since 1.4.4.2: +13 -12 lines
Diff to previous 1.4.4.2 (colored) to branchpoint 1.4 (colored)

Sync kqueue branch with -current.

Revision 1.4.6.4 / (download) - annotate - [select for diffs], Tue Jan 8 00:31:04 2002 UTC (10 years, 4 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.3: +11 -13 lines
Diff to previous 1.4.6.3 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Nov 29 17:15:44 2001 UTC (10 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Fix typo in copyright notice.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Nov 27 13:49:03 2001 UTC (10 years, 6 months ago) by onoe
Branch: MAIN
Changes since 1.5: +10 -12 lines
Diff to previous 1.5 (colored)

Set ONES (must be ones) bits in tmd1 of tx descriptors.
This fix avoids VMware 3.0/WinXP to crash.

Revision 1.4.6.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:15:17 2001 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.2: +4 -1 lines
Diff to previous 1.4.6.2 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Nov 13 07:48:44 2001 UTC (10 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.4: +4 -1 lines
Diff to previous 1.4 (colored)

add RCSID

Revision 1.4.6.2 / (download) - annotate - [select for diffs], Fri Sep 21 22:35:56 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4.6.1: +2157 -0 lines
Diff to previous 1.4.6.1 (colored) to branchpoint 1.4 (colored)

Catch up to -current.

Revision 1.4.4.2 / (download) - annotate - [select for diffs], Thu Sep 13 01:15:55 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.4.4.1: +2157 -0 lines
Diff to previous 1.4.4.1 (colored) to branchpoint 1.4 (colored)

Update the kqueue branch to HEAD.

Revision 1.4.6.1, Sun Sep 2 13:17:54 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.4: +0 -2157 lines
FILE REMOVED

file if_pcn.c was added on branch nathanw_sa on 2001-09-21 22:35:56 +0000

Revision 1.4.4.1, Sun Sep 2 13:17:54 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.4: +0 -2157 lines
FILE REMOVED

file if_pcn.c was added on branch kqueue on 2001-09-13 01:15:55 +0000

Revision 1.4 / (download) - annotate - [select for diffs], Sun Sep 2 13:17:54 2001 UTC (10 years, 8 months ago) by enami
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
Branch point for: nathanw_sa, kqueue
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

Fix an obvious typo found while reading the source.

Revision 1.3 / (download) - annotate - [select for diffs], Tue Aug 28 15:22:30 2001 UTC (10 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.2: +5 -2 lines
Diff to previous 1.2 (colored)

- Swap the bytes OR'd into init_ladrf[], for big-endian machines.
- Make sure to sync the init block.

Pointed out by Izumi Tsutsui.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Aug 28 14:15:18 2001 UTC (10 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

Print "auto-FDX" for the second "autoselect" instance.  Pointed out
by Izumi Tsutsui.

Revision 1.1 / (download) - annotate - [select for diffs], Mon Aug 27 19:42:18 2001 UTC (10 years, 9 months ago) by thorpej
Branch: MAIN

New driver for the AMD PCnet-PCI family of Ethernet chips.  This
driver uses direct DMA to mbufs (like other PCI network drivers,
and unlike the old "le at pci" driver), and also supports communication
with the MII-connected PHYs on the 10/100 boards.

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>