blob: afde1a89fbb328d1dbda695c6824e205c7997e1a [file] [log] [blame]
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05001/*
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05002 * The Virtio 9p transport driver
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05003 *
Eric Van Hensbergene2735b72008-02-06 19:25:58 -06004 * This is a block based transport driver based on the lguest block driver
5 * code.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05006 *
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05007 * Copyright (C) 2007, 2008 Eric Van Hensbergen, IBM Corporation
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05008 *
9 * Based on virtio console driver
10 * Copyright (C) 2006, 2007 Rusty Russell, IBM Corporation
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to:
23 * Free Software Foundation
24 * 51 Franklin Street, Fifth Floor
25 * Boston, MA 02111-1301 USA
26 *
27 */
28
29#include <linux/in.h>
30#include <linux/module.h>
31#include <linux/net.h>
32#include <linux/ipv6.h>
33#include <linux/errno.h>
34#include <linux/kernel.h>
35#include <linux/un.h>
36#include <linux/uaccess.h>
37#include <linux/inet.h>
38#include <linux/idr.h>
39#include <linux/file.h>
40#include <net/9p/9p.h>
41#include <linux/parser.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050042#include <net/9p/client.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050043#include <net/9p/transport.h>
44#include <linux/scatterlist.h>
45#include <linux/virtio.h>
46#include <linux/virtio_9p.h>
47
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060048#define VIRTQUEUE_NUM 128
49
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050050/* a single mutex to manage channel initialization and attachment */
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -060051static DEFINE_MUTEX(virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050052
Eric Van Hensbergenee443992008-03-05 07:08:09 -060053/**
54 * struct virtio_chan - per-instance transport information
55 * @initialized: whether the channel is initialized
56 * @inuse: whether the channel is in use
57 * @lock: protects multiple elements within this structure
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060058 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060059 * @vdev: virtio dev associated with this channel
60 * @vq: virtio queue associated with this channel
Eric Van Hensbergenee443992008-03-05 07:08:09 -060061 * @sg: scatter gather list which is used to pack a request (protected?)
62 *
63 * We keep all per-channel information in a structure.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050064 * This structure is allocated within the devices dev->mem space.
65 * A pointer to the structure will get put in the transport private.
Eric Van Hensbergenee443992008-03-05 07:08:09 -060066 *
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050067 */
Eric Van Hensbergenee443992008-03-05 07:08:09 -060068
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000069struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060070 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050071
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060072 spinlock_t lock;
73
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050074 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050075 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060076 struct virtqueue *vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050077
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060078 /* Scatterlist: can be too big for stack. */
79 struct scatterlist sg[VIRTQUEUE_NUM];
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000080
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +000081 int tag_len;
82 /*
83 * tag name to identify a mount Non-null terminated
84 */
85 char *tag;
86
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000087 struct list_head chan_list;
88};
89
90static struct list_head virtio_chan_list;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050091
92/* How many bytes left in this page. */
93static unsigned int rest_of_page(void *data)
94{
95 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
96}
97
Eric Van Hensbergenee443992008-03-05 07:08:09 -060098/**
99 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600100 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600101 *
102 * This reclaims a channel by freeing its resources and
103 * reseting its inuse flag.
104 *
105 */
106
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500107static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500108{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500109 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500110
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600111 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000112 if (chan)
113 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600114 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500115}
116
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600117/**
118 * req_done - callback which signals activity from the server
119 * @vq: virtio queue activity was received on
120 *
121 * This notifies us that the server has triggered some activity
122 * on the virtio channel - most likely a response to request we
123 * sent. Figure out which requests now have responses and wake up
124 * those threads.
125 *
126 * Bugs: could do with some additional sanity checking, but appears to work.
127 *
128 */
129
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600130static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500131{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600132 struct virtio_chan *chan = vq->vdev->priv;
133 struct p9_fcall *rc;
134 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600135 struct p9_req_t *req;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500136
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500137 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
138
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600139 while ((rc = chan->vq->vq_ops->get_buf(chan->vq, &len)) != NULL) {
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500140 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
141 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n", rc->tag);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500142 req = p9_tag_lookup(chan->client, rc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500143 req->status = REQ_STATUS_RCVD;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500144 p9_client_cb(chan->client, req);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600145 }
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500146}
147
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600148/**
149 * pack_sg_list - pack a scatter gather list from a linear buffer
150 * @sg: scatter/gather list to pack into
151 * @start: which segment of the sg_list to start at
152 * @limit: maximum segment to pack data to
153 * @data: data to pack into scatter/gather list
154 * @count: amount of data to pack into the scatter/gather list
155 *
156 * sg_lists have multiple segments of various sizes. This will pack
157 * arbitrary data into an existing scatter gather list, segmenting the
158 * data as necessary within constraints.
159 *
160 */
161
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600162static int
163pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
164 int count)
165{
166 int s;
167 int index = start;
168
169 while (count) {
170 s = rest_of_page(data);
171 if (s > count)
172 s = count;
173 sg_set_buf(&sg[index++], data, s);
174 count -= s;
175 data += s;
Julia Lawalld6584f32008-02-17 18:42:53 -0800176 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600177 }
178
179 return index-start;
180}
181
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500182/* We don't currently allow canceling of virtio requests */
183static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
184{
185 return 1;
186}
187
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600188/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500189 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600190 * @client: client instance issuing the request
191 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600192 *
193 */
194
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600195static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500196p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600197{
198 int in, out;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500199 struct virtio_chan *chan = client->trans;
200 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600201
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500202 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600203
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500204 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
205 req->tc->size);
206 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata,
207 client->msize);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600208
209 req->status = REQ_STATUS_SENT;
210
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600211 if (chan->vq->vq_ops->add_buf(chan->vq, chan->sg, out, in, req->tc) < 0) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600212 P9_DPRINTK(P9_DEBUG_TRANS,
213 "9p debug: virtio rpc add_buf returned failure");
214 return -EIO;
215 }
216
217 chan->vq->vq_ops->kick(chan->vq);
218
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500219 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600220 return 0;
221}
222
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000223static ssize_t p9_mount_tag_show(struct device *dev,
224 struct device_attribute *attr, char *buf)
225{
226 struct virtio_chan *chan;
227 struct virtio_device *vdev;
228
229 vdev = dev_to_virtio(dev);
230 chan = vdev->priv;
231
232 return snprintf(buf, chan->tag_len + 1, "%s", chan->tag);
233}
234
235static DEVICE_ATTR(mount_tag, 0444, p9_mount_tag_show, NULL);
236
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600237/**
238 * p9_virtio_probe - probe for existence of 9P virtio channels
239 * @vdev: virtio device to probe
240 *
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000241 * This probes for existing virtio channels.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600242 *
243 */
244
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600245static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500246{
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000247 __u16 tag_len;
248 char *tag;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500249 int err;
250 struct virtio_chan *chan;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500251
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000252 chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
253 if (!chan) {
254 printk(KERN_ERR "9p: Failed to allocate virtio 9P channel\n");
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500255 err = -ENOMEM;
256 goto fail;
257 }
258
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600259 chan->vdev = vdev;
260
261 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600262 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600263 if (IS_ERR(chan->vq)) {
264 err = PTR_ERR(chan->vq);
265 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500266 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600267 chan->vq->vdev->priv = chan;
268 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500269
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600270 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500271
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500272 chan->inuse = false;
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000273 if (virtio_has_feature(vdev, VIRTIO_9P_MOUNT_TAG)) {
274 vdev->config->get(vdev,
275 offsetof(struct virtio_9p_config, tag_len),
276 &tag_len, sizeof(tag_len));
277 } else {
278 err = -EINVAL;
279 goto out_free_vq;
280 }
281 tag = kmalloc(tag_len, GFP_KERNEL);
282 if (!tag) {
283 err = -ENOMEM;
284 goto out_free_vq;
285 }
286 vdev->config->get(vdev, offsetof(struct virtio_9p_config, tag),
287 tag, tag_len);
288 chan->tag = tag;
289 chan->tag_len = tag_len;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000290 err = sysfs_create_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
291 if (err) {
292 kfree(tag);
293 goto out_free_vq;
294 }
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000295 mutex_lock(&virtio_9p_lock);
296 list_add_tail(&chan->chan_list, &virtio_chan_list);
297 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500298 return 0;
299
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600300out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600301 vdev->config->del_vqs(vdev);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000302 kfree(chan);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500303fail:
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500304 return err;
305}
306
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600307
308/**
309 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500310 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600311 * @devname: string identifying the channel to connect to (unused)
312 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600313 *
314 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500315 * we only match the first available channel, but eventually we couldlook up
316 * alternate channels by matching devname versus a virtio_config entry.
317 * We use a simple reference count mechanism to ensure that only a single
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600318 * mount has a channel open at a time.
319 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600320 */
321
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500322static int
323p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500324{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000325 struct virtio_chan *chan;
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000326 int ret = -ENOENT;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000327 int found = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500328
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600329 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000330 list_for_each_entry(chan, &virtio_chan_list, chan_list) {
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000331 if (!strncmp(devname, chan->tag, chan->tag_len)) {
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000332 if (!chan->inuse) {
333 chan->inuse = true;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000334 found = 1;
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000335 break;
336 }
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000337 ret = -EBUSY;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500338 }
339 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600340 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500341
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000342 if (!found) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600343 printk(KERN_ERR "9p: no channels available\n");
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000344 return ret;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500345 }
346
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500347 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600348 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500349 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500350
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500351 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500352}
353
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600354/**
355 * p9_virtio_remove - clean up resources associated with a virtio device
356 * @vdev: virtio device to remove
357 *
358 */
359
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600360static void p9_virtio_remove(struct virtio_device *vdev)
361{
362 struct virtio_chan *chan = vdev->priv;
363
364 BUG_ON(chan->inuse);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000365 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600366
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000367 mutex_lock(&virtio_9p_lock);
368 list_del(&chan->chan_list);
369 mutex_unlock(&virtio_9p_lock);
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000370 sysfs_remove_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000371 kfree(chan->tag);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000372 kfree(chan);
373
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600374}
375
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500376static struct virtio_device_id id_table[] = {
377 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
378 { 0 },
379};
380
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000381static unsigned int features[] = {
382 VIRTIO_9P_MOUNT_TAG,
383};
384
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500385/* The standard "struct lguest_driver": */
386static struct virtio_driver p9_virtio_drv = {
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000387 .feature_table = features,
388 .feature_table_size = ARRAY_SIZE(features),
389 .driver.name = KBUILD_MODNAME,
390 .driver.owner = THIS_MODULE,
391 .id_table = id_table,
392 .probe = p9_virtio_probe,
393 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500394};
395
396static struct p9_trans_module p9_virtio_trans = {
397 .name = "virtio",
398 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500399 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500400 .request = p9_virtio_request,
401 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600402 .maxsize = PAGE_SIZE*16,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500403 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500404 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500405};
406
407/* The standard init function */
408static int __init p9_virtio_init(void)
409{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000410 INIT_LIST_HEAD(&virtio_chan_list);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500411
412 v9fs_register_trans(&p9_virtio_trans);
413 return register_virtio_driver(&p9_virtio_drv);
414}
415
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600416static void __exit p9_virtio_cleanup(void)
417{
418 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500419 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600420}
421
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500422module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600423module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500424
425MODULE_DEVICE_TABLE(virtio, id_table);
426MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
427MODULE_DESCRIPTION("Virtio 9p Transport");
428MODULE_LICENSE("GPL");