Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2007-11-27 | venti: add debugging html form | Russ Cox | 1 | -0/+41 | |
2007-11-05 | libdiskfs: work around OS X linker brain-damage | Russ Cox | 2 | -0/+4 | |
2007-11-05 | libmach: move machbyname, mach to crack.c to avoid OS X linker problem | Russ Cox | 3 | -31/+26 | |
2007-11-05 | libthread: use our own swapcontext/makecontext even on OS X 10.5 | Russ Cox | 2 | -5/+11 | |
2007-11-05 | libmp: no text jump labels for darwin | Russ Cox | 5 | -47/+45 | |
2007-11-05 | build: use ar s flag to avoid ranlib | Russ Cox | 5 | -14/+14 | |
2007-11-05 | diff: continue after i/o errors when diffing many files | Russ Cox | 2 | -5/+13 | |
2007-11-05 | mailfs: add -r flag to specify mail root (Richard Bilson) | Russ Cox | 3 | -13/+38 | |
2007-11-05 | mailfs: handle NIL body | Russ Cox | 1 | -0/+2 | |
2007-11-05 | factotum: silence gcc warning | Russ Cox | 1 | -0/+2 | |
2007-11-04 | man: document hg interface; update CVS host name | Russ Cox | 2 | -5/+124 | |
2007-11-03 | libthread: better OS X 10.5 test (Jeff Sickel) | Russ Cox | 1 | -1/+1 | |
2007-10-31 | venti: use 9ar, not ar (fixes Darwin build problem) | Russ Cox | 1 | -1/+1 | |
2007-10-30 | libthread: Apple OS X 10.5 (Leopard) tweaks (Jeff Sickel, Bakul Shah) | Russ Cox | 3 | -9/+12 | |
2007-10-29 | venti: fix sync deadlock, add /proc stub | Russ Cox | 20 | -260/+175 | |
2007-10-29 | grap: fclose, error context bug fixes (Doug Gwyn) | Russ Cox | 2 | -3/+4 | |
2007-10-12 | srv: add -n flag to reject auth by clients | Russ Cox | 2 | -5/+17 | |
2007-10-12 | 9pserve: add -n flag to reject auth by clients | Russ Cox | 2 | -2/+15 | |
2007-10-12 | 9p: add -n to disable authentication | Russ Cox | 2 | -4/+20 | |
2007-10-09 | mount: explicit u on test -S and mount to get unix versions (Chris King) | Russ Cox | 1 | -3/+3 | |
2007-09-25 | venti: new icache | Russ Cox | 17 | -427/+813 | |
2007-09-25 | venti: fix double free on corrupt bloom filter | Russ Cox | 1 | -1/+0 | |
2007-09-24 | venti: formatting changes for wrarena | Russ Cox | 1 | -12/+15 | |
2007-09-24 | venti: formatting changes in fixarenas | Russ Cox | 1 | -3/+5 | |
2007-09-24 | venti: formatting changes in findscore | Russ Cox | 1 | -1/+2 | |
2007-09-24 | venti: throw away dcache read-ahead code | Russ Cox | 1 | -154/+27 | |
2007-09-24 | venti: move os x linker hack | Russ Cox | 1 | -5/+6 | |
2007-09-24 | venti/randtest: compute totalbytes correctly | Russ Cox | 1 | -3/+4 | |
2007-09-16 | factotum: fix build error (Axel Belinfante) | Russ Cox | 1 | -2/+1 | |
2007-09-15 | auxstats: use acpi to find battery info on Linux (Andrey Mirtchovski) | Russ Cox | 1 | -5/+26 | |
2007-09-13 | factotum: implement p9cr | Russ Cox | 3 | -340/+173 | |
2007-08-28 | 9pserve: delete from correct hash slot (fix infinite loop) | Russ Cox | 1 | -1/+1 | |
2007-08-23 | venti: seal arenas without bypassing dcache | Russ Cox | 1 | -12/+9 | |
2007-08-23 | venti: allow partition syntax in verifyarena (Michael Kaminsky) | Russ Cox | 1 | -5/+9 | |
2007-08-23 | venti: avoid race in mirrorarenas (Michael Kaminsky) | Russ Cox | 1 | -6/+3 | |
2007-08-23 | venti: add -s flag to disable redundant SHA1 in mirrorarenas | Russ Cox | 1 | -16/+28 | |
2007-08-23 | merge | Russ Cox | 1 | -0/+1 | |
2007-08-22 | 9.rc: change to work with rc -e (Tony Lainson) | Russ Cox | 1 | -1/+1 | |
Change sense of test at end of 9.rc so that when invoked with no arguments the test still evaluates true, so that it works well with rc -e. | |||||
2007-08-22 | mailfs: fix handling of FLAGS response (Robert Vollmert) | Russ Cox | 1 | -2/+6 | |
2007-08-22 | libthread: simplify alt tracking, possibly fixing bug | Russ Cox | 3 | -8/+9 | |
2007-08-22 | acme: fix memory leak in warning (Michael Teichgräber) | Russ Cox | 1 | -0/+1 | |
2007-08-22 | fully qualify host name | Russ Cox | 1 | -2/+2 | |
2007-08-22 | add Linux x86-64 (thanks to Ævar Arnfjörð Bjarmason) | Russ Cox | 5 | -4/+6 | |
2007-08-22 | 9pserve: fix a new race involving assert(c->nmsg == 0). | Russ Cox | 1 | -3/+3 | |
Just like outputthread can have processed the message but not yet called msgput, the same is true of the connoutthread, so we cannot check c->nmsg until after the connoutthread has shut down gracefully. | |||||
2007-08-22 | merge | Russ Cox | 6 | -71/+101 | |
2007-08-22 | 9pserve: fix races causing assert(c->nmsg == 0) to fail. | Russ Cox | 1 | -26/+36 | |
1. Could happen that connoutthread sends c->outq a nil just before the regular input handler sends c->outq a real message. When the connoutthread gets the nil it will free c->outq, leaving the real message unprocessed. 2. Could happen that the outputthread writes a message body to the remote 9P server and then a response comes in and then the connection gets torn down, all before the outputthread manages to call msgput(m). Thanks to David Swasey for identifying this scenario. Also change yield() loop into explicit communication. Also remove dead code involving hungup queues. | |||||
2007-06-24 | CHANGES | Russ Cox | 1 | -0/+20 | |
2007-06-24 | tailorization: ignore plan9-reverse.log too | Russ Cox | 1 | -0/+1 | |
2007-06-25 | mailfs: fix subject formatting | rsc | 1 | -1/+1 | |
2007-06-24 | CHANGES | rsc | 1 | -0/+156 | |