summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-04-05Switch mvme88k to -O2 optimization by default.Miod Vallat
(the perl chunk discussed with millert@ and pushed upstream)
2004-04-05make it easier to tag releases/current/betaTheo de Raadt
2004-04-05make pftag ** (pass pointer by reference), otherwise it's never updated.Daniel Hartmeier
the parameter serves only as optimization to cache m_tag_get() results. ok henning@
2004-04-05we are at 3.5-current nowTheo de Raadt
2004-04-05Most of the non-US keyboard layouts define an ``AltGr'' key to access upMiod Vallat
to two extra symbols per key; usually, this key also serves as the compose key, if used with shift. Because of this, accessing the fourth symbol of a key would work with a sequence altgr-shift-key, but not with a sequence shift-altgr-key, since it would trigger compose behaviour. In order to be less confusing, let the AltGr behaviour win over the Compose behaviour if AltGr would produce a different symbol. Since most of those AltGr symbols are never part of compose rules, this is transparent. Problem found by xsa@; ok deraadt@ otto@ xsa@
2004-04-05Prevent stale states (states older than the local version) from overwritingRyan Thomas McBride
the local state. Tricky state comparisons from frantzen@ ok cedric@ dhartmei@ Post-ok addition of code to broadcast an update with the better local version when this happens. Torture tested by beck@
2004-04-05syncTed Unangst
2004-04-05madvise works fine without translation, from Sam Smith.Ted Unangst
2004-04-04on in-window SYN, send back rate-limited ACK; ok dhartmei frantzen markusTheo de Raadt
2004-04-04Don't print firmware upload messages in dmesg. Pointed out deraadt@, ok krw@Marco Peereboom
2004-04-03Add \n to some error messages to make dmesg looks better; ok deraadt@Alexander Yurchenko
2004-04-03Complete 'lp.d_' to 'lp->d_' changes started with r1.24 so that ramdisk_cd andKenneth R Westerback
friends compile again. ok tdeval@.
2004-04-03- report known USB device vendorsChristian Weisgerber
- uftdi works ok deraadt@
2004-04-03add pxeboot references to FILES and SEE ALSO;Jason McIntyre
ok deraadt@
2004-04-03make it look more like the other archsMichael Shalayeff
2004-04-02K6-2/3 powernow driver. not without quirks, but mostly working.Ted Unangst
testing by david@ ok deraadt@
2004-04-02set correct MAC address for Farallon eth' cards.Xavier Santolaria
Tested by Martin Reindl <mreindl at catai.org> ok miod@.
2004-04-02repair fcnv* emulation.Michael Shalayeff
generate proper signals/siginfo. partially repairs the "otto" case.
2004-04-02repair linuxisms tested on hppa, sparc, vax and i386; from Sven Dehmlow ↵Michael Shalayeff
<sven_dehmlow@gmx.de>
2004-04-02kill _8 api completelyMichael Shalayeff
2004-04-02rfork(RFMEM) shares complete vmspace. much more useful, and in line withTed Unangst
other projects' implementations.
2004-04-02Do not define AXE_DEBUG by default.Miod Vallat
2004-04-02remove terms 3 & 4 for drochner@NetBSD.org; as seen on netbsd listsTheo de Raadt
2004-04-02remove pk from copyright, seen in netbsdTheo de Raadt
2004-04-02axe usb ethernet driver hacked into the tree by taleck@oz.netTheo de Raadt
2004-04-01use NULL for ptrs. parts from Joris VinkTed Unangst
2004-04-01typos in comments: hz -> HzXavier Santolaria
initial hint from Martin Reindl <mreindl at catai.org> ok miod@ jmc@.
2004-04-01Better bounds checking in strategy(), and kill the (unused) rd flagsMiod Vallat
while there. ok tdeval@ (long ago)
2004-04-01It turns out that the so-called fast ffs(3) routines were wrong, as soon asMiod Vallat
more than one bit is set, as the ff1 instruction counts from the highest order. However, gcc/m88k with optimization enabled would use a correct, short sequence based upon ff1 and tweaks, to achieve the intended result, hence i did not catch this flaw initially. So revert to the C implementation - it is correct, still decently fast, and will only be used when compiling at -O0.
2004-04-01init kqueues normally, from pedro martellettoTed Unangst
2004-03-31remove sparc64/gcc2 workaround.Brad Smith
ok millert@ deraadt@ jason@
2004-03-31cleanup some whitespacesMichael Shalayeff
2004-03-31regenMichael Shalayeff
2004-03-31a few more hp cardsMichael Shalayeff
2004-03-31Fix false positives when comparing long file names that have theTodd C. Miller
same first 13 (or some multiple thereof) characters. Fix was verified by reporter (Kong Long); from NetBSD
2004-03-31in the tcp md5sig case allow empty (wildcard) src or dstHenning Brauer
ok markus@
2004-03-31in gettdbbysrcdst(), allow matching with either src or dst beeing a wildcardHenning Brauer
(emtpy) entry ok markus@
2004-03-30knock out INET6: media too large for some machinesTheo de Raadt
2004-03-28Check variables in incoming packets which can cause problems if they're setRyan Thomas McBride
to arbitrary values. Invalid state->timeout can hit a KASSERT in pf, the other ones should be ok but we check them just to make sure. ok dhartmei@ deraadt@
2004-03-28memory leak fix; from pat, via tedu, ok dhartmeiTheo de Raadt
2004-03-27wrap if_down() in splimp; tholo ran into splassert, miod tholo okTheo de Raadt
2004-03-26Properly m_copyback() modified TCP sequence number after demodulationDaniel Hartmeier
ok mcbride@, henning@, cedric@, deraadt@
2004-03-26don't use mbuf after free; ok mcbride, deraadt, cloderMarkus Friedl
2004-03-26Also raise advskew to 240 while we wait for pfsync to get it's bulk update.Ryan Thomas McBride
This is to deal with situations where the network is not working during boot so we become master by default - the high advskew value allows other carp boxes to preempt us when the network finally comes up. ok deraadt@ beck@
2004-03-26Allow the last page of physical memory (pci space) to be mapped. ok deraadt@Dale Rahn
2004-03-26Do not dereference pointers before checking whether they are valid (triple ↵Miod Vallat
sigh). ok deraadt@
2004-03-25Don't use mbuf pointer in error case, when it has been set to NULL.Daniel Hartmeier
From Patrick Latifi. ok markus@, henning@, deraadt@
2004-03-25Fix icmp checksum when sequence number modlation is being used.Ryan Thomas McBride
Also fix a daddr vs saddr cut-n-paste error in ICMP error handling. From dhartmei@ ok deraadt@
2004-03-24Do not check for writing to address zero on vax, since this is whereMiod Vallat
we want to be able to load a .gz kernel. ok deraadt@
2004-03-24Correct size in error message. From mickey@Ryan Thomas McBride
ok deraadt@