CVS log for src/sys/dev/pci/bktr/bktr_core.c
Up to [cvs.NetBSD.org] / src / sys / dev / pci / bktr
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.59: download - view: text, markup, annotated - select for diffs
Sun Dec 19 22:03:41 2021 UTC (3 years, 3 months ago) by andvar
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
netbsd-10-base,
netbsd-10-1-RELEASE,
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
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +7 -7
lines
fix various typos in bktr driver comments.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Sat May 23 23:42:42 2020 UTC (4 years, 10 months ago) by ad
Branches: 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
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +9 -9
lines
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 - view: text, markup, annotated - select for diffs
Wed Apr 8 14:08:10 2020 UTC (4 years, 11 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.54.38.1: preferred, colored; branchpoint 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54.38.1: +5 -5
lines
Merge changes from current as of 20200406
Revision 1.56.6.1: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:19:14 2020 UTC (5 years ago) by ad
Branches: ad-namecache
Diff to: previous 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56: +5 -5
lines
Sync with head.
Revision 1.57: download - view: text, markup, annotated - select for diffs
Sun Feb 23 10:30:43 2020 UTC (5 years, 1 month ago) by skrll
Branches: 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
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +5 -5
lines
typo in comment
Revision 1.54.38.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:07:27 2019 UTC (5 years, 9 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +9 -8
lines
Sync with HEAD
Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun Feb 3 03:19:27 2019 UTC (6 years, 1 month ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-4-RELEASE,
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
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -2
lines
- 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 - view: text, markup, annotated - select for diffs
Thu Sep 6 06:56:02 2018 UTC (6 years, 6 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54: +8 -8
lines
Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
Revision 1.55: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:29:32 2018 UTC (6 years, 6 months ago) by riastradh
Branches: MAIN
CVS tags: pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +8 -8
lines
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 - view: text, markup, annotated - select for diffs
Mon Feb 25 00:29:29 2013 UTC (12 years, 1 month ago) by tls
Branches: tls-maxphys
Diff to: previous 1.52.12.1: preferred, colored; branchpoint 1.52: preferred, colored; next MAIN 1.53: preferred, colored
Changes since revision 1.52.12.1: +2 -3
lines
resync with head
Revision 1.52.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:06:09 2013 UTC (12 years, 2 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.52.2.1: preferred, colored; branchpoint 1.52: preferred, colored; next MAIN 1.53: preferred, colored
Changes since revision 1.52.2.1: +2 -3
lines
sync with head
Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Dec 14 19:38:36 2012 UTC (12 years, 3 months ago) by joerg
Branches: 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-3-RELEASE,
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
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +2 -3
lines
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 - view: text, markup, annotated - select for diffs
Tue Nov 20 03:02:30 2012 UTC (12 years, 4 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -3
lines
Resync to 2012-11-19 00:00:00 UTC
Revision 1.52.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:21:55 2012 UTC (12 years, 4 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -3
lines
sync with head
Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Oct 27 17:18:36 2012 UTC (12 years, 5 months ago) by chs
Branches: MAIN
CVS tags: yamt-pagecache-base7,
yamt-pagecache-base6
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -3
lines
split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.
Revision 1.52: download - view: text, markup, annotated - select for diffs
Thu Jun 30 20:09:40 2011 UTC (13 years, 8 months ago) by wiz
Branches: 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
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +3 -3
lines
dependant -> dependent
Revision 1.50.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:53:59 2011 UTC (14 years ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50: +2 -3
lines
sync with head
Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Nov 13 13:52:09 2010 UTC (14 years, 4 months ago) by uebayasi
Branches: 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
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -3
lines
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 - view: text, markup, annotated - select for diffs
Wed May 13 17:21:08 2009 UTC (15 years, 10 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.49: preferred, colored; next MAIN 1.50: preferred, colored
Changes since revision 1.49: +6 -6
lines
Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.49.2.1: download - view: text, markup, annotated - select for diffs
Mon May 4 08:13:07 2009 UTC (15 years, 10 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.49: preferred, colored; next MAIN 1.50: preferred, colored
Changes since revision 1.49: +6 -6
lines
sync with head.
Revision 1.49.10.1: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:36:20 2009 UTC (15 years, 11 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.49: preferred, colored; next MAIN 1.50: preferred, colored
Changes since revision 1.49: +6 -6
lines
Sync with HEAD.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Wed Mar 18 16:00:19 2009 UTC (16 years ago) by cegger
Branches: 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
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +6 -6
lines
bzero -> memset
Revision 1.40.4.1: download - view: text, markup, annotated - select for diffs
Tue Jun 3 20:47:33 2008 UTC (16 years, 9 months ago) by skrll
Branches: wrstuden-fixsa
Diff to: previous 1.40: preferred, colored; next MAIN 1.41: preferred, colored
Changes since revision 1.40: +106 -106
lines
Sync with netbsd-4.
Revision 1.46.6.2: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:23:44 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.46.6.1: preferred, colored; branchpoint 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46.6.1: +24 -8
lines
Sync with HEAD.
Revision 1.48.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:34:35 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.48: preferred, colored; next MAIN 1.49: preferred, colored
Changes since revision 1.48: +25 -9
lines
sync with head.
Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Apr 24 15:35:28 2008 UTC (16 years, 11 months ago) by ad
Branches: 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
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +25 -9
lines
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 - view: text, markup, annotated - select for diffs
Thu Apr 10 19:13:38 2008 UTC (16 years, 11 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base
Branch point for: yamt-pf42
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +3 -3
lines
use aprint_*_dev and device_xname
Revision 1.46.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 3 12:42:54 2008 UTC (16 years, 11 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +3 -3
lines
Sync with HEAD.
Revision 1.46.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 24 07:16:04 2008 UTC (17 years ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46: +3 -3
lines
sync with head.
Revision 1.43.8.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:50 2008 UTC (17 years ago) by matt
Branches: matt-armv6
Diff to: previous 1.43.8.2: preferred, colored; branchpoint 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43.8.2: +107 -107
lines
sync with HEAD
Revision 1.35.2.7: download - view: text, markup, annotated - select for diffs
Mon Mar 17 09:15:22 2008 UTC (17 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.6: preferred, colored; branchpoint 1.35: preferred, colored; next MAIN 1.36: preferred, colored
Changes since revision 1.35.2.6: +3 -3
lines
sync with head.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Sat Mar 1 14:16:50 2008 UTC (17 years ago) by rmind
Branches: MAIN
CVS tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
ad-socklock-base1
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +3 -3
lines
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 - view: text, markup, annotated - select for diffs
Mon Feb 18 21:06:20 2008 UTC (17 years, 1 month ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44: +106 -107
lines
Sync with HEAD.
Revision 1.40.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 21 20:40:15 2008 UTC (17 years, 2 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base
Diff to: previous 1.40: preferred, colored; next MAIN 1.41: preferred, colored
Changes since revision 1.40: +106 -106
lines
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 - view: text, markup, annotated - select for diffs
Mon Jan 21 09:44:16 2008 UTC (17 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.5: preferred, colored; branchpoint 1.35: preferred, colored
Changes since revision 1.35.2.5: +106 -107
lines
sync with head
Revision 1.44.8.2: download - view: text, markup, annotated - select for diffs
Sat Jan 19 12:15:14 2008 UTC (17 years, 2 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.44.8.1: preferred, colored; branchpoint 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44.8.1: +104 -104
lines
Sync with HEAD
Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Jan 16 13:08:54 2008 UTC (17 years, 2 months ago) by jmcneill
Branches: 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
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +106 -106
lines
Don't assume that sizeof(long) == sizeof(int); makes bktr work on amd64.
Revision 1.43.8.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:54:04 2008 UTC (17 years, 2 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.43.8.1: preferred, colored; branchpoint 1.43: preferred, colored
Changes since revision 1.43.8.1: +2 -3
lines
sync with HEAD
Revision 1.44.8.1: download - view: text, markup, annotated - select for diffs
Tue Jan 8 22:11:18 2008 UTC (17 years, 2 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -3
lines
Sync with HEAD
Revision 1.45: download - view: text, markup, annotated - select for diffs
Fri Jan 4 21:18:03 2008 UTC (17 years, 2 months ago) by ad
Branches: MAIN
CVS tags: matt-armv6-base
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -3
lines
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 - view: text, markup, annotated - select for diffs
Tue Nov 6 23:29:36 2007 UTC (17 years, 4 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -3
lines
sync with HEAD
Revision 1.35.2.5: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:33:37 2007 UTC (17 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.4: preferred, colored; branchpoint 1.35: preferred, colored
Changes since revision 1.35.2.4: +3 -3
lines
sync with head.
Revision 1.43.6.1: download - view: text, markup, annotated - select for diffs
Fri Oct 26 15:46:59 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43: +3 -3
lines
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 - view: text, markup, annotated - select for diffs
Thu Oct 25 22:39:23 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43: +3 -3
lines
Sync with HEAD.
Revision 1.42.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 23 20:09:21 2007 UTC (17 years, 5 months ago) by ad
Branches: vmlocking
Diff to: previous 1.42.2.1: preferred, colored; branchpoint 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42.2.1: +3 -3
lines
Sync with head.
Revision 1.44: download - view: text, markup, annotated - select for diffs
Fri Oct 19 12:01:02 2007 UTC (17 years, 5 months ago) by ad
Branches: 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
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -3
lines
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.35.2.4: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:37:27 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.3: preferred, colored; branchpoint 1.35: preferred, colored
Changes since revision 1.35.2.3: +17 -19
lines
sync with head.
Revision 1.42.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 20:08:05 2007 UTC (17 years, 8 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42: +3 -5
lines
Sync with head.
Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Jul 9 21:01:19 2007 UTC (17 years, 8 months ago) by ad
Branches: 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
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +3 -5
lines
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 - view: text, markup, annotated - select for diffs
Tue Apr 10 00:22:13 2007 UTC (17 years, 11 months ago) by ad
Branches: vmlocking
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +3 -5
lines
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 - view: text, markup, annotated - select for diffs
Mon Mar 12 05:56:45 2007 UTC (18 years ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.41: preferred, colored; next MAIN 1.42: preferred, colored
Changes since revision 1.41: +16 -16
lines
Sync with HEAD.
Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun Mar 4 06:02:27 2007 UTC (18 years ago) by christos
Branches: MAIN
CVS tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup
Branch point for: vmlocking,
mjf-ufs-trans
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +16 -16
lines
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.35.2.3: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:10:37 2007 UTC (18 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.2: preferred, colored; branchpoint 1.35: preferred, colored
Changes since revision 1.35.2.2: +4 -2
lines
sync with head.
Revision 1.41: download - view: text, markup, annotated - select for diffs
Fri Feb 9 21:55:29 2007 UTC (18 years, 1 month ago) by ad
Branches: MAIN
CVS tags: post-newlock2-merge,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +4 -2
lines
Merge newlock2 to head.
Revision 1.38.2.2: download - view: text, markup, annotated - select for diffs
Fri Jan 19 09:39:58 2007 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.38.2.1: preferred, colored; branchpoint 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38.2.1: +4 -2
lines
Acquire proclist_mutex before sending signals.
Revision 1.35.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:49:17 2006 UTC (18 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35.2.1: preferred, colored; branchpoint 1.35: preferred, colored
Changes since revision 1.35.2.1: +69 -52
lines
sync with head.
Revision 1.38.4.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:18:06 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.38.4.1: preferred, colored; branchpoint 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38.4.1: +6 -6
lines
sync with head.
Revision 1.38.2.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:34:43 2006 UTC (18 years, 4 months ago) by ad
Branches: newlock2
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +8 -5
lines
Sync with head.
Revision 1.33.16.1.2.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 14:55:43 2006 UTC (18 years, 4 months ago) by bouyer
Branches: netbsd-3-1
CVS tags: netbsd-3-1-1-RELEASE
Diff to: previous 1.33.16.1: preferred, colored; next MAIN 1.33.16.2: preferred, colored
Changes since revision 1.33.16.1: +4 -4
lines
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 - view: text, markup, annotated - select for diffs
Sat Nov 18 14:55:13 2006 UTC (18 years, 4 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.33.16.1: preferred, colored; branchpoint 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33.16.1: +4 -4
lines
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 - view: text, markup, annotated - select for diffs
Thu Nov 16 01:33:20 2006 UTC (18 years, 4 months ago) by christos
Branches: 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
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +6 -6
lines
__unused removal on arguments; approved by core.
Revision 1.38.4.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:06:38 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +8 -5
lines
sync with head
Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Oct 12 01:31:49 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +8 -5
lines
- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386
Revision 1.33.16.1: download - view: text, markup, annotated - select for diffs
Sat Sep 16 11:28:05 2006 UTC (18 years, 6 months ago) by ghen
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3
Branch point for: netbsd-3-1
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +61 -37
lines
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 - view: text, markup, annotated - select for diffs
Thu Sep 14 12:31:39 2006 UTC (18 years, 6 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.36.8.1: preferred, colored; branchpoint 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36.8.1: +63 -39
lines
sync with head.
Revision 1.36.18.1: download - view: text, markup, annotated - select for diffs
Thu Sep 14 05:07:09 2006 UTC (18 years, 6 months ago) by riz
Branches: abandoned-netbsd-4
Diff to: previous 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36: +63 -39
lines
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 - view: text, markup, annotated - select for diffs
Sat Sep 9 02:53:54 2006 UTC (18 years, 6 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36: +63 -49
lines
sync with head
Revision 1.38: download - view: text, markup, annotated - select for diffs
Sun Sep 3 19:06:32 2006 UTC (18 years, 6 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
rpaulo-netinet-merge-pcb-base
Branch point for: yamt-splraiseipl,
newlock2
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +63 -39
lines
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 - view: text, markup, annotated - select for diffs
Sun Sep 3 15:24:48 2006 UTC (18 years, 6 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -12
lines
sync with head.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Mon Aug 28 00:06:14 2006 UTC (18 years, 7 months ago) by christos
Branches: MAIN
CVS tags: yamt-pdpolicy-base8
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -12
lines
remove unreachable code.
Revision 1.35.2.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 15:06:14 2006 UTC (18 years, 9 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +5 -5
lines
sync with head.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:23:22 2005 UTC (19 years, 3 months ago) by christos
Branches: 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
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +5 -5
lines
merge ktrace-lwp.
Revision 1.33.2.4: download - view: text, markup, annotated - select for diffs
Thu Nov 10 14:07:23 2005 UTC (19 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.33.2.3: preferred, colored; branchpoint 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33.2.3: +27 -27
lines
Sync with HEAD. Here we go again...
Revision 1.35: download - view: text, markup, annotated - select for diffs
Mon May 30 06:41:55 2005 UTC (19 years, 10 months ago) by wiz
Branches: 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
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -3
lines
Fix replaco in comment.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon May 30 04:30:18 2005 UTC (19 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +28 -28
lines
- avoid variable shadowing
- add const
Revision 1.33.2.3: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:32:19 2004 UTC (20 years, 6 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.33.2.2: preferred, colored; branchpoint 1.33: preferred, colored
Changes since revision 1.33.2.2: +5 -5
lines
Fix the sync with head I botched.
Revision 1.33.2.2: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:50:23 2004 UTC (20 years, 6 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.33.2.1: preferred, colored; branchpoint 1.33: preferred, colored
Changes since revision 1.33.2.1: +3 -3
lines
Sync with HEAD.
Revision 1.33.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 2 15:26:13 2003 UTC (21 years, 8 months ago) by darrenr
Branches: ktrace-lwp
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +5 -5
lines
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 - view: text, markup, annotated - select for diffs
Sun Jun 29 22:30:29 2003 UTC (21 years, 9 months ago) by fvdl
Branches: 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
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +3 -3
lines
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 - view: text, markup, annotated - select for diffs
Sat Jun 28 14:21:39 2003 UTC (21 years, 9 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +5 -5
lines
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 - view: text, markup, annotated - select for diffs
Sat May 3 18:11:37 2003 UTC (21 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +9 -9
lines
DMA, not dma nor Dma.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Apr 28 14:43:32 2003 UTC (21 years, 11 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -3
lines
Quell a strict-alias warning by applying the same cast to '&target' as
already done in all other cases.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Mar 12 00:19:21 2003 UTC (22 years ago) by wiz
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -13
lines
Merge some more.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Wed Mar 12 00:14:40 2003 UTC (22 years ago) by wiz
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +548 -531
lines
Merge first bktr-sf import.
Revision 1.1.1.5 (vendor branch): download - view: text, markup, annotated - select for diffs
Wed Mar 12 00:02:31 2003 UTC (22 years ago) by wiz
Branches: FREEBSD,
BKTR_SF
CVS tags: BKTR_2003_03_11
Diff to: previous 1.1.1.4: preferred, colored
Changes since revision 1.1.1.4: +786 -756
lines
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 - view: text, markup, annotated - select for diffs
Wed Jan 15 18:44:22 2003 UTC (22 years, 2 months ago) by thorpej
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.17.2.7: preferred, colored; branchpoint 1.17: preferred, colored; next MAIN 1.18: preferred, colored
Changes since revision 1.17.2.7: +192 -184
lines
Sync with HEAD.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Fri Jan 10 01:38:52 2003 UTC (22 years, 2 months ago) by mjl
Branches: MAIN
CVS tags: nathanw_sa_before_merge,
nathanw_sa_base
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +192 -184
lines
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 - view: text, markup, annotated - select for diffs
Sun Dec 29 20:49:30 2002 UTC (22 years, 3 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.17.2.6: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.6: +71 -71
lines
Sync with HEAD.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Dec 25 06:40:27 2002 UTC (22 years, 3 months ago) by toshii
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -4
lines
Fix broken programming of VSCALE_HI registers in yuv422_prog.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Dec 25 06:20:11 2002 UTC (22 years, 3 months ago) by toshii
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +64 -64
lines
Consistently use BKTR_GEN_IRQ and BKTR_RESYNC instead of numbers.
Also, do some whitespace cleanup.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Dec 25 06:16:58 2002 UTC (22 years, 3 months ago) by toshii
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +5 -5
lines
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 - view: text, markup, annotated - select for diffs
Wed Dec 11 06:38:27 2002 UTC (22 years, 3 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.17.2.5: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.5: +1 -1
lines
Sync with HEAD.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Nov 26 18:49:44 2002 UTC (22 years, 4 months ago) by christos
Branches: MAIN
CVS tags: gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +3 -3
lines
si_ -> sel_
Revision 1.17.2.5: download - view: text, markup, annotated - select for diffs
Tue Sep 17 21:20:32 2002 UTC (22 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.17.2.4: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.4: +3 -3
lines
Catch up to -current.
Revision 1.17.4.3: download - view: text, markup, annotated - select for diffs
Fri Sep 6 08:45:40 2002 UTC (22 years, 6 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.17.4.2: preferred, colored; branchpoint 1.17: preferred, colored; next MAIN 1.18: preferred, colored
Changes since revision 1.17.4.2: +3 -3
lines
sync kqueue branch with HEAD
Revision 1.20.8.2: download - view: text, markup, annotated - select for diffs
Thu Aug 29 05:22:45 2002 UTC (22 years, 7 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.20.8.1: preferred, colored; branchpoint 1.20: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20.8.1: +3 -3
lines
catch up with -current.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Aug 28 06:06:10 2002 UTC (22 years, 7 months ago) by toshii
Branches: MAIN
CVS tags: kqueue-beforemerge,
kqueue-base,
kqueue-aftermerge,
gehenna-devsw-base
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +3 -3
lines
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 - view: text, markup, annotated - select for diffs
Sun Jun 23 17:48:08 2002 UTC (22 years, 9 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.17.4.1: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.4.1: +3 -3
lines
catch up with -current on kqueue branch
Revision 1.17.2.4: download - view: text, markup, annotated - select for diffs
Thu Jun 20 03:45:57 2002 UTC (22 years, 9 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.17.2.3: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.3: +3 -3
lines
Catch up to -current.
Revision 1.20.8.1: download - view: text, markup, annotated - select for diffs
Thu May 30 14:46:37 2002 UTC (22 years, 10 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3
lines
Catch up with -current.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Wed May 22 16:03:16 2002 UTC (22 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3
lines
bcmp -> memcmp.
Revision 1.17.4.1: download - view: text, markup, annotated - select for diffs
Thu Jan 10 19:57:11 2002 UTC (23 years, 2 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +8 -4
lines
Sync kqueue branch with -current.
Revision 1.17.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:15:33 2001 UTC (23 years, 4 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.17.2.2: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.2: +4 -1
lines
Catch up to -current.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Nov 13 07:29:36 2001 UTC (23 years, 4 months ago) by lukem
Branches: 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
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +4 -1
lines
add RCSIDs
Revision 1.17.2.2: download - view: text, markup, annotated - select for diffs
Mon Oct 8 20:11:19 2001 UTC (23 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.17.2.1: preferred, colored; branchpoint 1.17: preferred, colored
Changes since revision 1.17.2.1: +2 -1
lines
Catch up to -current.
Revision 1.17.6.1: download - view: text, markup, annotated - select for diffs
Mon Oct 1 12:46:05 2001 UTC (23 years, 5 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.17: preferred, colored; next MAIN 1.18: preferred, colored
Changes since revision 1.17: +5 -4
lines
Catch up with -current.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Sep 28 12:36:48 2001 UTC (23 years, 6 months ago) by chs
Branches: MAIN
CVS tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1
lines
don't depend on other headers to include sys/proc.h for us.
Revision 1.17.2.1: download - view: text, markup, annotated - select for diffs
Fri Sep 21 22:36:04 2001 UTC (23 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -4
lines
Catch up to -current.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Sep 18 18:15:52 2001 UTC (23 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -4
lines
Give initiali[sz]e all the "i"s it deserves.
Revision 1.13.2.6: download - view: text, markup, annotated - select for diffs
Mon Mar 12 13:31:17 2001 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.13.2.5: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13.2.5: +2 -2
lines
Sync with HEAD.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Mar 3 00:08:05 2001 UTC (24 years ago) by mjl
Branches: 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
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +0 -0
lines
Correct wrong error return in mmap fn.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Mar 1 22:53:13 2001 UTC (24 years ago) by mjl
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2
lines
Fix typo to make this compile even w/ debug defines.
Revision 1.13.2.5: download - view: text, markup, annotated - select for diffs
Sun Feb 11 19:16:08 2001 UTC (24 years, 1 month ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.13.2.4: preferred, colored
Changes since revision 1.13.2.4: +16 -16
lines
Sync with HEAD.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Jan 18 20:28:24 2001 UTC (24 years, 2 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +16 -16
lines
constify
Revision 1.13.2.4: download - view: text, markup, annotated - select for diffs
Fri Jan 5 17:36:19 2001 UTC (24 years, 2 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.13.2.3: preferred, colored
Changes since revision 1.13.2.3: +30 -2
lines
Sync with HEAD
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Dec 30 16:52:36 2000 UTC (24 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +30 -2
lines
Merge 2.18 to trunk.
Revision 1.1.1.4 (vendor branch): download - view: text, markup, annotated - select for diffs
Sat Dec 30 16:44:04 2000 UTC (24 years, 3 months ago) by wiz
Branches: FREEBSD,
BKTR_SF
CVS tags: BKTR-2_18
Diff to: previous 1.1.1.3: preferred, colored
Changes since revision 1.1.1.3: +29 -1
lines
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 - view: text, markup, annotated - select for diffs
Wed Nov 22 16:04:29 2000 UTC (24 years, 4 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.13.2.2: preferred, colored
Changes since revision 1.13.2.2: +94 -51
lines
Sync with HEAD.
Revision 1.13.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 20 22:35:46 2000 UTC (24 years, 4 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.13.2.1: preferred, colored
Changes since revision 1.13.2.1: +4197 -0
lines
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 (24 years, 5 months ago) by bouyer
Branches: thorpej_scsipi
FILE REMOVED
Changes since revision 1.13: +0 -4240
lines
file bktr_core.c was added on branch thorpej_scsipi on 2000-11-20 22:35:46 +0000
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Oct 28 14:50:27 2000 UTC (24 years, 5 months ago) by wiz
Branches: MAIN
Branch point for: thorpej_scsipi
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +40 -30
lines
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 - view: text, markup, annotated - select for diffs
Sat Oct 28 14:31:58 2000 UTC (24 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +56 -23
lines
Merge 2.17 changes to trunk.
Revision 1.1.1.3 (vendor branch): download - view: text, markup, annotated - select for diffs
Sat Oct 28 14:17:38 2000 UTC (24 years, 5 months ago) by wiz
Branches: FREEBSD,
BKTR_SF
CVS tags: BKTR-2_17
Diff to: previous 1.1.1.2: preferred, colored
Changes since revision 1.1.1.2: +74 -36
lines
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 - view: text, markup, annotated - select for diffs
Wed Sep 6 19:01:45 2000 UTC (24 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +32 -31
lines
Cast the argument to vtophys() to vaddr_t.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Sep 3 02:01:32 2000 UTC (24 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +20 -15
lines
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 - view: text, markup, annotated - select for diffs
Mon Jul 3 02:17:12 2000 UTC (24 years, 8 months ago) by wiz
Branches: 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
Diff to: previous 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5: +26 -14
lines
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 - view: text, markup, annotated - select for diffs
Sat Jul 1 01:53:37 2000 UTC (24 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -10
lines
remove unnecessary #ifdef __NetBSD__'s in #ifdef __FreeBSD__;
move one #include <vm/vm.h> into #ifndef __NetBSD__
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Jul 1 01:39:01 2000 UTC (24 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +26 -9
lines
resolve conflicts.
Revision 1.1.1.2 (vendor branch): download - view: text, markup, annotated - select for diffs
Sat Jul 1 01:30:42 2000 UTC (24 years, 9 months ago) by wiz
Branches: FREEBSD,
BKTR_SF
CVS tags: BKTR-2_14
Diff to: previous 1.1.1.1: preferred, colored
Changes since revision 1.1.1.1: +96 -60
lines
Import release 2.14 of the bktr driver. Changes: mostly integration
of NetBSD changes; support for new Hauppauge tuner types.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Jun 30 08:12:10 2000 UTC (24 years, 9 months ago) by veego
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2
lines
Move the include of <vm/vm.h> into the ifndef __NetBSD__ part.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Jun 26 14:21:10 2000 UTC (24 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +5 -1
lines
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 - view: text, markup, annotated - select for diffs
Mon May 22 01:00:29 2000 UTC (24 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: netbsd-1-5-base,
minoura-xpg4dl-base,
minoura-xpg4dl
Branch point for: netbsd-1-5
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Replaced overlooked BROOKTREE_SYSTEM_DEFAULT with BKTR_SYSTEM_DEFAULT,
as noted by Roger Hardiman.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun May 21 15:43:57 2000 UTC (24 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +57 -34
lines
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 - view: text, markup, annotated - select for diffs
Sun May 7 14:43:32 2000 UTC (24 years, 10 months ago) by veego
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -3
lines
It is a bad idea to declare a static bootverbose variable here. Remove it.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun May 7 00:24:33 2000 UTC (24 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +21 -18
lines
Some NetBSD specific changes; also TODO, and import script, based
on bind2netbsd by Bernd Ernesti
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun May 7 00:16:18 2000 UTC (24 years, 10 months ago) by wiz
Branches: FREEBSD,
BKTR_SF
CVS tags: BKTR-2_12
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0
lines
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 - view: text, markup, annotated - select for diffs
Sun May 7 00:16:18 2000 UTC (24 years, 10 months ago) by wiz
Branches: MAIN
Initial revision
CVSweb <webmaster@jp.NetBSD.org>