summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-01-28First round of post-bus_dma cleanups:Jason Wright
- remove the packl/packp arrays and rework handling appropriately - destination map may or may not exist, cope. - remove a redundant bus_dmamap_sync() in _process (real sync is in _feed) - remove long deprecated q_{src,dst}pkt stuff from queue structure
2002-01-28Quick (and a little dirty) conversion to bus_dma(9).Jason Wright
2002-01-28Even more GC.Artur Grabowski
2002-01-28allocate vm pages with uvm_km_alloc (this code is ifdefed out anyway).Artur Grabowski
2002-01-28Request enough buffer space to fit the maximum size of a packet.Hugh Graham
Problem noticed by Art, and fix checked by Markus and Niels.
2002-01-28Fix memory leaks in login_getcapnum() and login_getcapsize().Mike Pechkin
millert@ ok
2002-01-28malloc/free is not really used for pvs allocsMichael Shalayeff
2002-01-28GC PR_STATIC and PR_MALLOCOK.Artur Grabowski
PR_MALLOC wasn't used at all in the code and PR_STATIC was missing pieces and should be solved with allocators.
2002-01-28PR_MALLOCOK is not necessary.Artur Grabowski
2002-01-28Re-port the NetBSD driver, but rewrite tx logic to use static buffers (andJason Wright
copies). This makes the Blade100 gem stable for me.
2002-01-27bt no moreMichael Shalayeff
2002-01-27bt no moreMichael Shalayeff
2002-01-27Make f77(1) work on sparc64. ok espiePeter Valchev
2002-01-27handle simple case to identify FamilyLocal display; ok markus@Kevin Steves
2002-01-27need privileged uid for krb5_verify_user(), ok hin@, dugsong@, netbsdMarkus Friedl
2002-01-27add X11UseLocalhost; ok markus@Kevin Steves
2002-01-27clarify the caveats of state modulation a wee bitMike Frantzen
2002-01-27Add the (former) AES candidate ESP ciphers for IKE, as ofHakan Olsson
http://csrc.nist.gov/ipsec/papers/aes-draft.00.txt In particular, recognize a Twofish proposal with cipher number 253, as used by the SSH Sentinel.
2002-01-26Kludge, protect against bus faults during pci probes. allows OpenBSDDale Rahn
to boot on a B&W G3.
2002-01-26Sync with reality, from Hans-Joerg.Hoexer@yerbouti.franken.deAngelos D. Keromytis
2002-01-26revert code to add x11 localhost display authorization entry forKevin Steves
hostname/unix:d and uts.nodename/unix:d if nodename was different than hostname. just add entry for unix:d instead. ok markus@
2002-01-26splclock() should block SPL_BIO - SPL_IMP.Dale Rahn
2002-01-25properly identify gem as a boot deviceJason Wright
2002-01-25CEAFSR defnsJason Wright
2002-01-25Reg defs for UEAFSRJason Wright
2002-01-25use EVP_MD_size(evp_md) and not evp_md->md_size; ok steveks@Markus Friedl
2002-01-25do not build debug version either; markus@ okMichael Shalayeff
2002-01-25offset to com regs is just a common iomod offset, accomodate for com consoleMichael Shalayeff
2002-01-25use static EVP_MAX_MD_SIZE buffers for EVP_DigestFinal; ok stevesk@Markus Friedl
don't use evp_md->md_size, it's not public.
2002-01-25offset cons hpa to com regs, damnitMichael Shalayeff
2002-01-25see if we are a consoleMichael Shalayeff
2002-01-25tell wsdisplay if we are a consoleMichael Shalayeff
2002-01-25init conaddr/unit if page0->mem_cons is on serialMichael Shalayeff
2002-01-25do not conflict PF_ /w pf -- rename to PZF_ and define _BITSMichael Shalayeff
2002-01-25define CONADDR and CONUNITMichael Shalayeff
2002-01-25CONADDR is defined elsewhere for hppaMichael Shalayeff
2002-01-25unused includeMarkus Friedl
2002-01-25this existed in v4 and does not appear in v3, though the latter does not ↵Michael Shalayeff
exist in it's entirety
2002-01-25In encap, sync mbuf before writing descriptorsJason Wright
2002-01-25Don't defer attachment of devices on USB (we need the keyboard asap)Jason Wright
2002-01-25Put space back at the end of the line, it's required there.Aaron Campbell
2002-01-25Add a drain hook to each pool. This hook is called in three cases.Artur Grabowski
1. When a pool hit the hard limit. Just before bailing out/sleeping. 2. When an allocator fails to allocate memory (with PR_NOWAIT). 3. Just before trying to reclaim some page in pool_reclaim. The function called form the hook should try to free some items to the pool if possible. Convert m_reclaim hooks that were embedded in MCLGET, MGET and MGETHDR into a pool drain hook (making the code much cleaner).
2002-01-25allocate pmaps with pool.Artur Grabowski
2002-01-25poolify pcreds.Artur Grabowski
2002-01-25Convert plimit allocations to pool.Artur Grabowski
2002-01-25Update. <mccreary@pch.net>Hakan Olsson
2002-01-25no static for sa_dump, explicit log cls/levelHakan Olsson
2002-01-25Typo. <mccreary@pch.net>Hakan Olsson
2002-01-25Update.Miod Vallat
2002-01-25Stat source path at the top of do_move() and return an error ifTodd C. Miller
this fails. Previously, "mv nonexistent file_with_no_write_perms" would prompt whether or not to overwrite the file w/o write perms even though 'nonexistent' would fail to lstat() later on.