diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-01-17 01:14:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 02:15:30 -0500 |
commit | 83cfd4935124b165e942c317dc3e9ebb0a3e6a63 (patch) | |
tree | 6b6276dde7fbe07dd9e5d44332eef5f2b9451d4c /fs/fuse/dev.c | |
parent | 6383bdaa2ed2d461d9f4d369dfaa9d610fc972e3 (diff) |
[PATCH] fuse: introduce unified request state
The state of request was made up of 2 bitfields (->sent and ->finished) and of
the fact that the request was on a list or not.
Unify this into a single state field.
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fuse/dev.c')
-rw-r--r-- | fs/fuse/dev.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 4f1ca7b119ed..bc8a3846a4bf 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c | |||
@@ -181,7 +181,7 @@ static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req) | |||
181 | */ | 181 | */ |
182 | static void request_end(struct fuse_conn *fc, struct fuse_req *req) | 182 | static void request_end(struct fuse_conn *fc, struct fuse_req *req) |
183 | { | 183 | { |
184 | req->finished = 1; | 184 | req->state = FUSE_REQ_FINISHED; |
185 | spin_unlock(&fuse_lock); | 185 | spin_unlock(&fuse_lock); |
186 | if (req->background) { | 186 | if (req->background) { |
187 | down_read(&fc->sbput_sem); | 187 | down_read(&fc->sbput_sem); |
@@ -250,10 +250,10 @@ static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req) | |||
250 | 250 | ||
251 | spin_unlock(&fuse_lock); | 251 | spin_unlock(&fuse_lock); |
252 | block_sigs(&oldset); | 252 | block_sigs(&oldset); |
253 | wait_event_interruptible(req->waitq, req->finished); | 253 | wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED); |
254 | restore_sigs(&oldset); | 254 | restore_sigs(&oldset); |
255 | spin_lock(&fuse_lock); | 255 | spin_lock(&fuse_lock); |
256 | if (req->finished) | 256 | if (req->state == FUSE_REQ_FINISHED) |
257 | return; | 257 | return; |
258 | 258 | ||
259 | req->out.h.error = -EINTR; | 259 | req->out.h.error = -EINTR; |
@@ -268,10 +268,10 @@ static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req) | |||
268 | wait_event(req->waitq, !req->locked); | 268 | wait_event(req->waitq, !req->locked); |
269 | spin_lock(&fuse_lock); | 269 | spin_lock(&fuse_lock); |
270 | } | 270 | } |
271 | if (!req->sent && !list_empty(&req->list)) { | 271 | if (req->state == FUSE_REQ_PENDING) { |
272 | list_del(&req->list); | 272 | list_del(&req->list); |
273 | __fuse_put_request(req); | 273 | __fuse_put_request(req); |
274 | } else if (!req->finished && req->sent) | 274 | } else if (req->state == FUSE_REQ_SENT) |
275 | background_request(fc, req); | 275 | background_request(fc, req); |
276 | } | 276 | } |
277 | 277 | ||
@@ -306,6 +306,7 @@ static void queue_request(struct fuse_conn *fc, struct fuse_req *req) | |||
306 | fc->outstanding_debt++; | 306 | fc->outstanding_debt++; |
307 | } | 307 | } |
308 | list_add_tail(&req->list, &fc->pending); | 308 | list_add_tail(&req->list, &fc->pending); |
309 | req->state = FUSE_REQ_PENDING; | ||
309 | wake_up(&fc->waitq); | 310 | wake_up(&fc->waitq); |
310 | } | 311 | } |
311 | 312 | ||
@@ -639,6 +640,7 @@ static ssize_t fuse_dev_readv(struct file *file, const struct iovec *iov, | |||
639 | goto err_unlock; | 640 | goto err_unlock; |
640 | 641 | ||
641 | req = list_entry(fc->pending.next, struct fuse_req, list); | 642 | req = list_entry(fc->pending.next, struct fuse_req, list); |
643 | req->state = FUSE_REQ_READING; | ||
642 | list_del_init(&req->list); | 644 | list_del_init(&req->list); |
643 | 645 | ||
644 | in = &req->in; | 646 | in = &req->in; |
@@ -672,7 +674,7 @@ static ssize_t fuse_dev_readv(struct file *file, const struct iovec *iov, | |||
672 | if (!req->isreply) | 674 | if (!req->isreply) |
673 | request_end(fc, req); | 675 | request_end(fc, req); |
674 | else { | 676 | else { |
675 | req->sent = 1; | 677 | req->state = FUSE_REQ_SENT; |
676 | list_add_tail(&req->list, &fc->processing); | 678 | list_add_tail(&req->list, &fc->processing); |
677 | spin_unlock(&fuse_lock); | 679 | spin_unlock(&fuse_lock); |
678 | } | 680 | } |