summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-01Rules of AcquisitionKurt H Maier
2012-10-02upas/marshal: fix usage line and add missing flags to manpagecinap_lenrek
2012-10-01devproc buffer overflow, strncpycinap_lenrek
in devproc status read handler the p->status, p->text and p->user could overflow the local statbuf buffer as they where copied into it with code like: memmove(statbuf+someoff, p->text, strlen(p->text)). now using readstr() which will truncate if the string is too long. make strncpy() usage consistent, make sure results are always null terminated.
2012-09-30guesscpuhz(), apm suspendcinap_lenrek
use fastclock timer (pit2) to measure cpufreq in guesscpuhz(). this gives a bigger period minimizing the danger of overrun as pit2 runs at the constant maximum period of 0x10000 ticks. also use smaller loop increments (1000) and bigger maximum loop upper bound. move the loops < ... check to the bottom of the loop so we get the effective count *before* adding the next loop increment. ilock() while doing measurements in guesscpuhz() to prevent accidents with other processors reading fastclock or doing guesscpuhz() in parralel. export new i8253reset() function for apm to reset the timers after a apm bios suspend.
2012-09-30ether82557: timeout for ifstats DumpSC commandcinap_lenrek
2012-09-30fix devproc and killbig segment racecinap_lenrek
we have to acquire p->seglock before we lock the individual segments of the process and lock them. if we dont then pexit() might free the segments before we can lock them causing the "qunlock called with qlock not held, from ..." prints.
2012-09-28cpuid(8): fix spellingstanley lieber
2012-09-29cpuid(8) manpage impromentscinap_lenrek
2012-09-29cpuid(8) manpagecinap_lenrek
2012-09-28/lib/troll: linux is slowKurt H Maier
2012-09-28hget: fix usagestanley lieber
2012-09-28mothra: fix select boxes in textviewcinap_lenrek
2012-09-27fixed hjfs dfaiju
2012-09-27really renamed statw to dfaiju
2012-09-27renamed statw to dfaiju
2012-09-27trivial mistakeaiju
2012-09-27hjfs: statw commandaiju
2012-09-26fortunes, rob, rsc: updatesstanley lieber
2012-09-26mothra: fix url snarfingcinap_lenrek
2012-09-26mothra: display url is page list if no title is availablecinap_lenrek
2012-09-26mothra: never snarf the "Go:" boxcinap_lenrek
2012-09-26mothra: dont make all images into links (only in mothmode)cinap_lenrek
2012-09-26libdraw: enter()/eenter() ^W support - we are getting therecinap_lenrek
2012-09-26need more coffeecinap_lenrek
2012-09-26libdraw: fix ^W corner case tick == 0 for enter()/eenter()cinap_lenrek
2012-09-26libdraw: implement ^W word delete for enter() and eenter()cinap_lenrek
2012-09-24mothra: various improvementscinap_lenrek
* disallow snarf on password entries * remove current title label as it is displayed in the page list (redundant) * avoid redrawing page list just to update the title * check if the chan changed for backup bitmap in pl_rtdraw()
2012-09-24mothra: cache backup bitmap in pl_rtdraw()cinap_lenrek
2012-09-24mothra: forgot to add snarf.ccinap_lenrek
2012-09-23mothra: snarf and pastecinap_lenrek
2012-09-23mothra: dont highlight subpanels in textviewcinap_lenrek
2012-09-23mothra: fast (offscreen) alpha drawing on scrollcinap_lenrek
2012-09-23mothra: cleanup textview codecinap_lenrek
2012-09-22mothra: text selection 2nd attemptcinap_lenrek
2012-09-22mothra: first attempt on text selectioncinap_lenrek
2012-09-20tftp: prevent it from hanging if ack packets get lostcinap_lenrek
send ACK reply for duplicate data packets in case our ack response got lost. make sure packets are in sequence and ignore out of oder packets (except the ones we'v already acked).
2012-09-20Add disk/smart to mkfilegoogle
2012-09-19user: Marko Kostić <marko.m.kostic@gmail.com>Marko Kostić
branch 'default' added sys/lib/kbmap/sr (serbian cyrillic kbmap) added sys/lib/kbmap/sr@latin (serbian latin kbmap)
2012-09-20Add manpages for atazz and smartgoogle
2012-09-20Add Erik Quanstrom's smart tool for ATA SMART.google
2012-09-20Add Erik Quanstrom's atazzgoogle
(needed to disable power management/head unload on 2.5" drive)
2012-09-18tftpd: apply sstallion's tftpd-rfc patch (from sources)cinap_lenrek
tftpd option handling is not RFC-compliant. This causes picky clients (such as curl) to fail transfers.
2012-09-185l -H7 (elf) support (import from sources)cinap_lenrek
2012-09-186c: extern register fix (import from patch/6c-extreg)cinap_lenrek
to make it easy to use normal libraries (such as libdraw, libsec, and libmp) with the kernel, which uses extern register, don't stray into the external register set when allocating values to registers.
2012-09-18bring kernel acid library in sync (import from sources)cinap_lenrek
2012-09-19fix typo.google
2012-09-19Enable busmastering for SCH (Poulsbo) PATA controller.google
2012-09-17inst: fix typocinap_lenrek
2012-09-16sdide: make sure bmiba is in i/o port space, not memorycinap_lenrek
2012-09-16rio: single line scroll up/down with holding shift keycinap_lenrek