summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-06-03Make minaddr sane before calling uvm_km_suballoc()Dale Rahn
2003-06-03Play it safe - when invalidating the tsb, only touch the tag andArtur Grabowski
always set it to an invalid tag. To actually have an invalid tag make sure that we never allocate the last context in ctx_alloc. Move all that magic into a simple tsb_invalidate inline function. Fixes weird race conditions in memory handling where the page in the tlb didn't match the page tables. After discussion with henric@. Tested for a while and noone objected.
2003-06-03What is it up with you sparc64 people. Do you like sitting on criticalTheo de Raadt
fixes?
2003-06-03license cleanup regarding term 4Theo de Raadt
2003-06-03Fastpath for userland crypto requests. This change makes userlandBob Beck
crypto requests attempt to call the crypto driver directly to process crypto layer requests, as opposed to queueing them in the kernel crypto thread. If we can't use the crypto devices (i.e. they're busy) we fall back to queueing the request up in the crypto thread as before. This does allow for faster performance in some cases (smaller requests, how small seems to be dependent on the card/cpu combination) where context switching is a major issue in performance. ok deraadt@ jason@
2003-06-03move some prototypes to pfvar.h. needed soon.Henning Brauer
pf_tagname2tag, pf_tag2tagname, pf_tag_unref, pf_tag_packet
2003-06-03provide pf_tag2tagname which is the reverse of pf_tagname2tag. needed soon.Henning Brauer
2003-06-03Two term license with approval from nordin@Artur Grabowski
2003-06-03remove assumption on mbuf pointed to by m0; sync w/kameJun-ichiro itojun Hagino
2003-06-03remove unneeded break after return. sync w/kameJun-ichiro itojun Hagino
2003-06-03Use an ISC-tyle license for all my code; it is simpler and more permissive.Todd C. Miller
2003-06-03nuke clause 3 & 4 (with henric's permission)Jason Wright
2003-06-03kill clause 3 and 4 from several of my copyrights, cleanup.Dale Rahn
2003-06-03license cleaning.Artur Grabowski
2003-06-03Convert to 2 term license; OK with art@Todd C. Miller
2003-06-03Nuke terms 3 & 4 on some of my software.Tobias Weingartner
2003-06-03fix tree after mickey breakageTheo de Raadt
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-06-02regenMichael Shalayeff
2003-06-02a few 8.7k modelsMichael Shalayeff
2003-06-02remove clause 3 and 4. -mojMats O Jansson
2003-06-02remove clause 3 & 4 (with fgsch permission as well)Jason Wright
2003-06-02three four kill ... dale agrees on this one as he holds a kprite on it tooMichael Shalayeff
2003-06-02three four kill ...Michael Shalayeff
2003-06-02kill exec.new bit i had forgottenMichael Shalayeff
2003-06-02one more... nuke clause 3 & 4Jason Wright
2003-06-02nuke terms 3 & 4Jason Wright
2003-06-02nuke clause 3 & 4Jason Wright
2003-06-02damn, forgot this one.Federico G. Schwindt
2003-06-02remove term 3 & 4; permission given from d.doroshenko@omnitel.netTheo de Raadt
2003-06-02kill the clauses three and four on my sourcesMichael Shalayeff
2003-06-02kill the caluses three and four on some of my codeMichael Shalayeff
2003-06-02clean up license.Federico G. Schwindt
2003-06-02nuke clase 3 & 4Jason Wright
2003-06-02Remove clause 3 & 4 (with permission from aaron and deraadt)Jason Wright
2003-06-02remove clause 3 & 4 jointly held by miod and me.Jason Wright
2003-06-02nuke clause 3 & 4Jason Wright
2003-06-02remove terms 3 (and 4 in some places) where i am the authorTheo de Raadt
2003-06-02nuke clause 3 & 4Jason Wright
2003-06-02nuke my clause 3 & 4 (and a couple jointly (c) with Theo).Jason Wright
2003-06-02Nuke my clause 3 and 4 (and a couple of files jointly (c) with Theo).Jason Wright
2003-06-02licence cleanupTheo de Raadt
2003-06-02add length checks on bus_dmamap_load_uio() on the total length vs. what theJason Wright
map is expecting. Also, sparc64 was missing the equivalent check in _load_mbuf() and the "make sure no valid mappings are returned" goop.
2003-06-02do not play w/ interrupts too much and keep 'em enabled at all times, fixes ↵Michael Shalayeff
random lockups; tested by brad@ on all models
2003-06-02Relax licence by removing the 3rd clause on all files whereI was stillMiod Vallat
using a 3 clause licence.
2003-06-02licence cleanupTheo de Raadt
2003-06-02some license cleanupTheo de Raadt
2003-06-02syncDale Rahn
2003-06-02add UNINORTHATADale Rahn
2003-06-02Do not map psycho-only interrupts on sabres. Reading from undefinedHenric Jungheim
registers and mapping strange INRs is not a good idea. ok jason@