summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-08-08Remove IPCOMP option, it's now part of IPSEC option. You still need toJean-Jacques Bernard-Gundol
enable ipcomp via sysctl to use it. deraadt@ ok.
2001-08-08__dead doesn't work on function pointers.Artur Grabowski
2001-08-08leave the dma engines polling for a bit after the last descriptor has beenJason Wright
passed through. After a few seconds (5 currently) of no activity, stop them completely.
2001-08-08Initial support for RC4 operations (This probably won't work yet asJason Wright
the caller of *_process() doesn't seem to initialize crd_klen correctly; it has a zero value... still debugging...).
2001-08-08__dead not __noreturn__Todd C. Miller
2001-08-08nuke __attribute__((__noreturn__)) when used in conjunction with __deadTodd C. Miller
2001-08-08nuke __attribute__((__noreturn__)) when used in conjunction with __deadTodd C. Miller
2001-08-08Fix broken logic in wait flags passed to extent_alloc.Artur Grabowski
2001-08-07Not used.Miod Vallat
2001-08-07One more typo.Miod Vallat
There are probably lots of free commits left for spelling wizards out there.
2001-08-07Change tsleep into ltsleep.Artur Grabowski
ltsleep takes an additional argument - a simplelock and unlocks it when it's safe to do so. tsleep now becomes a wrapper around ltsleep. From NetBSD
2001-08-07Sprinkle a few Holy Volatiles (tm).Miod Vallat
2001-08-07Make config(8) choose which source files to exclude, from the kernelMiod Vallat
configuration file options, rather than putting ugly preprocessor statements and compile empty files.
2001-08-07For gcc >= 2.5 #define __dead and __pure using the __noreturn__Todd C. Miller
and __const__ attributes.
2001-08-07We now have predict_{true,false}Artur Grabowski
2001-08-07tag fixes; Denis Afonin <dfa@solo.ee>Jason Wright
2001-08-07Add a bunch of macros from NetBSD.Artur Grabowski
__GNUC_PREREQ__(minor,major) evaluates to true if use gcc that has the version major.minor or newer. __predict_{true,false} are there to make use of the new branch prediction hint mechanisms in gcc 3.0.
2001-08-07unused, bye bye.Brad Smith
2001-08-07enable ah & esp by default, now that we trust the code moreTheo de Raadt
2001-08-07remove this header which has been unused for over 3 yrs now.Brad Smith
-- Ok'd by: jj@
2001-08-07syncTheo de Raadt
2001-08-07another ESS; hideishi@magisystem.netTheo de Raadt
2001-08-06remove vm_conf.h; art@ okMichael Shalayeff
2001-08-06Bring latest powerpc pmap.c fix here too.Miod Vallat
2001-08-06Remove legacy __BDEVSW_DUMP_OLD_TYPE code.Miod Vallat
2001-08-06__BDEVSW_DUMP_OLD_TYPE no more.Miod Vallat
2001-08-06Working kernel crash dumps.Miod Vallat
2001-08-06__BDEVSW_DUMP_OLD_TYPE no more.Miod Vallat
2001-08-06Working kernel crash dumps.Miod Vallat
2001-08-06Properly identify the boot drive on 147 if it is not scsi id #0.Miod Vallat
2001-08-06Correct misinitialization of a variable. This worked before?Dale Rahn
2001-08-06Don't drop packets if we're using an ACQUIRE policy and some errorAngelos D. Keromytis
occurs while notifying key mgmt; also, always check for new TDBs for policies where the destination gateway is left unspecified (end-to-end IPsec case), to avoid asking for new SAs from key mgmt.
2001-08-06Fix errant reference to DEBUG_INTR to use correct SIOP_DEBUG_INTR.Kenneth R Westerback
Eliminates conflict with same name in wdc.c. Spotted by Heikki Korpela.
2001-08-06Add a new type voff_t (right now it's typedefed as off_t) used for offsetsArtur Grabowski
into objects. Gives the possibilty to mmap beyond the size of vaddr_t. From NetBSD.
2001-08-06Use pool to allocate extent region descriptors.Artur Grabowski
2001-08-05Decrease first stage loader boot address. Makes memory-challengedMiod Vallat
mvme boards able to boot from disk.
2001-08-05Use syntaxic sugar provided by PMAP_NEWMiod Vallat
2001-08-05Actually, move the check inside the switch.Angelos D. Keromytis
2001-08-05Only flush the policies if the message type is UNSPEC.Angelos D. Keromytis
2001-08-05syncTheo de Raadt
2001-08-05Hint: another vendor who made a PCI chipsetTheo de Raadt
2001-08-05syncTheo de Raadt
2001-08-05VScom PCI 200-L; lmoore@starwon.com.auTheo de Raadt
2001-08-05put in tags for ARC4 to please ben, who now has no excusesTheo de Raadt
2001-08-03This driver allows vlan sized frames on 905B, set IFCAP_VLAN_MTU on that chipChris Cappuccio
2001-08-03Fix logic for detecting 82558 and newer chips in pci;Chris Cappuccio
This driver allows large frames for those chips so set IFCAP_VLAN_MTU for 82558+
2001-08-03Set IFCAP_VLAN_MTU, the Realtek chip does not discard/truncate large frames.Chris Cappuccio
2001-08-03Set IFCAP_VLAN_MTU, this driver already allows vlan-size framesChris Cappuccio
2001-08-03Use IFCAP_VLAN_MTU and IFCAP_VLAN_HWTAGGING capabilities:Chris Cappuccio
LINK0 disappears; we now set IFCAP_VLAN_HWTAGGING at ifnet->if_capabilities in the Ethernet driver for cards/drivers which support hardware tagging. MTU ambiguity disppears; we now set IFCAP_VLAN_MTU in the Ethernet driver when we know the chip will not truncate/discard vlan-sized frames. Only allow the MTU to be changed within the scope of the parent interface's MTU. (Here we also take into account IFCAP_VLAN_MTU) Propagate hardware-assisted IP/TCP/UDP checksumming flags to the vlan interface if the card supports hardware tagging (from NetBSD)
2001-08-03Shupid me, bugtty is necessary...Miod Vallat