diff options
author | Simon Derr <simon.derr@bull.net> | 2012-09-17 09:16:29 -0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2012-09-17 15:54:11 -0400 |
commit | 1957b3a86f8eb5ceab32e3aae99e2822258aa530 (patch) | |
tree | 111a02cd46b43a94b46ef144cb74ef321658197f /net/9p | |
parent | 0462194d358c2e040282d4d1a4fd1aab84417e42 (diff) |
9P: fix test at the end of p9_write_work()
At the end of p9_write_work() we want to test if there is still data to send.
This means:
- either the current request still has data to send (wsize != 0)
- or there are requests in the unsent queue
Signed-off-by: Simon Derr <simon.derr@bull.net>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/trans_fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index de1bbad0c7de..7088a94b2601 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c | |||
@@ -492,7 +492,7 @@ static void p9_write_work(struct work_struct *work) | |||
492 | if (m->wpos == m->wsize) | 492 | if (m->wpos == m->wsize) |
493 | m->wpos = m->wsize = 0; | 493 | m->wpos = m->wsize = 0; |
494 | 494 | ||
495 | if (m->wsize == 0 && !list_empty(&m->unsent_req_list)) { | 495 | if (m->wsize || !list_empty(&m->unsent_req_list)) { |
496 | if (test_and_clear_bit(Wpending, &m->wsched)) | 496 | if (test_and_clear_bit(Wpending, &m->wsched)) |
497 | n = POLLOUT; | 497 | n = POLLOUT; |
498 | else | 498 | else |