summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-29fortunes: Subject: ftp(1) User-Agentstanley lieber
2014-06-29nusbrc: ensure rpi ethernet always appears as /net/etherU0stanley lieber
2014-06-28nusb: fix spelling, sorrycinap_lenrek
2014-06-28mergecinap_lenrek
2014-06-28nusb: implement aijus stable uniqueue device namescinap_lenrek
instead of naming devices by ther dynamically assigned device address, we hash device uniqueue fields from the device descriptor and produce a 5 digit hex string that will identify the device across machines. when there is a collision (less than 1% chance with 100 devices), usbd will append the device address to the name to make it uniqueue for this machine. the hname is passed to drivers in the devid argument, which now has the form addr:hname, where the colon and hname can be omited (for backwards compatibility). when the new behaviour isnt desired, nousbhname= environment variable can be defined giving the old behaviour.
2014-06-28iostats: more procscinap_lenrek
2014-06-27mergemischief
2014-06-27unzip: fix usagemischief
2014-06-28ptp: fix alignment assumptions for amd64cinap_lenrek
2014-06-25upas/fs: disable imap mail fetch pipeline due to racemischief
pipeline = 1 with a dovecot imap server causes FETCH and OK responses get interleaved so some message bodies accidentally get merged together. disabling it will make fetching mail over imap slower, but it works.
2014-06-25xen: delete screen.h from pc that accidentally snuck in. a screen.h for xen ↵mischief
framebuffer will be added later.
2014-06-25xen: fix boot argv0mischief
2014-06-25xen: gotta go fastmischief
use smaller timeouts for sleeps while waiting for xen ether and sd devices to come online. in practice they come up very quickly.
2014-06-25xen: correct print format for longmischief
2014-06-25sam: mark samsave executablemischief
sam generates $home/sam.save for modified files. it expects /sys/lib/samsave to be executable to restore the modified files.
2014-06-24xen: fix early consolemischief
2014-06-24import xen 32 bit paravirtual kernel from /n/sources/xen.mischief
2014-06-23kernel: more proc.c cleanupcinap_lenrek
2014-06-23kernel: make use of nil and 0 consistent in proc.ccinap_lenrek
always explicitely compare with nil if pointer. sorry for the noise. :(
2014-06-23mergecinap_lenrek
2014-06-23kernel: fix cooperative scheduling for wired processescinap_lenrek
2014-06-22newt(1): minor man page clarificationsstanley lieber
2014-06-22ether8169: use u16int instead of u8int for C+ command register (thanks pavel ↵cinap_lenrek
/ erik)
2014-06-22pc64: fix comment for preallocpages()cinap_lenrek
2014-06-22remove imagepagerefs() acid functioncinap_lenrek
2014-06-22kernel: new pagecache, remove Lock from page, use cmpswap for Ref instead of ↵cinap_lenrek
Lock make the Page stucture less than half its original size by getting rid of the Lock and the lru. The Lock was required to coordinate the unchaining of pages that where both cached and on the lru freelist. now pages have a single next pointer that is used for palloc.head freelist xor for page cache hash chains in Image.pghash[]. cached pages are not on the freelist anymore, but will be reclaimed from images by the pager when the freelist runs out of pages. each Image has its own 512 hash chains for cached page lookup. That is 2MB worth of pages and there should be no collisions for most text images. page reclaiming can be done without holding palloc.lock as the Image is the owner of the page hash chains protected by the Image's lock. reclaiming Image structures can be done quickly by only reclaiming pages from inactive images, that is images which are not currently in use by segments. the Ref structure has no Lock anymore. Only a single long that is atomically incremented or decremnted using cmpswap(). there are various other changes as a consequence code. and lots of pikeshedding, sorry.
2014-06-22ed: dont pass string constants to mktemp()cinap_lenrek
2014-06-15games/md: small bug fixesaiju
2014-06-15games/md: add shadow/hilight supportaiju
2014-06-15games/md: add save game support, fix cpu bugaiju
2014-06-14games/md: small fixesaiju
2014-06-13games/snes: fix -Taiju
2014-06-13games/md: vdp window fix, added ym2612 timersaiju
2014-06-13games/md: add z80, audio supportaiju
2014-06-13mergecinap_lenrek
2014-06-13pc64: fix MS2HZ (thanks Anthony Martin)cinap_lenrek
2014-06-12termrc, cpurc: clarify comments by removing liesstanley lieber
2014-06-12libstdio: avoid issues with aliasing in dtoa() on amd64 (from 9atom, thanks ↵cinap_lenrek
to erik and charles)
2014-06-12libsec: use u32int instead of uint when we need 32 bit (thanks erik)cinap_lenrek
2014-06-11samterm: use 4K stacks for amd64 (thanks burnzez)cinap_lenrek
we got a stack overflow on the hostproc on amd64 overflowing by arround 200 byte. so just use 4K stacks for everything.
2014-06-11revert ramfs examplecinap_lenrek
the code was correct. erealloc9p() terminates the process on error, but the code was handling realloc() error explicitely and responded the request with Enomem error.
2014-06-11libsec: fix dsagen 64-bit bug (thanks rsc)ftrvxmtrx
2014-06-11lib9p: ramfs example: s/realloc/erealloc9p/ftrvxmtrx
2014-06-09pool: declare pooldump in pool.h. the manual says it is public.mischief
2014-06-09audiohda: add Intel 8 Series/C220 Series supportftrvxmtrx
2014-06-09ether8169: support for RTL8168Gftrvxmtrx
2014-06-09mkpaqfs: englishmischief
2014-06-09pc: clip rectangles before sending them to the hardware in flushmemscreenmischief
the vmware svga video card emulated by qemu (qemu -vga vmware) complains and eventually causes a panic if the rectangles aren't clipped. messages like the following can be observed from qemu before the kernel panics: vmsvga_update_rect: update h was < 0 (-20000) vmsvga_update_rect: update height too large y: 10000, h: 0 vmsvga_update_rect: update w was < 0 (-20000) vmsvga_update_rect: update width too large x: 10000, w: 0 i could only reproduce this in qemu 2.0.50 on the master branch, when using the ui and had selected 'Zoom To Fit' from the View menu.
2014-06-09ether79c970: fix mistakecinap_lenrek
fix bug introduced by amd64 support: forgot to update ring index i on receive. surprisingly this was working until there where more than one packet to process. sorry. ilock the controller while processing rings. this should be fixed and use kprocs instead.
2014-06-08iostats: add -C flag to enable mount cachecinap_lenrek