diff options
| author | Paul Mackerras <paulus@samba.org> | 2006-02-06 18:43:36 -0500 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-02-06 18:43:36 -0500 |
| commit | 6cb6524d90b6e5497e79a1474bdb2f26755d1c02 (patch) | |
| tree | fd475ac8f57a6bd39c976056324d1bc79d11b4c9 /fs/fuse/dev.c | |
| parent | 837e9594fc3cb9a06bddd7ecf66151334a2e13d2 (diff) | |
| parent | 410c05427a69f53851637ccb85c2212131409fbd (diff) | |
Merge ../linux-2.6
Diffstat (limited to 'fs/fuse/dev.c')
| -rw-r--r-- | fs/fuse/dev.c | 40 |
1 files changed, 29 insertions, 11 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 4526da8907c6..f556a0d5c0d3 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c | |||
| @@ -120,9 +120,9 @@ struct fuse_req *fuse_get_request(struct fuse_conn *fc) | |||
| 120 | return do_get_request(fc); | 120 | return do_get_request(fc); |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | /* Must be called with fuse_lock held */ | ||
| 123 | static void fuse_putback_request(struct fuse_conn *fc, struct fuse_req *req) | 124 | static void fuse_putback_request(struct fuse_conn *fc, struct fuse_req *req) |
| 124 | { | 125 | { |
| 125 | spin_lock(&fuse_lock); | ||
| 126 | if (req->preallocated) { | 126 | if (req->preallocated) { |
| 127 | atomic_dec(&fc->num_waiting); | 127 | atomic_dec(&fc->num_waiting); |
| 128 | list_add(&req->list, &fc->unused_list); | 128 | list_add(&req->list, &fc->unused_list); |
| @@ -134,11 +134,19 @@ static void fuse_putback_request(struct fuse_conn *fc, struct fuse_req *req) | |||
| 134 | fc->outstanding_debt--; | 134 | fc->outstanding_debt--; |
| 135 | else | 135 | else |
| 136 | up(&fc->outstanding_sem); | 136 | up(&fc->outstanding_sem); |
| 137 | spin_unlock(&fuse_lock); | ||
| 138 | } | 137 | } |
| 139 | 138 | ||
| 140 | void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req) | 139 | void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req) |
| 141 | { | 140 | { |
| 141 | if (atomic_dec_and_test(&req->count)) { | ||
| 142 | spin_lock(&fuse_lock); | ||
| 143 | fuse_putback_request(fc, req); | ||
| 144 | spin_unlock(&fuse_lock); | ||
| 145 | } | ||
| 146 | } | ||
| 147 | |||
| 148 | static void fuse_put_request_locked(struct fuse_conn *fc, struct fuse_req *req) | ||
| 149 | { | ||
| 142 | if (atomic_dec_and_test(&req->count)) | 150 | if (atomic_dec_and_test(&req->count)) |
| 143 | fuse_putback_request(fc, req); | 151 | fuse_putback_request(fc, req); |
| 144 | } | 152 | } |
| @@ -163,26 +171,36 @@ void fuse_release_background(struct fuse_req *req) | |||
| 163 | * still waiting), the 'end' callback is called if given, else the | 171 | * still waiting), the 'end' callback is called if given, else the |
| 164 | * reference to the request is released | 172 | * reference to the request is released |
| 165 | * | 173 | * |
| 174 | * Releasing extra reference for foreground requests must be done | ||
| 175 | * within the same locked region as setting state to finished. This | ||
| 176 | * is because fuse_reset_request() may be called after request is | ||
| 177 | * finished and it must be the sole possessor. If request is | ||
| 178 | * interrupted and put in the background, it will return with an error | ||
| 179 | * and hence never be reset and reused. | ||
| 180 | * | ||
| 166 | * Called with fuse_lock, unlocks it | 181 | * Called with fuse_lock, unlocks it |
| 167 | */ | 182 | */ |
| 168 | static void request_end(struct fuse_conn *fc, struct fuse_req *req) | 183 | static void request_end(struct fuse_conn *fc, struct fuse_req *req) |
| 169 | { | 184 | { |
| 170 | void (*end) (struct fuse_conn *, struct fuse_req *) = req->end; | ||
| 171 | req->end = NULL; | ||
| 172 | list_del(&req->list); | 185 | list_del(&req->list); |
| 173 | req->state = FUSE_REQ_FINISHED; | 186 | req->state = FUSE_REQ_FINISHED; |
| 174 | spin_unlock(&fuse_lock); | 187 | if (!req->background) { |
| 175 | if (req->background) { | 188 | wake_up(&req->waitq); |
| 189 | fuse_put_request_locked(fc, req); | ||
| 190 | spin_unlock(&fuse_lock); | ||
| 191 | } else { | ||
| 192 | void (*end) (struct fuse_conn *, struct fuse_req *) = req->end; | ||
| 193 | req->end = NULL; | ||
| 194 | spin_unlock(&fuse_lock); | ||
| 176 | down_read(&fc->sbput_sem); | 195 | down_read(&fc->sbput_sem); |
| 177 | if (fc->mounted) | 196 | if (fc->mounted) |
| 178 | fuse_release_background(req); | 197 | fuse_release_background(req); |
| 179 | up_read(&fc->sbput_sem); | 198 | up_read(&fc->sbput_sem); |
| 199 | if (end) | ||
| 200 | end(fc, req); | ||
| 201 | else | ||
| 202 | fuse_put_request(fc, req); | ||
| 180 | } | 203 | } |
| 181 | wake_up(&req->waitq); | ||
| 182 | if (end) | ||
| 183 | end(fc, req); | ||
| 184 | else | ||
| 185 | fuse_put_request(fc, req); | ||
| 186 | } | 204 | } |
| 187 | 205 | ||
| 188 | /* | 206 | /* |
