summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-02-07syncTheo de Raadt
2004-02-07new fxp; cmetzTheo de Raadt
2004-02-07Use the offset provided to us by m_pulldown(), rather than using size ofRyan Thomas McBride
ip and pfsync headers. This makes us behave correctly if the packet is spread across multiple mbufs (which does not appear to happen in practice).
2004-02-06as seen in netbsd. crank bpf sizes to adapt to faster networks.Ted Unangst
max size goes to 2MB, default goes to 32k. ok canacar@ mcbride@
2004-02-06default db.log=1. as noted by Sam Smith, this is more useful. mickey concurredTed Unangst
2004-02-06permit IPv6-only operation (permit AF_INET6 bind(2) without IPv4 address).Jun-ichiro itojun Hagino
found by todd fries. markus ok
2004-02-06No SUBDIRs here.Dale Rahn
2004-02-06fix machine/machine_arch, machine_arch should be arm for all arm systemsDale Rahn
and machine needs to be not set by arch/arm, but by cats.
2004-02-06some cpus start to have a NX oriented PGEX_ITheo de Raadt
2004-02-05Decrement reference count in error case if uvm_map(9) fails and weTodd C. Miller
had previously increased the reference count. Should not happen, but... From dhartmei@; ok deraadt@
2004-02-05Correct a reference counting bug in shmat(2); adapted from FreeBSD.Todd C. Miller
OK deraadt@ tedu@ dhartmei@
2004-02-05expose two more functionsTheo de Raadt
2004-02-05xlint compatible headers. (non-gcc)Dale Rahn
2004-02-052 new cpuid ecx features in prescottTheo de Raadt
2004-02-05remove never-to-be-used codepath (IPv4 mapped address). ok mcbrideJun-ichiro itojun Hagino
2004-02-05take RFC2460 section 5 last paragraph into consideration when we compute MSSJun-ichiro itojun Hagino
(if path MTU < 1280, use 1280 as packet size and attach fragment header). markus ok
2004-02-05correct size of registers written outTheo de Raadt
2004-02-04Print a warning about disabling TSC.Alexander Yurchenko
ok deraadt@
2004-02-04Pegasos II support, works around new northbridge config odditiesDale Rahn
and other artifacts found on pegII.
2004-02-04support wi@usb on pegasos.Dale Rahn
2004-02-04Change these defines to be a display specific define and also removeDale Rahn
the really long define. ok deraadt@
2004-02-04typo within comment, deilver -> deliverDaniel Hartmeier
2004-02-04remove kludge now that proper IPV6_MMTU handling is inDaniel Hartmeier
2004-02-04Fix a number of bugs with setting pool limits which I introduced withRyan Thomas McBride
source-tracking. Found by Pyun YongHyeon. Also add support to pfctl to set the src-nodes pool limit. "Luckily" some of the bugs cancel each other out; update kernel before pfctl. ok dhartmei@
2004-02-04strictly follow RFC2460 section 5, last paragraph (sender behavior whenJun-ichiro itojun Hagino
path MTU < 1280). bug found by Georgi Guninski. ok dhartmei
2004-02-03Make sure option NO_PROPOLICE only adds the -fno-stack-protector option.Miod Vallat
2004-02-03Use the correct type for time_t.Dale Rahn
2004-02-03remove non-CBC modes from the VIA code; it is all that is used at the momentTheo de Raadt
2004-02-03Use the same values on other openbsd 32 bit archs for these for now.Dale Rahn
These agree with the values used by the compiler.
2004-02-03advertise features of our crypto chips better; ok tdevalTheo de Raadt
jason is being a slacker
2004-02-03Remove debug print.Dale Rahn
2004-02-03das boot; das cloned das from das i386Michael Shalayeff
2004-02-03no quad stuff on amd64 either; from art@Michael Shalayeff
2004-02-03repair catsMichael Shalayeff
2004-02-03move VIA xcrypt-* options to specialreg.hTheo de Raadt
2004-02-02PSL_XCRYPT is 0x40000000Theo de Raadt
2004-02-02as grange pointed out, BUFQ_ALLOC might failTed Unangst
2004-02-02Yet another signature; reported by danh@Alexander Yurchenko
2004-02-02make the stack compile if NPF=0. ok deraadt@ markus@Cedric Berger
2004-02-02missing #if NPF > 0. ok henning@Cedric Berger
2004-02-02Support for UDMA2 capable SCx200 ide found on all National SemiconductorAlexander Yurchenko
SC1100 based boards (soekris net4801 e.g.). Tested both with CF cards and UDMA2 drive. Help and three (sic!) OKs from gluk@, test and ok markus@. Thanks to Wim for the soekris board.
2004-02-02gluk points out i missed tagsTed Unangst
2004-02-02Do not evaluate pfi_index2kif[ifp->if_index] if PF is disabled.Cedric Berger
Safer and faster since we know that ifp->if_index can potentially be garbage. ok dhartmei@
2004-02-02Don't return random garbage in the default case; return the smallest ringBrad Smith
descriptor instead. From NetBSD ok deraadt@
2004-02-02I think there is no reason to splhigh around the VIA crypto stuffTheo de Raadt
anymore; also, indicate to userland that it may now safely use the instructions
2004-02-02ite is a yet another ``raid'' device, fake interface for it.Alexander Yurchenko
2004-02-01More work in attempt to get interrupts working reliably:Miod Vallat
- do not update 8259 masks after every modification, but let the code responsible for the changes update it at the most appropriate time. - be sure to correctly acknowledge interrupts on the 8259. - and various cleaning. This still fails when interrupts come too fast, at the moment.
2004-02-01ignore too small MTUs (below 296 octets), similar to IPv4.Daniel Hartmeier
2004-02-01set i386_has_xcrypt at the right place, which exposes itself asTheo de Raadt
sysctl machdep.xcrypt Do not enabled yet..
2004-02-01Use "pushfl; popfl" sequence before each xcrypt-* instruction. AccordingTheo de Raadt
to the manual, any load into the EFLAGS register clears bit 30, resulting in key reload. This is the mechanism that permits multi-process use of the xcrypt-* instruction..