1
0
Fork 0

net/9p: fix virtio transport to correctly update status on connect

The 9p virtio transport was not updating its connection status correctly
preventing it from being able to mount the server.

Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
wifi-calibration
Eric Van Hensbergen 2010-01-15 18:54:03 -06:00
parent 08c4f1b096
commit 562ada6120
1 changed files with 1 additions and 0 deletions

View File

@ -311,6 +311,7 @@ p9_virtio_create(struct p9_client *client, const char *devname, char *args)
}
client->trans = (void *)chan;
client->status = Connected;
chan->client = client;
return 0;