blob: 8ae08596aad804128dfc15037e1c3e9e8b72de26 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050041#include <net/9p/9p.h>
42#include <linux/parser.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050043#include <net/9p/client.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050044#include <net/9p/transport.h>
45#include <linux/scatterlist.h>
46#include <linux/virtio.h>
47#include <linux/virtio_9p.h>
48
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060049#define VIRTQUEUE_NUM 128
50
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050051/* a single mutex to manage channel initialization and attachment */
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -060052static DEFINE_MUTEX(virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050053
Eric Van Hensbergenee443992008-03-05 07:08:09 -060054/**
55 * struct virtio_chan - per-instance transport information
56 * @initialized: whether the channel is initialized
57 * @inuse: whether the channel is in use
58 * @lock: protects multiple elements within this structure
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060059 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060060 * @vdev: virtio dev associated with this channel
61 * @vq: virtio queue associated with this channel
Eric Van Hensbergenee443992008-03-05 07:08:09 -060062 * @sg: scatter gather list which is used to pack a request (protected?)
63 *
64 * We keep all per-channel information in a structure.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050065 * This structure is allocated within the devices dev->mem space.
66 * A pointer to the structure will get put in the transport private.
Eric Van Hensbergenee443992008-03-05 07:08:09 -060067 *
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050068 */
Eric Van Hensbergenee443992008-03-05 07:08:09 -060069
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +000070struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060071 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050072
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060073 spinlock_t lock;
74
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050075 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050076 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060077 struct virtqueue *vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050078
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060079 /* Scatterlist: can be too big for stack. */
80 struct scatterlist sg[VIRTQUEUE_NUM];
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +000081
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +000082 int tag_len;
83 /*
84 * tag name to identify a mount Non-null terminated
85 */
86 char *tag;
87
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +000088 struct list_head chan_list;
89};
90
91static struct list_head virtio_chan_list;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050092
93/* How many bytes left in this page. */
94static unsigned int rest_of_page(void *data)
95{
96 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
97}
98
Eric Van Hensbergenee443992008-03-05 07:08:09 -060099/**
100 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600101 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600102 *
103 * This reclaims a channel by freeing its resources and
104 * reseting its inuse flag.
105 *
106 */
107
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500108static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500109{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500110 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500111
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600112 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000113 if (chan)
114 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600115 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500116}
117
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600118/**
119 * req_done - callback which signals activity from the server
120 * @vq: virtio queue activity was received on
121 *
122 * This notifies us that the server has triggered some activity
123 * on the virtio channel - most likely a response to request we
124 * sent. Figure out which requests now have responses and wake up
125 * those threads.
126 *
127 * Bugs: could do with some additional sanity checking, but appears to work.
128 *
129 */
130
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600131static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500132{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600133 struct virtio_chan *chan = vq->vdev->priv;
134 struct p9_fcall *rc;
135 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600136 struct p9_req_t *req;
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700137 unsigned long flags;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500138
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500139 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
140
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700141 do {
142 spin_lock_irqsave(&chan->lock, flags);
143 rc = virtqueue_get_buf(chan->vq, &len);
144 spin_unlock_irqrestore(&chan->lock, flags);
145
146 if (rc != NULL) {
147 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
148 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n",
149 rc->tag);
150 req = p9_tag_lookup(chan->client, rc->tag);
151 req->status = REQ_STATUS_RCVD;
152 p9_client_cb(chan->client, req);
153 }
154 } while (rc != NULL);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500155}
156
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600157/**
158 * pack_sg_list - pack a scatter gather list from a linear buffer
159 * @sg: scatter/gather list to pack into
160 * @start: which segment of the sg_list to start at
161 * @limit: maximum segment to pack data to
162 * @data: data to pack into scatter/gather list
163 * @count: amount of data to pack into the scatter/gather list
164 *
165 * sg_lists have multiple segments of various sizes. This will pack
166 * arbitrary data into an existing scatter gather list, segmenting the
167 * data as necessary within constraints.
168 *
169 */
170
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600171static int
172pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
173 int count)
174{
175 int s;
176 int index = start;
177
178 while (count) {
179 s = rest_of_page(data);
180 if (s > count)
181 s = count;
182 sg_set_buf(&sg[index++], data, s);
183 count -= s;
184 data += s;
Julia Lawalld6584f32008-02-17 18:42:53 -0800185 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600186 }
187
188 return index-start;
189}
190
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500191/* We don't currently allow canceling of virtio requests */
192static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
193{
194 return 1;
195}
196
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600197/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500198 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600199 * @client: client instance issuing the request
200 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600201 *
202 */
203
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600204static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500205p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600206{
207 int in, out;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500208 struct virtio_chan *chan = client->trans;
209 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700210 unsigned long flags;
211 int err;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600212
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500213 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600214
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700215 req->status = REQ_STATUS_SENT;
216
217 spin_lock_irqsave(&chan->lock, flags);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500218 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
219 req->tc->size);
220 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata,
221 client->msize);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600222
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700223 err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc);
224 if (err < 0) {
225 spin_unlock_irqrestore(&chan->lock, flags);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600226 P9_DPRINTK(P9_DEBUG_TRANS,
227 "9p debug: virtio rpc add_buf returned failure");
228 return -EIO;
229 }
230
Michael S. Tsirkindc3f5e62010-04-13 16:11:50 +0300231 virtqueue_kick(chan->vq);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700232 spin_unlock_irqrestore(&chan->lock, flags);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600233
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500234 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600235 return 0;
236}
237
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000238static ssize_t p9_mount_tag_show(struct device *dev,
239 struct device_attribute *attr, char *buf)
240{
241 struct virtio_chan *chan;
242 struct virtio_device *vdev;
243
244 vdev = dev_to_virtio(dev);
245 chan = vdev->priv;
246
247 return snprintf(buf, chan->tag_len + 1, "%s", chan->tag);
248}
249
250static DEVICE_ATTR(mount_tag, 0444, p9_mount_tag_show, NULL);
251
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600252/**
253 * p9_virtio_probe - probe for existence of 9P virtio channels
254 * @vdev: virtio device to probe
255 *
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000256 * This probes for existing virtio channels.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600257 *
258 */
259
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600260static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500261{
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000262 __u16 tag_len;
263 char *tag;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500264 int err;
265 struct virtio_chan *chan;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500266
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000267 chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
268 if (!chan) {
269 printk(KERN_ERR "9p: Failed to allocate virtio 9P channel\n");
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500270 err = -ENOMEM;
271 goto fail;
272 }
273
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600274 chan->vdev = vdev;
275
276 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600277 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600278 if (IS_ERR(chan->vq)) {
279 err = PTR_ERR(chan->vq);
280 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500281 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600282 chan->vq->vdev->priv = chan;
283 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500284
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600285 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500286
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500287 chan->inuse = false;
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000288 if (virtio_has_feature(vdev, VIRTIO_9P_MOUNT_TAG)) {
289 vdev->config->get(vdev,
290 offsetof(struct virtio_9p_config, tag_len),
291 &tag_len, sizeof(tag_len));
292 } else {
293 err = -EINVAL;
294 goto out_free_vq;
295 }
296 tag = kmalloc(tag_len, GFP_KERNEL);
297 if (!tag) {
298 err = -ENOMEM;
299 goto out_free_vq;
300 }
301 vdev->config->get(vdev, offsetof(struct virtio_9p_config, tag),
302 tag, tag_len);
303 chan->tag = tag;
304 chan->tag_len = tag_len;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000305 err = sysfs_create_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
306 if (err) {
307 kfree(tag);
308 goto out_free_vq;
309 }
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000310 mutex_lock(&virtio_9p_lock);
311 list_add_tail(&chan->chan_list, &virtio_chan_list);
312 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500313 return 0;
314
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600315out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600316 vdev->config->del_vqs(vdev);
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000317 kfree(chan);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500318fail:
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500319 return err;
320}
321
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600322
323/**
324 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500325 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600326 * @devname: string identifying the channel to connect to (unused)
327 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600328 *
329 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500330 * we only match the first available channel, but eventually we couldlook up
331 * alternate channels by matching devname versus a virtio_config entry.
332 * We use a simple reference count mechanism to ensure that only a single
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600333 * mount has a channel open at a time.
334 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600335 */
336
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500337static int
338p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500339{
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000340 struct virtio_chan *chan;
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000341 int ret = -ENOENT;
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000342 int found = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500343
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600344 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000345 list_for_each_entry(chan, &virtio_chan_list, chan_list) {
Sven Eckelmann0b204062010-09-27 15:54:44 -0700346 if (!strncmp(devname, chan->tag, chan->tag_len) &&
347 strlen(devname) == chan->tag_len) {
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000348 if (!chan->inuse) {
349 chan->inuse = true;
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000350 found = 1;
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000351 break;
352 }
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000353 ret = -EBUSY;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500354 }
355 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600356 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500357
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000358 if (!found) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600359 printk(KERN_ERR "9p: no channels available\n");
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000360 return ret;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500361 }
362
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500363 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600364 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500365 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500366
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500367 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500368}
369
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600370/**
371 * p9_virtio_remove - clean up resources associated with a virtio device
372 * @vdev: virtio device to remove
373 *
374 */
375
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600376static void p9_virtio_remove(struct virtio_device *vdev)
377{
378 struct virtio_chan *chan = vdev->priv;
379
380 BUG_ON(chan->inuse);
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000381 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600382
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000383 mutex_lock(&virtio_9p_lock);
384 list_del(&chan->chan_list);
385 mutex_unlock(&virtio_9p_lock);
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000386 sysfs_remove_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000387 kfree(chan->tag);
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000388 kfree(chan);
389
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600390}
391
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500392static struct virtio_device_id id_table[] = {
393 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
394 { 0 },
395};
396
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000397static unsigned int features[] = {
398 VIRTIO_9P_MOUNT_TAG,
399};
400
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500401/* The standard "struct lguest_driver": */
402static struct virtio_driver p9_virtio_drv = {
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000403 .feature_table = features,
404 .feature_table_size = ARRAY_SIZE(features),
405 .driver.name = KBUILD_MODNAME,
406 .driver.owner = THIS_MODULE,
407 .id_table = id_table,
408 .probe = p9_virtio_probe,
409 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500410};
411
412static struct p9_trans_module p9_virtio_trans = {
413 .name = "virtio",
414 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500415 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500416 .request = p9_virtio_request,
417 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600418 .maxsize = PAGE_SIZE*16,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500419 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500420 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500421};
422
423/* The standard init function */
424static int __init p9_virtio_init(void)
425{
Aneesh Kumar K.V37c12092010-02-15 17:27:01 +0000426 INIT_LIST_HEAD(&virtio_chan_list);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500427
428 v9fs_register_trans(&p9_virtio_trans);
429 return register_virtio_driver(&p9_virtio_drv);
430}
431
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600432static void __exit p9_virtio_cleanup(void)
433{
434 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500435 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600436}
437
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500438module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600439module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500440
441MODULE_DEVICE_TABLE(virtio, id_table);
442MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
443MODULE_DESCRIPTION("Virtio 9p Transport");
444MODULE_LICENSE("GPL");