6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #include <linux/module.h>
27 #include <linux/errno.h>
29 #include <linux/poll.h>
30 #include <linux/kthread.h>
31 #include <linux/idr.h>
32 #include <linux/mutex.h>
33 #include <net/9p/9p.h>
34 #include <net/9p/transport.h>
35 #include <net/9p/conn.h>
38 #define SCHED_TIMEOUT 10
39 #define MAXPOLLWADDR 2
42 Rworksched
= 1, /* read work scheduled or running */
43 Rpending
= 2, /* can read */
44 Wworksched
= 4, /* write work scheduled or running */
45 Wpending
= 8, /* can write */
54 struct p9_mux_poll_task
;
57 spinlock_t lock
; /* protect request structure */
59 struct p9_fcall
*tcall
;
60 struct p9_fcall
*rcall
;
62 p9_conn_req_callback cb
;
65 struct list_head req_list
;
69 spinlock_t lock
; /* protect lock structure */
70 struct list_head mux_list
;
71 struct p9_mux_poll_task
*poll_task
;
73 unsigned char *extended
;
74 struct p9_transport
*trans
;
75 struct p9_idpool
*tagpool
;
77 wait_queue_head_t equeue
;
78 struct list_head req_list
;
79 struct list_head unsent_req_list
;
80 struct p9_fcall
*rcall
;
86 wait_queue_t poll_wait
[MAXPOLLWADDR
];
87 wait_queue_head_t
*poll_waddr
[MAXPOLLWADDR
];
89 struct work_struct rq
;
90 struct work_struct wq
;
94 struct p9_mux_poll_task
{
95 struct task_struct
*task
;
96 struct list_head mux_list
;
103 struct p9_fcall
*tcall
;
104 struct p9_fcall
*rcall
;
105 wait_queue_head_t wqueue
;
108 static int p9_poll_proc(void *);
109 static void p9_read_work(struct work_struct
*work
);
110 static void p9_write_work(struct work_struct
*work
);
111 static void p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
,
113 static u16
p9_mux_get_tag(struct p9_conn
*);
114 static void p9_mux_put_tag(struct p9_conn
*, u16
);
116 static DEFINE_MUTEX(p9_mux_task_lock
);
117 static struct workqueue_struct
*p9_mux_wq
;
119 static int p9_mux_num
;
120 static int p9_mux_poll_task_num
;
121 static struct p9_mux_poll_task p9_mux_poll_tasks
[100];
123 int p9_mux_global_init(void)
127 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++)
128 p9_mux_poll_tasks
[i
].task
= NULL
;
130 p9_mux_wq
= create_workqueue("v9fs");
132 printk(KERN_WARNING
"v9fs: mux: creating workqueue failed\n");
139 void p9_mux_global_exit(void)
141 destroy_workqueue(p9_mux_wq
);
145 * p9_mux_calc_poll_procs - calculates the number of polling procs
146 * based on the number of mounted v9fs filesystems.
148 * The current implementation returns sqrt of the number of mounts.
150 static int p9_mux_calc_poll_procs(int muxnum
)
154 if (p9_mux_poll_task_num
)
155 n
= muxnum
/ p9_mux_poll_task_num
+
156 (muxnum
% p9_mux_poll_task_num
? 1 : 0);
160 if (n
> ARRAY_SIZE(p9_mux_poll_tasks
))
161 n
= ARRAY_SIZE(p9_mux_poll_tasks
);
166 static int p9_mux_poll_start(struct p9_conn
*m
)
169 struct p9_mux_poll_task
*vpt
, *vptlast
;
170 struct task_struct
*pproc
;
172 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p muxnum %d procnum %d\n", m
, p9_mux_num
,
173 p9_mux_poll_task_num
);
174 mutex_lock(&p9_mux_task_lock
);
176 n
= p9_mux_calc_poll_procs(p9_mux_num
+ 1);
177 if (n
> p9_mux_poll_task_num
) {
178 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++) {
179 if (p9_mux_poll_tasks
[i
].task
== NULL
) {
180 vpt
= &p9_mux_poll_tasks
[i
];
181 P9_DPRINTK(P9_DEBUG_MUX
, "create proc %p\n",
183 pproc
= kthread_create(p9_poll_proc
, vpt
,
186 if (!IS_ERR(pproc
)) {
188 INIT_LIST_HEAD(&vpt
->mux_list
);
190 p9_mux_poll_task_num
++;
191 wake_up_process(vpt
->task
);
197 if (i
>= ARRAY_SIZE(p9_mux_poll_tasks
))
198 P9_DPRINTK(P9_DEBUG_ERROR
,
199 "warning: no free poll slots\n");
202 n
= (p9_mux_num
+ 1) / p9_mux_poll_task_num
+
203 ((p9_mux_num
+ 1) % p9_mux_poll_task_num
? 1 : 0);
206 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++) {
207 vpt
= &p9_mux_poll_tasks
[i
];
208 if (vpt
->task
!= NULL
) {
210 if (vpt
->muxnum
< n
) {
211 P9_DPRINTK(P9_DEBUG_MUX
, "put in proc %d\n", i
);
212 list_add(&m
->mux_list
, &vpt
->mux_list
);
215 memset(&m
->poll_waddr
, 0,
216 sizeof(m
->poll_waddr
));
217 init_poll_funcptr(&m
->pt
, p9_pollwait
);
223 if (i
>= ARRAY_SIZE(p9_mux_poll_tasks
)) {
227 P9_DPRINTK(P9_DEBUG_MUX
, "put in proc %d\n", i
);
228 list_add(&m
->mux_list
, &vptlast
->mux_list
);
230 m
->poll_task
= vptlast
;
231 memset(&m
->poll_waddr
, 0, sizeof(m
->poll_waddr
));
232 init_poll_funcptr(&m
->pt
, p9_pollwait
);
236 mutex_unlock(&p9_mux_task_lock
);
241 static void p9_mux_poll_stop(struct p9_conn
*m
)
244 struct p9_mux_poll_task
*vpt
;
246 mutex_lock(&p9_mux_task_lock
);
248 list_del(&m
->mux_list
);
249 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++) {
250 if (m
->poll_waddr
[i
] != NULL
) {
251 remove_wait_queue(m
->poll_waddr
[i
], &m
->poll_wait
[i
]);
252 m
->poll_waddr
[i
] = NULL
;
257 P9_DPRINTK(P9_DEBUG_MUX
, "destroy proc %p\n", vpt
);
258 kthread_stop(vpt
->task
);
260 p9_mux_poll_task_num
--;
263 mutex_unlock(&p9_mux_task_lock
);
267 * p9_conn_create - allocate and initialize the per-session mux data
268 * Creates the polling task if this is the first session.
270 * @trans - transport structure
271 * @msize - maximum message size
272 * @extended - pointer to the extended flag
274 struct p9_conn
*p9_conn_create(struct p9_transport
*trans
, int msize
,
275 unsigned char *extended
)
278 struct p9_conn
*m
, *mtmp
;
280 P9_DPRINTK(P9_DEBUG_MUX
, "transport %p msize %d\n", trans
, msize
);
281 m
= kmalloc(sizeof(struct p9_conn
), GFP_KERNEL
);
283 return ERR_PTR(-ENOMEM
);
285 spin_lock_init(&m
->lock
);
286 INIT_LIST_HEAD(&m
->mux_list
);
288 m
->extended
= extended
;
290 m
->tagpool
= p9_idpool_create();
293 return ERR_PTR(PTR_ERR(m
->tagpool
));
297 init_waitqueue_head(&m
->equeue
);
298 INIT_LIST_HEAD(&m
->req_list
);
299 INIT_LIST_HEAD(&m
->unsent_req_list
);
303 m
->wpos
= m
->wsize
= 0;
305 INIT_WORK(&m
->rq
, p9_read_work
);
306 INIT_WORK(&m
->wq
, p9_write_work
);
308 memset(&m
->poll_waddr
, 0, sizeof(m
->poll_waddr
));
310 n
= p9_mux_poll_start(m
);
314 n
= trans
->poll(trans
, &m
->pt
);
316 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can read\n", m
);
317 set_bit(Rpending
, &m
->wsched
);
321 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can write\n", m
);
322 set_bit(Wpending
, &m
->wsched
);
325 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++) {
326 if (IS_ERR(m
->poll_waddr
[i
])) {
328 mtmp
= (void *)m
->poll_waddr
; /* the error code */
337 EXPORT_SYMBOL(p9_conn_create
);
340 * p9_mux_destroy - cancels all pending requests and frees mux resources
342 void p9_conn_destroy(struct p9_conn
*m
)
344 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p prev %p next %p\n", m
,
345 m
->mux_list
.prev
, m
->mux_list
.next
);
346 p9_conn_cancel(m
, -ECONNRESET
);
348 if (!list_empty(&m
->req_list
)) {
349 /* wait until all processes waiting on this session exit */
350 P9_DPRINTK(P9_DEBUG_MUX
,
351 "mux %p waiting for empty request queue\n", m
);
352 wait_event_timeout(m
->equeue
, (list_empty(&m
->req_list
)), 5000);
353 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p request queue empty: %d\n", m
,
354 list_empty(&m
->req_list
));
359 p9_idpool_destroy(m
->tagpool
);
362 EXPORT_SYMBOL(p9_conn_destroy
);
365 * p9_pollwait - called by files poll operation to add v9fs-poll task
366 * to files wait queue
369 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
,
375 m
= container_of(p
, struct p9_conn
, pt
);
376 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++)
377 if (m
->poll_waddr
[i
] == NULL
)
380 if (i
>= ARRAY_SIZE(m
->poll_waddr
)) {
381 P9_DPRINTK(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
385 m
->poll_waddr
[i
] = wait_address
;
388 P9_DPRINTK(P9_DEBUG_ERROR
, "no wait_address\n");
389 m
->poll_waddr
[i
] = ERR_PTR(-EIO
);
393 init_waitqueue_entry(&m
->poll_wait
[i
], m
->poll_task
->task
);
394 add_wait_queue(wait_address
, &m
->poll_wait
[i
]);
398 * p9_poll_mux - polls a mux and schedules read or write works if necessary
400 static void p9_poll_mux(struct p9_conn
*m
)
407 n
= m
->trans
->poll(m
->trans
, NULL
);
408 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
409 P9_DPRINTK(P9_DEBUG_MUX
, "error mux %p err %d\n", m
, n
);
412 p9_conn_cancel(m
, n
);
416 set_bit(Rpending
, &m
->wsched
);
417 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can read\n", m
);
418 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
419 P9_DPRINTK(P9_DEBUG_MUX
, "schedule read work %p\n", m
);
420 queue_work(p9_mux_wq
, &m
->rq
);
425 set_bit(Wpending
, &m
->wsched
);
426 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can write\n", m
);
427 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
))
428 && !test_and_set_bit(Wworksched
, &m
->wsched
)) {
429 P9_DPRINTK(P9_DEBUG_MUX
, "schedule write work %p\n", m
);
430 queue_work(p9_mux_wq
, &m
->wq
);
436 * p9_poll_proc - polls all v9fs transports for new events and queues
437 * the appropriate work to the work queue
439 static int p9_poll_proc(void *a
)
441 struct p9_conn
*m
, *mtmp
;
442 struct p9_mux_poll_task
*vpt
;
445 P9_DPRINTK(P9_DEBUG_MUX
, "start %p %p\n", current
, vpt
);
446 while (!kthread_should_stop()) {
447 set_current_state(TASK_INTERRUPTIBLE
);
449 list_for_each_entry_safe(m
, mtmp
, &vpt
->mux_list
, mux_list
) {
453 P9_DPRINTK(P9_DEBUG_MUX
, "sleeping...\n");
454 schedule_timeout(SCHED_TIMEOUT
* HZ
);
457 __set_current_state(TASK_RUNNING
);
458 P9_DPRINTK(P9_DEBUG_MUX
, "finish\n");
463 * p9_write_work - called when a transport can send some data
465 static void p9_write_work(struct work_struct
*work
)
471 m
= container_of(work
, struct p9_conn
, wq
);
474 clear_bit(Wworksched
, &m
->wsched
);
479 if (list_empty(&m
->unsent_req_list
)) {
480 clear_bit(Wworksched
, &m
->wsched
);
486 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req
,
488 list_move_tail(&req
->req_list
, &m
->req_list
);
489 if (req
->err
== ERREQFLUSH
)
492 m
->wbuf
= req
->tcall
->sdata
;
493 m
->wsize
= req
->tcall
->size
;
495 spin_unlock(&m
->lock
);
498 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p pos %d size %d\n", m
, m
->wpos
,
500 clear_bit(Wpending
, &m
->wsched
);
501 err
= m
->trans
->write(m
->trans
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
502 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p sent %d bytes\n", m
, err
);
503 if (err
== -EAGAIN
) {
504 clear_bit(Wworksched
, &m
->wsched
);
516 if (m
->wpos
== m
->wsize
)
517 m
->wpos
= m
->wsize
= 0;
519 if (m
->wsize
== 0 && !list_empty(&m
->unsent_req_list
)) {
520 if (test_and_clear_bit(Wpending
, &m
->wsched
))
523 n
= m
->trans
->poll(m
->trans
, NULL
);
526 P9_DPRINTK(P9_DEBUG_MUX
, "schedule write work %p\n", m
);
527 queue_work(p9_mux_wq
, &m
->wq
);
529 clear_bit(Wworksched
, &m
->wsched
);
531 clear_bit(Wworksched
, &m
->wsched
);
536 p9_conn_cancel(m
, err
);
537 clear_bit(Wworksched
, &m
->wsched
);
540 static void process_request(struct p9_conn
*m
, struct p9_req
*req
)
543 struct p9_str
*ename
;
545 if (!req
->err
&& req
->rcall
->id
== P9_RERROR
) {
546 ecode
= req
->rcall
->params
.rerror
.errno
;
547 ename
= &req
->rcall
->params
.rerror
.error
;
549 P9_DPRINTK(P9_DEBUG_MUX
, "Rerror %.*s\n", ename
->len
,
556 req
->err
= p9_errstr2errno(ename
->str
, ename
->len
);
558 if (!req
->err
) { /* string match failed */
559 PRINT_FCALL_ERROR("unknown error", req
->rcall
);
563 req
->err
= -ESERVERFAULT
;
565 } else if (req
->tcall
&& req
->rcall
->id
!= req
->tcall
->id
+ 1) {
566 P9_DPRINTK(P9_DEBUG_ERROR
,
567 "fcall mismatch: expected %d, got %d\n",
568 req
->tcall
->id
+ 1, req
->rcall
->id
);
575 * p9_read_work - called when there is some data to be read from a transport
577 static void p9_read_work(struct work_struct
*work
)
581 struct p9_req
*req
, *rptr
, *rreq
;
582 struct p9_fcall
*rcall
;
585 m
= container_of(work
, struct p9_conn
, rq
);
591 P9_DPRINTK(P9_DEBUG_MUX
, "start mux %p pos %d\n", m
, m
->rpos
);
595 kmalloc(sizeof(struct p9_fcall
) + m
->msize
, GFP_KERNEL
);
601 m
->rbuf
= (char *)m
->rcall
+ sizeof(struct p9_fcall
);
605 clear_bit(Rpending
, &m
->wsched
);
606 err
= m
->trans
->read(m
->trans
, m
->rbuf
+ m
->rpos
, m
->msize
- m
->rpos
);
607 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p got %d bytes\n", m
, err
);
608 if (err
== -EAGAIN
) {
609 clear_bit(Rworksched
, &m
->wsched
);
617 while (m
->rpos
> 4) {
618 n
= le32_to_cpu(*(__le32
*) m
->rbuf
);
620 P9_DPRINTK(P9_DEBUG_ERROR
,
621 "requested packet size too big: %d\n", n
);
630 p9_deserialize_fcall(m
->rbuf
, n
, m
->rcall
, *m
->extended
);
635 #ifdef CONFIG_NET_9P_DEBUG
636 if ((p9_debug_level
&P9_DEBUG_FCALL
) == P9_DEBUG_FCALL
) {
639 p9_printfcall(buf
, sizeof(buf
), m
->rcall
,
641 printk(KERN_NOTICE
">>> %p %s\n", m
, buf
);
648 m
->rcall
= kmalloc(sizeof(struct p9_fcall
) + m
->msize
,
655 m
->rbuf
= (char *)m
->rcall
+ sizeof(struct p9_fcall
);
656 memmove(m
->rbuf
, rbuf
+ n
, m
->rpos
- n
);
664 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p fcall id %d tag %d\n", m
,
665 rcall
->id
, rcall
->tag
);
669 list_for_each_entry_safe(rreq
, rptr
, &m
->req_list
, req_list
) {
670 if (rreq
->tag
== rcall
->tag
) {
672 if (req
->flush
!= Flushing
)
673 list_del(&req
->req_list
);
677 spin_unlock(&m
->lock
);
681 process_request(m
, req
);
683 if (req
->flush
!= Flushing
) {
685 (*req
->cb
) (req
, req
->cba
);
692 if (err
>= 0 && rcall
->id
!= P9_RFLUSH
)
693 P9_DPRINTK(P9_DEBUG_ERROR
,
694 "unexpected response mux %p id %d tag %d\n",
695 m
, rcall
->id
, rcall
->tag
);
700 if (!list_empty(&m
->req_list
)) {
701 if (test_and_clear_bit(Rpending
, &m
->wsched
))
704 n
= m
->trans
->poll(m
->trans
, NULL
);
707 P9_DPRINTK(P9_DEBUG_MUX
, "schedule read work %p\n", m
);
708 queue_work(p9_mux_wq
, &m
->rq
);
710 clear_bit(Rworksched
, &m
->wsched
);
712 clear_bit(Rworksched
, &m
->wsched
);
717 p9_conn_cancel(m
, err
);
718 clear_bit(Rworksched
, &m
->wsched
);
722 * p9_send_request - send 9P request
723 * The function can sleep until the request is scheduled for sending.
724 * The function can be interrupted. Return from the function is not
725 * a guarantee that the request is sent successfully. Can return errors
726 * that can be retrieved by PTR_ERR macros.
729 * @tc: request to be sent
730 * @cb: callback function to call when response is received
731 * @cba: parameter to pass to the callback function
733 static struct p9_req
*p9_send_request(struct p9_conn
*m
,
735 p9_conn_req_callback cb
, void *cba
)
740 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p task %p tcall %p id %d\n", m
, current
,
743 return ERR_PTR(m
->err
);
745 req
= kmalloc(sizeof(struct p9_req
), GFP_KERNEL
);
747 return ERR_PTR(-ENOMEM
);
749 if (tc
->id
== P9_TVERSION
)
752 n
= p9_mux_get_tag(m
);
755 return ERR_PTR(-ENOMEM
);
759 #ifdef CONFIG_NET_9P_DEBUG
760 if ((p9_debug_level
&P9_DEBUG_FCALL
) == P9_DEBUG_FCALL
) {
763 p9_printfcall(buf
, sizeof(buf
), tc
, *m
->extended
);
764 printk(KERN_NOTICE
"<<< %p %s\n", m
, buf
);
768 spin_lock_init(&req
->lock
);
778 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
779 spin_unlock(&m
->lock
);
781 if (test_and_clear_bit(Wpending
, &m
->wsched
))
784 n
= m
->trans
->poll(m
->trans
, NULL
);
786 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
787 queue_work(p9_mux_wq
, &m
->wq
);
792 static void p9_mux_free_request(struct p9_conn
*m
, struct p9_req
*req
)
794 p9_mux_put_tag(m
, req
->tag
);
798 static void p9_mux_flush_cb(struct p9_req
*freq
, void *a
)
800 p9_conn_req_callback cb
;
803 struct p9_req
*req
, *rreq
, *rptr
;
806 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p tc %p rc %p err %d oldtag %d\n", m
,
807 freq
->tcall
, freq
->rcall
, freq
->err
,
808 freq
->tcall
->params
.tflush
.oldtag
);
812 tag
= freq
->tcall
->params
.tflush
.oldtag
;
814 list_for_each_entry_safe(rreq
, rptr
, &m
->req_list
, req_list
) {
815 if (rreq
->tag
== tag
) {
817 list_del(&req
->req_list
);
821 spin_unlock(&m
->lock
);
824 spin_lock(&req
->lock
);
825 req
->flush
= Flushed
;
826 spin_unlock(&req
->lock
);
829 (*req
->cb
) (req
, req
->cba
);
838 p9_mux_free_request(m
, freq
);
842 p9_mux_flush_request(struct p9_conn
*m
, struct p9_req
*req
)
845 struct p9_req
*rreq
, *rptr
;
847 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p req %p tag %d\n", m
, req
, req
->tag
);
849 /* if a response was received for a request, do nothing */
850 spin_lock(&req
->lock
);
851 if (req
->rcall
|| req
->err
) {
852 spin_unlock(&req
->lock
);
853 P9_DPRINTK(P9_DEBUG_MUX
,
854 "mux %p req %p response already received\n", m
, req
);
858 req
->flush
= Flushing
;
859 spin_unlock(&req
->lock
);
862 /* if the request is not sent yet, just remove it from the list */
863 list_for_each_entry_safe(rreq
, rptr
, &m
->unsent_req_list
, req_list
) {
864 if (rreq
->tag
== req
->tag
) {
865 P9_DPRINTK(P9_DEBUG_MUX
,
866 "mux %p req %p request is not sent yet\n", m
, req
);
867 list_del(&rreq
->req_list
);
868 req
->flush
= Flushed
;
869 spin_unlock(&m
->lock
);
871 (*req
->cb
) (req
, req
->cba
);
875 spin_unlock(&m
->lock
);
877 clear_thread_flag(TIF_SIGPENDING
);
878 fc
= p9_create_tflush(req
->tag
);
879 p9_send_request(m
, fc
, p9_mux_flush_cb
, m
);
884 p9_conn_rpc_cb(struct p9_req
*req
, void *a
)
886 struct p9_mux_rpc
*r
;
888 P9_DPRINTK(P9_DEBUG_MUX
, "req %p r %p\n", req
, a
);
890 r
->rcall
= req
->rcall
;
893 if (req
->flush
!= None
&& !req
->err
)
894 r
->err
= -ERESTARTSYS
;
900 * p9_mux_rpc - sends 9P request and waits until a response is available.
901 * The function can be interrupted.
903 * @tc: request to be sent
904 * @rc: pointer where a pointer to the response is stored
907 p9_conn_rpc(struct p9_conn
*m
, struct p9_fcall
*tc
,
908 struct p9_fcall
**rc
)
919 init_waitqueue_head(&r
.wqueue
);
925 if (signal_pending(current
)) {
927 clear_thread_flag(TIF_SIGPENDING
);
930 req
= p9_send_request(m
, tc
, p9_conn_rpc_cb
, &r
);
933 P9_DPRINTK(P9_DEBUG_MUX
, "error %d\n", err
);
937 err
= wait_event_interruptible(r
.wqueue
, r
.rcall
!= NULL
|| r
.err
< 0);
941 if (err
== -ERESTARTSYS
&& m
->trans
->status
== Connected
943 if (p9_mux_flush_request(m
, req
)) {
944 /* wait until we get response of the flush message */
946 clear_thread_flag(TIF_SIGPENDING
);
947 err
= wait_event_interruptible(r
.wqueue
,
949 } while (!r
.rcall
&& !r
.err
&& err
== -ERESTARTSYS
&&
950 m
->trans
->status
== Connected
&& !m
->err
);
958 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
960 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
968 p9_mux_free_request(m
, req
);
974 EXPORT_SYMBOL(p9_conn_rpc
);
978 * p9_conn_rpcnb - sends 9P request without waiting for response.
980 * @tc: request to be sent
981 * @cb: callback function to be called when response arrives
982 * @cba: value to pass to the callback function
984 int p9_conn_rpcnb(struct p9_conn
*m
, struct p9_fcall
*tc
,
985 p9_conn_req_callback cb
, void *a
)
990 req
= p9_send_request(m
, tc
, cb
, a
);
993 P9_DPRINTK(P9_DEBUG_MUX
, "error %d\n", err
);
997 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p tc %p tag %d\n", m
, tc
, req
->tag
);
1000 EXPORT_SYMBOL(p9_conn_rpcnb
);
1001 #endif /* P9_NONBLOCK */
1004 * p9_conn_cancel - cancel all pending requests with error
1008 void p9_conn_cancel(struct p9_conn
*m
, int err
)
1010 struct p9_req
*req
, *rtmp
;
1011 LIST_HEAD(cancel_list
);
1013 P9_DPRINTK(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
1015 spin_lock(&m
->lock
);
1016 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
1017 list_move(&req
->req_list
, &cancel_list
);
1019 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
1020 list_move(&req
->req_list
, &cancel_list
);
1022 spin_unlock(&m
->lock
);
1024 list_for_each_entry_safe(req
, rtmp
, &cancel_list
, req_list
) {
1025 list_del(&req
->req_list
);
1030 (*req
->cb
) (req
, req
->cba
);
1035 wake_up(&m
->equeue
);
1037 EXPORT_SYMBOL(p9_conn_cancel
);
1039 static u16
p9_mux_get_tag(struct p9_conn
*m
)
1043 tag
= p9_idpool_get(m
->tagpool
);
1050 static void p9_mux_put_tag(struct p9_conn
*m
, u16 tag
)
1052 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, m
->tagpool
))
1053 p9_idpool_put(tag
, m
->tagpool
);