summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-02-07We need to loose some weight.Artur Grabowski
If someone feels very opposed to this, the code is left in the Attic. Just revive and _make_it_work_.
2001-02-07XXX two horrible abuses of spl.Artur Grabowski
2001-02-07Now that niklas has fixed ddb to not barf on elf symbols, thereArtur Grabowski
is no need to disable ddb.
2001-02-07Add support for bus_space_write_region_[1248] bus_space_read_region_[1248]Dale Rahn
as needed for some drivers, primarily drivers from NetBSD, where these defines came from.
2001-02-07Some devices use NPBG others want PAGE_SIZE, and the related macros.Dale Rahn
so provide both.
2001-02-07ok, commit this since it most likely to work; i guess now it will get tested ↵Michael Shalayeff
a little bit sooner than in a few months; 10x brad@
2001-02-06missed ) in if()Michael Shalayeff
2001-02-06i can be stooooopidMichael Shalayeff
2001-02-06Committed by accident.Artur Grabowski
2001-02-06Rename pcs_bus* to pci_swiz_bus* to reduce confusion and match NetBSD.Artur Grabowski
2001-02-06I don't think there is a reason to enable IDE through isa now thatArtur Grabowski
we have pciide.
2001-02-06ipf/ipnat check the securelevel in the original code, so don't do it twice.Federico G. Schwindt
Also remove uneeded definition of ICMP_UNREACH_FILTER_PROHIB; this isn't needed. Why keep adding things to make diffs harder?
2001-02-06Don't initialize ddb until I've committed elf support for ddb.Artur Grabowski
2001-02-06spelling and KNF.Federico G. Schwindt
2001-02-06Laptop ICH2 IDEChris Cappuccio
2001-02-06syncChris Cappuccio
2001-02-06Laptop ICH2 IDEChris Cappuccio
2001-02-06Bring up-to-dateNiklas Hallqvist
2001-02-06Allow booting on alphas with DDB, although no symbols will be seen.Niklas Hallqvist
2001-02-06allow for configuring number of bridge ifaces in ukc; jason@ ok and helpMichael Shalayeff
2001-02-06Pick up work by matt@netbsd.org to get scsi working on vaxstation 4000/90.Hugh Graham
Is it working? I don't know.. Anyone have a machine to spare?
2001-02-06forgot to bzero() malloced memoryMichael Shalayeff
2001-02-06allow configuring number of tunnel ifacesMichael Shalayeff
2001-02-06allow configuring gif ifaces; itojun@ okMichael Shalayeff
2001-02-06- bridge_input() expects to be called at splnet(), not splsoftnet()Jason Wright
- add a bit more debugging (controlled by ENCDEBUG and encdebug) - turn off several more m_flags that may have been set by the higher layers (so any sharing of mbuf's in the return direction doesn't confuse the upper layers)
2001-02-06sync with latest kame (comment only)Jun-ichiro itojun Hagino
2001-02-06bad semicolon after "if" conditional.Jun-ichiro itojun Hagino
2001-02-06allow changing number of loopbacks in ukc.Michael Shalayeff
change rest of the code to use lo0ifp pointing to the corresponding struct ifnet. itojun@ and niklas@ ok
2001-02-06only call apm_perror() if get_event() failedMichael Shalayeff
2001-02-05WSMOUSEIO_SRES, WSMOUSEIO_SSCALE and WSMOUSEIO_SRATE are _IOW(), not _IOR()Matthieu Herrb
2001-02-05BOOT_CONFIG fitsTheo de Raadt
2001-02-05only attach pseudo-device if it's counter is above zero; deraadt@, maja@ okMichael Shalayeff
2001-02-05If kernel is compile with support for DDB add a ddb command to enterMats O Jansson
ddb from boot -c. -moj
2001-02-05No, Intel is not a PC_VENDOR. Intel is a PCI_VENDOR.Artur Grabowski
2001-02-05Sigh. Another horrible abuse in this file..Artur Grabowski
When checking if this is a pci-eisa bridge check the VENDOR too, don't just assume that no other vendor will do a sia with product id PCI_PRODUCT_INTEL_PCEB.
2001-02-05reverse the logic in pcebmatch to match other match functions.Artur Grabowski
2001-02-05set the correct size in pceb_ca.Artur Grabowski
2001-02-05with a bunch of encapsulation layers, eg. (IPsec+IP+EtherIP+ether_header),Jason Wright
the arp data will not necessarily be in the first mbuf: add m_pullup()'s to make it so.
2001-02-05We won't include mouse and lpt support on the floppy in the nearest future.Artur Grabowski
2001-02-05syncTheo de Raadt
2001-02-04Add support for pseudo devices. Based on the new code in config.Mats O Jansson
N.B. this change requires the kernel to be configured with a new config since it need new information from ioconf.c. -moj ok @deraadt
2001-02-04For unicast packets destined for the bridge machine itself, learn from theJason Wright
SRC address (not the DST).
2001-02-04#endif in the wrong place, causing certain kernel configs to not compile;Aaron Campbell
brian@Awfulhak.org
2001-02-04shrink USB sectionTheo de Raadt
2001-02-04Fix an off-by-{1,2,4} error in i386_space_copy(). Console is now working muchAaron Campbell
more nicely, but not perfect yet.
2001-02-04Minor indent botch.Aaron Campbell
2001-02-04Permit scrollback (SHIFT+PGUP/PGDN) to be activated from a USB keyboard.Aaron Campbell
2001-02-03Do a check for the OpenBSD note before doing any emulation probes.Artur Grabowski
This way OpenBSD will be explicitly treated first and not handled as a fallback. This should speed archs with many emulations.
2001-02-03make overlaping bus space copy operations work; solves vga's scrolling problemsMichael Shalayeff
2001-02-03- define and use EtherIP version 3 (2 byte padded header instead of theJason Wright
single byte header used in V2), and drop support for V2. - that done, remove some of the buffer copies that were used as alignment shims