blob: 9761df4fc2ab3ce87404dea97f8d1639ab90312c [file] [log] [blame]
David Howells952efe72009-04-03 16:42:39 +01001/* FS-Cache worker operation management routines
2 *
3 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * See Documentation/filesystems/caching/operations.txt
12 */
13
14#define FSCACHE_DEBUG_LEVEL OPERATION
15#include <linux/module.h>
David Howells440f0af2009-11-19 18:11:01 +000016#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
David Howells952efe72009-04-03 16:42:39 +010018#include "internal.h"
19
20atomic_t fscache_op_debug_id;
21EXPORT_SYMBOL(fscache_op_debug_id);
22
23/**
David Howells1339ec92015-02-25 13:26:39 +000024 * fscache_operation_init - Do basic initialisation of an operation
25 * @op: The operation to initialise
26 * @release: The release function to assign
27 *
28 * Do basic initialisation of an operation. The caller must still set flags,
29 * object and processor if needed.
30 */
31void fscache_operation_init(struct fscache_operation *op,
32 fscache_operation_processor_t processor,
33 fscache_operation_release_t release)
34{
35 INIT_WORK(&op->work, fscache_op_work_func);
36 atomic_set(&op->usage, 1);
37 op->state = FSCACHE_OP_ST_INITIALISED;
38 op->debug_id = atomic_inc_return(&fscache_op_debug_id);
39 op->processor = processor;
40 op->release = release;
41 INIT_LIST_HEAD(&op->pend_link);
David Howells03cdd0e2015-02-25 13:21:15 +000042 fscache_stat(&fscache_n_op_initialised);
David Howells1339ec92015-02-25 13:26:39 +000043}
44EXPORT_SYMBOL(fscache_operation_init);
45
46/**
David Howells952efe72009-04-03 16:42:39 +010047 * fscache_enqueue_operation - Enqueue an operation for processing
48 * @op: The operation to enqueue
49 *
50 * Enqueue an operation for processing by the FS-Cache thread pool.
51 *
52 * This will get its own ref on the object.
53 */
54void fscache_enqueue_operation(struct fscache_operation *op)
55{
56 _enter("{OBJ%x OP%x,%u}",
57 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
58
David Howells5753c442009-11-19 18:11:19 +000059 ASSERT(list_empty(&op->pend_link));
David Howells952efe72009-04-03 16:42:39 +010060 ASSERT(op->processor != NULL);
David Howells493f7bc2013-05-10 19:50:26 +010061 ASSERT(fscache_object_is_available(op->object));
David Howells952efe72009-04-03 16:42:39 +010062 ASSERTCMP(atomic_read(&op->usage), >, 0);
David Howells9f105232012-12-20 21:52:35 +000063 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_IN_PROGRESS);
David Howells952efe72009-04-03 16:42:39 +010064
David Howells5753c442009-11-19 18:11:19 +000065 fscache_stat(&fscache_n_op_enqueue);
66 switch (op->flags & FSCACHE_OP_TYPE) {
Tejun Heo8af7c122010-07-20 22:09:01 +020067 case FSCACHE_OP_ASYNC:
68 _debug("queue async");
David Howells5753c442009-11-19 18:11:19 +000069 atomic_inc(&op->usage);
Tejun Heo8af7c122010-07-20 22:09:01 +020070 if (!queue_work(fscache_op_wq, &op->work))
David Howells5753c442009-11-19 18:11:19 +000071 fscache_put_operation(op);
72 break;
David Howells5753c442009-11-19 18:11:19 +000073 case FSCACHE_OP_MYTHREAD:
74 _debug("queue for caller's attention");
75 break;
76 default:
Fabian Frederick36dfd112014-06-04 16:05:38 -070077 pr_err("Unexpected op type %lx", op->flags);
David Howells5753c442009-11-19 18:11:19 +000078 BUG();
79 break;
David Howells952efe72009-04-03 16:42:39 +010080 }
81}
82EXPORT_SYMBOL(fscache_enqueue_operation);
83
84/*
85 * start an op running
86 */
87static void fscache_run_op(struct fscache_object *object,
88 struct fscache_operation *op)
89{
David Howells9f105232012-12-20 21:52:35 +000090 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_PENDING);
91
92 op->state = FSCACHE_OP_ST_IN_PROGRESS;
David Howells952efe72009-04-03 16:42:39 +010093 object->n_in_progress++;
94 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
95 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
96 if (op->processor)
97 fscache_enqueue_operation(op);
98 fscache_stat(&fscache_n_op_run);
99}
100
101/*
David Howells3c305982015-02-24 10:39:28 +0000102 * report an unexpected submission
103 */
104static void fscache_report_unexpected_submission(struct fscache_object *object,
105 struct fscache_operation *op,
106 const struct fscache_state *ostate)
107{
108 static bool once_only;
109 struct fscache_operation *p;
110 unsigned n;
111
112 if (once_only)
113 return;
114 once_only = true;
115
116 kdebug("unexpected submission OP%x [OBJ%x %s]",
117 op->debug_id, object->debug_id, object->state->name);
118 kdebug("objstate=%s [%s]", object->state->name, ostate->name);
119 kdebug("objflags=%lx", object->flags);
120 kdebug("objevent=%lx [%lx]", object->events, object->event_mask);
121 kdebug("ops=%u inp=%u exc=%u",
122 object->n_ops, object->n_in_progress, object->n_exclusive);
123
124 if (!list_empty(&object->pending_ops)) {
125 n = 0;
126 list_for_each_entry(p, &object->pending_ops, pend_link) {
127 ASSERTCMP(p->object, ==, object);
128 kdebug("%p %p", op->processor, op->release);
129 n++;
130 }
131
132 kdebug("n=%u", n);
133 }
134
135 dump_stack();
136}
137
138/*
David Howells952efe72009-04-03 16:42:39 +0100139 * submit an exclusive operation for an object
140 * - other ops are excluded from running simultaneously with this one
141 * - this gets any extra refs it needs on an op
142 */
143int fscache_submit_exclusive_op(struct fscache_object *object,
144 struct fscache_operation *op)
145{
David Howells30ceec62015-02-24 10:05:27 +0000146 const struct fscache_state *ostate;
147 unsigned long flags;
David Howells8d763492012-12-05 13:34:48 +0000148 int ret;
149
David Howells952efe72009-04-03 16:42:39 +0100150 _enter("{OBJ%x OP%x},", object->debug_id, op->debug_id);
151
David Howells9f105232012-12-20 21:52:35 +0000152 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_INITIALISED);
153 ASSERTCMP(atomic_read(&op->usage), >, 0);
154
David Howells952efe72009-04-03 16:42:39 +0100155 spin_lock(&object->lock);
156 ASSERTCMP(object->n_ops, >=, object->n_in_progress);
157 ASSERTCMP(object->n_ops, >=, object->n_exclusive);
David Howells5753c442009-11-19 18:11:19 +0000158 ASSERT(list_empty(&op->pend_link));
David Howells952efe72009-04-03 16:42:39 +0100159
David Howells30ceec62015-02-24 10:05:27 +0000160 ostate = object->state;
161 smp_rmb();
162
David Howells9f105232012-12-20 21:52:35 +0000163 op->state = FSCACHE_OP_ST_PENDING;
David Howells30ceec62015-02-24 10:05:27 +0000164 flags = READ_ONCE(object->flags);
165 if (unlikely(!(flags & BIT(FSCACHE_OBJECT_IS_LIVE)))) {
166 fscache_stat(&fscache_n_op_rejected);
167 op->state = FSCACHE_OP_ST_CANCELLED;
168 ret = -ENOBUFS;
169 } else if (unlikely(fscache_cache_is_broken(object))) {
170 op->state = FSCACHE_OP_ST_CANCELLED;
171 ret = -EIO;
172 } else if (flags & BIT(FSCACHE_OBJECT_IS_AVAILABLE)) {
David Howells952efe72009-04-03 16:42:39 +0100173 op->object = object;
174 object->n_ops++;
175 object->n_exclusive++; /* reads and writes must wait */
176
David Howells9f105232012-12-20 21:52:35 +0000177 if (object->n_in_progress > 0) {
David Howells952efe72009-04-03 16:42:39 +0100178 atomic_inc(&op->usage);
179 list_add_tail(&op->pend_link, &object->pending_ops);
180 fscache_stat(&fscache_n_op_pend);
181 } else if (!list_empty(&object->pending_ops)) {
182 atomic_inc(&op->usage);
183 list_add_tail(&op->pend_link, &object->pending_ops);
184 fscache_stat(&fscache_n_op_pend);
185 fscache_start_operations(object);
186 } else {
187 ASSERTCMP(object->n_in_progress, ==, 0);
188 fscache_run_op(object, op);
189 }
190
191 /* need to issue a new write op after this */
192 clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
David Howells8d763492012-12-05 13:34:48 +0000193 ret = 0;
David Howells30ceec62015-02-24 10:05:27 +0000194 } else if (flags & BIT(FSCACHE_OBJECT_IS_LOOKED_UP)) {
David Howells952efe72009-04-03 16:42:39 +0100195 op->object = object;
196 object->n_ops++;
197 object->n_exclusive++; /* reads and writes must wait */
198 atomic_inc(&op->usage);
199 list_add_tail(&op->pend_link, &object->pending_ops);
200 fscache_stat(&fscache_n_op_pend);
David Howells8d763492012-12-05 13:34:48 +0000201 ret = 0;
David Howells6515d1d2015-02-25 11:53:57 +0000202 } else if (flags & BIT(FSCACHE_OBJECT_KILLED_BY_CACHE)) {
203 op->state = FSCACHE_OP_ST_CANCELLED;
204 ret = -ENOBUFS;
David Howells952efe72009-04-03 16:42:39 +0100205 } else {
David Howells30ceec62015-02-24 10:05:27 +0000206 fscache_report_unexpected_submission(object, op, ostate);
207 op->state = FSCACHE_OP_ST_CANCELLED;
208 ret = -ENOBUFS;
David Howells952efe72009-04-03 16:42:39 +0100209 }
210
211 spin_unlock(&object->lock);
David Howells8d763492012-12-05 13:34:48 +0000212 return ret;
David Howells952efe72009-04-03 16:42:39 +0100213}
214
215/*
David Howells952efe72009-04-03 16:42:39 +0100216 * submit an operation for an object
217 * - objects may be submitted only in the following states:
218 * - during object creation (write ops may be submitted)
219 * - whilst the object is active
220 * - after an I/O error incurred in one of the two above states (op rejected)
221 * - this gets any extra refs it needs on an op
222 */
223int fscache_submit_op(struct fscache_object *object,
224 struct fscache_operation *op)
225{
David Howellscaaef692013-05-10 19:50:26 +0100226 const struct fscache_state *ostate;
David Howells30ceec62015-02-24 10:05:27 +0000227 unsigned long flags;
David Howells952efe72009-04-03 16:42:39 +0100228 int ret;
229
230 _enter("{OBJ%x OP%x},{%u}",
231 object->debug_id, op->debug_id, atomic_read(&op->usage));
232
David Howells9f105232012-12-20 21:52:35 +0000233 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_INITIALISED);
David Howells952efe72009-04-03 16:42:39 +0100234 ASSERTCMP(atomic_read(&op->usage), >, 0);
235
236 spin_lock(&object->lock);
237 ASSERTCMP(object->n_ops, >=, object->n_in_progress);
238 ASSERTCMP(object->n_ops, >=, object->n_exclusive);
David Howells5753c442009-11-19 18:11:19 +0000239 ASSERT(list_empty(&op->pend_link));
David Howells952efe72009-04-03 16:42:39 +0100240
241 ostate = object->state;
242 smp_rmb();
243
David Howells9f105232012-12-20 21:52:35 +0000244 op->state = FSCACHE_OP_ST_PENDING;
David Howells30ceec62015-02-24 10:05:27 +0000245 flags = READ_ONCE(object->flags);
246 if (unlikely(!(flags & BIT(FSCACHE_OBJECT_IS_LIVE)))) {
247 fscache_stat(&fscache_n_op_rejected);
248 op->state = FSCACHE_OP_ST_CANCELLED;
249 ret = -ENOBUFS;
250 } else if (unlikely(fscache_cache_is_broken(object))) {
251 op->state = FSCACHE_OP_ST_CANCELLED;
252 ret = -EIO;
253 } else if (flags & BIT(FSCACHE_OBJECT_IS_AVAILABLE)) {
David Howells952efe72009-04-03 16:42:39 +0100254 op->object = object;
255 object->n_ops++;
256
257 if (object->n_exclusive > 0) {
258 atomic_inc(&op->usage);
259 list_add_tail(&op->pend_link, &object->pending_ops);
260 fscache_stat(&fscache_n_op_pend);
261 } else if (!list_empty(&object->pending_ops)) {
262 atomic_inc(&op->usage);
263 list_add_tail(&op->pend_link, &object->pending_ops);
264 fscache_stat(&fscache_n_op_pend);
265 fscache_start_operations(object);
266 } else {
267 ASSERTCMP(object->n_exclusive, ==, 0);
268 fscache_run_op(object, op);
269 }
270 ret = 0;
David Howells30ceec62015-02-24 10:05:27 +0000271 } else if (flags & BIT(FSCACHE_OBJECT_IS_LOOKED_UP)) {
David Howells952efe72009-04-03 16:42:39 +0100272 op->object = object;
273 object->n_ops++;
274 atomic_inc(&op->usage);
275 list_add_tail(&op->pend_link, &object->pending_ops);
276 fscache_stat(&fscache_n_op_pend);
277 ret = 0;
David Howells6515d1d2015-02-25 11:53:57 +0000278 } else if (flags & BIT(FSCACHE_OBJECT_KILLED_BY_CACHE)) {
279 op->state = FSCACHE_OP_ST_CANCELLED;
280 ret = -ENOBUFS;
David Howells30ceec62015-02-24 10:05:27 +0000281 } else {
David Howells952efe72009-04-03 16:42:39 +0100282 fscache_report_unexpected_submission(object, op, ostate);
283 ASSERT(!fscache_object_is_active(object));
David Howells9f105232012-12-20 21:52:35 +0000284 op->state = FSCACHE_OP_ST_CANCELLED;
David Howells952efe72009-04-03 16:42:39 +0100285 ret = -ENOBUFS;
David Howells952efe72009-04-03 16:42:39 +0100286 }
287
288 spin_unlock(&object->lock);
289 return ret;
290}
291
292/*
293 * queue an object for withdrawal on error, aborting all following asynchronous
294 * operations
295 */
296void fscache_abort_object(struct fscache_object *object)
297{
298 _enter("{OBJ%x}", object->debug_id);
299
300 fscache_raise_event(object, FSCACHE_OBJECT_EV_ERROR);
301}
302
303/*
David Howellsdcfae322013-05-24 12:45:31 +0100304 * Jump start the operation processing on an object. The caller must hold
305 * object->lock.
David Howells952efe72009-04-03 16:42:39 +0100306 */
307void fscache_start_operations(struct fscache_object *object)
308{
309 struct fscache_operation *op;
310 bool stop = false;
311
312 while (!list_empty(&object->pending_ops) && !stop) {
313 op = list_entry(object->pending_ops.next,
314 struct fscache_operation, pend_link);
315
316 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags)) {
317 if (object->n_in_progress > 0)
318 break;
319 stop = true;
320 }
321 list_del_init(&op->pend_link);
David Howells5753c442009-11-19 18:11:19 +0000322 fscache_run_op(object, op);
David Howells952efe72009-04-03 16:42:39 +0100323
324 /* the pending queue was holding a ref on the object */
325 fscache_put_operation(op);
326 }
327
328 ASSERTCMP(object->n_in_progress, <=, object->n_ops);
329
330 _debug("woke %d ops on OBJ%x",
331 object->n_in_progress, object->debug_id);
332}
333
334/*
David Howells5753c442009-11-19 18:11:19 +0000335 * cancel an operation that's pending on an object
336 */
David Howells91c7fbb2012-12-14 11:02:22 +0000337int fscache_cancel_op(struct fscache_operation *op,
David Howells418b7eb2015-02-24 10:05:28 +0000338 void (*do_cancel)(struct fscache_operation *),
339 bool cancel_in_progress_op)
David Howells5753c442009-11-19 18:11:19 +0000340{
341 struct fscache_object *object = op->object;
David Howells418b7eb2015-02-24 10:05:28 +0000342 bool put = false;
David Howells5753c442009-11-19 18:11:19 +0000343 int ret;
344
345 _enter("OBJ%x OP%x}", op->object->debug_id, op->debug_id);
346
David Howells9f105232012-12-20 21:52:35 +0000347 ASSERTCMP(op->state, >=, FSCACHE_OP_ST_PENDING);
348 ASSERTCMP(op->state, !=, FSCACHE_OP_ST_CANCELLED);
349 ASSERTCMP(atomic_read(&op->usage), >, 0);
350
David Howells5753c442009-11-19 18:11:19 +0000351 spin_lock(&object->lock);
352
353 ret = -EBUSY;
David Howells9f105232012-12-20 21:52:35 +0000354 if (op->state == FSCACHE_OP_ST_PENDING) {
355 ASSERT(!list_empty(&op->pend_link));
David Howells5753c442009-11-19 18:11:19 +0000356 list_del_init(&op->pend_link);
David Howells418b7eb2015-02-24 10:05:28 +0000357 put = true;
358 fscache_stat(&fscache_n_op_cancelled);
David Howells91c7fbb2012-12-14 11:02:22 +0000359 if (do_cancel)
360 do_cancel(op);
David Howells9f105232012-12-20 21:52:35 +0000361 op->state = FSCACHE_OP_ST_CANCELLED;
David Howells5753c442009-11-19 18:11:19 +0000362 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
363 object->n_exclusive--;
364 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
365 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
David Howells418b7eb2015-02-24 10:05:28 +0000366 ret = 0;
367 } else if (op->state == FSCACHE_OP_ST_IN_PROGRESS && cancel_in_progress_op) {
368 fscache_stat(&fscache_n_op_cancelled);
369 if (do_cancel)
370 do_cancel(op);
371 op->state = FSCACHE_OP_ST_CANCELLED;
372 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
373 object->n_exclusive--;
374 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
375 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
David Howells5753c442009-11-19 18:11:19 +0000376 ret = 0;
377 }
378
David Howells418b7eb2015-02-24 10:05:28 +0000379 if (put)
380 fscache_put_operation(op);
David Howells5753c442009-11-19 18:11:19 +0000381 spin_unlock(&object->lock);
382 _leave(" = %d", ret);
383 return ret;
384}
385
386/*
David Howellsef778e72012-12-20 21:52:36 +0000387 * Cancel all pending operations on an object
388 */
389void fscache_cancel_all_ops(struct fscache_object *object)
390{
391 struct fscache_operation *op;
392
393 _enter("OBJ%x", object->debug_id);
394
395 spin_lock(&object->lock);
396
397 while (!list_empty(&object->pending_ops)) {
398 op = list_entry(object->pending_ops.next,
399 struct fscache_operation, pend_link);
400 fscache_stat(&fscache_n_op_cancelled);
401 list_del_init(&op->pend_link);
402
403 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_PENDING);
404 op->state = FSCACHE_OP_ST_CANCELLED;
405
406 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
407 object->n_exclusive--;
408 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
409 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
410 fscache_put_operation(op);
411 cond_resched_lock(&object->lock);
412 }
413
414 spin_unlock(&object->lock);
415 _leave("");
416}
417
418/*
David Howells1f372df2012-12-13 20:03:13 +0000419 * Record the completion or cancellation of an in-progress operation.
David Howells9f105232012-12-20 21:52:35 +0000420 */
David Howells1f372df2012-12-13 20:03:13 +0000421void fscache_op_complete(struct fscache_operation *op, bool cancelled)
David Howells9f105232012-12-20 21:52:35 +0000422{
423 struct fscache_object *object = op->object;
424
425 _enter("OBJ%x", object->debug_id);
426
427 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_IN_PROGRESS);
428 ASSERTCMP(object->n_in_progress, >, 0);
429 ASSERTIFCMP(test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags),
430 object->n_exclusive, >, 0);
431 ASSERTIFCMP(test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags),
432 object->n_in_progress, ==, 1);
433
434 spin_lock(&object->lock);
435
David Howells1f372df2012-12-13 20:03:13 +0000436 op->state = cancelled ?
437 FSCACHE_OP_ST_CANCELLED : FSCACHE_OP_ST_COMPLETE;
David Howells9f105232012-12-20 21:52:35 +0000438
439 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
440 object->n_exclusive--;
441 object->n_in_progress--;
442 if (object->n_in_progress == 0)
443 fscache_start_operations(object);
444
445 spin_unlock(&object->lock);
446 _leave("");
447}
448EXPORT_SYMBOL(fscache_op_complete);
449
450/*
David Howells952efe72009-04-03 16:42:39 +0100451 * release an operation
452 * - queues pending ops if this is the last in-progress op
453 */
454void fscache_put_operation(struct fscache_operation *op)
455{
456 struct fscache_object *object;
457 struct fscache_cache *cache;
458
459 _enter("{OBJ%x OP%x,%d}",
460 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
461
462 ASSERTCMP(atomic_read(&op->usage), >, 0);
463
464 if (!atomic_dec_and_test(&op->usage))
465 return;
466
467 _debug("PUT OP");
David Howells9f105232012-12-20 21:52:35 +0000468 ASSERTIFCMP(op->state != FSCACHE_OP_ST_COMPLETE,
469 op->state, ==, FSCACHE_OP_ST_CANCELLED);
470 op->state = FSCACHE_OP_ST_DEAD;
David Howells952efe72009-04-03 16:42:39 +0100471
472 fscache_stat(&fscache_n_op_release);
473
474 if (op->release) {
475 op->release(op);
476 op->release = NULL;
477 }
478
479 object = op->object;
480
David Howells13627292013-05-10 19:50:26 +0100481 if (test_bit(FSCACHE_OP_DEC_READ_CNT, &op->flags))
482 atomic_dec(&object->n_reads);
483 if (test_bit(FSCACHE_OP_UNUSE_COOKIE, &op->flags))
484 fscache_unuse_cookie(object);
David Howells4fbf4292009-11-19 18:11:04 +0000485
David Howells952efe72009-04-03 16:42:39 +0100486 /* now... we may get called with the object spinlock held, so we
487 * complete the cleanup here only if we can immediately acquire the
488 * lock, and defer it otherwise */
489 if (!spin_trylock(&object->lock)) {
490 _debug("defer put");
491 fscache_stat(&fscache_n_op_deferred_release);
492
493 cache = object->cache;
494 spin_lock(&cache->op_gc_list_lock);
495 list_add_tail(&op->pend_link, &cache->op_gc_list);
496 spin_unlock(&cache->op_gc_list_lock);
497 schedule_work(&cache->op_gc);
498 _leave(" [defer]");
499 return;
500 }
501
David Howells952efe72009-04-03 16:42:39 +0100502 ASSERTCMP(object->n_ops, >, 0);
503 object->n_ops--;
504 if (object->n_ops == 0)
505 fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
506
507 spin_unlock(&object->lock);
508
509 kfree(op);
510 _leave(" [done]");
511}
512EXPORT_SYMBOL(fscache_put_operation);
513
514/*
515 * garbage collect operations that have had their release deferred
516 */
517void fscache_operation_gc(struct work_struct *work)
518{
519 struct fscache_operation *op;
520 struct fscache_object *object;
521 struct fscache_cache *cache =
522 container_of(work, struct fscache_cache, op_gc);
523 int count = 0;
524
525 _enter("");
526
527 do {
528 spin_lock(&cache->op_gc_list_lock);
529 if (list_empty(&cache->op_gc_list)) {
530 spin_unlock(&cache->op_gc_list_lock);
531 break;
532 }
533
534 op = list_entry(cache->op_gc_list.next,
535 struct fscache_operation, pend_link);
536 list_del(&op->pend_link);
537 spin_unlock(&cache->op_gc_list_lock);
538
539 object = op->object;
David Howells9f105232012-12-20 21:52:35 +0000540 spin_lock(&object->lock);
David Howells952efe72009-04-03 16:42:39 +0100541
542 _debug("GC DEFERRED REL OBJ%x OP%x",
543 object->debug_id, op->debug_id);
544 fscache_stat(&fscache_n_op_gc);
545
546 ASSERTCMP(atomic_read(&op->usage), ==, 0);
David Howells9f105232012-12-20 21:52:35 +0000547 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_DEAD);
David Howells952efe72009-04-03 16:42:39 +0100548
549 ASSERTCMP(object->n_ops, >, 0);
550 object->n_ops--;
551 if (object->n_ops == 0)
552 fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
553
554 spin_unlock(&object->lock);
David Howells9f105232012-12-20 21:52:35 +0000555 kfree(op);
David Howells952efe72009-04-03 16:42:39 +0100556
557 } while (count++ < 20);
558
559 if (!list_empty(&cache->op_gc_list))
560 schedule_work(&cache->op_gc);
561
562 _leave("");
563}
564
565/*
Tejun Heo8af7c122010-07-20 22:09:01 +0200566 * execute an operation using fs_op_wq to provide processing context -
567 * the caller holds a ref to this object, so we don't need to hold one
David Howells952efe72009-04-03 16:42:39 +0100568 */
Tejun Heo8af7c122010-07-20 22:09:01 +0200569void fscache_op_work_func(struct work_struct *work)
David Howells952efe72009-04-03 16:42:39 +0100570{
571 struct fscache_operation *op =
Tejun Heo8af7c122010-07-20 22:09:01 +0200572 container_of(work, struct fscache_operation, work);
David Howells952efe72009-04-03 16:42:39 +0100573 unsigned long start;
574
575 _enter("{OBJ%x OP%x,%d}",
576 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
577
578 ASSERT(op->processor != NULL);
579 start = jiffies;
580 op->processor(op);
581 fscache_hist(fscache_ops_histogram, start);
Tejun Heo8af7c122010-07-20 22:09:01 +0200582 fscache_put_operation(op);
David Howells952efe72009-04-03 16:42:39 +0100583
584 _leave("");
585}