The NetBSD Project

CVS log for src/sys/dev/pci/bktr/bktr_core.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.59 / (download) - annotate - [select for diffs], Sun Dec 19 22:03:41 2021 UTC (2 years, 3 months ago) by andvar
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.58: +7 -7 lines
Diff to previous 1.58 (colored) to selected 1.52 (colored)

fix various typos in bktr driver comments.

Revision 1.58 / (download) - annotate - [select for diffs], Sat May 23 23:42:42 2020 UTC (3 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.57: +9 -9 lines
Diff to previous 1.57 (colored) to selected 1.52 (colored)

Move proc_lock into the data segment.  It was dynamically allocated because
at the time we had mutex_obj_alloc() but not __cacheline_aligned.

Revision 1.54.38.2 / (download) - annotate - [select for diffs], Wed Apr 8 14:08:10 2020 UTC (4 years ago) by martin
Branch: phil-wifi
Changes since 1.54.38.1: +5 -5 lines
Diff to previous 1.54.38.1 (colored) to branchpoint 1.54 (colored) next main 1.55 (colored) to selected 1.52 (colored)

Merge changes from current as of 20200406

Revision 1.56.6.1 / (download) - annotate - [select for diffs], Sat Feb 29 20:19:14 2020 UTC (4 years, 1 month ago) by ad
Branch: ad-namecache
Changes since 1.56: +5 -5 lines
Diff to previous 1.56 (colored) next main 1.57 (colored) to selected 1.52 (colored)

Sync with head.

Revision 1.57 / (download) - annotate - [select for diffs], Sun Feb 23 10:30:43 2020 UTC (4 years, 1 month ago) by skrll
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3
Changes since 1.56: +5 -5 lines
Diff to previous 1.56 (colored) to selected 1.52 (colored)

typo in comment

Revision 1.54.38.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:07:27 2019 UTC (4 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.54: +9 -8 lines
Diff to previous 1.54 (colored) to selected 1.52 (colored)

Sync with HEAD

Revision 1.56 / (download) - annotate - [select for diffs], Sun Feb 3 03:19:27 2019 UTC (5 years, 2 months ago) by mrg
Branch: MAIN
CVS Tags: phil-wifi-20191119, phil-wifi-20190609, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, isaki-audio2-base, isaki-audio2, ad-namecache-base2, ad-namecache-base1, ad-namecache-base
Branch point for: ad-namecache
Changes since 1.55: +3 -2 lines
Diff to previous 1.55 (colored) to selected 1.52 (colored)

- add or adjust /* FALLTHROUGH */ where appropriate
- add __unreachable() after functions that can return but won't in
  this case, and thus can't be marked __dead easily

Revision 1.54.36.1 / (download) - annotate - [select for diffs], Thu Sep 6 06:56:02 2018 UTC (5 years, 7 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.54: +8 -8 lines
Diff to previous 1.54 (colored) next main 1.55 (colored) to selected 1.52 (colored)

Sync with HEAD

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

Revision 1.55 / (download) - annotate - [select for diffs], Mon Sep 3 16:29:32 2018 UTC (5 years, 7 months ago) by riastradh
Branch: MAIN
CVS Tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906
Changes since 1.54: +8 -8 lines
Diff to previous 1.54 (colored) to selected 1.52 (colored)

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

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

HOWEVER!  Some subsystems have

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

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

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

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

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

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

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

Revision 1.52.12.2 / (download) - annotate - [select for diffs], Mon Feb 25 00:29:29 2013 UTC (11 years, 1 month ago) by tls
Branch: tls-maxphys
Changes since 1.52.12.1: +2 -3 lines
Diff to previous 1.52.12.1 (colored) to branchpoint 1.52 (colored) next main 1.53 (colored) to selected 1.52 (colored)

resync with head

Revision 1.52.2.2 / (download) - annotate - [select for diffs], Wed Jan 23 00:06:09 2013 UTC (11 years, 2 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.52.2.1: +2 -3 lines
Diff to previous 1.52.2.1 (colored) to branchpoint 1.52 (colored) next main 1.53 (colored) to selected 1.52 (colored)

sync with head

Revision 1.54 / (download) - annotate - [select for diffs], Fri Dec 14 19:38:36 2012 UTC (11 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base9, yamt-pagecache-base8, tls-maxphys-base-20171202, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, rmind-smpnet, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-base, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406, nick-nhusb-base, nick-nhusb, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, khorben-n900, jdolecek-ncqfixes-base, jdolecek-ncqfixes, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan, agc-symver-base, agc-symver
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.53: +2 -3 lines
Diff to previous 1.53 (colored) to selected 1.52 (colored)

bt848_format is only defined in a __FreeBSD__ section of bktr_os.c and
overriding the local (static) definition with extern is bogus.

Revision 1.52.12.1 / (download) - annotate - [select for diffs], Tue Nov 20 03:02:30 2012 UTC (11 years, 5 months ago) by tls
Branch: tls-maxphys
Changes since 1.52: +3 -3 lines
Diff to previous 1.52 (colored)

Resync to 2012-11-19 00:00:00 UTC

Revision 1.52.2.1 / (download) - annotate - [select for diffs], Tue Oct 30 17:21:55 2012 UTC (11 years, 5 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.52: +3 -3 lines
Diff to previous 1.52 (colored)

sync with head

Revision 1.53 / (download) - annotate - [select for diffs], Sat Oct 27 17:18:36 2012 UTC (11 years, 5 months ago) by chs
Branch: MAIN
CVS Tags: yamt-pagecache-base7, yamt-pagecache-base6
Changes since 1.52: +3 -3 lines
Diff to previous 1.52 (colored)

split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.

Revision 1.52 / (download) - annotate - [selected], Thu Jun 30 20:09:40 2011 UTC (12 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base10, jmcneill-usbmp-base, jmcneill-usbmp, jmcneill-audiomp3-base, jmcneill-audiomp3
Branch point for: yamt-pagecache, tls-maxphys
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored)

dependant -> dependent

Revision 1.50.4.1 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:59 2011 UTC (13 years, 1 month ago) by rmind
Branch: rmind-uvmplock
Changes since 1.50: +2 -3 lines
Diff to previous 1.50 (colored) next main 1.51 (colored) to selected 1.52 (colored)

sync with head

Revision 1.51 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:09 2010 UTC (13 years, 5 months ago) by uebayasi
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase, rmind-uvmplock-base, matt-mips64-premerge-20101231, jruoho-x86intr-base, jruoho-x86intr, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.50: +2 -3 lines
Diff to previous 1.50 (colored) to selected 1.52 (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.16.1 / (download) - annotate - [select for diffs], Wed May 13 17:21:08 2009 UTC (14 years, 11 months ago) by jym
Branch: jym-xensuspend
Changes since 1.49: +6 -6 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.52 (colored)

Sync with HEAD.

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

Revision 1.49.2.1 / (download) - annotate - [select for diffs], Mon May 4 08:13:07 2009 UTC (14 years, 11 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.49: +6 -6 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.49.10.1 / (download) - annotate - [select for diffs], Tue Apr 28 07:36:20 2009 UTC (14 years, 11 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.49: +6 -6 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.50 / (download) - annotate - [select for diffs], Wed Mar 18 16:00:19 2009 UTC (15 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9, yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1, uebayasi-xip-base, uebayasi-xip, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase, jym-xensuspend-base
Branch point for: rmind-uvmplock
Changes since 1.49: +6 -6 lines
Diff to previous 1.49 (colored) to selected 1.52 (colored)

bzero -> memset

Revision 1.40.4.1 / (download) - annotate - [select for diffs], Tue Jun 3 20:47:33 2008 UTC (15 years, 10 months ago) by skrll
Branch: wrstuden-fixsa
Changes since 1.40: +106 -106 lines
Diff to previous 1.40 (colored) next main 1.41 (colored) to selected 1.52 (colored)

Sync with netbsd-4.

Revision 1.46.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:44 2008 UTC (15 years, 10 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.46.6.1: +24 -8 lines
Diff to previous 1.46.6.1 (colored) to branchpoint 1.46 (colored) next main 1.47 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.48.2.1 / (download) - annotate - [select for diffs], Sun May 18 12:34:35 2008 UTC (15 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.48: +25 -9 lines
Diff to previous 1.48 (colored) next main 1.49 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.49 / (download) - annotate - [select for diffs], Thu Apr 24 15:35:28 2008 UTC (15 years, 11 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, 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-base2, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, mjf-devfs2-base, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, hpcarm-cleanup-nbase, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, haad-dm, ad-audiomp2-base, ad-audiomp2
Branch point for: yamt-nfs-mp, nick-hppapmap, jym-xensuspend
Changes since 1.48: +25 -9 lines
Diff to previous 1.48 (colored) to selected 1.52 (colored)

Network protocol interrupts can now block on locks, so merge the globals
proclist_mutex and proclist_lock into a single adaptive mutex (proc_lock).
Implications:

- Inspecting process state requires thread context, so signals can no longer
  be sent from a hardware interrupt handler. Signal activity must be
  deferred to a soft interrupt or kthread.

- As the proc state locking is simplified, it's now safe to take exit()
  and wait() out from under kernel_lock.

- The system spends less time at IPL_SCHED, and there is less lock activity.

Revision 1.48 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:38 2008 UTC (16 years ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base
Branch point for: yamt-pf42
Changes since 1.47: +3 -3 lines
Diff to previous 1.47 (colored) to selected 1.52 (colored)

use aprint_*_dev and device_xname

Revision 1.46.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:54 2008 UTC (16 years ago) by mjf
Branch: mjf-devfs2
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.46.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:16:04 2008 UTC (16 years ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored) next main 1.47 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.43.8.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:50 2008 UTC (16 years, 1 month ago) by matt
Branch: matt-armv6
Changes since 1.43.8.2: +107 -107 lines
Diff to previous 1.43.8.2 (colored) to branchpoint 1.43 (colored) next main 1.44 (colored) to selected 1.52 (colored)

sync with HEAD

Revision 1.35.2.7 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:22 2008 UTC (16 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.6: +3 -3 lines
Diff to previous 1.35.2.6 (colored) to branchpoint 1.35 (colored) next main 1.36 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Mar 1 14:16:50 2008 UTC (16 years, 1 month ago) by rmind
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.46: +3 -3 lines
Diff to previous 1.46 (colored) to selected 1.52 (colored)

Welcome to 4.99.55:

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

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

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

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

Revision 1.44.2.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:06:20 2008 UTC (16 years, 2 months ago) by mjf
Branch: mjf-devfs
Changes since 1.44: +106 -107 lines
Diff to previous 1.44 (colored) next main 1.45 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.40.2.1 / (download) - annotate - [select for diffs], Mon Jan 21 20:40:15 2008 UTC (16 years, 3 months ago) by bouyer
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base
Changes since 1.40: +106 -106 lines
Diff to previous 1.40 (colored) next main 1.41 (colored) to selected 1.52 (colored)

Pull up following revision(s) (requested by jmcneill in ticket #1046):
	sys/dev/pci/bktr/bktr_reg.h: revision 1.18
	sys/dev/pci/bktr/bktr_audio.c: revision 1.18
	sys/dev/pci/bktr/bktr_os.c: revision 1.49
	sys/dev/pci/bktr/bktr_core.c: revision 1.46
	sys/dev/ic/bt8xx.h: revision 1.9
	sys/dev/pci/bktr/bktr_core.h: revision 1.10
Don't assume that sizeof(long) == sizeof(int); makes bktr work on amd64.

Revision 1.35.2.6 / (download) - annotate - [select for diffs], Mon Jan 21 09:44:16 2008 UTC (16 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.5: +106 -107 lines
Diff to previous 1.35.2.5 (colored) to branchpoint 1.35 (colored) to selected 1.52 (colored)

sync with head

Revision 1.44.8.2 / (download) - annotate - [select for diffs], Sat Jan 19 12:15:14 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.44.8.1: +104 -104 lines
Diff to previous 1.44.8.1 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored) to selected 1.52 (colored)

Sync with HEAD

Revision 1.46 / (download) - annotate - [select for diffs], Wed Jan 16 13:08:54 2008 UTC (16 years, 3 months ago) by jmcneill
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.45: +106 -106 lines
Diff to previous 1.45 (colored) to selected 1.52 (colored)

Don't assume that sizeof(long) == sizeof(int); makes bktr work on amd64.

Revision 1.43.8.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:54:04 2008 UTC (16 years, 3 months ago) by matt
Branch: matt-armv6
Changes since 1.43.8.1: +2 -3 lines
Diff to previous 1.43.8.1 (colored) to branchpoint 1.43 (colored) to selected 1.52 (colored)

sync with HEAD

Revision 1.44.8.1 / (download) - annotate - [select for diffs], Tue Jan 8 22:11:18 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.44: +2 -3 lines
Diff to previous 1.44 (colored) to selected 1.52 (colored)

Sync with HEAD

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jan 4 21:18:03 2008 UTC (16 years, 3 months ago) by ad
Branch: MAIN
CVS Tags: matt-armv6-base
Changes since 1.44: +2 -3 lines
Diff to previous 1.44 (colored) to selected 1.52 (colored)

Start detangling lock.h from intr.h. This is likely to cause short term
breakage, but the mess of dependencies has been regularly breaking the
build recently anyhow.

Revision 1.43.8.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:29:36 2007 UTC (16 years, 5 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored) to selected 1.52 (colored)

sync with HEAD

Revision 1.35.2.5 / (download) - annotate - [select for diffs], Sat Oct 27 11:33:37 2007 UTC (16 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.4: +3 -3 lines
Diff to previous 1.35.2.4 (colored) to branchpoint 1.35 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.43.6.1 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:59 2007 UTC (16 years, 5 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored) next main 1.44 (colored) to selected 1.52 (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.43.12.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:39:23 2007 UTC (16 years, 5 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored) next main 1.44 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.42.2.2 / (download) - annotate - [select for diffs], Tue Oct 23 20:09:21 2007 UTC (16 years, 5 months ago) by ad
Branch: vmlocking
Changes since 1.42.2.1: +3 -3 lines
Diff to previous 1.42.2.1 (colored) to branchpoint 1.42 (colored) next main 1.43 (colored) to selected 1.52 (colored)

Sync with head.

Revision 1.44 / (download) - annotate - [select for diffs], Fri Oct 19 12:01:02 2007 UTC (16 years, 6 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, jmcneill-pm-base, jmcneill-base, cube-autoconf-base, cube-autoconf, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: mjf-devfs, bouyer-xeni386
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored) to selected 1.52 (colored)

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

Revision 1.35.2.4 / (download) - annotate - [select for diffs], Mon Sep 3 14:37:27 2007 UTC (16 years, 7 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.3: +17 -19 lines
Diff to previous 1.35.2.3 (colored) to branchpoint 1.35 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.42.4.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:08:05 2007 UTC (16 years, 9 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.42: +3 -5 lines
Diff to previous 1.42 (colored) next main 1.43 (colored) to selected 1.52 (colored)

Sync with head.

Revision 1.43 / (download) - annotate - [select for diffs], Mon Jul 9 21:01:19 2007 UTC (16 years, 9 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, nick-csl-alignment-base5, nick-csl-alignment-base, nick-csl-alignment, mjf-ufs-trans-base, matt-mips64-base, matt-mips64, hpcarm-cleanup
Branch point for: matt-armv6, jmcneill-pm, bouyer-xenamd64
Changes since 1.42: +3 -5 lines
Diff to previous 1.42 (colored) to selected 1.52 (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.42.2.1 / (download) - annotate - [select for diffs], Tue Apr 10 00:22:13 2007 UTC (17 years ago) by ad
Branch: vmlocking
Changes since 1.42: +3 -5 lines
Diff to previous 1.42 (colored) to selected 1.52 (colored)

Changes to select/poll:

- Make them MP safe and decouple from the proc locks.
- selwakeup: don't call p_find, or traverse per-proc LWP lists (ouch).
- selwakeup: don't lock the sleep queue unless we need to.

Revision 1.41.2.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:56:45 2007 UTC (17 years, 1 month ago) by rmind
Branch: yamt-idlelwp
Changes since 1.41: +16 -16 lines
Diff to previous 1.41 (colored) next main 1.42 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.42 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:27 2007 UTC (17 years, 1 month 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.41: +16 -16 lines
Diff to previous 1.41 (colored) to selected 1.52 (colored)

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

Revision 1.35.2.3 / (download) - annotate - [select for diffs], Mon Feb 26 09:10:37 2007 UTC (17 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.2: +4 -2 lines
Diff to previous 1.35.2.2 (colored) to branchpoint 1.35 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.41 / (download) - annotate - [select for diffs], Fri Feb 9 21:55:29 2007 UTC (17 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: post-newlock2-merge, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp
Changes since 1.40: +4 -2 lines
Diff to previous 1.40 (colored) to selected 1.52 (colored)

Merge newlock2 to head.

Revision 1.38.2.2 / (download) - annotate - [select for diffs], Fri Jan 19 09:39:58 2007 UTC (17 years, 3 months ago) by ad
Branch: newlock2
Changes since 1.38.2.1: +4 -2 lines
Diff to previous 1.38.2.1 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored) to selected 1.52 (colored)

Acquire proclist_mutex before sending signals.

Revision 1.35.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:49:17 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35.2.1: +69 -52 lines
Diff to previous 1.35.2.1 (colored) to branchpoint 1.35 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.38.4.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:18:06 2006 UTC (17 years, 4 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.38.4.1: +6 -6 lines
Diff to previous 1.38.4.1 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.38.2.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:43 2006 UTC (17 years, 5 months ago) by ad
Branch: newlock2
Changes since 1.38: +8 -5 lines
Diff to previous 1.38 (colored) to selected 1.52 (colored)

Sync with head.

Revision 1.33.16.1.2.1 / (download) - annotate - [select for diffs], Sat Nov 18 14:55:43 2006 UTC (17 years, 5 months ago) by bouyer
Branch: netbsd-3-1
CVS Tags: netbsd-3-1-1-RELEASE
Changes since 1.33.16.1: +4 -4 lines
Diff to previous 1.33.16.1 (colored) next main 1.33.16.2 (colored) to selected 1.52 (colored)

Apply patch (requested by aymeric in ticket #1587)
        fix bug introduced by missing braces around a if() block in
	ticket #1511

Revision 1.33.16.2 / (download) - annotate - [select for diffs], Sat Nov 18 14:55:13 2006 UTC (17 years, 5 months ago) by bouyer
Branch: netbsd-3
Changes since 1.33.16.1: +4 -4 lines
Diff to previous 1.33.16.1 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored) to selected 1.52 (colored)

Apply patch (requested by aymeric in ticket #1587)
	fix bug introduced by missing braces around a if() block in
	ticket #1511

Revision 1.40 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:20 2006 UTC (17 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, wrstuden-fixsa-base-1, 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, matt-nb4-arm-base, matt-nb4-arm
Branch point for: wrstuden-fixsa, netbsd-4
Changes since 1.39: +6 -6 lines
Diff to previous 1.39 (colored) to selected 1.52 (colored)

__unused removal on arguments; approved by core.

Revision 1.38.4.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:38 2006 UTC (17 years, 6 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.38: +8 -5 lines
Diff to previous 1.38 (colored) to selected 1.52 (colored)

sync with head

Revision 1.39 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:49 2006 UTC (17 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.38: +8 -5 lines
Diff to previous 1.38 (colored) to selected 1.52 (colored)

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

Revision 1.33.16.1 / (download) - annotate - [select for diffs], Sat Sep 16 11:28:05 2006 UTC (17 years, 7 months ago) by ghen
Branch: netbsd-3
CVS Tags: netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3
Branch point for: netbsd-3-1
Changes since 1.33: +61 -37 lines
Diff to previous 1.33 (colored) to selected 1.52 (colored)

Pull up following revision(s) (requested by bouyer in ticket #1511):
	sys/dev/pci/bktr/bktr_core.c: revision 1.38
	sys/dev/pci/bktr/bktr_os.c: revision 1.43
	sys/dev/pci/bktr/bktr_core.h: revision 1.8
stop attaching when a bus_dma operation fails, instead of using bogus
addresses.
Remplace vtophys() with proper bus_dma(9) use.
This driver now works properly on Xen

Revision 1.36.8.2 / (download) - annotate - [select for diffs], Thu Sep 14 12:31:39 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.36.8.1: +63 -39 lines
Diff to previous 1.36.8.1 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.36.18.1 / (download) - annotate - [select for diffs], Thu Sep 14 05:07:09 2006 UTC (17 years, 7 months ago) by riz
Branch: abandoned-netbsd-4
Changes since 1.36: +63 -39 lines
Diff to previous 1.36 (colored) next main 1.37 (colored) to selected 1.52 (colored)

Pull up following revision(s) (requested by bouyer in ticket #151):
	sys/dev/pci/bktr/bktr_core.c: revision 1.38
	sys/dev/pci/bktr/bktr_os.c: revision 1.43
	sys/dev/pci/bktr/bktr_core.h: revision 1.8
stop attaching when a bus_dma operation fails, instead of using bogus
addresses.
Remplace vtophys() with proper bus_dma(9) use.
This driver now works properly on Xen

Revision 1.36.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:53:54 2006 UTC (17 years, 7 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.36: +63 -49 lines
Diff to previous 1.36 (colored) next main 1.37 (colored) to selected 1.52 (colored)

sync with head

Revision 1.38 / (download) - annotate - [select for diffs], Sun Sep 3 19:06:32 2006 UTC (17 years, 7 months ago) by bouyer
Branch: MAIN
CVS Tags: yamt-splraiseipl-base, yamt-pdpolicy-base9, rpaulo-netinet-merge-pcb-base
Branch point for: yamt-splraiseipl, newlock2
Changes since 1.37: +63 -39 lines
Diff to previous 1.37 (colored) to selected 1.52 (colored)

stop attaching when a bus_dma operation fails, instead of using bogus
addresses.
Remplace vtophys() with proper bus_dma(9) use.
This driver now works properly on Xen

Revision 1.36.8.1 / (download) - annotate - [select for diffs], Sun Sep 3 15:24:48 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.36: +2 -12 lines
Diff to previous 1.36 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.37 / (download) - annotate - [select for diffs], Mon Aug 28 00:06:14 2006 UTC (17 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pdpolicy-base8
Changes since 1.36: +2 -12 lines
Diff to previous 1.36 (colored) to selected 1.52 (colored)

remove unreachable code.

Revision 1.35.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:06:14 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored) to selected 1.52 (colored)

sync with head.

Revision 1.36 / (download) - annotate - [select for diffs], Sun Dec 11 12:23:22 2005 UTC (18 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base7, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, peter-altq-base, peter-altq, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base
Branch point for: yamt-pdpolicy, rpaulo-netinet-merge-pcb, abandoned-netbsd-4
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored) to selected 1.52 (colored)

merge ktrace-lwp.

Revision 1.33.2.4 / (download) - annotate - [select for diffs], Thu Nov 10 14:07:23 2005 UTC (18 years, 5 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.2.3: +27 -27 lines
Diff to previous 1.33.2.3 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored) to selected 1.52 (colored)

Sync with HEAD. Here we go again...

Revision 1.35 / (download) - annotate - [select for diffs], Mon May 30 06:41:55 2005 UTC (18 years, 10 months ago) by wiz
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.34: +3 -3 lines
Diff to previous 1.34 (colored) to selected 1.52 (colored)

Fix replaco in comment.

Revision 1.34 / (download) - annotate - [select for diffs], Mon May 30 04:30:18 2005 UTC (18 years, 10 months ago) by christos
Branch: MAIN
Changes since 1.33: +28 -28 lines
Diff to previous 1.33 (colored) to selected 1.52 (colored)

- avoid variable shadowing
- add const

Revision 1.33.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:32:19 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.2.2: +5 -5 lines
Diff to previous 1.33.2.2 (colored) to branchpoint 1.33 (colored) to selected 1.52 (colored)

Fix the sync with head I botched.

Revision 1.33.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:50:23 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.2.1: +3 -3 lines
Diff to previous 1.33.2.1 (colored) to branchpoint 1.33 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.33.2.1 / (download) - annotate - [select for diffs], Wed Jul 2 15:26:13 2003 UTC (20 years, 9 months ago) by darrenr
Branch: ktrace-lwp
Changes since 1.33: +5 -5 lines
Diff to previous 1.33 (colored) to selected 1.52 (colored)

Apply the aborted ktrace-lwp changes to a specific branch.  This is just for
others to review, I'm concerned that patch fuziness may have resulted in some
errant code being generated but I'll look at that later by comparing the diff
from the base to the branch with the file I attempt to apply to it.  This will,
at the very least, put the changes in a better context for others to review
them and attempt to tinker with removing passing of 'struct lwp' through
the kernel.

Revision 1.33 / (download) - annotate - [select for diffs], Sun Jun 29 22:30:29 2003 UTC (20 years, 9 months ago) by fvdl
Branch: MAIN
CVS Tags: yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, netbsd-3-base, netbsd-3-1-RC2, netbsd-3-1-RC1, 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-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2, kent-audio2-base, kent-audio2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: netbsd-3, ktrace-lwp
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored) to selected 1.52 (colored)

Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.

Revision 1.32 / (download) - annotate - [select for diffs], Sat Jun 28 14:21:39 2003 UTC (20 years, 9 months ago) by darrenr
Branch: MAIN
Changes since 1.31: +5 -5 lines
Diff to previous 1.31 (colored) to selected 1.52 (colored)

Pass lwp pointers throughtout the kernel, as required, so that the lwpid can
be inserted into ktrace records.  The general change has been to replace
"struct proc *" with "struct lwp *" in various function prototypes, pass
the lwp through and use l_proc to get the process pointer when needed.

Bump the kernel rev up to 1.6V

Revision 1.31 / (download) - annotate - [select for diffs], Sat May 3 18:11:37 2003 UTC (20 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.30: +9 -9 lines
Diff to previous 1.30 (colored) to selected 1.52 (colored)

DMA, not dma nor Dma.

Revision 1.30 / (download) - annotate - [select for diffs], Mon Apr 28 14:43:32 2003 UTC (20 years, 11 months ago) by fvdl
Branch: MAIN
Changes since 1.29: +3 -3 lines
Diff to previous 1.29 (colored) to selected 1.52 (colored)

Quell a strict-alias warning by applying the same cast to '&target' as
already done in all other cases.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Mar 12 00:19:21 2003 UTC (21 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.28: +3 -13 lines
Diff to previous 1.28 (colored) to selected 1.52 (colored)

Merge some more.

Revision 1.28 / (download) - annotate - [select for diffs], Wed Mar 12 00:14:40 2003 UTC (21 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.27: +548 -531 lines
Diff to previous 1.27 (colored) to selected 1.52 (colored)

Merge first bktr-sf import.

Revision 1.1.1.5 / (download) - annotate - [select for diffs] (vendor branch), Wed Mar 12 00:02:31 2003 UTC (21 years, 1 month ago) by wiz
Branch: FREEBSD, BKTR_SF
CVS Tags: BKTR_2003_03_11
Changes since 1.1.1.4: +786 -756 lines
Diff to previous 1.1.1.4 (colored) to selected 1.52 (colored)

Import of current state of bktr(4) in sourceforge repository.
Changes since last import:
. lots of whitespace cleanups
. typo fixes (e.g. hz, compatibilty)
. fix brightness ioctl return value
. wait for int ready using DELAY() instead of tight loop

Revision 1.17.2.8 / (download) - annotate - [select for diffs], Wed Jan 15 18:44:22 2003 UTC (21 years, 3 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.17.2.7: +192 -184 lines
Diff to previous 1.17.2.7 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.27 / (download) - annotate - [select for diffs], Fri Jan 10 01:38:52 2003 UTC (21 years, 3 months ago) by mjl
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base
Changes since 1.26: +192 -184 lines
Diff to previous 1.26 (colored) to selected 1.52 (colored)

Make this work on big endian platforms (mostly from OpenBSD):
Uploaded scripts work better if they are little endian, as the
card's engine expects, so convert to le first.

Also clean up attach routine a bit (use pa_id and PCI_REVISION
instead of fetching it ourselves).

This makes the driver work on my macppc G4, it can decode and
display video and tuner input. Sound does not seem to work, but
this may be my wonky formac bktr-for-macintosh card.

Revision 1.17.2.7 / (download) - annotate - [select for diffs], Sun Dec 29 20:49:30 2002 UTC (21 years, 3 months ago) by thorpej
Branch: nathanw_sa
Changes since 1.17.2.6: +71 -71 lines
Diff to previous 1.17.2.6 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.26 / (download) - annotate - [select for diffs], Wed Dec 25 06:40:27 2002 UTC (21 years, 3 months ago) by toshii
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.25: +4 -4 lines
Diff to previous 1.25 (colored) to selected 1.52 (colored)

Fix broken programming of VSCALE_HI registers in yuv422_prog.

Revision 1.25 / (download) - annotate - [select for diffs], Wed Dec 25 06:20:11 2002 UTC (21 years, 3 months ago) by toshii
Branch: MAIN
Changes since 1.24: +64 -64 lines
Diff to previous 1.24 (colored) to selected 1.52 (colored)

Consistently use BKTR_GEN_IRQ and BKTR_RESYNC instead of numbers.
Also, do some whitespace cleanup.

Revision 1.24 / (download) - annotate - [select for diffs], Wed Dec 25 06:16:58 2002 UTC (21 years, 3 months ago) by toshii
Branch: MAIN
Changes since 1.23: +5 -5 lines
Diff to previous 1.23 (colored) to selected 1.52 (colored)

Merge FreeBSD rev.1.122:
	Be consistent about "static" functions: if the function is marked
	static in its prototype, mark it static at the definition too.

Revision 1.17.2.6 / (download) - annotate - [select for diffs], Wed Dec 11 06:38:27 2002 UTC (21 years, 4 months ago) by thorpej
Branch: nathanw_sa
Changes since 1.17.2.5: +1 -1 lines
Diff to previous 1.17.2.5 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Nov 26 18:49:44 2002 UTC (21 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored) to selected 1.52 (colored)

si_ -> sel_

Revision 1.17.2.5 / (download) - annotate - [select for diffs], Tue Sep 17 21:20:32 2002 UTC (21 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.17.2.4: +3 -3 lines
Diff to previous 1.17.2.4 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Catch up to -current.

Revision 1.17.4.3 / (download) - annotate - [select for diffs], Fri Sep 6 08:45:40 2002 UTC (21 years, 7 months ago) by jdolecek
Branch: kqueue
Changes since 1.17.4.2: +3 -3 lines
Diff to previous 1.17.4.2 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored) to selected 1.52 (colored)

sync kqueue branch with HEAD

Revision 1.20.8.2 / (download) - annotate - [select for diffs], Thu Aug 29 05:22:45 2002 UTC (21 years, 7 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.20.8.1: +3 -3 lines
Diff to previous 1.20.8.1 (colored) to branchpoint 1.20 (colored) next main 1.21 (colored) to selected 1.52 (colored)

catch up with -current.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Aug 28 06:06:10 2002 UTC (21 years, 7 months ago) by toshii
Branch: MAIN
CVS Tags: kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gehenna-devsw-base
Changes since 1.21: +3 -3 lines
Diff to previous 1.21 (colored) to selected 1.52 (colored)

Remove a superfluous interrupt request bit in yuvpack_prog,
which confuses the state machine in common_bktr_intr.
This makes "mplayer -tv ..." work (but only with NTSC).

Revision 1.17.4.2 / (download) - annotate - [select for diffs], Sun Jun 23 17:48:08 2002 UTC (21 years, 10 months ago) by jdolecek
Branch: kqueue
Changes since 1.17.4.1: +3 -3 lines
Diff to previous 1.17.4.1 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

catch up with -current on kqueue branch

Revision 1.17.2.4 / (download) - annotate - [select for diffs], Thu Jun 20 03:45:57 2002 UTC (21 years, 10 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.17.2.3: +3 -3 lines
Diff to previous 1.17.2.3 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Catch up to -current.

Revision 1.20.8.1 / (download) - annotate - [select for diffs], Thu May 30 14:46:37 2002 UTC (21 years, 10 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored) to selected 1.52 (colored)

Catch up with -current.

Revision 1.21 / (download) - annotate - [select for diffs], Wed May 22 16:03:16 2002 UTC (21 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored) to selected 1.52 (colored)

bcmp -> memcmp.

Revision 1.17.4.1 / (download) - annotate - [select for diffs], Thu Jan 10 19:57:11 2002 UTC (22 years, 3 months ago) by thorpej
Branch: kqueue
Changes since 1.17: +8 -4 lines
Diff to previous 1.17 (colored) to selected 1.52 (colored)

Sync kqueue branch with -current.

Revision 1.17.2.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:15:33 2001 UTC (22 years, 5 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.17.2.2: +4 -1 lines
Diff to previous 1.17.2.2 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Catch up to -current.

Revision 1.20 / (download) - annotate - [select for diffs], Tue Nov 13 07:29:36 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
CVS Tags: newlock-base, newlock, netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6, ifpoll-base, eeh-devprop-base, eeh-devprop
Branch point for: gehenna-devsw
Changes since 1.19: +4 -1 lines
Diff to previous 1.19 (colored) to selected 1.52 (colored)

add RCSIDs

Revision 1.17.2.2 / (download) - annotate - [select for diffs], Mon Oct 8 20:11:19 2001 UTC (22 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.17.2.1: +2 -1 lines
Diff to previous 1.17.2.1 (colored) to branchpoint 1.17 (colored) to selected 1.52 (colored)

Catch up to -current.

Revision 1.17.6.1 / (download) - annotate - [select for diffs], Mon Oct 1 12:46:05 2001 UTC (22 years, 6 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.17: +5 -4 lines
Diff to previous 1.17 (colored) next main 1.18 (colored) to selected 1.52 (colored)

Catch up with -current.

Revision 1.19 / (download) - annotate - [select for diffs], Fri Sep 28 12:36:48 2001 UTC (22 years, 6 months ago) by chs
Branch: MAIN
CVS Tags: thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base3, thorpej-devvp-base2
Changes since 1.18: +2 -1 lines
Diff to previous 1.18 (colored) to selected 1.52 (colored)

don't depend on other headers to include sys/proc.h for us.

Revision 1.17.2.1 / (download) - annotate - [select for diffs], Fri Sep 21 22:36:04 2001 UTC (22 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored) to selected 1.52 (colored)

Catch up to -current.

Revision 1.18 / (download) - annotate - [select for diffs], Tue Sep 18 18:15:52 2001 UTC (22 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored) to selected 1.52 (colored)

Give initiali[sz]e all the "i"s it deserves.

Revision 1.13.2.6 / (download) - annotate - [select for diffs], Mon Mar 12 13:31:17 2001 UTC (23 years, 1 month ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13.2.5: +2 -2 lines
Diff to previous 1.13.2.5 (colored) next main 1.14 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Mar 3 00:08:05 2001 UTC (23 years, 1 month ago) by mjl
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base, thorpej-devvp-base, pre-chs-ubcperf, post-chs-ubcperf
Branch point for: thorpej-devvp, nathanw_sa, kqueue
Changes since 1.16: +0 -0 lines
Diff to previous 1.16 (colored) to selected 1.52 (colored)

Correct wrong error return in mmap fn.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Mar 1 22:53:13 2001 UTC (23 years, 1 month ago) by mjl
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.52 (colored)

Fix typo to make this compile even w/ debug defines.

Revision 1.13.2.5 / (download) - annotate - [select for diffs], Sun Feb 11 19:16:08 2001 UTC (23 years, 2 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13.2.4: +16 -16 lines
Diff to previous 1.13.2.4 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.15 / (download) - annotate - [select for diffs], Thu Jan 18 20:28:24 2001 UTC (23 years, 3 months ago) by jdolecek
Branch: MAIN
Changes since 1.14: +16 -16 lines
Diff to previous 1.14 (colored) to selected 1.52 (colored)

constify

Revision 1.13.2.4 / (download) - annotate - [select for diffs], Fri Jan 5 17:36:19 2001 UTC (23 years, 3 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13.2.3: +30 -2 lines
Diff to previous 1.13.2.3 (colored) to selected 1.52 (colored)

Sync with HEAD

Revision 1.14 / (download) - annotate - [select for diffs], Sat Dec 30 16:52:36 2000 UTC (23 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.13: +30 -2 lines
Diff to previous 1.13 (colored) to selected 1.52 (colored)

Merge 2.18 to trunk.

Revision 1.1.1.4 / (download) - annotate - [select for diffs] (vendor branch), Sat Dec 30 16:44:04 2000 UTC (23 years, 3 months ago) by wiz
Branch: FREEBSD, BKTR_SF
CVS Tags: BKTR-2_18
Changes since 1.1.1.3: +29 -1 lines
Diff to previous 1.1.1.3 (colored) to selected 1.52 (colored)

Import release 2.18 of the bktr driver. Changes since 2.17:
o Add new ioctls to allow userland programs fuller access to the I2C
  bus, BT848_MSP_READ BT848_MSP_WRITE and BT848_MSP_RESET.
o Add tuner type 0x2a. Remove 0x2c which was incorrect.
o Christian Gusenbauer <Christian.Gusenbauer@netway.at> added support
  for audio on Hauppauge cards without the audio mux. The MSP is used
  for audio selection. (the 44xxx models)

Revision 1.13.2.3 / (download) - annotate - [select for diffs], Wed Nov 22 16:04:29 2000 UTC (23 years, 5 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13.2.2: +94 -51 lines
Diff to previous 1.13.2.2 (colored) to selected 1.52 (colored)

Sync with HEAD.

Revision 1.13.2.2 / (download) - annotate - [select for diffs], Mon Nov 20 22:35:46 2000 UTC (23 years, 5 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13.2.1: +4197 -0 lines
Diff to previous 1.13.2.1 (colored) to selected 1.52 (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.13.2.1, Sat Oct 28 14:50:27 2000 UTC (23 years, 5 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.13: +0 -4240 lines
FILE REMOVED

file bktr_core.c was added on branch thorpej_scsipi on 2000-11-20 22:35:46 +0000

Revision 1.13 / (download) - annotate - [select for diffs], Sat Oct 28 14:50:27 2000 UTC (23 years, 5 months ago) by wiz
Branch: MAIN
Branch point for: thorpej_scsipi
Changes since 1.12: +40 -30 lines
Diff to previous 1.12 (colored) to selected 1.52 (colored)

Replace remaining vm_offset_t's in NetBSD code by vaddr_t; remove now
unnecessary casts added by thorpej in 1.11 of bktr_core.c. Strike one
from the TODO list.

Revision 1.12 / (download) - annotate - [select for diffs], Sat Oct 28 14:31:58 2000 UTC (23 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.11: +56 -23 lines
Diff to previous 1.11 (colored) to selected 1.52 (colored)

Merge 2.17 changes to trunk.

Revision 1.1.1.3 / (download) - annotate - [select for diffs] (vendor branch), Sat Oct 28 14:17:38 2000 UTC (23 years, 5 months ago) by wiz
Branch: FREEBSD, BKTR_SF
CVS Tags: BKTR-2_17
Changes since 1.1.1.2: +74 -36 lines
Diff to previous 1.1.1.2 (colored) to selected 1.52 (colored)

Import release 2.17 of the bktr driver.
Changes: Integration of some NetBSD changes. (FreeBSD version now is also
usable as a KLD (~= LKM).)

Revision 1.11 / (download) - annotate - [select for diffs], Wed Sep 6 19:01:45 2000 UTC (23 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.10: +32 -31 lines
Diff to previous 1.10 (colored) to selected 1.52 (colored)

Cast the argument to vtophys() to vaddr_t.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Sep 3 02:01:32 2000 UTC (23 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.9: +20 -15 lines
Diff to previous 1.9 (colored) to selected 1.52 (colored)

Use NetBSD's pcidevs file for vendors/cards as much as possible.
Recognize Pinnacle Studio PCTV Rave as Miro card, tested by rh@netbsd.org.

Revision 1.5.4.1 / (download) - annotate - [select for diffs], Mon Jul 3 02:17:12 2000 UTC (23 years, 9 months ago) by wiz
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Changes since 1.5: +26 -14 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.52 (colored)

Pull up revision 1.9 (requested by wiz):
Sync with release 2.14 of the bktr driver. Changes: mostly integration
of NetBSD changes; support for new Hauppauge tuner types.

Approved by thorpej.

Revision 1.9 / (download) - annotate - [select for diffs], Sat Jul 1 01:53:37 2000 UTC (23 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.8: +1 -10 lines
Diff to previous 1.8 (colored) to selected 1.52 (colored)

remove unnecessary #ifdef __NetBSD__'s in #ifdef __FreeBSD__;
move one #include <vm/vm.h> into #ifndef __NetBSD__

Revision 1.8 / (download) - annotate - [select for diffs], Sat Jul 1 01:39:01 2000 UTC (23 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.7: +26 -9 lines
Diff to previous 1.7 (colored) to selected 1.52 (colored)

resolve conflicts.

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Sat Jul 1 01:30:42 2000 UTC (23 years, 9 months ago) by wiz
Branch: FREEBSD, BKTR_SF
CVS Tags: BKTR-2_14
Changes since 1.1.1.1: +96 -60 lines
Diff to previous 1.1.1.1 (colored) to selected 1.52 (colored)

Import release 2.14 of the bktr driver. Changes: mostly integration
of NetBSD changes; support for new Hauppauge tuner types.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jun 30 08:12:10 2000 UTC (23 years, 9 months ago) by veego
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored) to selected 1.52 (colored)

Move the include of <vm/vm.h> into the ifndef __NetBSD__ part.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 26 14:21:10 2000 UTC (23 years, 9 months ago) by mrg
Branch: MAIN
Changes since 1.5: +5 -1 lines
Diff to previous 1.5 (colored) to selected 1.52 (colored)

remove/move more mach vm header files:

	<vm/pglist.h> -> <uvm/uvm_pglist.h>
	<vm/vm_inherit.h> -> <uvm/uvm_inherit.h>
	<vm/vm_kern.h> -> into <uvm/uvm_extern.h>
	<vm/vm_object.h> -> nothing
	<vm/vm_pager.h> -> into <uvm/uvm_pager.h>

also includes a bunch of <vm/vm_page.h> include removals (due to redudancy
with <vm/vm.h>), and a scattering of other similar headers.

Revision 1.5 / (download) - annotate - [select for diffs], Mon May 22 01:00:29 2000 UTC (23 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-base, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored) to selected 1.52 (colored)

Replaced overlooked BROOKTREE_SYSTEM_DEFAULT with BKTR_SYSTEM_DEFAULT,
as noted by Roger Hardiman.

Revision 1.4 / (download) - annotate - [select for diffs], Sun May 21 15:43:57 2000 UTC (23 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.3: +57 -34 lines
Diff to previous 1.3 (colored) to selected 1.52 (colored)

Use bktr_softc.bktr_dev.dv_xname instead of "bktr0" when printf'ing as
requested by Klaus Klein in kern/10166.
Also add device instance name to all printf's that didn't have it.

Revision 1.3 / (download) - annotate - [select for diffs], Sun May 7 14:43:32 2000 UTC (23 years, 11 months ago) by veego
Branch: MAIN
Changes since 1.2: +1 -3 lines
Diff to previous 1.2 (colored) to selected 1.52 (colored)

It is a bad idea to declare a static bootverbose variable here. Remove it.

Revision 1.2 / (download) - annotate - [select for diffs], Sun May 7 00:24:33 2000 UTC (23 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.1: +21 -18 lines
Diff to previous 1.1 (colored) to selected 1.52 (colored)

Some NetBSD specific changes; also TODO, and import script, based
on bind2netbsd by Bernd Ernesti

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun May 7 00:16:18 2000 UTC (23 years, 11 months ago) by wiz
Branch: FREEBSD, BKTR_SF
CVS Tags: BKTR-2_12
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.52 (colored)

Import of (finally busspaced) bktr-driver from FreeBSD (part 1).
This version is from the location specified in the README, modified
by bktr2netbsd, to be committed later.

Revision 1.1 / (download) - annotate - [select for diffs], Sun May 7 00:16:18 2000 UTC (23 years, 11 months ago) by wiz
Branch: MAIN
Diff to selected 1.52 (colored)

Initial revision

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>