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 <net/9p/9p.h>
42 #include <net/9p/client.h>
43 #include <net/9p/transport.h>
46 #define MAX_SOCK_BUF (64*1024)
47 #define MAXPOLLWADDR 2
50 * struct p9_fd_opts - per-transport options
51 * @rfd: file descriptor for reading (trans=fd)
52 * @wfd: file descriptor for writing (trans=fd)
53 * @port: port to connect to (trans=tcp)
64 * struct p9_trans_fd - transport state
65 * @rd: reference to file to read from
66 * @wr: reference of file to write to
67 * @conn: connection state reference
78 * Option Parsing (code inspired by NFS code)
79 * - a little lazy - parse all fd-transport options
83 /* Options that take integer arguments */
84 Opt_port, Opt_rfdno, Opt_wfdno, Opt_err,
87 static const match_table_t tokens = {
88 {Opt_port, "port=%u"},
89 {Opt_rfdno, "rfdno=%u"},
90 {Opt_wfdno, "wfdno=%u"},
95 Rworksched = 1, /* read work scheduled or running */
96 Rpending = 2, /* can read */
97 Wworksched = 4, /* write work scheduled or running */
98 Wpending = 8, /* can write */
101 struct p9_poll_wait {
102 struct p9_conn *conn;
104 wait_queue_head_t *wait_addr;
108 * struct p9_conn - fd mux connection state information
109 * @mux_list: list link for mux to manage multiple connections (?)
110 * @client: reference to client instance for this connection
112 * @req_list: accounting for requests which have been sent
113 * @unsent_req_list: accounting for requests that haven't been sent
114 * @req: current request being processed (if any)
115 * @tmp_buf: temporary buffer to read in header
116 * @rsize: amount to read for current frame
117 * @rpos: read position in current frame
118 * @rbuf: current read buffer
119 * @wpos: write position for current frame
120 * @wsize: amount of data to write for current frame
121 * @wbuf: current write buffer
122 * @poll_wait: array of wait_q's for various worker threads
125 * @rq: current read work
126 * @wq: current write work
132 struct list_head mux_list;
133 struct p9_client *client;
135 struct list_head req_list;
136 struct list_head unsent_req_list;
137 struct p9_req_t *req;
145 struct list_head poll_pending_link;
146 struct p9_poll_wait poll_wait[MAXPOLLWADDR];
148 struct work_struct rq;
149 struct work_struct wq;
150 unsigned long wsched;
153 static DEFINE_SPINLOCK(p9_poll_lock);
154 static LIST_HEAD(p9_poll_pending_list);
155 static struct workqueue_struct *p9_mux_wq;
156 static struct task_struct *p9_poll_task;
158 static void p9_mux_poll_stop(struct p9_conn *m)
163 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
164 struct p9_poll_wait *pwait = &m->poll_wait[i];
166 if (pwait->wait_addr) {
167 remove_wait_queue(pwait->wait_addr, &pwait->wait);
168 pwait->wait_addr = NULL;
172 spin_lock_irqsave(&p9_poll_lock, flags);
173 list_del_init(&m->poll_pending_link);
174 spin_unlock_irqrestore(&p9_poll_lock, flags);
178 * p9_conn_cancel - cancel all pending requests with error
184 static void p9_conn_cancel(struct p9_conn *m, int err)
186 struct p9_req_t *req, *rtmp;
188 LIST_HEAD(cancel_list);
190 P9_DPRINTK(P9_DEBUG_ERROR, "mux %p err %d\n", m, err);
192 spin_lock_irqsave(&m->client->lock, flags);
193 list_for_each_entry_safe(req, rtmp, &m->req_list, req_list) {
194 req->status = REQ_STATUS_ERROR;
197 list_move(&req->req_list, &cancel_list);
199 list_for_each_entry_safe(req, rtmp, &m->unsent_req_list, req_list) {
200 req->status = REQ_STATUS_ERROR;
203 list_move(&req->req_list, &cancel_list);
205 spin_unlock_irqrestore(&m->client->lock, flags);
207 list_for_each_entry_safe(req, rtmp, &cancel_list, req_list) {
208 list_del(&req->req_list);
209 P9_DPRINTK(P9_DEBUG_ERROR, "call back req %p\n", req);
210 p9_client_cb(m->client, req);
215 p9_fd_poll(struct p9_client *client, struct poll_table_struct *pt)
218 struct p9_trans_fd *ts = NULL;
220 if (client && client->status == Connected)
226 if (!ts->rd->f_op || !ts->rd->f_op->poll)
229 if (!ts->wr->f_op || !ts->wr->f_op->poll)
232 ret = ts->rd->f_op->poll(ts->rd, pt);
236 if (ts->rd != ts->wr) {
237 n = ts->wr->f_op->poll(ts->wr, pt);
240 ret = (ret & ~POLLOUT) | (n & ~POLLIN);
247 * p9_fd_read- read from a fd
248 * @client: client instance
249 * @v: buffer to receive data into
250 * @len: size of receive buffer
254 static int p9_fd_read(struct p9_client *client, void *v, int len)
257 struct p9_trans_fd *ts = NULL;
259 if (client && client->status != Disconnected)
265 if (!(ts->rd->f_flags & O_NONBLOCK))
266 P9_DPRINTK(P9_DEBUG_ERROR, "blocking read ...\n");
268 ret = kernel_read(ts->rd, ts->rd->f_pos, v, len);
269 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
270 client->status = Disconnected;
275 * p9_read_work - called when there is some data to be read from a transport
276 * @work: container of work to be done
280 static void p9_read_work(struct work_struct *work)
285 m = container_of(work, struct p9_conn, rq);
290 P9_DPRINTK(P9_DEBUG_TRANS, "start mux %p pos %d\n", m, m->rpos);
293 m->rbuf = m->tmp_buf;
295 m->rsize = 7; /* start by reading header */
298 clear_bit(Rpending, &m->wsched);
299 P9_DPRINTK(P9_DEBUG_TRANS, "read mux %p pos %d size: %d = %d\n", m,
300 m->rpos, m->rsize, m->rsize-m->rpos);
301 err = p9_fd_read(m->client, m->rbuf + m->rpos,
303 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p got %d bytes\n", m, err);
304 if (err == -EAGAIN) {
305 clear_bit(Rworksched, &m->wsched);
314 if ((!m->req) && (m->rpos == m->rsize)) { /* header read in */
316 P9_DPRINTK(P9_DEBUG_TRANS, "got new header\n");
318 n = le32_to_cpu(*(__le32 *) m->rbuf); /* read packet size */
319 if (n >= m->client->msize) {
320 P9_DPRINTK(P9_DEBUG_ERROR,
321 "requested packet size too big: %d\n", n);
326 tag = le16_to_cpu(*(__le16 *) (m->rbuf+5)); /* read tag */
327 P9_DPRINTK(P9_DEBUG_TRANS,
328 "mux %p pkt: size: %d bytes tag: %d\n", m, n, tag);
330 m->req = p9_tag_lookup(m->client, tag);
332 P9_DPRINTK(P9_DEBUG_ERROR, "Unexpected packet tag %d\n",
338 if (m->req->rc == NULL) {
339 m->req->rc = kmalloc(sizeof(struct p9_fcall) +
340 m->client->msize, GFP_KERNEL);
347 m->rbuf = (char *)m->req->rc + sizeof(struct p9_fcall);
348 memcpy(m->rbuf, m->tmp_buf, m->rsize);
352 /* not an else because some packets (like clunk) have no payload */
353 if ((m->req) && (m->rpos == m->rsize)) { /* packet is read in */
354 P9_DPRINTK(P9_DEBUG_TRANS, "got new packet\n");
356 list_del(&m->req->req_list);
357 p9_client_cb(m->client, m->req);
365 if (!list_empty(&m->req_list)) {
366 if (test_and_clear_bit(Rpending, &m->wsched))
369 n = p9_fd_poll(m->client, NULL);
372 P9_DPRINTK(P9_DEBUG_TRANS, "sched read work %p\n", m);
373 queue_work(p9_mux_wq, &m->rq);
375 clear_bit(Rworksched, &m->wsched);
377 clear_bit(Rworksched, &m->wsched);
381 p9_conn_cancel(m, err);
382 clear_bit(Rworksched, &m->wsched);
386 * p9_fd_write - write to a socket
387 * @client: client instance
388 * @v: buffer to send data from
389 * @len: size of send buffer
393 static int p9_fd_write(struct p9_client *client, void *v, int len)
397 struct p9_trans_fd *ts = NULL;
399 if (client && client->status != Disconnected)
405 if (!(ts->wr->f_flags & O_NONBLOCK))
406 P9_DPRINTK(P9_DEBUG_ERROR, "blocking write ...\n");
410 /* The cast to a user pointer is valid due to the set_fs() */
411 ret = vfs_write(ts->wr, (void __user *)v, len, &ts->wr->f_pos);
414 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
415 client->status = Disconnected;
420 * p9_write_work - called when a transport can send some data
421 * @work: container for work to be done
425 static void p9_write_work(struct work_struct *work)
429 struct p9_req_t *req;
431 m = container_of(work, struct p9_conn, wq);
434 clear_bit(Wworksched, &m->wsched);
439 if (list_empty(&m->unsent_req_list)) {
440 clear_bit(Wworksched, &m->wsched);
444 spin_lock(&m->client->lock);
445 req = list_entry(m->unsent_req_list.next, struct p9_req_t,
447 req->status = REQ_STATUS_SENT;
448 list_move_tail(&req->req_list, &m->req_list);
450 m->wbuf = req->tc->sdata;
451 m->wsize = req->tc->size;
453 spin_unlock(&m->client->lock);
456 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p pos %d size %d\n", m, m->wpos,
458 clear_bit(Wpending, &m->wsched);
459 err = p9_fd_write(m->client, m->wbuf + m->wpos, m->wsize - m->wpos);
460 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p sent %d bytes\n", m, err);
461 if (err == -EAGAIN) {
462 clear_bit(Wworksched, &m->wsched);
474 if (m->wpos == m->wsize)
475 m->wpos = m->wsize = 0;
477 if (m->wsize == 0 && !list_empty(&m->unsent_req_list)) {
478 if (test_and_clear_bit(Wpending, &m->wsched))
481 n = p9_fd_poll(m->client, NULL);
484 P9_DPRINTK(P9_DEBUG_TRANS, "sched write work %p\n", m);
485 queue_work(p9_mux_wq, &m->wq);
487 clear_bit(Wworksched, &m->wsched);
489 clear_bit(Wworksched, &m->wsched);
494 p9_conn_cancel(m, err);
495 clear_bit(Wworksched, &m->wsched);
498 static int p9_pollwake(wait_queue_t *wait, unsigned mode, int sync, void *key)
500 struct p9_poll_wait *pwait =
501 container_of(wait, struct p9_poll_wait, wait);
502 struct p9_conn *m = pwait->conn;
504 DECLARE_WAITQUEUE(dummy_wait, p9_poll_task);
506 spin_lock_irqsave(&p9_poll_lock, flags);
507 if (list_empty(&m->poll_pending_link))
508 list_add_tail(&m->poll_pending_link, &p9_poll_pending_list);
509 spin_unlock_irqrestore(&p9_poll_lock, flags);
511 /* perform the default wake up operation */
512 return default_wake_function(&dummy_wait, mode, sync, key);
516 * p9_pollwait - add poll task to the wait queue
517 * @filp: file pointer being polled
518 * @wait_address: wait_q to block on
521 * called by files poll operation to add v9fs-poll task to files wait queue
525 p9_pollwait(struct file *filp, wait_queue_head_t *wait_address, poll_table *p)
527 struct p9_conn *m = container_of(p, struct p9_conn, pt);
528 struct p9_poll_wait *pwait = NULL;
531 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
532 if (m->poll_wait[i].wait_addr == NULL) {
533 pwait = &m->poll_wait[i];
539 P9_DPRINTK(P9_DEBUG_ERROR, "not enough wait_address slots\n");
544 pwait->wait_addr = wait_address;
545 init_waitqueue_func_entry(&pwait->wait, p9_pollwake);
546 add_wait_queue(wait_address, &pwait->wait);
550 * p9_conn_create - allocate and initialize the per-session mux data
551 * @client: client instance
553 * Note: Creates the polling task if this is the first session.
556 static struct p9_conn *p9_conn_create(struct p9_client *client)
561 P9_DPRINTK(P9_DEBUG_TRANS, "client %p msize %d\n", client,
563 m = kzalloc(sizeof(struct p9_conn), GFP_KERNEL);
565 return ERR_PTR(-ENOMEM);
567 INIT_LIST_HEAD(&m->mux_list);
570 INIT_LIST_HEAD(&m->req_list);
571 INIT_LIST_HEAD(&m->unsent_req_list);
572 INIT_WORK(&m->rq, p9_read_work);
573 INIT_WORK(&m->wq, p9_write_work);
574 INIT_LIST_HEAD(&m->poll_pending_link);
575 init_poll_funcptr(&m->pt, p9_pollwait);
577 n = p9_fd_poll(client, &m->pt);
579 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can read\n", m);
580 set_bit(Rpending, &m->wsched);
584 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can write\n", m);
585 set_bit(Wpending, &m->wsched);
592 * p9_poll_mux - polls a mux and schedules read or write works if necessary
593 * @m: connection to poll
597 static void p9_poll_mux(struct p9_conn *m)
604 n = p9_fd_poll(m->client, NULL);
605 if (n < 0 || n & (POLLERR | POLLHUP | POLLNVAL)) {
606 P9_DPRINTK(P9_DEBUG_TRANS, "error mux %p err %d\n", m, n);
609 p9_conn_cancel(m, n);
613 set_bit(Rpending, &m->wsched);
614 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can read\n", m);
615 if (!test_and_set_bit(Rworksched, &m->wsched)) {
616 P9_DPRINTK(P9_DEBUG_TRANS, "sched read work %p\n", m);
617 queue_work(p9_mux_wq, &m->rq);
622 set_bit(Wpending, &m->wsched);
623 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p can write\n", m);
624 if ((m->wsize || !list_empty(&m->unsent_req_list))
625 && !test_and_set_bit(Wworksched, &m->wsched)) {
626 P9_DPRINTK(P9_DEBUG_TRANS, "sched write work %p\n", m);
627 queue_work(p9_mux_wq, &m->wq);
633 * p9_fd_request - send 9P request
634 * The function can sleep until the request is scheduled for sending.
635 * The function can be interrupted. Return from the function is not
636 * a guarantee that the request is sent successfully.
638 * @client: client instance
639 * @req: request to be sent
643 static int p9_fd_request(struct p9_client *client, struct p9_req_t *req)
646 struct p9_trans_fd *ts = client->trans;
647 struct p9_conn *m = ts->conn;
649 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p task %p tcall %p id %d\n", m,
650 current, req->tc, req->tc->id);
654 req->status = REQ_STATUS_UNSENT;
656 spin_lock(&client->lock);
657 list_add_tail(&req->req_list, &m->unsent_req_list);
658 spin_unlock(&client->lock);
660 if (test_and_clear_bit(Wpending, &m->wsched))
663 n = p9_fd_poll(m->client, NULL);
665 if (n & POLLOUT && !test_and_set_bit(Wworksched, &m->wsched))
666 queue_work(p9_mux_wq, &m->wq);
671 static int p9_fd_cancel(struct p9_client *client, struct p9_req_t *req)
673 struct p9_trans_fd *ts = client->trans;
674 struct p9_conn *m = ts->conn;
676 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p req %p\n", m, req);
678 spin_lock(&client->lock);
679 list_del(&req->req_list);
680 spin_unlock(&client->lock);
682 if (req->status == REQ_STATUS_UNSENT) {
683 req->status = REQ_STATUS_FLSHD;
691 * parse_options - parse mount options into session structure
692 * @options: options string passed from mount
693 * @opts: transport-specific structure to parse options into
695 * Returns 0 upon success, -ERRNO upon failure
698 static int parse_opts(char *params, struct p9_fd_opts *opts)
701 substring_t args[MAX_OPT_ARGS];
706 opts->port = P9_PORT;
713 options = kstrdup(params, GFP_KERNEL);
715 P9_DPRINTK(P9_DEBUG_ERROR,
716 "failed to allocate copy of option string\n");
720 while ((p = strsep(&options, ",")) != NULL) {
725 token = match_token(p, tokens, args);
726 r = match_int(&args[0], &option);
728 P9_DPRINTK(P9_DEBUG_ERROR,
729 "integer field, but no integer?\n");
751 static int p9_fd_open(struct p9_client *client, int rfd, int wfd)
753 struct p9_trans_fd *ts = kmalloc(sizeof(struct p9_trans_fd),
760 if (!ts->rd || !ts->wr) {
770 client->status = Connected;
775 static int p9_socket_open(struct p9_client *client, struct socket *csocket)
779 csocket->sk->sk_allocation = GFP_NOIO;
780 fd = sock_map_fd(csocket, 0);
782 P9_EPRINTK(KERN_ERR, "p9_socket_open: failed to map fd\n");
786 ret = p9_fd_open(client, fd, fd);
788 P9_EPRINTK(KERN_ERR, "p9_socket_open: failed to open fd\n");
793 ((struct p9_trans_fd *)client->trans)->rd->f_flags |= O_NONBLOCK;
799 * p9_mux_destroy - cancels all pending requests and frees mux resources
804 static void p9_conn_destroy(struct p9_conn *m)
806 P9_DPRINTK(P9_DEBUG_TRANS, "mux %p prev %p next %p\n", m,
807 m->mux_list.prev, m->mux_list.next);
810 cancel_work_sync(&m->rq);
811 cancel_work_sync(&m->wq);
813 p9_conn_cancel(m, -ECONNRESET);
820 * p9_fd_close - shutdown file descriptor transport
821 * @client: client instance
825 static void p9_fd_close(struct p9_client *client)
827 struct p9_trans_fd *ts;
836 client->status = Disconnected;
838 p9_conn_destroy(ts->conn);
849 * stolen from NFS - maybe should be made a generic function?
851 static inline int valid_ipaddr4(const char *buf)
853 int rc, count, in[4];
855 rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]);
858 for (count = 0; count < 4; count++) {
866 p9_fd_create_tcp(struct p9_client *client, const char *addr, char *args)
869 struct socket *csocket;
870 struct sockaddr_in sin_server;
871 struct p9_fd_opts opts;
872 struct p9_trans_fd *p = NULL; /* this gets allocated in p9_fd_open */
874 err = parse_opts(args, &opts);
878 if (valid_ipaddr4(addr) < 0)
883 sin_server.sin_family = AF_INET;
884 sin_server.sin_addr.s_addr = in_aton(addr);
885 sin_server.sin_port = htons(opts.port);
886 sock_create_kern(PF_INET, SOCK_STREAM, IPPROTO_TCP, &csocket);
889 P9_EPRINTK(KERN_ERR, "p9_trans_tcp: problem creating socket\n");
894 err = csocket->ops->connect(csocket,
895 (struct sockaddr *)&sin_server,
896 sizeof(struct sockaddr_in), 0);
899 "p9_trans_tcp: problem connecting socket to %s\n",
904 err = p9_socket_open(client, csocket);
908 p = (struct p9_trans_fd *) client->trans;
909 p->conn = p9_conn_create(client);
910 if (IS_ERR(p->conn)) {
911 err = PTR_ERR(p->conn);
920 sock_release(csocket);
928 p9_fd_create_unix(struct p9_client *client, const char *addr, char *args)
931 struct socket *csocket;
932 struct sockaddr_un sun_server;
933 struct p9_trans_fd *p = NULL; /* this gets allocated in p9_fd_open */
937 if (strlen(addr) > UNIX_PATH_MAX) {
938 P9_EPRINTK(KERN_ERR, "p9_trans_unix: address too long: %s\n",
944 sun_server.sun_family = PF_UNIX;
945 strcpy(sun_server.sun_path, addr);
946 sock_create_kern(PF_UNIX, SOCK_STREAM, 0, &csocket);
947 err = csocket->ops->connect(csocket, (struct sockaddr *)&sun_server,
948 sizeof(struct sockaddr_un) - 1, 0);
951 "p9_trans_unix: problem connecting socket: %s: %d\n",
956 err = p9_socket_open(client, csocket);
960 p = (struct p9_trans_fd *) client->trans;
961 p->conn = p9_conn_create(client);
962 if (IS_ERR(p->conn)) {
963 err = PTR_ERR(p->conn);
972 sock_release(csocket);
979 p9_fd_create(struct p9_client *client, const char *addr, char *args)
982 struct p9_fd_opts opts;
983 struct p9_trans_fd *p = NULL; /* this get allocated in p9_fd_open */
985 parse_opts(args, &opts);
987 if (opts.rfd == ~0 || opts.wfd == ~0) {
988 printk(KERN_ERR "v9fs: Insufficient options for proto=fd\n");
992 err = p9_fd_open(client, opts.rfd, opts.wfd);
996 p = (struct p9_trans_fd *) client->trans;
997 p->conn = p9_conn_create(client);
998 if (IS_ERR(p->conn)) {
999 err = PTR_ERR(p->conn);
1011 static struct p9_trans_module p9_tcp_trans = {
1013 .maxsize = MAX_SOCK_BUF,
1015 .create = p9_fd_create_tcp,
1016 .close = p9_fd_close,
1017 .request = p9_fd_request,
1018 .cancel = p9_fd_cancel,
1019 .owner = THIS_MODULE,
1022 static struct p9_trans_module p9_unix_trans = {
1024 .maxsize = MAX_SOCK_BUF,
1026 .create = p9_fd_create_unix,
1027 .close = p9_fd_close,
1028 .request = p9_fd_request,
1029 .cancel = p9_fd_cancel,
1030 .owner = THIS_MODULE,
1033 static struct p9_trans_module p9_fd_trans = {
1035 .maxsize = MAX_SOCK_BUF,
1037 .create = p9_fd_create,
1038 .close = p9_fd_close,
1039 .request = p9_fd_request,
1040 .cancel = p9_fd_cancel,
1041 .owner = THIS_MODULE,
1045 * p9_poll_proc - poll worker thread
1046 * @a: thread state and arguments
1048 * polls all v9fs transports for new events and queues the appropriate
1049 * work to the work queue
1053 static int p9_poll_proc(void *a)
1055 unsigned long flags;
1057 P9_DPRINTK(P9_DEBUG_TRANS, "start %p\n", current);
1059 spin_lock_irqsave(&p9_poll_lock, flags);
1060 while (!list_empty(&p9_poll_pending_list)) {
1061 struct p9_conn *conn = list_first_entry(&p9_poll_pending_list,
1064 list_del_init(&conn->poll_pending_link);
1065 spin_unlock_irqrestore(&p9_poll_lock, flags);
1069 spin_lock_irqsave(&p9_poll_lock, flags);
1071 spin_unlock_irqrestore(&p9_poll_lock, flags);
1073 set_current_state(TASK_INTERRUPTIBLE);
1074 if (list_empty(&p9_poll_pending_list)) {
1075 P9_DPRINTK(P9_DEBUG_TRANS, "sleeping...\n");
1078 __set_current_state(TASK_RUNNING);
1080 if (!kthread_should_stop())
1083 P9_DPRINTK(P9_DEBUG_TRANS, "finish\n");
1087 int p9_trans_fd_init(void)
1089 p9_mux_wq = create_workqueue("v9fs");
1091 printk(KERN_WARNING "v9fs: mux: creating workqueue failed\n");
1095 p9_poll_task = kthread_run(p9_poll_proc, NULL, "v9fs-poll");
1096 if (IS_ERR(p9_poll_task)) {
1097 destroy_workqueue(p9_mux_wq);
1098 printk(KERN_WARNING "v9fs: mux: creating poll task failed\n");
1099 return PTR_ERR(p9_poll_task);
1102 v9fs_register_trans(&p9_tcp_trans);
1103 v9fs_register_trans(&p9_unix_trans);
1104 v9fs_register_trans(&p9_fd_trans);
1109 void p9_trans_fd_exit(void)
1111 kthread_stop(p9_poll_task);
1112 v9fs_unregister_trans(&p9_tcp_trans);
1113 v9fs_unregister_trans(&p9_unix_trans);
1114 v9fs_unregister_trans(&p9_fd_trans);
1116 destroy_workqueue(p9_mux_wq);