Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-12 | inst/mountcwfs, inst/mounthjfs: fix typos | ppatience0 | |
2013-03-12 | merge | cinap_lenrek | |
2013-03-12 | ether8169: add RTL8101/8102E macid | cinap_lenrek | |
2013-03-12 | etheriwl: 6005 - set rom calibration flags and temperature sensor offset | ftrvxmtrx | |
2013-03-11 | ape: threadsafe errno | cinap_lenrek | |
store errno on the private process stack so its always per process and not just per memory space. errno itself becomes a macro dereferencing int *_errnoloc; which is initialized from main9.s pointing to the private stack location. various fixes in programs that just imported errno variable with "extern int errno;" instead of including <errno.h>. | |||
2013-03-11 | merge | cinap_lenrek | |
2013-03-11 | ape: fix thread race with close() and select() | cinap_lenrek | |
in ape close(), do the real filedescriptor _CLOSE() *after* we cleared the _fdinfo[] slot because once closed, we dont own the slot anymore and another process doing open() can trash the slot. make sure open() retuns fd < OPEN_MAX. double check in _startbuf() holding mux->lock if the fd is already buffered preveting running double copyprocs on a fd. dont zero the mux->rwant/ewant bitmaps at the end of select() as we do not hold the mix->lock. in _closebuf() kill copyproc while holding the mux->lock to make sure the copyproc isnt holding it at the time it is killed. run kill() multiple times to make sure the proc is gone. | |||
2013-03-11 | ape/malloc: make malloc and free threadsafe for python | cinap_lenrek | |
2013-03-11 | ape/stdio: make fopen() quasi threadsafe for python | cinap_lenrek | |
python uses processes sharing memory. it requires at least fopen() to be called by multiple threads at once so we introduce _IO_newfile() which allocates the FILE structure slot under a lock. | |||
2013-03-10 | wpa(8): fix typos | ppatience0 | |
2013-03-10 | ape: check for invalid filedescriptors in select() | cinap_lenrek | |
2013-03-10 | nusb/disk: add small delay after unit start command (for thinkpad sdcard reader) | cinap_lenrek | |
diskparts fails on thinkpad x200 sdcard reader if we dont give the unit some time to startup. the device took about 100ms to become ready so status poll loop with a long timeout would be overkill. | |||
2013-03-09 | provide wpa(8) manual page | cinap_lenrek | |
2013-03-09 | aux/wpa: check reply counter only after mic check | cinap_lenrek | |
2013-03-09 | add wpa key setup program aux/wpa | cinap_lenrek | |
2013-03-09 | wifi: add experimental wpa / tkip encryption support | cinap_lenrek | |
2013-03-09 | factotum: add wpapsk client authentication | cinap_lenrek | |
2013-03-08 | added geigerstats | aiju | |
2013-03-07 | fortunes: He wasn't asking about plan9port. | stanley lieber | |
2013-03-06 | aan: fix structure padding for amd64 | cinap_lenrek | |
2013-03-03 | fltfmt: make %g print decimal numbers less than 1 with a leading zero | ppatience0 | |
2013-03-03 | fltfmt: %.0g should print with one significant figure | ppatience0 | |
2013-03-01 | fltfmt: fix %g not printing as %e in some cases when it should | ppatience0 | |
2013-03-01 | nusb/kb: fix "Home" key producing "7" with some usb keyboards (import from ↵ | cinap_lenrek | |
sources patch/usb-khome) Fixes the problem with certain keyboards generating "7" on "Home" key press. http://9fans.net/archive/2013/03/8 http://9fans.net/archive/2013/03/10 | |||
2013-02-28 | 6c: fix 32bit pointer truncation (from patch/6c-sugen-types) | cinap_lenrek | |
1. Go group spotted that a slightly-obscured pointer move was done by AMOVL not AMOVQ. 2. Inspecting the code further, I noticed that other pointer types were set to TLONG not TIND, causing similar truncation of pointers to 32 bits. | |||
2013-02-28 | ape: add PASS_MAX constant for getpass() to limits.h (from patch/ape-pass_max) | cinap_lenrek | |
add PASS_MAX to limits.h for ape, and make getpass respect it. also increase the size of the maximum passwords (we use long ones at work). Needed for native port of SVN (in progress). | |||
2013-02-27 | termrc: termrc.local can start ndb/cs for us, so check if its already running | cinap_lenrek | |
2013-02-27 | add cpurc.local and termrc.local hooks | cinap_lenrek | |
2013-02-27 | fltfmt: %.ng is supposed to print a number with n significant figures, but ↵ | ppatience0 | |
it prints it with n+1. This fixes that behaviour. | |||
2013-02-27 | dont use full qualified domain names in example configuration | cinap_lenrek | |
use shorter sysnames instead of full qualified domain names so one doesnt have to setup the dns server in the example configuration. | |||
2013-02-25 | cwfs: fix mtime for dump yyyy directories | cinap_lenrek | |
2013-02-24 | cdproto: only include binaries for $objtype, filter temporary files | cinap_lenrek | |
2013-02-23 | sdiahci: only wait for drives that are in the process of becoming ready when ↵ | cinap_lenrek | |
onlining, add *noahci option | |||
2013-02-23 | libip: make myetheraddr() accept # device names | cinap_lenrek | |
2013-02-22 | ether8169: add another RTL8111/8168B mac id | ppatience0 | |
2013-02-22 | ndb(2): fix wrong attr names | ftrvxmtrx | |
2013-02-22 | sdiahci: fix mistake | cinap_lenrek | |
2013-02-22 | sdiahci: prevent nil pointer dereference on spurious interrupt status | cinap_lenrek | |
on some controllers, we get bogus interrupt indication for non present drives. ack the irq but ignore. | |||
2013-02-22 | ether8169: add RTL8111e mac id (thanks glorfdev for the patch) | cinap_lenrek | |
2013-02-21 | merge | cinap_lenrek | |
2013-02-21 | netif: fix stat() on "stats" and "ifstats" files in network interface | cinap_lenrek | |
the kernel would go into endless loop when stating "stats" and "ifstats" files and the network interface having no connections, or otherwise return wrong stat info. | |||
2013-02-20 | fix the constitution | stanley lieber | |
2013-02-19 | etheriwl: fix rominit | cinap_lenrek | |
we used use the *last* block in otp block list instead of the block *before* the last block resulting in wrong eeprom data (1000er series only) | |||
2013-02-18 | add wifi link 1000 pci id | khm | |
2013-02-18 | 9boot: fix 9bootiso | cinap_lenrek | |
rearrange sub.c for putc(), readn(), memcmp(), memmove(), strchr() and strlen() and uart to fit into the first 2K of the image. | |||
2013-02-18 | 9boot: serial console support | cinap_lenrek | |
2013-02-17 | 9boot: make print handle \n -> \r\n conversion, style | cinap_lenrek | |
2013-02-17 | filter(1), nedmail(1): fix typos in both and consistency in nedmail(1) | ppatience0 | |
2013-02-17 | rdbio: fix bug where a->user never gets set if Bopen fails. | ppatience0 | |
2013-02-17 | merge | ftrvxmtrx | |