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 <linux/parser.h>
35 #include <net/9p/transport.h>
36 #include <net/9p/conn.h>
39 #define SCHED_TIMEOUT 10
40 #define MAXPOLLWADDR 2
43 Rworksched
= 1, /* read work scheduled or running */
44 Rpending
= 2, /* can read */
45 Wworksched
= 4, /* write work scheduled or running */
46 Wpending
= 8, /* can write */
55 struct p9_mux_poll_task
;
58 spinlock_t lock
; /* protect request structure */
60 struct p9_fcall
*tcall
;
61 struct p9_fcall
*rcall
;
63 p9_conn_req_callback cb
;
66 struct list_head req_list
;
70 spinlock_t lock
; /* protect lock structure */
71 struct list_head mux_list
;
72 struct p9_mux_poll_task
*poll_task
;
74 unsigned char *extended
;
75 struct p9_trans
*trans
;
76 struct p9_idpool
*tagpool
;
78 wait_queue_head_t equeue
;
79 struct list_head req_list
;
80 struct list_head unsent_req_list
;
81 struct p9_fcall
*rcall
;
87 wait_queue_t poll_wait
[MAXPOLLWADDR
];
88 wait_queue_head_t
*poll_waddr
[MAXPOLLWADDR
];
90 struct work_struct rq
;
91 struct work_struct wq
;
95 struct p9_mux_poll_task
{
96 struct task_struct
*task
;
97 struct list_head mux_list
;
104 struct p9_fcall
*tcall
;
105 struct p9_fcall
*rcall
;
106 wait_queue_head_t wqueue
;
109 static int p9_poll_proc(void *);
110 static void p9_read_work(struct work_struct
*work
);
111 static void p9_write_work(struct work_struct
*work
);
112 static void p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
,
114 static u16
p9_mux_get_tag(struct p9_conn
*);
115 static void p9_mux_put_tag(struct p9_conn
*, u16
);
117 static DEFINE_MUTEX(p9_mux_task_lock
);
118 static struct workqueue_struct
*p9_mux_wq
;
120 static int p9_mux_num
;
121 static int p9_mux_poll_task_num
;
122 static struct p9_mux_poll_task p9_mux_poll_tasks
[100];
124 int p9_mux_global_init(void)
128 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++)
129 p9_mux_poll_tasks
[i
].task
= NULL
;
131 p9_mux_wq
= create_workqueue("v9fs");
133 printk(KERN_WARNING
"v9fs: mux: creating workqueue failed\n");
140 void p9_mux_global_exit(void)
142 destroy_workqueue(p9_mux_wq
);
146 * p9_mux_calc_poll_procs - calculates the number of polling procs
147 * based on the number of mounted v9fs filesystems.
149 * The current implementation returns sqrt of the number of mounts.
151 static int p9_mux_calc_poll_procs(int muxnum
)
155 if (p9_mux_poll_task_num
)
156 n
= muxnum
/ p9_mux_poll_task_num
+
157 (muxnum
% p9_mux_poll_task_num
? 1 : 0);
161 if (n
> ARRAY_SIZE(p9_mux_poll_tasks
))
162 n
= ARRAY_SIZE(p9_mux_poll_tasks
);
167 static int p9_mux_poll_start(struct p9_conn
*m
)
170 struct p9_mux_poll_task
*vpt
, *vptlast
;
171 struct task_struct
*pproc
;
173 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p muxnum %d procnum %d\n", m
, p9_mux_num
,
174 p9_mux_poll_task_num
);
175 mutex_lock(&p9_mux_task_lock
);
177 n
= p9_mux_calc_poll_procs(p9_mux_num
+ 1);
178 if (n
> p9_mux_poll_task_num
) {
179 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++) {
180 if (p9_mux_poll_tasks
[i
].task
== NULL
) {
181 vpt
= &p9_mux_poll_tasks
[i
];
182 P9_DPRINTK(P9_DEBUG_MUX
, "create proc %p\n",
184 pproc
= kthread_create(p9_poll_proc
, vpt
,
187 if (!IS_ERR(pproc
)) {
189 INIT_LIST_HEAD(&vpt
->mux_list
);
191 p9_mux_poll_task_num
++;
192 wake_up_process(vpt
->task
);
198 if (i
>= ARRAY_SIZE(p9_mux_poll_tasks
))
199 P9_DPRINTK(P9_DEBUG_ERROR
,
200 "warning: no free poll slots\n");
203 n
= (p9_mux_num
+ 1) / p9_mux_poll_task_num
+
204 ((p9_mux_num
+ 1) % p9_mux_poll_task_num
? 1 : 0);
207 for (i
= 0; i
< ARRAY_SIZE(p9_mux_poll_tasks
); i
++) {
208 vpt
= &p9_mux_poll_tasks
[i
];
209 if (vpt
->task
!= NULL
) {
211 if (vpt
->muxnum
< n
) {
212 P9_DPRINTK(P9_DEBUG_MUX
, "put in proc %d\n", i
);
213 list_add(&m
->mux_list
, &vpt
->mux_list
);
216 memset(&m
->poll_waddr
, 0,
217 sizeof(m
->poll_waddr
));
218 init_poll_funcptr(&m
->pt
, p9_pollwait
);
224 if (i
>= ARRAY_SIZE(p9_mux_poll_tasks
)) {
228 P9_DPRINTK(P9_DEBUG_MUX
, "put in proc %d\n", i
);
229 list_add(&m
->mux_list
, &vptlast
->mux_list
);
231 m
->poll_task
= vptlast
;
232 memset(&m
->poll_waddr
, 0, sizeof(m
->poll_waddr
));
233 init_poll_funcptr(&m
->pt
, p9_pollwait
);
237 mutex_unlock(&p9_mux_task_lock
);
242 static void p9_mux_poll_stop(struct p9_conn
*m
)
245 struct p9_mux_poll_task
*vpt
;
247 mutex_lock(&p9_mux_task_lock
);
249 list_del(&m
->mux_list
);
250 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++) {
251 if (m
->poll_waddr
[i
] != NULL
) {
252 remove_wait_queue(m
->poll_waddr
[i
], &m
->poll_wait
[i
]);
253 m
->poll_waddr
[i
] = NULL
;
258 P9_DPRINTK(P9_DEBUG_MUX
, "destroy proc %p\n", vpt
);
259 kthread_stop(vpt
->task
);
261 p9_mux_poll_task_num
--;
264 mutex_unlock(&p9_mux_task_lock
);
268 * p9_conn_create - allocate and initialize the per-session mux data
269 * Creates the polling task if this is the first session.
271 * @trans - transport structure
272 * @msize - maximum message size
273 * @extended - pointer to the extended flag
275 struct p9_conn
*p9_conn_create(struct p9_trans
*trans
, int msize
,
276 unsigned char *extended
)
279 struct p9_conn
*m
, *mtmp
;
281 P9_DPRINTK(P9_DEBUG_MUX
, "transport %p msize %d\n", trans
, msize
);
282 m
= kmalloc(sizeof(struct p9_conn
), GFP_KERNEL
);
284 return ERR_PTR(-ENOMEM
);
286 spin_lock_init(&m
->lock
);
287 INIT_LIST_HEAD(&m
->mux_list
);
289 m
->extended
= extended
;
291 m
->tagpool
= p9_idpool_create();
292 if (IS_ERR(m
->tagpool
)) {
293 mtmp
= ERR_PTR(-ENOMEM
);
299 init_waitqueue_head(&m
->equeue
);
300 INIT_LIST_HEAD(&m
->req_list
);
301 INIT_LIST_HEAD(&m
->unsent_req_list
);
305 m
->wpos
= m
->wsize
= 0;
307 INIT_WORK(&m
->rq
, p9_read_work
);
308 INIT_WORK(&m
->wq
, p9_write_work
);
310 memset(&m
->poll_waddr
, 0, sizeof(m
->poll_waddr
));
312 n
= p9_mux_poll_start(m
);
318 n
= trans
->poll(trans
, &m
->pt
);
320 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can read\n", m
);
321 set_bit(Rpending
, &m
->wsched
);
325 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can write\n", m
);
326 set_bit(Wpending
, &m
->wsched
);
329 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++) {
330 if (IS_ERR(m
->poll_waddr
[i
])) {
332 mtmp
= (void *)m
->poll_waddr
; /* the error code */
341 EXPORT_SYMBOL(p9_conn_create
);
344 * p9_mux_destroy - cancels all pending requests and frees mux resources
346 void p9_conn_destroy(struct p9_conn
*m
)
348 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p prev %p next %p\n", m
,
349 m
->mux_list
.prev
, m
->mux_list
.next
);
350 p9_conn_cancel(m
, -ECONNRESET
);
352 if (!list_empty(&m
->req_list
)) {
353 /* wait until all processes waiting on this session exit */
354 P9_DPRINTK(P9_DEBUG_MUX
,
355 "mux %p waiting for empty request queue\n", m
);
356 wait_event_timeout(m
->equeue
, (list_empty(&m
->req_list
)), 5000);
357 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p request queue empty: %d\n", m
,
358 list_empty(&m
->req_list
));
363 p9_idpool_destroy(m
->tagpool
);
366 EXPORT_SYMBOL(p9_conn_destroy
);
369 * p9_pollwait - called by files poll operation to add v9fs-poll task
370 * to files wait queue
373 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
,
379 m
= container_of(p
, struct p9_conn
, pt
);
380 for (i
= 0; i
< ARRAY_SIZE(m
->poll_waddr
); i
++)
381 if (m
->poll_waddr
[i
] == NULL
)
384 if (i
>= ARRAY_SIZE(m
->poll_waddr
)) {
385 P9_DPRINTK(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
389 m
->poll_waddr
[i
] = wait_address
;
392 P9_DPRINTK(P9_DEBUG_ERROR
, "no wait_address\n");
393 m
->poll_waddr
[i
] = ERR_PTR(-EIO
);
397 init_waitqueue_entry(&m
->poll_wait
[i
], m
->poll_task
->task
);
398 add_wait_queue(wait_address
, &m
->poll_wait
[i
]);
402 * p9_poll_mux - polls a mux and schedules read or write works if necessary
404 static void p9_poll_mux(struct p9_conn
*m
)
411 n
= m
->trans
->poll(m
->trans
, NULL
);
412 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
413 P9_DPRINTK(P9_DEBUG_MUX
, "error mux %p err %d\n", m
, n
);
416 p9_conn_cancel(m
, n
);
420 set_bit(Rpending
, &m
->wsched
);
421 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can read\n", m
);
422 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
423 P9_DPRINTK(P9_DEBUG_MUX
, "schedule read work %p\n", m
);
424 queue_work(p9_mux_wq
, &m
->rq
);
429 set_bit(Wpending
, &m
->wsched
);
430 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p can write\n", m
);
431 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
))
432 && !test_and_set_bit(Wworksched
, &m
->wsched
)) {
433 P9_DPRINTK(P9_DEBUG_MUX
, "schedule write work %p\n", m
);
434 queue_work(p9_mux_wq
, &m
->wq
);
440 * p9_poll_proc - polls all v9fs transports for new events and queues
441 * the appropriate work to the work queue
443 static int p9_poll_proc(void *a
)
445 struct p9_conn
*m
, *mtmp
;
446 struct p9_mux_poll_task
*vpt
;
449 P9_DPRINTK(P9_DEBUG_MUX
, "start %p %p\n", current
, vpt
);
450 while (!kthread_should_stop()) {
451 set_current_state(TASK_INTERRUPTIBLE
);
453 list_for_each_entry_safe(m
, mtmp
, &vpt
->mux_list
, mux_list
) {
457 P9_DPRINTK(P9_DEBUG_MUX
, "sleeping...\n");
458 schedule_timeout(SCHED_TIMEOUT
* HZ
);
461 __set_current_state(TASK_RUNNING
);
462 P9_DPRINTK(P9_DEBUG_MUX
, "finish\n");
467 * p9_write_work - called when a transport can send some data
469 static void p9_write_work(struct work_struct
*work
)
475 m
= container_of(work
, struct p9_conn
, wq
);
478 clear_bit(Wworksched
, &m
->wsched
);
483 if (list_empty(&m
->unsent_req_list
)) {
484 clear_bit(Wworksched
, &m
->wsched
);
490 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req
,
492 list_move_tail(&req
->req_list
, &m
->req_list
);
493 if (req
->err
== ERREQFLUSH
)
496 m
->wbuf
= req
->tcall
->sdata
;
497 m
->wsize
= req
->tcall
->size
;
499 spin_unlock(&m
->lock
);
502 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p pos %d size %d\n", m
, m
->wpos
,
504 clear_bit(Wpending
, &m
->wsched
);
505 err
= m
->trans
->write(m
->trans
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
506 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p sent %d bytes\n", m
, err
);
507 if (err
== -EAGAIN
) {
508 clear_bit(Wworksched
, &m
->wsched
);
520 if (m
->wpos
== m
->wsize
)
521 m
->wpos
= m
->wsize
= 0;
523 if (m
->wsize
== 0 && !list_empty(&m
->unsent_req_list
)) {
524 if (test_and_clear_bit(Wpending
, &m
->wsched
))
527 n
= m
->trans
->poll(m
->trans
, NULL
);
530 P9_DPRINTK(P9_DEBUG_MUX
, "schedule write work %p\n", m
);
531 queue_work(p9_mux_wq
, &m
->wq
);
533 clear_bit(Wworksched
, &m
->wsched
);
535 clear_bit(Wworksched
, &m
->wsched
);
540 p9_conn_cancel(m
, err
);
541 clear_bit(Wworksched
, &m
->wsched
);
544 static void process_request(struct p9_conn
*m
, struct p9_req
*req
)
547 struct p9_str
*ename
;
549 if (!req
->err
&& req
->rcall
->id
== P9_RERROR
) {
550 ecode
= req
->rcall
->params
.rerror
.errno
;
551 ename
= &req
->rcall
->params
.rerror
.error
;
553 P9_DPRINTK(P9_DEBUG_MUX
, "Rerror %.*s\n", ename
->len
,
560 req
->err
= p9_errstr2errno(ename
->str
, ename
->len
);
562 if (!req
->err
) { /* string match failed */
563 PRINT_FCALL_ERROR("unknown error", req
->rcall
);
567 req
->err
= -ESERVERFAULT
;
569 } else if (req
->tcall
&& req
->rcall
->id
!= req
->tcall
->id
+ 1) {
570 P9_DPRINTK(P9_DEBUG_ERROR
,
571 "fcall mismatch: expected %d, got %d\n",
572 req
->tcall
->id
+ 1, req
->rcall
->id
);
579 * p9_read_work - called when there is some data to be read from a transport
581 static void p9_read_work(struct work_struct
*work
)
585 struct p9_req
*req
, *rptr
, *rreq
;
586 struct p9_fcall
*rcall
;
589 m
= container_of(work
, struct p9_conn
, rq
);
595 P9_DPRINTK(P9_DEBUG_MUX
, "start mux %p pos %d\n", m
, m
->rpos
);
599 kmalloc(sizeof(struct p9_fcall
) + m
->msize
, GFP_KERNEL
);
605 m
->rbuf
= (char *)m
->rcall
+ sizeof(struct p9_fcall
);
609 clear_bit(Rpending
, &m
->wsched
);
610 err
= m
->trans
->read(m
->trans
, m
->rbuf
+ m
->rpos
, m
->msize
- m
->rpos
);
611 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p got %d bytes\n", m
, err
);
612 if (err
== -EAGAIN
) {
613 clear_bit(Rworksched
, &m
->wsched
);
621 while (m
->rpos
> 4) {
622 n
= le32_to_cpu(*(__le32
*) m
->rbuf
);
624 P9_DPRINTK(P9_DEBUG_ERROR
,
625 "requested packet size too big: %d\n", n
);
634 p9_deserialize_fcall(m
->rbuf
, n
, m
->rcall
, *m
->extended
);
639 #ifdef CONFIG_NET_9P_DEBUG
640 if ((p9_debug_level
&P9_DEBUG_FCALL
) == P9_DEBUG_FCALL
) {
643 p9_printfcall(buf
, sizeof(buf
), m
->rcall
,
645 printk(KERN_NOTICE
">>> %p %s\n", m
, buf
);
652 m
->rcall
= kmalloc(sizeof(struct p9_fcall
) + m
->msize
,
659 m
->rbuf
= (char *)m
->rcall
+ sizeof(struct p9_fcall
);
660 memmove(m
->rbuf
, rbuf
+ n
, m
->rpos
- n
);
668 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p fcall id %d tag %d\n", m
,
669 rcall
->id
, rcall
->tag
);
673 list_for_each_entry_safe(rreq
, rptr
, &m
->req_list
, req_list
) {
674 if (rreq
->tag
== rcall
->tag
) {
676 if (req
->flush
!= Flushing
)
677 list_del(&req
->req_list
);
681 spin_unlock(&m
->lock
);
685 process_request(m
, req
);
687 if (req
->flush
!= Flushing
) {
689 (*req
->cb
) (req
, req
->cba
);
696 if (err
>= 0 && rcall
->id
!= P9_RFLUSH
)
697 P9_DPRINTK(P9_DEBUG_ERROR
,
698 "unexpected response mux %p id %d tag %d\n",
699 m
, rcall
->id
, rcall
->tag
);
704 if (!list_empty(&m
->req_list
)) {
705 if (test_and_clear_bit(Rpending
, &m
->wsched
))
708 n
= m
->trans
->poll(m
->trans
, NULL
);
711 P9_DPRINTK(P9_DEBUG_MUX
, "schedule read work %p\n", m
);
712 queue_work(p9_mux_wq
, &m
->rq
);
714 clear_bit(Rworksched
, &m
->wsched
);
716 clear_bit(Rworksched
, &m
->wsched
);
721 p9_conn_cancel(m
, err
);
722 clear_bit(Rworksched
, &m
->wsched
);
726 * p9_send_request - send 9P request
727 * The function can sleep until the request is scheduled for sending.
728 * The function can be interrupted. Return from the function is not
729 * a guarantee that the request is sent successfully. Can return errors
730 * that can be retrieved by PTR_ERR macros.
733 * @tc: request to be sent
734 * @cb: callback function to call when response is received
735 * @cba: parameter to pass to the callback function
737 static struct p9_req
*p9_send_request(struct p9_conn
*m
,
739 p9_conn_req_callback cb
, void *cba
)
744 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p task %p tcall %p id %d\n", m
, current
,
747 return ERR_PTR(m
->err
);
749 req
= kmalloc(sizeof(struct p9_req
), GFP_KERNEL
);
751 return ERR_PTR(-ENOMEM
);
753 if (tc
->id
== P9_TVERSION
)
756 n
= p9_mux_get_tag(m
);
759 return ERR_PTR(-ENOMEM
);
763 #ifdef CONFIG_NET_9P_DEBUG
764 if ((p9_debug_level
&P9_DEBUG_FCALL
) == P9_DEBUG_FCALL
) {
767 p9_printfcall(buf
, sizeof(buf
), tc
, *m
->extended
);
768 printk(KERN_NOTICE
"<<< %p %s\n", m
, buf
);
772 spin_lock_init(&req
->lock
);
782 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
783 spin_unlock(&m
->lock
);
785 if (test_and_clear_bit(Wpending
, &m
->wsched
))
788 n
= m
->trans
->poll(m
->trans
, NULL
);
790 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
791 queue_work(p9_mux_wq
, &m
->wq
);
796 static void p9_mux_free_request(struct p9_conn
*m
, struct p9_req
*req
)
798 p9_mux_put_tag(m
, req
->tag
);
802 static void p9_mux_flush_cb(struct p9_req
*freq
, void *a
)
804 p9_conn_req_callback cb
;
807 struct p9_req
*req
, *rreq
, *rptr
;
810 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p tc %p rc %p err %d oldtag %d\n", m
,
811 freq
->tcall
, freq
->rcall
, freq
->err
,
812 freq
->tcall
->params
.tflush
.oldtag
);
816 tag
= freq
->tcall
->params
.tflush
.oldtag
;
818 list_for_each_entry_safe(rreq
, rptr
, &m
->req_list
, req_list
) {
819 if (rreq
->tag
== tag
) {
821 list_del(&req
->req_list
);
825 spin_unlock(&m
->lock
);
828 spin_lock(&req
->lock
);
829 req
->flush
= Flushed
;
830 spin_unlock(&req
->lock
);
833 (*req
->cb
) (req
, req
->cba
);
842 p9_mux_free_request(m
, freq
);
846 p9_mux_flush_request(struct p9_conn
*m
, struct p9_req
*req
)
849 struct p9_req
*rreq
, *rptr
;
851 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p req %p tag %d\n", m
, req
, req
->tag
);
853 /* if a response was received for a request, do nothing */
854 spin_lock(&req
->lock
);
855 if (req
->rcall
|| req
->err
) {
856 spin_unlock(&req
->lock
);
857 P9_DPRINTK(P9_DEBUG_MUX
,
858 "mux %p req %p response already received\n", m
, req
);
862 req
->flush
= Flushing
;
863 spin_unlock(&req
->lock
);
866 /* if the request is not sent yet, just remove it from the list */
867 list_for_each_entry_safe(rreq
, rptr
, &m
->unsent_req_list
, req_list
) {
868 if (rreq
->tag
== req
->tag
) {
869 P9_DPRINTK(P9_DEBUG_MUX
,
870 "mux %p req %p request is not sent yet\n", m
, req
);
871 list_del(&rreq
->req_list
);
872 req
->flush
= Flushed
;
873 spin_unlock(&m
->lock
);
875 (*req
->cb
) (req
, req
->cba
);
879 spin_unlock(&m
->lock
);
881 clear_thread_flag(TIF_SIGPENDING
);
882 fc
= p9_create_tflush(req
->tag
);
883 p9_send_request(m
, fc
, p9_mux_flush_cb
, m
);
888 p9_conn_rpc_cb(struct p9_req
*req
, void *a
)
890 struct p9_mux_rpc
*r
;
892 P9_DPRINTK(P9_DEBUG_MUX
, "req %p r %p\n", req
, a
);
894 r
->rcall
= req
->rcall
;
897 if (req
->flush
!= None
&& !req
->err
)
898 r
->err
= -ERESTARTSYS
;
904 * p9_mux_rpc - sends 9P request and waits until a response is available.
905 * The function can be interrupted.
907 * @tc: request to be sent
908 * @rc: pointer where a pointer to the response is stored
911 p9_conn_rpc(struct p9_conn
*m
, struct p9_fcall
*tc
,
912 struct p9_fcall
**rc
)
923 init_waitqueue_head(&r
.wqueue
);
929 if (signal_pending(current
)) {
931 clear_thread_flag(TIF_SIGPENDING
);
934 req
= p9_send_request(m
, tc
, p9_conn_rpc_cb
, &r
);
937 P9_DPRINTK(P9_DEBUG_MUX
, "error %d\n", err
);
941 err
= wait_event_interruptible(r
.wqueue
, r
.rcall
!= NULL
|| r
.err
< 0);
945 if (err
== -ERESTARTSYS
&& m
->trans
->status
== Connected
947 if (p9_mux_flush_request(m
, req
)) {
948 /* wait until we get response of the flush message */
950 clear_thread_flag(TIF_SIGPENDING
);
951 err
= wait_event_interruptible(r
.wqueue
,
953 } while (!r
.rcall
&& !r
.err
&& err
== -ERESTARTSYS
&&
954 m
->trans
->status
== Connected
&& !m
->err
);
962 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
964 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
972 p9_mux_free_request(m
, req
);
978 EXPORT_SYMBOL(p9_conn_rpc
);
982 * p9_conn_rpcnb - sends 9P request without waiting for response.
984 * @tc: request to be sent
985 * @cb: callback function to be called when response arrives
986 * @cba: value to pass to the callback function
988 int p9_conn_rpcnb(struct p9_conn
*m
, struct p9_fcall
*tc
,
989 p9_conn_req_callback cb
, void *a
)
994 req
= p9_send_request(m
, tc
, cb
, a
);
997 P9_DPRINTK(P9_DEBUG_MUX
, "error %d\n", err
);
1001 P9_DPRINTK(P9_DEBUG_MUX
, "mux %p tc %p tag %d\n", m
, tc
, req
->tag
);
1004 EXPORT_SYMBOL(p9_conn_rpcnb
);
1005 #endif /* P9_NONBLOCK */
1008 * p9_conn_cancel - cancel all pending requests with error
1012 void p9_conn_cancel(struct p9_conn
*m
, int err
)
1014 struct p9_req
*req
, *rtmp
;
1015 LIST_HEAD(cancel_list
);
1017 P9_DPRINTK(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
1019 spin_lock(&m
->lock
);
1020 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
1021 list_move(&req
->req_list
, &cancel_list
);
1023 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
1024 list_move(&req
->req_list
, &cancel_list
);
1026 spin_unlock(&m
->lock
);
1028 list_for_each_entry_safe(req
, rtmp
, &cancel_list
, req_list
) {
1029 list_del(&req
->req_list
);
1034 (*req
->cb
) (req
, req
->cba
);
1039 wake_up(&m
->equeue
);
1041 EXPORT_SYMBOL(p9_conn_cancel
);
1043 static u16
p9_mux_get_tag(struct p9_conn
*m
)
1047 tag
= p9_idpool_get(m
->tagpool
);
1054 static void p9_mux_put_tag(struct p9_conn
*m
, u16 tag
)
1056 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, m
->tagpool
))
1057 p9_idpool_put(tag
, m
->tagpool
);