summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-02-04switch onto temp stack for exit2(); implementation from netbsdMichael Shalayeff
2002-02-04Cleanup mountroot-related definitions.Miod Vallat
2002-02-04make hptdump take a space arg and print only entried for that space, all on -1Michael Shalayeff
2002-02-04fix a typo; from Sam Smith <S@mSmith.net>Michael Shalayeff
2002-02-04add SYSLOG_FACILITY_NOT_SET = -1, SYSLOG_LEVEL_NOT_SET = -1,Markus Friedl
fixes arm/netbsd; based on patch from bjh21@netbsd.org; ok djm@
2002-02-04cross checking of announced vs actual pktype in pubkey/hostbaed auth; ok ↵Markus Friedl
stevesk@
2002-02-04Add some comments documenting why we use fd_ofiles insteadArtur Grabowski
of fd_getfile in some places. Also, get rid of the check for old == new in dupfdopen and document why the semantics of fd_getfile make it unnecessary.
2002-02-04Don't ffree the newly allocated file before calling dupfdopen.Artur Grabowski
In some cases that could cause dupfdopen->fd_getfile to access freed memory setting fd_ofiles[fd] to NULL is not a solution because that would cause a race condition. Free the new file after dupfdopen and use closef (because it will be necessary in the future. XXX - consider more cleanup of the code around dupfdopen.
2002-02-04unneeded includesKevin Steves
2002-02-03ssh-add also adds $HOME/.ssh/id_rsa and $HOME/.ssh/id_dsa now.Kevin Steves
2002-02-03some KeepAlive cleanup/clarify; ok markus@Kevin Steves
2002-02-03more cross checking if announced vs. used key type; ok stevesk@Markus Friedl
2002-02-03generic callbacks are not really used, remove andMarkus Friedl
add a callback for msg of type SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ok djm@
2002-02-03remove unused channel_input_channel_requestMarkus Friedl
2002-02-03don't use channel_input_channel_request and callbackMarkus Friedl
use new server_input_channel_req() instead: server_input_channel_req does generic request parsing on server side session_input_channel_req handles just session specific things now ok djm@
2002-02-03document SLIST_REMOVE; vedge@csoft.org (pr2373)Jason Wright
2002-02-03restore hpt size computation, does not break things as i thoughtMichael Shalayeff
2002-02-03map user space uncached, later to be dealt with.Michael Shalayeff
fix {is,clear}_{refe,mod} properly scan the lists, finally. new, rewritten code is to make those things better. make page{zero,copy} better. do debug printfs through a DPRINTF macro.
2002-02-03only check for serial console if any compiledMichael Shalayeff
2002-02-03defer non-0 units to keep iface order rightMichael Shalayeff
2002-02-03better space mapMichael Shalayeff
2002-02-03flush cache on attentionMichael Shalayeff
2002-02-03fix missing srNsMichael Shalayeff
2002-02-02update for newer binutilsMichael Shalayeff
2002-02-02missing NULLMichael Shalayeff
2002-02-02small stupid tyops (mostly from netbsd); some cleanups from meMichael Shalayeff
2002-02-02fix 'physmem' usageMichael Shalayeff
2002-02-02implement the rest of /dev/mem devices; from netbsdMichael Shalayeff
2002-02-02fix some protosMichael Shalayeff
2002-02-02Reorganize sys_fcntl to make future changes easier.Artur Grabowski
2002-02-02Be more consistent about using fd_getfile where it matters.Artur Grabowski
2002-02-02tiny fixens from netbsdMichael Shalayeff
2002-02-01machdep.led_blink works on sparc64, tooJason Wright
2002-02-01machdep.led_blinkJason Wright
2002-02-01minor changes.Federico G. Schwindt
2002-02-01Clean up auxio a bit and add machdep.led_blink sysctl (like sparc),Jason Wright
portions from NetBSD.
2002-02-01use kenter/kremove in pagemove(), from netbsdMichael Shalayeff
2002-02-01Default kernel is bsd around these parts.Jason Wright
2002-02-01long arg int format fix, from netbsdMichael Shalayeff
2002-02-01clean the hppa leftover, from netbsdMichael Shalayeff
2002-02-01getaddrinfo regressTodd T. Fries
2002-02-01Only squeeze a short key/value pair onto a page with other complete key/valueTodd C. Miller
pairs, not onto a page containing the end of a big pair; mycroft@netbsd.org
2002-02-01Return a useful errno value in the overflow case. Also, print aTodd C. Miller
message to stderr in one more case. mycroft@netbsd.org
2002-02-01If (keysize+datasize)%(bsize=14)==0, insertion of a `big key' would cause anTodd C. Miller
invariant (actually, an ugly hack) to fail, and all Hell would break loose. When deleting a big key, the offset of an empty page should be bsize, not bsize-1; otherwise an insertion into the empty page will cause the new key to be elongated by 1 byte. Make the packing more dense in a couple of cases. From mycroft@netbsd.org
2002-02-01After writing a page out to disk, run the page back through the user'sTodd C. Miller
input filter to ensure we don't end up with a cached copy of the page in the wrong byte-order for the host cpu. This fixes a fatal bug which bites when the DB 'lorder' is different to the cpu's, and a cached page is accessed soon after it was flushed to disk. From scw@netbsd.org
2002-02-01Fix a condition where the hole would be inserted in the wrong place during aTodd C. Miller
split; mycroft@netbsd.org
2002-02-01missing \nJason Wright
2002-02-01Don't MALLOC/FREE with variable size.Artur Grabowski
2002-02-01Allocate kqueues with pool.Artur Grabowski
2002-02-01Document -vArtur Grabowski