summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-01-13Port of my spif driver to sparc64 (untested)Jason Wright
2002-01-13comment typosJason Wright
2002-01-12Don't cast return value from splx to (void) because splx doesn't return ↵Artur Grabowski
anything.
2002-01-12the 1190 and 1400 register maps aren't the same size don't treat them soJason Wright
(basically this was a cut and pasto).
2002-01-12House cleaning: removing some leftover sparc bits and suchJason Wright
2002-01-12Port of Iain Hibbert's magma driver to sparc64Jason Wright
2002-01-12Not used.Miod Vallat
2002-01-12Don't try UDMA modes if they aren't supported by the controllerJason Wright
even if the flags enable it. chris@ ok
2002-01-12- Only apply fastroute and route-to if we are going in the samejasoni
direction as the rule. - ok dhartmei@
2002-01-12add rediraccept and redirtimeout sysctl's.Eric Jackson
rediraccept allows one to ignore ICMP_REDIRECT redirtimeout sets a timeout on the routing entries pretaining to ICMP_REDIRECT, this timeout is defaulted to 10 minutes. (same as ipv6) From NetBSD. millert@ ok
2002-01-11Get all of the bit definitions from ad1848reg, apcdmareg, and cs4231regJason Wright
headers.
2002-01-11pad the pf_state_{host,peer} to a 32bit quantity; dhartmei@ frantzen@ okMichael Shalayeff
2002-01-11enable/disable IEN in cs4231 pin control registerJason Wright
2002-01-11Roughly same diff as sparc, better interrupt handling:Jason Wright
* check use IE bits to qualify I bits * move cs4231 chip interrupts to APC GI handling * enable/disable cs4231 IEN in pin control register
2002-01-11Oops, that's -disable- interrupt enable in cs4231_close()...Jason Wright
2002-01-11Remove last nights interrupt handling hack and do it right:Jason Wright
* check the qualify the intr pending bits with the enable bits * enable/disable the cs4231 IEN bit in the pin control register * move the cs4231 (not dma) interrupt handling to the general interrupt processing [This properly allows for sharing with, eg. magma]
2002-01-11for the "Magma LC 2+1 Sp", we have to check the 'clock' property (it'sJason Wright
64Mhz vs. the "normal" 25Mhz). This (with the cs4231 patch) makes this board work.
2002-01-11Get order of operations correct so that we clear the wsmux array andJason Wright
initialize it correctly.
2002-01-11Check result from malloc(9) when using M_NOWAIT. fgsch@ okThomas Nordin
2002-01-11Add a new sysctl that removes the requirement for reserved ports to beNathan Binkert
used by the nfs server.
2002-01-11Only check for playback interrupts if we're actually expecting them.Jason Wright
(This fixes the crash in pr2212, but the magma still doesn't want to talk to the world... looks like oscillator problems). [Many thanks to John Baker <jdbaker@blkbox.com> for donating a MAGMA board for testing]
2002-01-10Bring back pmap_motorola for mac68k.Miod Vallat
2002-01-10Replace asm statements with stuff from asm*.h, or even simple equivalentMiod Vallat
C statements. As a bonus this gets rid of the incorrect gcc 2.95 warnings in machdep.c
2002-01-10Switch m68k arches that do not exist in 68060 models back to pmap_motorola.Miod Vallat
Others will be switched after more 060 tests. This time: hp300
2002-01-10Reintroduce the pmap_motorola framework.Miod Vallat
2002-01-10Fix a locking error in pool_drain. Misc cleanup.Artur Grabowski
From NetBSD.
2002-01-10return ENOTTY not EINVAL in default: in *ioctl()Michael Shalayeff
2002-01-10check if device was opened for writing for modifying ops, also it's enotty ↵Michael Shalayeff
not einval; from Vladimir Popov <jumbo@narod.ru> and me
2002-01-10- unbreak POOL_DIAGNOSTIC.Artur Grabowski
- use ltsleep instead of simple_unlock ; tsleep
2002-01-10No more need for local define of LOCK_ASSERT.Artur Grabowski
2002-01-10Protect the pool cache magazine pool with splvm.Artur Grabowski
2002-01-10Convert some for-loops into TAILQ_FOREACH.Artur Grabowski
2002-01-10remove duplicated decl of PF_INET6. found by kjcJun-ichiro itojun Hagino
2002-01-10larger SSIZE and smaller NKMEMPAGES_MIN_DEFAULTMichael Shalayeff
2002-01-10cache_align is not usedMichael Shalayeff
2002-01-10Check result from malloc(9) when using M_NOWAIT. nate@ okThomas Nordin
2002-01-10Check result from malloc(9) when using M_NOWAIT. hugh@ okThomas Nordin
2002-01-10Check result from malloc(9) when using M_NOWAIT. jason@ okThomas Nordin
2002-01-09Call gdt_init() earlier and only once. Work done with millert@Thomas Nordin
2002-01-09regenMichael Shalayeff
2002-01-09add corega wavelanMichael Shalayeff
2002-01-09add ess1921 codec idMichael Shalayeff
2002-01-09make sure we use lkmfree() in error cases as well.Eric Jackson
millert@ ok
2002-01-09better iobase for rtii, from Maxim Tsyplakov <tm@oganer.net>Michael Shalayeff
2002-01-09streams goneEric Jackson
2002-01-09make sure mixer was opened for write for AUDIO_MIXER_WRITEMichael Shalayeff
2002-01-09If a write(2) is done with a length of zero bytes, short-circuit and do notThorsten Lockert
update the modification time -- required by POSIX. ok millert@ drahn@
2002-01-09Add labels to rules. These are arbitrary names (not to be confused withDaniel Hartmeier
tags that will be used to tag packets later on). Add pfctl -z to clear per-rule counters. Add pfctl -s labels to output per-rule counters in terse format and only for rules that have labels. Suggested by Henning Brauer.
2002-01-09o There's no such thing as a source overrun, remove the definitionJason Wright
o enable illegal read/write interrupts on 7811 (mainly for debugging)
2002-01-09Put explicit register qualifiers into the inlines, so that they work correctlyMiod Vallat
when the kernel is compiled with -O0.