Up to [cvs.NetBSD.org] / src / sys / arch / x68k / dev
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: MAIN
Revision 1.105 / (download) - annotate - [select for diffs], Sun Oct 14 19:06:25 2012 UTC (7 months, 1 week ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
tls-maxphys-nbase,
tls-maxphys-base,
khorben-n900,
agc-symver-base,
agc-symver,
HEAD
Changes since 1.104: +8 -6
lines
Diff to previous 1.104 (colored)
KNF and space nits
Revision 1.104 / (download) - annotate - [select for diffs], Sun Oct 14 18:38:32 2012 UTC (7 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.103: +253 -30
lines
Diff to previous 1.103 (colored)
Add floppy format support. Mostly taken from sys/dev/isa/fd.c. Tested both fdNa (1232KB, 1024bytes/sector, 8sectors/track) and fdNc (1200KB, 512bytes/sector, 15sectors/track) format on X68030 using fdformat(1). Finally we can prepare NetBSD/x68k install floppies without Human68k (except actual initial bootstrap).
Revision 1.103 / (download) - annotate - [select for diffs], Sun Oct 14 17:25:59 2012 UTC (7 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.102: +14 -15
lines
Diff to previous 1.102 (colored)
Terminate DMAC and call bus_dmamap_unload(9) properly in all FDC xfer error paths, as sys/dev/isa/fd.c does. Fixes unexpected DMAC errors (and possible VM panic due to un-unloaded dmamap) on the first floppy access after read/write errors.
Revision 1.102 / (download) - annotate - [select for diffs], Sun Oct 14 17:20:18 2012 UTC (7 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.101: +7 -2
lines
Diff to previous 1.101 (colored)
Before probing floppy drives, call NE7CMD_SENSEI and fdcresult() to drain possible pending FDC interrupts. Taken from sys/dev/isa/fd.c. Hopefully might fix occasional fd drive probe failure (but not confirmed).
Revision 1.101 / (download) - annotate - [select for diffs], Tue May 15 12:17:33 2012 UTC (12 months, 1 week ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
jmcneill-usbmp-base10
Branch point for: tls-maxphys
Changes since 1.100: +10 -6
lines
Diff to previous 1.100 (colored)
- check bus_space_map(9) return value - use BUS_SPACE_MAP_SHIFTED_ODD for clarify - define and use proper macro instead of magic
Revision 1.100 / (download) - annotate - [select for diffs], Sun May 13 03:00:40 2012 UTC (12 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.99: +138 -129
lines
Diff to previous 1.99 (colored)
KNF and cosmetics. No binary change.
Revision 1.99 / (download) - annotate - [select for diffs], Sun May 13 00:47:16 2012 UTC (12 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.98: +4 -9
lines
Diff to previous 1.98 (colored)
- use <sys/bus.h> rather than <machine/bus.h> - no need to include uvm_extern.h - include "ioconf.h" for struct cfdriver foo_cd
Revision 1.98 / (download) - annotate - [select for diffs], Sat May 12 15:29:22 2012 UTC (12 months, 1 week ago) by tsutsui
Branch: MAIN
Changes since 1.97: +15 -3
lines
Diff to previous 1.97 (colored)
Explicitly specify a proper FDC data register address for HD63450 DMAC
to avoid confusion.
Previous one (fdc->sc_addr + fddata) wasn't a right address for
the FDC's data register but one for the command register by accident,
but FDC ignores A0 address input (connected to A1 of x68k address bus)
during DMA xfer (i.e. when DACK is asserted) so it happened to work
as expected on the real X680x0 hardware, but caused trouble on emulators.
The inconsistency was found by Y.Sugahara during debugging XM6i emulator
(and it will be fixed in the next release).
FDC behavior during DMA is confirmed by uPD72068 hardware application note.
XXX: There is no proper MI API to specify DMA address for DMA controller
(like MC68450) to access devices mapped to memory space by bus_space(9).
Revision 1.97 / (download) - annotate - [select for diffs], Sun May 6 19:46:18 2012 UTC (12 months, 2 weeks ago) by tsutsui
Branch: MAIN
Changes since 1.96: +8 -2
lines
Diff to previous 1.96 (colored)
Make x68k's floppy driver actually work with proper bounce buffer xfer ops on machines with extended high memories: - dev/fd.c: - add missing bus_dmamap_sync(9) POSTREAD/POSTWRITE ops - x68k/machdep.c: - update avail_end variable (which is used to check DMA'able memory range in intio.c) properly per probed extended memory regions The problem was found during debugging XM6i's FDC emulation by Y.Sugahara, isaki@, and me. Should be pulled up to netbsd-6.
Revision 1.96 / (download) - annotate - [select for diffs], Thu Feb 2 19:43:01 2012 UTC (15 months, 2 weeks ago) by tls
Branch: MAIN
CVS Tags: yamt-pagecache-base4,
netbsd-6-base,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2
Branch point for: netbsd-6
Changes since 1.95: +2 -11
lines
Diff to previous 1.95 (colored)
Entropy-pool implementation move and cleanup. 1) Move core entropy-pool code and source/sink/sample management code to sys/kern from sys/dev. 2) Remove use of NRND as test for presence of entropy-pool code throughout source tree. 3) Remove use of RND_ENABLED in device drivers as microoptimization to avoid expensive operations on disabled entropy sources; make the rnd_add calls do this directly so all callers benefit. 4) Fix bug in recent rnd_add_data()/rnd_add_uint32() changes that might have lead to slight entropy overestimation for some sources. 5) Add new source types for environmental sensors, power sensors, VM system events, and skew between clocks, with a sample implementation for each. ok releng to go in before the branch due to the difficulty of later pullup (widespread #ifdef removal and moved files). Tested with release builds on amd64 and evbarm and live testing on amd64.
Revision 1.95 / (download) - annotate - [select for diffs], Sat Nov 19 22:51:21 2011 UTC (18 months ago) by tls
Branch: MAIN
CVS Tags: jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base
Branch point for: jmcneill-usbmp
Changes since 1.94: +3 -3
lines
Diff to previous 1.94 (colored)
First step of random number subsystem rework described in <20111022023242.BA26F14A158@mail.netbsd.org>. This change includes the following: An initial cleanup and minor reorganization of the entropy pool code in sys/dev/rnd.c and sys/dev/rndpool.c. Several bugs are fixed. Some effort is made to accumulate entropy more quickly at boot time. A generic interface, "rndsink", is added, for stream generators to request that they be re-keyed with good quality entropy from the pool as soon as it is available. The arc4random()/arc4randbytes() implementation in libkern is adjusted to use the rndsink interface for rekeying, which helps address the problem of low-quality keys at boot time. An implementation of the FIPS 140-2 statistical tests for random number generator quality is provided (libkern/rngtest.c). This is based on Greg Rose's implementation from Qualcomm. A new random stream generator, nist_ctr_drbg, is provided. It is based on an implementation of the NIST SP800-90 CTR_DRBG by Henric Jungheim. This generator users AES in a modified counter mode to generate a backtracking-resistant random stream. An abstraction layer, "cprng", is provided for in-kernel consumers of randomness. The arc4random/arc4randbytes API is deprecated for in-kernel use. It is replaced by "cprng_strong". The current cprng_fast implementation wraps the existing arc4random implementation. The current cprng_strong implementation wraps the new CTR_DRBG implementation. Both interfaces are rekeyed from the entropy pool automatically at intervals justifiable from best current cryptographic practice. In some quick tests, cprng_fast() is about the same speed as the old arc4randbytes(), and cprng_strong() is about 20% faster than rnd_extract_data(). Performance is expected to improve. The AES code in src/crypto/rijndael is no longer an optional kernel component, as it is required by cprng_strong, which is not an optional kernel component. The entropy pool output is subjected to the rngtest tests at startup time; if it fails, the system will reboot. There is approximately a 3/10000 chance of a false positive from these tests. Entropy pool _input_ from hardware random numbers is subjected to the rngtest tests at attach time, as well as the FIPS continuous-output test, to detect bad or stuck hardware RNGs; if any are detected, they are detached, but the system continues to run. A problem with rndctl(8) is fixed -- datastructures with pointers in arrays are no longer passed to userspace (this was not a security problem, but rather a major issue for compat32). A new kernel will require a new rndctl. The sysctl kern.arandom() and kern.urandom() nodes are hooked up to the new generators, but the /dev/*random pseudodevices are not, yet. Manual pages for the new kernel interfaces are forthcoming.
Revision 1.94 / (download) - annotate - [select for diffs], Sun Apr 10 15:23:06 2011 UTC (2 years, 1 month ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
jym-xensuspend-nbase,
jym-xensuspend-base,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp
Branch point for: yamt-pagecache
Changes since 1.93: +26 -2
lines
Diff to previous 1.93 (colored)
Fix hangup on the first floppy access since 2008. Problem was reported by isaki@. On X680x0 (and most other machines other than ISA FDC), the ready line from FDD is connected to FDC and fdc driver can be notified of the ready state after fd_set_motor() by interrupts. In this case no need to use callout(9) to wait the FDD motor stabilized, and the callout(9) method used in ISA fdc(4) driver rather caused infinite unhandled interrupts since callout(9) was no longer invoked during interrupt storm after vmlocking2 merge, I guess. Should be pulled up to netbsd-5.
Revision 1.93 / (download) - annotate - [select for diffs], Sun Jun 6 04:52:01 2010 UTC (2 years, 11 months ago) by mrg
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base7,
uebayasi-xip-base6,
uebayasi-xip-base5,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: jruoho-x86intr
Changes since 1.92: +3 -3
lines
Diff to previous 1.92 (colored)
fix PR 6724 - convert m68k options to defflag's. this means that M680[12346] are now available from opt_m68k_arch.h. FPSP meantioned in the PR has already been fixed, and i could not find any more. i built these kernels to ensure i did not break their builds: amiga: GENERIC DRACO atari: HADES FALCON MILAN-PCIIDE mac68k: GENERIC sun2: GENERIC sun3: GENERIC GENERIC3X cesfic: attempted GENERIC, does not build due to lack of machine/bus.h hp300: GENERIC luna68k: GENERIC mvme68k: GENERIC news68k: GENERIC next68k: GENERIC x68k: GENERIC
Revision 1.92 / (download) - annotate - [select for diffs], Sun Jan 18 02:40:05 2009 UTC (4 years, 4 months ago) by isaki
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,
uebayasi-xip-base1,
uebayasi-xip-base,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
matt-premerge-20091211,
jymxensuspend-base,
jym-xensuspend
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.91: +4 -4
lines
Diff to previous 1.91 (colored)
Clean up header files.
Revision 1.91 / (download) - annotate - [select for diffs], Tue Jan 13 13:35:52 2009 UTC (4 years, 4 months ago) by yamt
Branch: MAIN
CVS Tags: mjf-devfs2-base
Changes since 1.90: +8 -8
lines
Diff to previous 1.90 (colored)
g/c BUFQ_FOO() macros and use bufq_foo() directly.
Revision 1.90 / (download) - annotate - [select for diffs], Sat Jan 10 06:45:06 2009 UTC (4 years, 4 months ago) by isaki
Branch: MAIN
Changes since 1.89: +10 -5
lines
Diff to previous 1.89 (colored)
Clean up messages. - fdcintr: remove duplicated status message. - fdioctl: make it easy to track ioctl.
Revision 1.89 / (download) - annotate - [select for diffs], Sat Jan 10 06:41:06 2009 UTC (4 years, 4 months ago) by isaki
Branch: MAIN
Changes since 1.88: +2 -6
lines
Diff to previous 1.88 (colored)
fdc->sc_dev is not necessary.
Revision 1.88 / (download) - annotate - [select for diffs], Thu Dec 18 03:18:27 2008 UTC (4 years, 5 months ago) by isaki
Branch: MAIN
Changes since 1.87: +3 -2
lines
Diff to previous 1.87 (colored)
Make it compilable again.
Revision 1.87 / (download) - annotate - [select for diffs], Tue Dec 16 22:35:28 2008 UTC (4 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.86: +30 -38
lines
Diff to previous 1.86 (colored)
replace bitmask_snprintf(9) with snprintb(3)
Revision 1.86 / (download) - annotate - [select for diffs], Fri Dec 5 13:14:42 2008 UTC (4 years, 5 months ago) by isaki
Branch: MAIN
CVS Tags: haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Changes since 1.85: +8 -8
lines
Diff to previous 1.85 (colored)
Use TAILQ_* macros.
Revision 1.85 / (download) - annotate - [select for diffs], Sun Jun 29 09:44:11 2008 UTC (4 years, 10 months ago) by isaki
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
simonb-wapbl-nbase,
simonb-wapbl-base,
netbsd-5-base,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
haad-dm-base1
Branch point for: nick-hppapmap,
netbsd-5,
haad-dm
Changes since 1.84: +5 -3
lines
Diff to previous 1.84 (colored)
Make it compilable even if FDDEBUG was defined.
Revision 1.84 / (download) - annotate - [select for diffs], Wed Jun 25 12:56:40 2008 UTC (4 years, 10 months ago) by isaki
Branch: MAIN
Changes since 1.83: +5 -2
lines
Diff to previous 1.83 (colored)
Link to device_t. I had forgotten it in previous commit.
Revision 1.83 / (download) - annotate - [select for diffs], Wed Jun 25 08:14:59 2008 UTC (4 years, 10 months ago) by isaki
Branch: MAIN
Changes since 1.82: +49 -50
lines
Diff to previous 1.82 (colored)
Split device_t/softc. Use aprint*() and device_xname().
Revision 1.82 / (download) - annotate - [select for diffs], Sat Jun 14 13:36:24 2008 UTC (4 years, 11 months ago) by isaki
Branch: MAIN
CVS Tags: yamt-pf42-base4,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base
Changes since 1.81: +5 -4
lines
Diff to previous 1.81 (colored)
Fix compile errors.
Revision 1.81 / (download) - annotate - [select for diffs], Fri Jun 13 13:57:58 2008 UTC (4 years, 11 months ago) by cegger
Branch: MAIN
Changes since 1.80: +17 -18
lines
Diff to previous 1.80 (colored)
use device_lookup_private to get softc
Revision 1.80 / (download) - annotate - [select for diffs], Mon Apr 28 20:23:39 2008 UTC (5 years ago) by martin
Branch: MAIN
CVS Tags: yamt-pf42-base3,
yamt-pf42-base2,
yamt-nfs-mp-base2,
hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa,
simonb-wapbl
Changes since 1.79: +2 -9
lines
Diff to previous 1.79 (colored)
Remove clause 3 and 4 from TNF licenses
Revision 1.79 / (download) - annotate - [select for diffs], Wed Oct 17 19:58:01 2007 UTC (5 years, 7 months ago) by garbled
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-pf42-baseX,
yamt-pf42-base,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
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,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
mjf-devfs,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
jmcneill-pm-base,
jmcneill-base,
hpcarm-cleanup-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
ad-socklock-base1
Branch point for: yamt-pf42,
yamt-nfs-mp,
mjf-devfs2
Changes since 1.78: +2 -2
lines
Diff to previous 1.78 (colored)
Merge the ppcoea-renovation branch to HEAD. This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the various ports to eliminate near-identical copies of files in every tree. Additionally there is a new PIC system that unifies the interface to interrupt code for all different OEA ppc arches. The work for this branch was done by a variety of people, too long to list here. TODO: bebox still needs work to complete the transition to -renovation. ofppc still needs a bunch of work, which I will be looking at. ev64260 still needs to be renovated amigappc was not attempted. NOTES: pmppc was removed as an arch, and moved to a evbppc target.
Revision 1.78 / (download) - annotate - [select for diffs], Mon Oct 8 16:41:09 2007 UTC (5 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base3,
vmlocking-base,
ppcoea-renovation-base,
bouyer-xenamd64
Changes since 1.77: +3 -4
lines
Diff to previous 1.77 (colored)
Merge disk init changes from the vmlocking branch. These seperate init / destroy of 'struct disk' from attach / detach.
Revision 1.77 / (download) - annotate - [select for diffs], Sun Jul 29 12:15:42 2007 UTC (5 years, 9 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base2,
yamt-x86pmap-base,
nick-csl-alignment-base5,
matt-mips64-base,
hpcarm-cleanup
Branch point for: yamt-x86pmap,
matt-armv6,
jmcneill-pm
Changes since 1.76: +4 -7
lines
Diff to previous 1.76 (colored)
It's not a good idea for device drivers to modify b_flags, as they don't need to understand the locking around that field. Instead of setting B_ERROR, set b_error instead. b_error is 'owned' by whoever completes the I/O request.
Revision 1.76 / (download) - annotate - [select for diffs], Mon Jul 9 20:52:35 2007 UTC (5 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: nick-csl-alignment-base,
mjf-ufs-trans-base
Branch point for: nick-csl-alignment,
matt-mips64
Changes since 1.75: +6 -6
lines
Diff to previous 1.75 (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.75 / (download) - annotate - [select for diffs], Sun May 20 10:52:40 2007 UTC (6 years ago) by isaki
Branch: MAIN
Changes since 1.74: +7 -7
lines
Diff to previous 1.74 (colored)
Make it compilable with FDDEBUG.
Revision 1.74 / (download) - annotate - [select for diffs], Sat May 12 06:31:18 2007 UTC (6 years ago) by isaki
Branch: MAIN
CVS Tags: yamt-idlelwp-base8
Changes since 1.73: +10 -10
lines
Diff to previous 1.73 (colored)
Clean up white spaces and tabs.
Revision 1.73 / (download) - annotate - [select for diffs], Sun Mar 11 08:09:24 2007 UTC (6 years, 2 months ago) by isaki
Branch: MAIN
CVS Tags: thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup
Branch point for: ppcoea-renovation,
mjf-ufs-trans
Changes since 1.72: +10 -10
lines
Diff to previous 1.72 (colored)
white space, indent and KNF.
Revision 1.72 / (download) - annotate - [select for diffs], Mon Mar 5 20:41:48 2007 UTC (6 years, 2 months ago) by he
Branch: MAIN
Branch point for: vmlocking
Changes since 1.71: +7 -7
lines
Diff to previous 1.71 (colored)
Cast to char* before doing pointer arithmetic.
Revision 1.71 / (download) - annotate - [select for diffs], Sun Mar 4 06:01:05 2007 UTC (6 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.70: +6 -6
lines
Diff to previous 1.70 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.70 / (download) - annotate - [select for diffs], Fri Apr 14 13:09:06 2006 UTC (7 years, 1 month ago) by blymn
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-splraiseipl,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
post-newlock2-merge,
newlock2-nbase,
newlock2-base,
newlock2,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
matt-nb4-arm-base,
matt-nb4-arm,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
chap-midi-nbase,
chap-midi-base,
chap-midi,
ad-audiomp-base,
ad-audiomp,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-idlelwp
Changes since 1.69: +3 -3
lines
Diff to previous 1.69 (colored)
Make i/o statistics collection more generic, include tape drives and nfs mounts in the set of devices that statistics will be reported on.
Revision 1.69 / (download) - annotate - [select for diffs], Tue Mar 28 17:38:28 2006 UTC (7 years, 1 month ago) by thorpej
Branch: MAIN
CVS Tags: yamt-pdpolicy-base4,
yamt-pdpolicy-base3
Changes since 1.68: +4 -3
lines
Diff to previous 1.68 (colored)
Use device_unit().
Revision 1.68 / (download) - annotate - [select for diffs], Thu Feb 23 05:37:48 2006 UTC (7 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base
Branch point for: yamt-pdpolicy,
peter-altq,
elad-kernelauth
Changes since 1.67: +12 -12
lines
Diff to previous 1.67 (colored)
Use device_parent().
Revision 1.67 / (download) - annotate - [select for diffs], Sat Dec 24 20:07:41 2005 UTC (7 years, 5 months ago) by perry
Branch: MAIN
Branch point for: yamt-uio_vmspace,
simonb-timecounters,
rpaulo-netinet-merge-pcb
Changes since 1.66: +6 -6
lines
Diff to previous 1.66 (colored)
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Revision 1.66 / (download) - annotate - [select for diffs], Sun Dec 11 12:19:37 2005 UTC (7 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.65: +5 -5
lines
Diff to previous 1.65 (colored)
merge ktrace-lwp.
Revision 1.65 / (download) - annotate - [select for diffs], Sat Oct 15 17:29:11 2005 UTC (7 years, 7 months ago) by yamt
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
Changes since 1.64: +10 -10
lines
Diff to previous 1.64 (colored)
- change the way to specify a bufq strategy. (by string rather than by number) - rather than embedding bufq_state in driver softc, have a pointer to the former. - move bufq related functions from kern/subr_disk.c to kern/subr_bufq.c. - rename method to strategy for consistency. - move some definitions which don't need to be exposed to the rest of kernel from sys/bufq.h to sys/bufq_impl.h. (is it better to move it to kern/ or somewhere?) - fix some obvious breakage in dev/qbus/ts.c. (not tested)
Revision 1.64 / (download) - annotate - [select for diffs], Sun Jun 12 23:43:49 2005 UTC (7 years, 11 months ago) by he
Branch: MAIN
Branch point for: yamt-lazymbuf
Changes since 1.63: +5 -5
lines
Diff to previous 1.63 (colored)
Sprinkle some consts to allow this to compile with -Wcast-qual.
Revision 1.63 / (download) - annotate - [select for diffs], Tue Jan 18 07:12:15 2005 UTC (8 years, 4 months ago) by chs
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
yamt-km-base2,
yamt-km-base,
yamt-km,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
matt-timespec,
kent-audio2-base
Changes since 1.62: +63 -128
lines
Diff to previous 1.62 (colored)
de-__P, remove register, ansify.
Revision 1.62 / (download) - annotate - [select for diffs], Thu Oct 28 07:07:39 2004 UTC (8 years, 6 months ago) by yamt
Branch: MAIN
CVS Tags: kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: kent-audio2
Changes since 1.61: +3 -2
lines
Diff to previous 1.61 (colored)
move buffer queue related stuffs from buf.h to their own header, bufq.h.
Revision 1.61 / (download) - annotate - [select for diffs], Sat May 8 08:38:36 2004 UTC (9 years ago) by minoura
Branch: MAIN
Changes since 1.60: +3 -3
lines
Diff to previous 1.60 (colored)
An unexported header file was #included from an exported header file. Introduce <machine/opmreg.h> and move some definitions useful to userland progs.
Revision 1.60 / (download) - annotate - [select for diffs], Sat Nov 15 15:02:08 2003 UTC (9 years, 6 months ago) by isaki
Branch: MAIN
CVS Tags: 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
Changes since 1.59: +13 -14
lines
Diff to previous 1.59 (colored)
make it compilable even if FDDEBUG was defined.
Revision 1.59 / (download) - annotate - [select for diffs], Sat Nov 1 12:41:59 2003 UTC (9 years, 6 months ago) by jdolecek
Branch: MAIN
Changes since 1.58: +19 -12
lines
Diff to previous 1.58 (colored)
fix several places where variables might be used uninitialized
Revision 1.58 / (download) - annotate - [select for diffs], Thu Aug 7 16:30:22 2003 UTC (9 years, 9 months ago) by agc
Branch: MAIN
Changes since 1.57: +3 -7
lines
Diff to previous 1.57 (colored)
Move UCB-licensed code from 4-clause to 3-clause licence. Patches provided by Joel Baker in PR 22364, verified by myself.
Revision 1.57 / (download) - annotate - [select for diffs], Tue Jul 15 01:44:51 2003 UTC (9 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.56: +4 -1
lines
Diff to previous 1.56 (colored)
rcsid
Revision 1.56 / (download) - annotate - [select for diffs], Wed Jun 18 08:58:42 2003 UTC (9 years, 11 months ago) by drochner
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.55: +1 -2
lines
Diff to previous 1.55 (colored)
don't #include <sys/dkstat.h> where it is (appearently) unused
Revision 1.55 / (download) - annotate - [select for diffs], Sat May 3 18:11:07 2003 UTC (10 years ago) by wiz
Branch: MAIN
Changes since 1.54: +6 -6
lines
Diff to previous 1.54 (colored)
DMA, not dma nor Dma.
Revision 1.54 / (download) - annotate - [select for diffs], Tue Apr 1 15:15:25 2003 UTC (10 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.53: +2 -2
lines
Diff to previous 1.53 (colored)
Use PAGE_SIZE rather than NBPG.
Revision 1.53 / (download) - annotate - [select for diffs], Sun Feb 2 08:37:28 2003 UTC (10 years, 3 months ago) by isaki
Branch: MAIN
Changes since 1.52: +5 -5
lines
Diff to previous 1.52 (colored)
Fix printf format for DIAGNOSTIC, in the wake of daddr_t having changed. Use PRId64, instead of %lld.
Revision 1.52 / (download) - annotate - [select for diffs], Sat Jan 25 14:13:46 2003 UTC (10 years, 3 months ago) by isaki
Branch: MAIN
Changes since 1.51: +3 -3
lines
Diff to previous 1.51 (colored)
Make it compilable with 64bit daddr_t.
Revision 1.51 / (download) - annotate - [select for diffs], Wed Jan 1 02:31:13 2003 UTC (10 years, 4 months ago) by thorpej
Branch: MAIN
CVS Tags: nathanw_sa_before_merge,
nathanw_sa_base,
fvdl_fs64_base
Changes since 1.50: +2 -2
lines
Diff to previous 1.50 (colored)
Use aprint_normal() for cfprint routines.
Revision 1.50 / (download) - annotate - [select for diffs], Wed Oct 23 09:12:43 2002 UTC (10 years, 7 months ago) by jdolecek
Branch: MAIN
CVS Tags: kqueue-aftermerge,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw
Changes since 1.49: +2 -2
lines
Diff to previous 1.49 (colored)
merge kqueue branch into -current kqueue provides a stateful and efficient event notification framework currently supported events include socket, file, directory, fifo, pipe, tty and device changes, and monitoring of processes and signals kqueue is supported by all writable filesystems in NetBSD tree (with exception of Coda) and all device drivers supporting poll(2) based on work done by Jonathan Lemon for FreeBSD initial NetBSD port done by Luke Mewburn and Jason Thorpe
Revision 1.49 / (download) - annotate - [select for diffs], Sun Oct 20 02:33:08 2002 UTC (10 years, 7 months ago) by isaki
Branch: MAIN
CVS Tags: kqueue-beforemerge
Changes since 1.48: +2 -2
lines
Diff to previous 1.48 (colored)
Remove unbalanced parenthesis in debug message.
Revision 1.48 / (download) - annotate - [select for diffs], Sun Oct 13 10:11:31 2002 UTC (10 years, 7 months ago) by isaki
Branch: MAIN
Changes since 1.47: +24 -13
lines
Diff to previous 1.47 (colored)
Style fixes.
Revision 1.47 / (download) - annotate - [select for diffs], Wed Oct 2 16:02:39 2002 UTC (10 years, 7 months ago) by thorpej
Branch: MAIN
CVS Tags: kqueue-base
Changes since 1.46: +3 -3
lines
Diff to previous 1.46 (colored)
Add trailing ; to CFATTACH_DECL.
Revision 1.46 / (download) - annotate - [select for diffs], Tue Oct 1 04:59:10 2002 UTC (10 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.45: +3 -4
lines
Diff to previous 1.45 (colored)
Missed one use of CFATTACH_DECL().
Revision 1.45 / (download) - annotate - [select for diffs], Tue Oct 1 04:43:01 2002 UTC (10 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.44: +3 -4
lines
Diff to previous 1.44 (colored)
Use CFATTACH_DECL().
Revision 1.44 / (download) - annotate - [select for diffs], Fri Sep 27 20:37:09 2002 UTC (10 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (colored)
Declare all cfattach structures const.
Revision 1.43 / (download) - annotate - [select for diffs], Fri Sep 6 13:22:39 2002 UTC (10 years, 8 months ago) by gehenna
Branch: MAIN
Changes since 1.42: +17 -26
lines
Diff to previous 1.42 (colored)
Merge the gehenna-devsw branch into the trunk. This merge changes the device switch tables from static array to dynamically generated by config(8). - All device switches is defined as a constant structure in device drivers. - The new grammer ``device-major'' is introduced to ``files''. device-major <prefix> char <num> [block <num>] [<rules>] - All device major numbers must be listed up in port dependent majors.<arch> by using this grammer. - Added the new naming convention. The name of the device switch must be <prefix>_[bc]devsw for auto-generation of device switch tables. - The backward compatibility of loading block/character device switch by LKM framework is broken. This is necessary to convert from block/character device major to device name in runtime and vice versa. - The restriction to assign device major by LKM is completely removed. We don't need to reserve LKM entries for dynamic loading of device switch. - In compile time, device major numbers list is packed into the kernel and the LKM framework will refer it to assign device major number dynamically.
Revision 1.42 / (download) - annotate - [select for diffs], Thu Aug 1 12:45:20 2002 UTC (10 years, 9 months ago) by hannken
Branch: MAIN
CVS Tags: gehenna-devsw-base
Changes since 1.41: +9 -9
lines
Diff to previous 1.41 (colored)
Convert to new device buffer queue interface. Approved by: NISHIMURA Takeshi <nsmrtks@netbsd.org>
Revision 1.41 / (download) - annotate - [select for diffs], Wed Jul 31 11:01:26 2002 UTC (10 years, 9 months ago) by isaki
Branch: MAIN
Changes since 1.40: +3 -3
lines
Diff to previous 1.40 (colored)
Fix compile warnings in debug code.
Revision 1.40 / (download) - annotate - [select for diffs], Thu Dec 27 02:23:24 2001 UTC (11 years, 4 months ago) by wiz
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,
ifpoll,
eeh-devprop-base,
eeh-devprop
Branch point for: gehenna-devsw
Changes since 1.39: +8 -10
lines
Diff to previous 1.39 (colored)
bcopy/bcmp/bzero -> memcpy/memcmp/memset
Revision 1.39 / (download) - annotate - [select for diffs], Wed Dec 19 14:53:26 2001 UTC (11 years, 5 months ago) by minoura
Branch: MAIN
Changes since 1.38: +1 -5
lines
Diff to previous 1.38 (colored)
Implement bus_dmamap_sync properly. dma_cachectl is now used only for DMAC array chain.
Revision 1.38 / (download) - annotate - [select for diffs], Sun Nov 25 00:38:50 2001 UTC (11 years, 6 months ago) by minoura
Branch: MAIN
Changes since 1.37: +3 -4
lines
Diff to previous 1.37 (colored)
Avoid using array chaining mode of DMAC.
Revision 1.37 / (download) - annotate - [select for diffs], Sun Jul 8 18:06:45 2001 UTC (11 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
thorpej-devvp-base,
pre-chs-ubcperf,
post-chs-ubcperf
Branch point for: thorpej-devvp,
nathanw_sa,
kqueue
Changes since 1.36: +3 -3
lines
Diff to previous 1.36 (colored)
Correct various misspellings of 'transfer' and inflected forms.
Revision 1.36 / (download) - annotate - [select for diffs], Wed May 2 12:50:24 2001 UTC (12 years ago) by minoura
Branch: MAIN
Changes since 1.35: +3 -2
lines
Diff to previous 1.35 (colored)
Do not use constants, but macros.
Revision 1.35 / (download) - annotate - [select for diffs], Thu Jun 29 07:07:52 2000 UTC (12 years, 10 months ago) by mrg
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Changes since 1.34: +1 -3
lines
Diff to previous 1.34 (colored)
remove include of <vm/vm.h>. <vm/vm.h> -> <uvm/uvm_extern.h>
Revision 1.34 / (download) - annotate - [select for diffs], Tue Apr 18 21:06:06 2000 UTC (13 years, 1 month ago) by minoura
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2,
netbsd-1-5,
minoura-xpg4dl-base,
minoura-xpg4dl
Changes since 1.33: +2 -1
lines
Diff to previous 1.33 (colored)
Explicitly include opt_m680x0.h.
Revision 1.33 / (download) - annotate - [select for diffs], Fri Apr 7 16:58:56 2000 UTC (13 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.32: +10 -8
lines
Diff to previous 1.32 (colored)
Use separate callouts for motor-on and motor-off. Fixes a condition where the floppy driver would wedge because a motor-on timeout would be cancelled by another I/O operation cancelling a motor-off timeout. From enami tsugutomo <enami@sm.sony.co.jp>.
Revision 1.32 / (download) - annotate - [select for diffs], Mon Mar 27 15:49:34 2000 UTC (13 years, 1 month ago) by minoura
Branch: MAIN
Changes since 1.31: +2 -2
lines
Diff to previous 1.31 (colored)
Make this compile (typo in callout change).
Revision 1.31 / (download) - annotate - [select for diffs], Thu Mar 23 06:47:32 2000 UTC (13 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.30: +32 -19
lines
Diff to previous 1.30 (colored)
New callout mechanism with two major improvements over the old timeout()/untimeout() API: - Clients supply callout handle storage, thus eliminating problems of resource allocation. - Insertion and removal of callouts is constant time, important as this facility is used quite a lot in the kernel. The old timeout()/untimeout() API has been removed from the kernel.
Revision 1.30 / (download) - annotate - [select for diffs], Mon Feb 7 20:16:54 2000 UTC (13 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: chs-ubc2-newbase
Changes since 1.29: +2 -1
lines
Diff to previous 1.29 (colored)
Fix a bug in disksort_*() which caused non-optimal ordering when multiple active partitions were on a single spindle. Add a b_rawblkno member to struct buf which contains the non-partition-relative block number to sort by.
Revision 1.29 / (download) - annotate - [select for diffs], Fri Jan 21 23:39:57 2000 UTC (13 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.28: +24 -24
lines
Diff to previous 1.28 (colored)
Update for sys/buf.h/disksort_*() changes.
Revision 1.28 / (download) - annotate - [select for diffs], Wed Mar 24 14:07:38 1999 UTC (14 years, 2 months ago) by minoura
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
netbsd-1-4,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame,
fvdl-softdep-base,
fvdl-softdep,
comdex-fall-1999-base,
comdex-fall-1999,
chs-ubc2-base,
chs-ubc2
Branch point for: wrstuden-devbsize,
thorpej_scsipi
Changes since 1.27: +5 -3
lines
Diff to previous 1.27 (colored)
Shut up gcc -Wall.
Revision 1.27 / (download) - annotate - [select for diffs], Wed Mar 24 05:51:17 1999 UTC (14 years, 2 months ago) by mrg
Branch: MAIN
Changes since 1.26: +2 -4
lines
Diff to previous 1.26 (colored)
completely remove Mach VM support. all that is left is the all the header files as UVM still uses (most of) these.
Revision 1.26 / (download) - annotate - [select for diffs], Thu Mar 18 16:15:53 1999 UTC (14 years, 2 months ago) by minoura
Branch: MAIN
Changes since 1.25: +3 -2
lines
Diff to previous 1.25 (colored)
Correct rnd_attach_source args.
Revision 1.25 / (download) - annotate - [select for diffs], Tue Mar 16 16:30:17 1999 UTC (14 years, 2 months ago) by minoura
Branch: MAIN
Changes since 1.24: +295 -213
lines
Diff to previous 1.24 (colored)
Merged minoura_x68k_bus_h branch.
Revision 1.24 / (download) - annotate - [select for diffs], Mon Feb 8 16:33:17 1999 UTC (14 years, 3 months ago) by bouyer
Branch: MAIN
CVS Tags: minoura_x68k_bus_h-base3
Changes since 1.23: +16 -2
lines
Diff to previous 1.23 (colored)
Change DIOCEJECT to do what's needed to eject a device before the eject command (unlock for sd and cd) if no other partitions are open, return EBUSY otherwise. DIOCEJECT will have the old semantic if its argument is not 0. The old ioctl has been renamed to ODIOCEJECT for binary compatibility.
Revision 1.23 / (download) - annotate - [select for diffs], Sat Aug 22 14:38:37 1998 UTC (14 years, 9 months ago) by minoura
Branch: MAIN
CVS Tags: minoura_x68k_bus_h-base2,
minoura_x68k_bus_h-base,
kenh-if-detach-base,
kenh-if-detach,
chs-ubc-base,
chs-ubc
Branch point for: minoura_x68k_bus_h
Changes since 1.22: +5 -5
lines
Diff to previous 1.22 (colored)
Eliminated vm_offset_t and vm_size_t.
Revision 1.22 / (download) - annotate - [select for diffs], Sat Aug 15 04:22:46 1998 UTC (14 years, 9 months ago) by mycroft
Branch: MAIN
Changes since 1.21: +37 -2
lines
Diff to previous 1.21 (colored)
Assign copyrights to TNF.
Revision 1.21 / (download) - annotate - [select for diffs], Sat Aug 15 03:02:44 1998 UTC (14 years, 9 months ago) by mycroft
Branch: MAIN
Changes since 1.20: +2 -2
lines
Diff to previous 1.20 (colored)
Make copyright notices with my name consistent.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Aug 4 16:51:51 1998 UTC (14 years, 9 months ago) by minoura
Branch: MAIN
Changes since 1.19: +12 -10
lines
Diff to previous 1.19 (colored)
__BROKEN_INDIRECT_CONFIG fixes.
Revision 1.19 / (download) - annotate - [select for diffs], Sat Jul 4 22:18:46 1998 UTC (14 years, 10 months ago) by jonathan
Branch: MAIN
CVS Tags: eeh-paddr_t-base,
eeh-paddr_t
Changes since 1.18: +3 -1
lines
Diff to previous 1.18 (colored)
defopt DDB.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Jun 30 11:59:10 1998 UTC (14 years, 10 months ago) by msaitoh
Branch: MAIN
Changes since 1.17: +3 -1
lines
Diff to previous 1.17 (colored)
sync with -current after a long silence
Revision 1.17 / (download) - annotate - [select for diffs], Sun May 24 19:32:49 1998 UTC (15 years ago) by is
Branch: MAIN
Changes since 1.16: +1 -3
lines
Diff to previous 1.16 (colored)
Back out the defopt for M680?0. As pointed out to me, this breaks ports which dont use the M680?0 the way Amiga, Atari, Mac68k, and X68k do. I must have missed this in the past discussion about this project.
Revision 1.16 / (download) - annotate - [select for diffs], Sat May 23 20:51:14 1998 UTC (15 years ago) by is
Branch: MAIN
Changes since 1.15: +3 -1
lines
Diff to previous 1.15 (colored)
Move M680[2346]0 to opt_m68kcpu.h. XXX Some explicit dependencies could be removed now from the individual arch/$ARCH/conf/Makefile.$ARCH files, but this is still to be done.
Revision 1.15 / (download) - annotate - [select for diffs], Mon Jan 12 21:13:42 1998 UTC (15 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.14: +2 -8
lines
Diff to previous 1.14 (colored)
Update for changes to config.
Revision 1.14 / (download) - annotate - [select for diffs], Sun Oct 12 14:48:21 1997 UTC (15 years, 7 months ago) by oki
Branch: MAIN
CVS Tags: netbsd-1-3-base,
netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA,
netbsd-1-3,
marc-pcmcia-base
Changes since 1.13: +28 -12
lines
Diff to previous 1.13 (colored)
Added prototype.
Revision 1.13 / (download) - annotate - [select for diffs], Fri Oct 10 21:42:40 1997 UTC (15 years, 7 months ago) by oki
Branch: MAIN
Changes since 1.12: +13 -18
lines
Diff to previous 1.12 (colored)
Fdopen --> fdopen
Revision 1.12 / (download) - annotate - [select for diffs], Thu Jul 17 02:16:19 1997 UTC (15 years, 10 months ago) by jtk
Branch: MAIN
CVS Tags: thorpej-signal-base,
thorpej-signal,
marc-pcmcia-bp
Branch point for: marc-pcmcia
Changes since 1.11: +5 -2
lines
Diff to previous 1.11 (colored)
use locator defines in "locators.h" to index cf_loc[]
Revision 1.11 / (download) - annotate - [select for diffs], Wed Apr 2 17:10:41 1997 UTC (16 years, 1 month ago) by oki
Branch: MAIN
CVS Tags: bouyer-scsipi
Changes since 1.10: +2 -1
lines
Diff to previous 1.10 (colored)
Add bits[64] declaration
Revision 1.10 / (download) - annotate - [select for diffs], Wed Feb 5 16:35:47 1997 UTC (16 years, 3 months ago) by oki
Branch: MAIN
CVS Tags: mrg-vm-swap,
is-newarp-before-merge,
is-newarp-base,
is-newarp
Changes since 1.9: +25 -13
lines
Diff to previous 1.9 (colored)
Use bitmask_snprintf (from i386)
Revision 1.9 / (download) - annotate - [select for diffs], Fri Jan 31 02:15:54 1997 UTC (16 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
Use new machine-independent mountroothook code.
Revision 1.8 / (download) - annotate - [select for diffs], Sun Oct 13 03:34:44 1996 UTC (16 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-setroot
Changes since 1.7: +32 -32
lines
Diff to previous 1.7 (colored)
backout previous kprintf change
Revision 1.7 / (download) - annotate - [select for diffs], Fri Oct 11 00:39:25 1996 UTC (16 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.6: +32 -32
lines
Diff to previous 1.6 (colored)
printf -> kprintf, sprintf -> ksprintf
Revision 1.6 / (download) - annotate - [select for diffs], Tue Aug 27 21:58:56 1996 UTC (16 years, 8 months ago) by cgd
Branch: MAIN
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
change cfprint_t type definition to take a const char *, rather than a char *, because that's what was really intended, and because if the print function modifies the string, various things could become unhappy (so the string should _not_ be modified).
Revision 1.5 / (download) - annotate - [select for diffs], Sun Aug 11 15:32:49 1996 UTC (16 years, 9 months ago) by oki
Branch: MAIN
Changes since 1.4: +10 -6
lines
Diff to previous 1.4 (colored)
drive 2 (or 3) couldn't access with drive 0 (or 1). fixed this.
Revision 1.4 / (download) - annotate - [select for diffs], Mon Jul 8 16:32:12 1996 UTC (16 years, 10 months ago) by oki
Branch: MAIN
Changes since 1.3: +25 -5
lines
Diff to previous 1.3 (colored)
move wait for insert system floppy to mountroot_hook stuff
Revision 1.3 / (download) - annotate - [select for diffs], Wed Jun 5 16:21:46 1996 UTC (16 years, 11 months ago) by oki
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
fixed compiler error at kvtop().
Revision 1.2 / (download) - annotate - [select for diffs], Tue May 21 15:32:02 1996 UTC (17 years ago) by oki
Branch: MAIN
CVS Tags: netbsd-1-2-base
Branch point for: netbsd-1-2
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
Some cleanup. - Add missing return-type of function. - Add missing prototype. - some gcc -Wall printf warning.
Revision 1.1 / (download) - annotate - [select for diffs], Sun May 5 12:17:04 1996 UTC (17 years ago) by oki
Branch: MAIN
Initial revision