Commit Briefs

David du Colombier

lib9/p9dialparse: fix segfault on gethostbyname

In some situations, gethostbyname can return an empty address list. R=rsc http://codereview.appspot.com/6443097


Russ Cox

9pfuse: fix memory leak, avoid memory explosion

Change is to handle FUSE_FORGET in main loop instead of separate thread for each as 10s of thousands can come in at once. Fixes issue 104. R=0intro, rsc http://codereview.appspot.com/6498081


Russ Cox

lib/acme.rc: remove noscroll

R=rsc CC=plan9port.codebot http://codereview.appspot.com/6346079


Russ Cox

lib9: remove ss_len manipulation in _p9dialparse

Not all systems have ss_len, and we've never set it before. R=rsc http://codereview.appspot.com/6497102


Russ Cox

9pfuse: osxfuse support

R=rsc http://codereview.appspot.com/6503093


Russ Cox

lib9: fix announce on OS X

R=rsc http://codereview.appspot.com/6495109


Russ Cox

lib9/dial: fix addrlen in connect() and bind()

On some systems, the third argument of connect() and bind() is expected to be the length of the address family instead of the length of the sockaddr structure. R=rsc http://codereview.appspot.com/6489072


David du Colombier

srv(4), mount: update v9fs usage

The v9fs usage is documented on https://www.kernel.org/doc/Documentation/filesystems/9p.txt R=rsc http://codereview.appspot.com/6445072


Russ Cox

disk/mkfs,disk/mkext: fix mkdir conflict

R=rsc http://codereview.appspot.com/6445076


David du Colombier

lib9/getnetconn: add support for IPv6

R=rsc http://codereview.appspot.com/6457077


David du Colombier

vacfs: fix create srv with ORCLOSE on plan 9

In the current code, the srv file is removed just after the main thread exits, while the srv thread is still running, which is not the expected behavior. We moved the srv creation just before the procrfork, in order that the srv file will not be removed until the srv thread exits. R=rsc http://codereview.appspot.com/6397047


David du Colombier

dial(3): update dialparse

R=rsc http://codereview.appspot.com/6455083


Russ Cox

devdraw: make it 3 times faster on OS X

This patch reverts the recent patch named "devdraw: fix for OS X 10.8", and fixes redrawing on OSX 10.8 differently, making scrolling under Acme 3 times faster. R=rsc, mirtchovski CC=plan9port.codebot http://codereview.appspot.com/6452087


Russ Cox

devdraw: fix for OS X 10.8 (Mountain Lion)

In MacOS 10.8, the NSBitmapImageRep class appears to cache the specified image data at the time of construction. As a result updates to the backing memimage object do not get pushed to the screen in flushimg. This patch creates the NSBitmapImageRep object over again for each flushimg which would appear to fix the problem. R=rsc CC=plan9port.codebot http://codereview.appspot.com/6443063


Russ Cox

libventi: fix segfault in vtgetreq

Don't call vtlog() when _vtqrecv() returns nil on queue hangup, as reported on http://bitbucket.org/rsc/plan9port/issue/102/ R=rsc http://codereview.appspot.com/6373046