summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-01Fix logic error (&& vs. ||), found while looking for inspiration for smtpdJacek Masiulaniec
state machine needed by the features that are coming along. ok claudio@
2010-02-01unmute GPIO 0 on IDT 92HD73C1 codecs found in Dell machinesJacob Meuser
2010-02-01Limit memory to 256MB at the moment, (intrusive) part of the branchMiod Vallat
prediction workarounds until something better is devised.
2010-02-01On Loongson 2 processors, clear the branch target buffer on userland->kernelMiod Vallat
transitions, to work around an evil horde of evil bugs in the processor's branch prediction logic. This finally makes the Lemote Yeeloong stable, and I can now spend my time looking for hair implants resellers.
2010-02-01Fix thinko in previous.Miod Vallat
2010-01-31update to get a working bsd.rdOtto Moerbeek
2010-01-31fix ELF64_R_INFO for mips64el to cast to 64 bits before shift; ok miod@Otto Moerbeek
2010-01-31initial ramdisk stuff, produces a working bsd.rdOtto Moerbeek
2010-01-31syncMiod Vallat
2010-01-31add a fix from OpenSSL CVS for SA38200.Jasper Lievisse Adriaanse
"Modify compression code so it avoids using ex_data free functions. This stops applications that call CRYPTO_free_all_ex_data() prematurely leaking memory." looks ok to markus@
2010-01-31Remove !__LP64__ bits and __LP64__ tests.Miod Vallat
2010-01-31Add hotplug and wsmux.Miod Vallat
2010-01-31According to Linux, some magic programming is necessary to prevent deadlocks,Miod Vallat
so do the same magic ourselves too.
2010-01-31Remove unnecessary comparison, pointed out by Tiago Cunha.Nicholas Marriott
2010-01-31Add option WSCONS_COMPAT_RAWKBD for X. ok miod@.Matthieu Herrb
2010-01-31Return a correct address in smfb_mmap(), allows X to work with wsfb.Miod Vallat
2010-01-31If there is only 256MB of physical memory or less, access it from physicalMiod Vallat
address zero onwards, instead of using the 2GB window. No functional change (except maybe unbreaking never tried 2E support).
2010-01-31add HOWTO_PIPEX_NPPPD.txt for people who try to use pipex and npppd beforeYASUOKA Masahiko
everything is done.
2010-01-31Fix DPADD, from Brad.Nicholas Marriott
2010-01-31privilege separation of npppd.YASUOKA Masahiko
- Drop privilege after daemon initializing. - Some system calls that requires root privileges were replaced to wrapper functions that communicate with a separated privileged process via IPC. And the privileged process checks whether the operations are acceptable.
2010-01-30Make sure the previous node is not a NOTE; prevents ICE on loongson.Otto Moerbeek
Actually we should probably look further than just the immediate predecessor here. ok miod@
2010-01-30fake local addr:port when stdio fowarding as some servers (Tectia atDamien Miller
least) validate that they are well-formed; reported by imorgan AT nas.nasa.gov ok dtucker
2010-01-30debug output goes to stderr, not "the system log"; ok markus dtuckerDamien Miller
2010-01-30More loongson directories for manpages.Miod Vallat
2010-01-30Loongson sets lists..Miod Vallat
2010-01-30Build on loongson, and sort platform list.Miod Vallat
2010-01-30Build these firmwares on loongson.Miod Vallat
2010-01-30Don't stop parsing command sequences when a command requests the client toNicholas Marriott
stick around (attach-session/new-session).
2010-01-30Ignore SIGHUP as well.Nicholas Marriott
2010-01-30don't mark channel as read failed if it is already closing; suppressesDamien Miller
harmless error messages when connecting to SSH.COM Tectia server report by imorgan AT nas.nasa.gov
2010-01-29kill correct channel (was killing already-dead mux channel, notDamien Miller
its session channel)
2010-01-29Allow sorting by command and pid. Also, allow partial matches with strncmp.Ted Unangst
ok jmc otto
2010-01-29set FD_CLOEXEC on sock_in/sock_out; bz#1706 from jchadima AT redhat.comDamien Miller
ok dtucker@
2010-01-28Remove dead assignment and newly created unused variable.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok krw@ henning@
2010-01-28The RA stack control bit on the loongson2 diagnostic register is not a clearMiod Vallat
but a disable bit; rename the define and keep the RA stack disabled at all times - I blame the few remaining hard freezes on it.
2010-01-28regenMiod Vallat
2010-01-28HP-UX getpgrp2() is documented as returning the same value than getpgid(),Miod Vallat
with the same error conditions. So reimplement it as the real thing. ok guenther@
2010-01-28Make sure the process tree is is loop-free by forbidding ptrace()Philip Guenthe
of a direct ancestor, closing a localhost DoS. As an exception, do permit ptrace() of pid 1 and have inferiors() stop climbing if it hits that. ok tedu@ hpux_compat suggestion from miod@
2010-01-28Typo, from Micah Cowan.Nicholas Marriott
2010-01-28- bump pkgname...just like in portsJasper Lievisse Adriaanse
ok miod@
2010-01-28liesDamien Bergamini
2010-01-28set differential gains on 6250 too (but use a 1.0 factor, not 1.5).Damien Bergamini
2010-01-28Update translations: fix EREMOTE and add a bunch of error codes too.Philip Guenthe
From Vadim Zhukov (persgray at gmail.com)
2010-01-28Make sure we also cause an iTLB and BTB flush on loongson processors duringMiod Vallat
regular tlb replacement, as well. Helps stability a lot, still not perfect.
2010-01-28downgrade an error() to a debug() - this particular case can be hit inDamien Miller
normal operation for certain sequences of mux slave vs session closure and is harmless
2010-01-27Actually bind the new key to e.Nicholas Marriott
2010-01-27tweak previous: there was a word missing, but i've just changedJason McIntyre
the wording to match that of a similar piece of text already in this page;
2010-01-27Calculate offset correctly, fixes incorrect offset and prevents crash whenNicholas Marriott
status-left is empty. From Micah Cowan.
2010-01-27Alter next-word to have vi-like movement behaviour, and add next-word-end withNicholas Marriott
the existing emacs behaviour. From Micah Cowan.
2010-01-27add missing "p" flag to getopt optstring;Damien Miller
bz#1704 from imorgan AT nas.nasa.gov