2 * linux/fs/9p/trans_fd.c
4 * Fd transport layer. Includes deprecated socket layer.
6 * Copyright (C) 2006 by Russ Cox <rsc@swtch.com>
7 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
8 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
9 * Copyright (C) 1997-2002 by Ron Minnich <rminnich@sarnoff.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2
13 * as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to:
22 * Free Software Foundation
23 * 51 Franklin Street, Fifth Floor
24 * Boston, MA 02111-1301 USA
29 #include <linux/module.h>
30 #include <linux/net.h>
31 #include <linux/ipv6.h>
32 #include <linux/kthread.h>
33 #include <linux/errno.h>
34 #include <linux/kernel.h>
36 #include <linux/uaccess.h>
37 #include <linux/inet.h>
38 #include <linux/idr.h>
39 #include <linux/file.h>
40 #include <linux/parser.h>
41 #include <linux/slab.h>
42 #include <net/9p/9p.h>
43 #include <net/9p/client.h>
44 #include <net/9p/transport.h>
46 #include <linux/syscalls.h> /* killme */
49 #define MAX_SOCK_BUF (64*1024)
50 #define MAXPOLLWADDR 2
53 * struct p9_fd_opts - per-transport options
54 * @rfd: file descriptor for reading (trans=fd)
55 * @wfd: file descriptor for writing (trans=fd)
56 * @port: port to connect to (trans=tcp)
67 * struct p9_trans_fd - transport state
68 * @rd: reference to file to read from
69 * @wr: reference of file to write to
70 * @conn: connection state reference
81 * Option Parsing (code inspired by NFS code)
82 * - a little lazy - parse all fd-transport options
86 /* Options that take integer arguments */
87 Opt_port, Opt_rfdno, Opt_wfdno, Opt_err,
90 static const match_table_t tokens = {
91 {Opt_port, "port=%u"},
92 {Opt_rfdno, "rfdno=%u"},
93 {Opt_wfdno, "wfdno=%u"},
98 Rworksched = 1, /* read work scheduled or running */
99 Rpending = 2, /* can read */
100 Wworksched = 4, /* write work scheduled or running */
101 Wpending = 8, /* can write */
104 struct p9_poll_wait {
105 struct p9_conn *conn;
107 wait_queue_head_t *wait_addr;
111 * struct p9_conn - fd mux connection state information
112 * @mux_list: list link for mux to manage multiple connections (?)
113 * @client: reference to client instance for this connection
115 * @req_list: accounting for requests which have been sent
116 * @unsent_req_list: accounting for requests that haven't been sent
117 * @req: current request being processed (if any)
118 * @tmp_buf: temporary buffer to read in header
119 * @rsize: amount to read for current frame
120 * @rpos: read position in current frame
121 * @rbuf: current read buffer
122 * @wpos: write position for current frame
123 * @wsize: amount of data to write for current frame
124 * @wbuf: current write buffer
125 * @poll_pending_link: pending links to be polled per conn
126 * @poll_wait: array of wait_q's for various worker threads
128 * @rq: current read work
129 * @wq: current write work
135 struct list_head mux_list;
136 struct p9_client *client;
138 struct list_head req_list;
139 struct list_head unsent_req_list;
140 struct p9_req_t *req;
148 struct list_head poll_pending_link;
149 struct p9_poll_wait poll_wait[MAXPOLLWADDR];
151 struct work_struct rq;
152 struct work_struct wq;
153 unsigned long wsched;
156 static void p9_poll_workfn(struct work_struct *work);
158 static DEFINE_SPINLOCK(p9_poll_lock);
159 static LIST_HEAD(p9_poll_pending_list);
160 static DECLARE_WORK(p9_poll_work, p9_poll_workfn);
162 static void p9_mux_poll_stop(struct p9_conn *m)
167 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
168 struct p9_poll_wait *pwait = &m->poll_wait[i];
170 if (pwait->wait_addr) {
171 remove_wait_queue(pwait->wait_addr, &pwait->wait);
172 pwait->wait_addr = NULL;
176 spin_lock_irqsave(&p9_poll_lock, flags);
177 list_del_init(&m->poll_pending_link);
178 spin_unlock_irqrestore(&p9_poll_lock, flags);
182 * p9_conn_cancel - cancel all pending requests with error
188 static void p9_conn_cancel(struct p9_conn *m, int err)
190 struct p9_req_t *req, *rtmp;
192 LIST_HEAD(cancel_list);
194 P9_DPRINTK(P9_DEBUG_ERROR, "mux %p err %d\n", m, err);
196 spin_lock_irqsave(&m->client->lock, flags);
199 spin_unlock_irqrestore(&m->client->lock, flags);
205 list_for_each_entry_safe(req, rtmp, &m->req_list, req_list) {
206 req->status = REQ_STATUS_ERROR;
209 list_move(&req->req_list, &cancel_list);
211 list_for_each_entry_safe(req, rtmp, &m->unsent_req_list, req_list) {
212 req->status = REQ_STATUS_ERROR;
215 list_move(&req->req_list, &cancel_list);
217 spin_unlock_irqrestore(&m->client->lock, flags);
219 list_for_each_entry_safe(req, rtmp, &cancel_list, req_list) {
220 P9_DPRINTK(P9_DEBUG_ERROR, "call back req %p\n", req);
221 list_del(&req->req_list);
222 p9_client_cb(m->client, req);
227 p9_fd_poll(struct p9_client *client, struct poll_table_struct *pt)
230 struct p9_trans_fd *ts = NULL;
232 if (client && client->status == Connected)
238 if (!ts->rd->f_op || !ts->rd->f_op->poll)
241 if (!ts->wr->f_op || !ts->wr->f_op->poll)
244 ret = ts->rd->f_op->poll(ts->rd, pt);
248 if (ts->rd != ts->wr) {
249 n = ts->wr->f_op->poll(ts->wr, pt);
252 ret = (ret & ~POLLOUT) | (n & ~POLLIN);
259 * p9_fd_read- read from a fd
260 * @client: client instance
261 * @v: buffer to receive data into
262 * @len: size of receive buffer
266 static int p9_fd_read(struct p9_client *client, void *v, int len)
269 struct p9_trans_fd *ts = NULL;
271 if (client && client->status != Disconnected)
277 if (!(ts->rd->f_flags & O_NONBLOCK))
278 P9_DPRINTK(P9_DEBUG_ERROR, "blocking read ...\n");
280 ret = kernel_read(ts->rd, ts->rd->f_pos, v, len);
281 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
282 client->status = Disconnected;
287 * p9_read_work - called when there is some data to be read from a transport
288 * @work: container of work to be done
292 static void p9_read_work(struct work_struct *work)
297 m = container_of(work, struct p9_conn, rq);
302 P9_DPRINTK(P9_DEBUG_TRANS, "start mux %p pos %d\n", m, m->rpos);
305 m->rbuf = m->tmp_buf;
307 m->rsize = 7; /* start by reading header */
310 clear_bit(Rpending, &m->wsched);
311 P9_DPRINTK(P9_DEBUG_TRANS, "read mux %p pos %d size: %d = %d\n", m,
312 m->rpos, m->rsize, m->rsize-m->rpos);
313 err = p9_fd_read(m->client, m->rbuf + m->rpos,
315 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p got %d bytes\n", m, err);
316 if (err == -EAGAIN) {
317 clear_bit(Rworksched, &m->wsched);
326 if ((!m->req) && (m->rpos == m->rsize)) { /* header read in */
328 P9_DPRINTK(P9_DEBUG_TRANS, "got new header\n");
330 n = le32_to_cpu(*(__le32 *) m->rbuf); /* read packet size */
331 if (n >= m->client->msize) {
332 P9_DPRINTK(P9_DEBUG_ERROR,
333 "requested packet size too big: %d\n", n);
338 tag = le16_to_cpu(*(__le16 *) (m->rbuf+5)); /* read tag */
339 P9_DPRINTK(P9_DEBUG_TRANS,
340 "mux %p pkt: size: %d bytes tag: %d\n", m, n, tag);
342 m->req = p9_tag_lookup(m->client, tag);
343 if (!m->req || (m->req->status != REQ_STATUS_SENT &&
344 m->req->status != REQ_STATUS_FLSH)) {
345 P9_DPRINTK(P9_DEBUG_ERROR, "Unexpected packet tag %d\n",
351 if (m->req->rc == NULL) {
352 m->req->rc = kmalloc(sizeof(struct p9_fcall) +
353 m->client->msize, GFP_NOFS);
360 m->rbuf = (char *)m->req->rc + sizeof(struct p9_fcall);
361 memcpy(m->rbuf, m->tmp_buf, m->rsize);
365 /* not an else because some packets (like clunk) have no payload */
366 if ((m->req) && (m->rpos == m->rsize)) { /* packet is read in */
367 P9_DPRINTK(P9_DEBUG_TRANS, "got new packet\n");
368 spin_lock(&m->client->lock);
369 if (m->req->status != REQ_STATUS_ERROR)
370 m->req->status = REQ_STATUS_RCVD;
371 list_del(&m->req->req_list);
372 spin_unlock(&m->client->lock);
373 p9_client_cb(m->client, m->req);
380 if (!list_empty(&m->req_list)) {
381 if (test_and_clear_bit(Rpending, &m->wsched))
384 n = p9_fd_poll(m->client, NULL);
387 P9_DPRINTK(P9_DEBUG_TRANS, "sched read work %p\n", m);
388 schedule_work(&m->rq);
390 clear_bit(Rworksched, &m->wsched);
392 clear_bit(Rworksched, &m->wsched);
396 p9_conn_cancel(m, err);
397 clear_bit(Rworksched, &m->wsched);
401 * p9_fd_write - write to a socket
402 * @client: client instance
403 * @v: buffer to send data from
404 * @len: size of send buffer
408 static int p9_fd_write(struct p9_client *client, void *v, int len)
412 struct p9_trans_fd *ts = NULL;
414 if (client && client->status != Disconnected)
420 if (!(ts->wr->f_flags & O_NONBLOCK))
421 P9_DPRINTK(P9_DEBUG_ERROR, "blocking write ...\n");
425 /* The cast to a user pointer is valid due to the set_fs() */
426 ret = vfs_write(ts->wr, (__force void __user *)v, len, &ts->wr->f_pos);
429 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
430 client->status = Disconnected;
435 * p9_write_work - called when a transport can send some data
436 * @work: container for work to be done
440 static void p9_write_work(struct work_struct *work)
444 struct p9_req_t *req;
446 m = container_of(work, struct p9_conn, wq);
449 clear_bit(Wworksched, &m->wsched);
454 if (list_empty(&m->unsent_req_list)) {
455 clear_bit(Wworksched, &m->wsched);
459 spin_lock(&m->client->lock);
460 req = list_entry(m->unsent_req_list.next, struct p9_req_t,
462 req->status = REQ_STATUS_SENT;
463 P9_DPRINTK(P9_DEBUG_TRANS, "move req %p\n", req);
464 list_move_tail(&req->req_list, &m->req_list);
466 m->wbuf = req->tc->sdata;
467 m->wsize = req->tc->size;
469 spin_unlock(&m->client->lock);
472 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p pos %d size %d\n", m, m->wpos,
474 clear_bit(Wpending, &m->wsched);
475 err = p9_fd_write(m->client, m->wbuf + m->wpos, m->wsize - m->wpos);
476 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p sent %d bytes\n", m, err);
477 if (err == -EAGAIN) {
478 clear_bit(Wworksched, &m->wsched);
490 if (m->wpos == m->wsize)
491 m->wpos = m->wsize = 0;
493 if (m->wsize == 0 && !list_empty(&m->unsent_req_list)) {
494 if (test_and_clear_bit(Wpending, &m->wsched))
497 n = p9_fd_poll(m->client, NULL);
500 P9_DPRINTK(P9_DEBUG_TRANS, "sched write work %p\n", m);
501 schedule_work(&m->wq);
503 clear_bit(Wworksched, &m->wsched);
505 clear_bit(Wworksched, &m->wsched);
510 p9_conn_cancel(m, err);
511 clear_bit(Wworksched, &m->wsched);
514 static int p9_pollwake(wait_queue_t *wait, unsigned mode, int sync, void *key)
516 struct p9_poll_wait *pwait =
517 container_of(wait, struct p9_poll_wait, wait);
518 struct p9_conn *m = pwait->conn;
521 spin_lock_irqsave(&p9_poll_lock, flags);
522 if (list_empty(&m->poll_pending_link))
523 list_add_tail(&m->poll_pending_link, &p9_poll_pending_list);
524 spin_unlock_irqrestore(&p9_poll_lock, flags);
526 schedule_work(&p9_poll_work);
531 * p9_pollwait - add poll task to the wait queue
532 * @filp: file pointer being polled
533 * @wait_address: wait_q to block on
536 * called by files poll operation to add v9fs-poll task to files wait queue
540 p9_pollwait(struct file *filp, wait_queue_head_t *wait_address, poll_table *p)
542 struct p9_conn *m = container_of(p, struct p9_conn, pt);
543 struct p9_poll_wait *pwait = NULL;
546 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
547 if (m->poll_wait[i].wait_addr == NULL) {
548 pwait = &m->poll_wait[i];
554 P9_DPRINTK(P9_DEBUG_ERROR, "not enough wait_address slots\n");
559 pwait->wait_addr = wait_address;
560 init_waitqueue_func_entry(&pwait->wait, p9_pollwake);
561 add_wait_queue(wait_address, &pwait->wait);
565 * p9_conn_create - allocate and initialize the per-session mux data
566 * @client: client instance
568 * Note: Creates the polling task if this is the first session.
571 static struct p9_conn *p9_conn_create(struct p9_client *client)
576 P9_DPRINTK(P9_DEBUG_TRANS, "client %p msize %d\n", client,
578 m = kzalloc(sizeof(struct p9_conn), GFP_KERNEL);
580 return ERR_PTR(-ENOMEM);
582 INIT_LIST_HEAD(&m->mux_list);
585 INIT_LIST_HEAD(&m->req_list);
586 INIT_LIST_HEAD(&m->unsent_req_list);
587 INIT_WORK(&m->rq, p9_read_work);
588 INIT_WORK(&m->wq, p9_write_work);
589 INIT_LIST_HEAD(&m->poll_pending_link);
590 init_poll_funcptr(&m->pt, p9_pollwait);
592 n = p9_fd_poll(client, &m->pt);
594 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can read\n", m);
595 set_bit(Rpending, &m->wsched);
599 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can write\n", m);
600 set_bit(Wpending, &m->wsched);
607 * p9_poll_mux - polls a mux and schedules read or write works if necessary
608 * @m: connection to poll
612 static void p9_poll_mux(struct p9_conn *m)
619 n = p9_fd_poll(m->client, NULL);
620 if (n < 0 || n & (POLLERR | POLLHUP | POLLNVAL)) {
621 P9_DPRINTK(P9_DEBUG_TRANS, "error mux %p err %d\n", m, n);
624 p9_conn_cancel(m, n);
628 set_bit(Rpending, &m->wsched);
629 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can read\n", m);
630 if (!test_and_set_bit(Rworksched, &m->wsched)) {
631 P9_DPRINTK(P9_DEBUG_TRANS, "sched read work %p\n", m);
632 schedule_work(&m->rq);
637 set_bit(Wpending, &m->wsched);
638 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can write\n", m);
639 if ((m->wsize || !list_empty(&m->unsent_req_list)) &&
640 !test_and_set_bit(Wworksched, &m->wsched)) {
641 P9_DPRINTK(P9_DEBUG_TRANS, "sched write work %p\n", m);
642 schedule_work(&m->wq);
648 * p9_fd_request - send 9P request
649 * The function can sleep until the request is scheduled for sending.
650 * The function can be interrupted. Return from the function is not
651 * a guarantee that the request is sent successfully.
653 * @client: client instance
654 * @req: request to be sent
658 static int p9_fd_request(struct p9_client *client, struct p9_req_t *req)
661 struct p9_trans_fd *ts = client->trans;
662 struct p9_conn *m = ts->conn;
664 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p task %p tcall %p id %d\n", m,
665 current, req->tc, req->tc->id);
669 spin_lock(&client->lock);
670 req->status = REQ_STATUS_UNSENT;
671 list_add_tail(&req->req_list, &m->unsent_req_list);
672 spin_unlock(&client->lock);
674 if (test_and_clear_bit(Wpending, &m->wsched))
677 n = p9_fd_poll(m->client, NULL);
679 if (n & POLLOUT && !test_and_set_bit(Wworksched, &m->wsched))
680 schedule_work(&m->wq);
685 static int p9_fd_cancel(struct p9_client *client, struct p9_req_t *req)
689 P9_DPRINTK(P9_DEBUG_TRANS, "client %p req %p\n", client, req);
691 spin_lock(&client->lock);
693 if (req->status == REQ_STATUS_UNSENT) {
694 list_del(&req->req_list);
695 req->status = REQ_STATUS_FLSHD;
697 } else if (req->status == REQ_STATUS_SENT)
698 req->status = REQ_STATUS_FLSH;
700 spin_unlock(&client->lock);
706 * parse_opts - parse mount options into p9_fd_opts structure
707 * @params: options string passed from mount
708 * @opts: fd transport-specific structure to parse options into
710 * Returns 0 upon success, -ERRNO upon failure
713 static int parse_opts(char *params, struct p9_fd_opts *opts)
716 substring_t args[MAX_OPT_ARGS];
718 char *options, *tmp_options;
720 opts->port = P9_PORT;
727 tmp_options = kstrdup(params, GFP_KERNEL);
729 P9_DPRINTK(P9_DEBUG_ERROR,
730 "failed to allocate copy of option string\n");
733 options = tmp_options;
735 while ((p = strsep(&options, ",")) != NULL) {
740 token = match_token(p, tokens, args);
741 if (token != Opt_err) {
742 r = match_int(&args[0], &option);
744 P9_DPRINTK(P9_DEBUG_ERROR,
745 "integer field, but no integer?\n");
768 static int p9_fd_open(struct p9_client *client, int rfd, int wfd)
770 struct p9_trans_fd *ts = kmalloc(sizeof(struct p9_trans_fd),
777 if (!ts->rd || !ts->wr) {
787 client->status = Connected;
792 static int p9_socket_open(struct p9_client *client, struct socket *csocket)
794 struct p9_trans_fd *p;
797 p = kmalloc(sizeof(struct p9_trans_fd), GFP_KERNEL);
801 csocket->sk->sk_allocation = GFP_NOIO;
802 fd = sock_map_fd(csocket, 0);
804 P9_EPRINTK(KERN_ERR, "p9_socket_open: failed to map fd\n");
805 sock_release(csocket);
810 get_file(csocket->file);
811 get_file(csocket->file);
812 p->wr = p->rd = csocket->file;
814 client->status = Connected;
816 sys_close(fd); /* still racy */
818 p->rd->f_flags |= O_NONBLOCK;
820 p->conn = p9_conn_create(client);
821 if (IS_ERR(p->conn)) {
822 ret = PTR_ERR(p->conn);
833 * p9_mux_destroy - cancels all pending requests and frees mux resources
838 static void p9_conn_destroy(struct p9_conn *m)
840 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p prev %p next %p\n", m,
841 m->mux_list.prev, m->mux_list.next);
844 cancel_work_sync(&m->rq);
845 cancel_work_sync(&m->wq);
847 p9_conn_cancel(m, -ECONNRESET);
854 * p9_fd_close - shutdown file descriptor transport
855 * @client: client instance
859 static void p9_fd_close(struct p9_client *client)
861 struct p9_trans_fd *ts;
870 client->status = Disconnected;
872 p9_conn_destroy(ts->conn);
883 * stolen from NFS - maybe should be made a generic function?
885 static inline int valid_ipaddr4(const char *buf)
887 int rc, count, in[4];
889 rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]);
892 for (count = 0; count < 4; count++) {
900 p9_fd_create_tcp(struct p9_client *client, const char *addr, char *args)
903 struct socket *csocket;
904 struct sockaddr_in sin_server;
905 struct p9_fd_opts opts;
907 err = parse_opts(args, &opts);
911 if (valid_ipaddr4(addr) < 0)
916 sin_server.sin_family = AF_INET;
917 sin_server.sin_addr.s_addr = in_aton(addr);
918 sin_server.sin_port = htons(opts.port);
919 err = __sock_create(read_pnet(¤t->nsproxy->net_ns), PF_INET,
920 SOCK_STREAM, IPPROTO_TCP, &csocket, 1);
922 P9_EPRINTK(KERN_ERR, "p9_trans_tcp: problem creating socket\n");
926 err = csocket->ops->connect(csocket,
927 (struct sockaddr *)&sin_server,
928 sizeof(struct sockaddr_in), 0);
931 "p9_trans_tcp: problem connecting socket to %s\n",
933 sock_release(csocket);
937 return p9_socket_open(client, csocket);
941 p9_fd_create_unix(struct p9_client *client, const char *addr, char *args)
944 struct socket *csocket;
945 struct sockaddr_un sun_server;
949 if (strlen(addr) >= UNIX_PATH_MAX) {
950 P9_EPRINTK(KERN_ERR, "p9_trans_unix: address too long: %s\n",
952 return -ENAMETOOLONG;
955 sun_server.sun_family = PF_UNIX;
956 strcpy(sun_server.sun_path, addr);
957 err = __sock_create(read_pnet(¤t->nsproxy->net_ns), PF_UNIX,
958 SOCK_STREAM, 0, &csocket, 1);
960 P9_EPRINTK(KERN_ERR, "p9_trans_unix: problem creating socket\n");
963 err = csocket->ops->connect(csocket, (struct sockaddr *)&sun_server,
964 sizeof(struct sockaddr_un) - 1, 0);
967 "p9_trans_unix: problem connecting socket: %s: %d\n",
969 sock_release(csocket);
973 return p9_socket_open(client, csocket);
977 p9_fd_create(struct p9_client *client, const char *addr, char *args)
980 struct p9_fd_opts opts;
981 struct p9_trans_fd *p;
983 parse_opts(args, &opts);
985 if (opts.rfd == ~0 || opts.wfd == ~0) {
986 printk(KERN_ERR "v9fs: Insufficient options for proto=fd\n");
990 err = p9_fd_open(client, opts.rfd, opts.wfd);
994 p = (struct p9_trans_fd *) client->trans;
995 p->conn = p9_conn_create(client);
996 if (IS_ERR(p->conn)) {
997 err = PTR_ERR(p->conn);
1007 static struct p9_trans_module p9_tcp_trans = {
1009 .maxsize = MAX_SOCK_BUF,
1011 .create = p9_fd_create_tcp,
1012 .close = p9_fd_close,
1013 .request = p9_fd_request,
1014 .cancel = p9_fd_cancel,
1015 .owner = THIS_MODULE,
1018 static struct p9_trans_module p9_unix_trans = {
1020 .maxsize = MAX_SOCK_BUF,
1022 .create = p9_fd_create_unix,
1023 .close = p9_fd_close,
1024 .request = p9_fd_request,
1025 .cancel = p9_fd_cancel,
1026 .owner = THIS_MODULE,
1029 static struct p9_trans_module p9_fd_trans = {
1031 .maxsize = MAX_SOCK_BUF,
1033 .create = p9_fd_create,
1034 .close = p9_fd_close,
1035 .request = p9_fd_request,
1036 .cancel = p9_fd_cancel,
1037 .owner = THIS_MODULE,
1041 * p9_poll_proc - poll worker thread
1042 * @a: thread state and arguments
1044 * polls all v9fs transports for new events and queues the appropriate
1045 * work to the work queue
1049 static void p9_poll_workfn(struct work_struct *work)
1051 unsigned long flags;
1053 P9_DPRINTK(P9_DEBUG_TRANS, "start %p\n", current);
1055 spin_lock_irqsave(&p9_poll_lock, flags);
1056 while (!list_empty(&p9_poll_pending_list)) {
1057 struct p9_conn *conn = list_first_entry(&p9_poll_pending_list,
1060 list_del_init(&conn->poll_pending_link);
1061 spin_unlock_irqrestore(&p9_poll_lock, flags);
1065 spin_lock_irqsave(&p9_poll_lock, flags);
1067 spin_unlock_irqrestore(&p9_poll_lock, flags);
1069 P9_DPRINTK(P9_DEBUG_TRANS, "finish\n");
1072 int p9_trans_fd_init(void)
1074 v9fs_register_trans(&p9_tcp_trans);
1075 v9fs_register_trans(&p9_unix_trans);
1076 v9fs_register_trans(&p9_fd_trans);
1081 void p9_trans_fd_exit(void)
1083 flush_work_sync(&p9_poll_work);
1084 v9fs_unregister_trans(&p9_tcp_trans);
1085 v9fs_unregister_trans(&p9_unix_trans);
1086 v9fs_unregister_trans(&p9_fd_trans);