summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-06-13Actually, because of multi-interrupts devices, use the opposite loopMiod Vallat
direction. My bad, doh !
2001-06-13add portuguese kbd map; from pmsac <pmsac@netcabo.pt>Michael Shalayeff
2001-06-13ivmask has been deprecated.Angelos D. Keromytis
2001-06-13Use blocksize, not ivmaskAngelos D. Keromytis
2001-06-13typo spotted by Mike Pechkin <mpech@prosoft.org.lv>Niklas Hallqvist
2001-06-13dmesg cleanupTheo de Raadt
2001-06-13Recent changes in sys/netinet/ assume you get setsoftnet() viaMiod Vallat
<machine/param.h>, which was not the case for these arches.
2001-06-13Repair bad printf (-Wall cleanup)Miod Vallat
2001-06-13regenMichael Shalayeff
2001-06-13cisco/aironet pci352; from Wolfgang Rupprecht <wolfgang@wsrcc.com>Michael Shalayeff
2001-06-12In intr_findvec(), correct the for() loop bounds.Miod Vallat
And display barf messages only if option DIAGNOSTIC.
2001-06-12Change RB_NOSYM, for it used to have the same value as RB_CONFIG ;Miod Vallat
makes boot -c happier.
2001-06-12Add ``scsibus* at vs?'', except on model 147, for which the vs driverMiod Vallat
has issues.
2001-06-12deal with gnu kernel dependencies right; cyxob@thief.dyndns.orgTheo de Raadt
2001-06-12one less setuid program (use an ioctl like pppstats)Theo de Raadt
2001-06-12interrupts cannot happen beforeMichael Shalayeff
*hci cannot receive interrupts before it has been initialized. this was changed to accomodate the pcibios strategy change back in pre-2.9 times since *hci_init enables interrupts at it's end and thus unmapped pci interrupt hangs the machine in the endless loop trying to deliver it (and no hci handler to ack it). this new way we disable interrupts by hands before we map 'em on pci and thus ensure that they will not crash an uninitialized *hci which, in turn, will run right after the interrupt map/establish and by the time it enables *hci interrupts all gonna be just fine. please allow us to end this stretched remark for cvs is getting a power outage in less than 20 minutes.
2001-06-12Make pci_mapreg_map take an extra argument where we canNiklas Hallqvist
put a size limitation of the PCI region to map. That makes the PERC 3/Di raid controller usable, as it publishes too much PCI memory for us to map in the kernel virtual memory. As we only access the first 256 byte it is of no use to map 128MB of kvm.
2001-06-12IPsec-related socket options; these can be set/removed/retrieved, butAngelos D. Keromytis
are not taken into consideration in anything just yet.
2001-06-12IPsec setsockopts.Angelos D. Keromytis
2001-06-12regenDavid Leonard
2001-06-12Add Archos MiniCD (comes with some Toshiba laptops). ok csapuntz,fgschDavid Leonard
2001-06-12Yet another entry for the Netgear FA410TXC; fromFederico G. Schwindt
Brandin L Claar <claar@arl.psu.edu>.
2001-06-11good when it compilesMichael Shalayeff
2001-06-11explicit IV & other fixes; pointed out as umich people tried to use this...Theo de Raadt
2001-06-11Repair SUN4M-only case compilation...Miod Vallat
2001-06-11follow x11 behaviour wrt caps^shift, even i like it this way, but deraadtifiedMichael Shalayeff
2001-06-11sync w/ netbsdMichael Shalayeff
2001-06-11Remove workaround for a gas bug fixed in binutils-2.10.1.Artur Grabowski
gas confused $f28 with $at.
2001-06-11Call doshutdownhooks() during shutdown.Miod Vallat
2001-06-11Use MI {trunc,round}_page macros.Miod Vallat
2001-06-11Bail out of wi_attach() if the ether addr cannot be read from theTodd C. Miller
card. This is useful for PCI adapters where the card is not actually present. Also check some more wi_read_record() calls and try to deal sanely (avoid using uninitialized data).
2001-06-11For PCI attachments print the CIS strings since otherwise all we haveTodd C. Miller
is info on the PCI -> PCMCIA dumb bridge and not the card itself.
2001-06-11Being able to compile sun4 (non-sun4c non-4m) kernels doesn't hurt.Miod Vallat
2001-06-10Do not print time in seconds since epoc on boot,Dale Rahn
debugging was not removed before commit.
2001-06-10inconsistantly redundant returnsMichael Shalayeff
2001-06-10Hack/workaround for gcc bug. GCC will generate a load/store double instructionDale Rahn
to do data copies, however it will not correctly identify that a load/store double will not correctly copy data where the address is misaligned. This emulates the load/store double operations in the kernel. Fixes gtk+ runtime problems. From NetBSD.
2001-06-10sg fixes from Mathias Schmocker <smat@acm.org>Michael Shalayeff
2001-06-10permit compilation when only SUN4C is defined; based on patch from Thomas ↵Jason Wright
Coffy <coffy@altern.org>.
2001-06-10Post pmap_extract() changes cleanup.Dale Rahn
bus_addr_t vs vaddr_t/paddr_t Return correct value for poalloc();
2001-06-10Post pmap_extract() changes cleanup.Miod Vallat
2001-06-10regenTodd C. Miller
2001-06-10shorten some things I added at Theo's requestTodd C. Miller
2001-06-10In wi_cmd() wait for the busy bit to clear; from NetBSD (ichiro)Todd C. Miller
2001-06-10free commit from artMichael Shalayeff
2001-06-10Art error #2Theo de Raadt
2001-06-10Art error #1Theo de Raadt
2001-06-10Semicolons are better added in canada to save cross atlantic bandwith.Bob Beck
2001-06-09fix art oopsie so this compilesBob Beck
2001-06-09Updates from NetBSD:Todd C. Miller
o Endian fixes o Missing WI_RID_AUTH_CNTL and WI_RID_MICROWAVE_OVEN bits o Move promisc mode setting to be before prism2 detect since some prism2 firmware revs need to have promisc to support WEP and it is useless to set promisc and then clear it again. o Add missing clear of ifp->if_timer when IFF_OACTIVE is cleared
2001-06-09Inclusion protection.Angelos D. Keromytis