blob: c76c097307682d195a5b3e9c827b36698deed5d1 [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) {
David Howells73c04a42015-02-25 14:07:25 +0000368 ASSERTCMP(object->n_in_progress, >, 0);
369 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
370 object->n_exclusive--;
371 object->n_in_progress--;
372 if (object->n_in_progress == 0)
373 fscache_start_operations(object);
374
David Howells418b7eb2015-02-24 10:05:28 +0000375 fscache_stat(&fscache_n_op_cancelled);
376 if (do_cancel)
377 do_cancel(op);
378 op->state = FSCACHE_OP_ST_CANCELLED;
379 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
380 object->n_exclusive--;
381 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
382 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
David Howells5753c442009-11-19 18:11:19 +0000383 ret = 0;
384 }
385
David Howells418b7eb2015-02-24 10:05:28 +0000386 if (put)
387 fscache_put_operation(op);
David Howells5753c442009-11-19 18:11:19 +0000388 spin_unlock(&object->lock);
389 _leave(" = %d", ret);
390 return ret;
391}
392
393/*
David Howellsef778e72012-12-20 21:52:36 +0000394 * Cancel all pending operations on an object
395 */
396void fscache_cancel_all_ops(struct fscache_object *object)
397{
398 struct fscache_operation *op;
399
400 _enter("OBJ%x", object->debug_id);
401
402 spin_lock(&object->lock);
403
404 while (!list_empty(&object->pending_ops)) {
405 op = list_entry(object->pending_ops.next,
406 struct fscache_operation, pend_link);
407 fscache_stat(&fscache_n_op_cancelled);
408 list_del_init(&op->pend_link);
409
410 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_PENDING);
411 op->state = FSCACHE_OP_ST_CANCELLED;
412
413 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
414 object->n_exclusive--;
415 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
416 wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
417 fscache_put_operation(op);
418 cond_resched_lock(&object->lock);
419 }
420
421 spin_unlock(&object->lock);
422 _leave("");
423}
424
425/*
David Howells1f372df2012-12-13 20:03:13 +0000426 * Record the completion or cancellation of an in-progress operation.
David Howells9f105232012-12-20 21:52:35 +0000427 */
David Howells1f372df2012-12-13 20:03:13 +0000428void fscache_op_complete(struct fscache_operation *op, bool cancelled)
David Howells9f105232012-12-20 21:52:35 +0000429{
430 struct fscache_object *object = op->object;
431
432 _enter("OBJ%x", object->debug_id);
433
434 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_IN_PROGRESS);
435 ASSERTCMP(object->n_in_progress, >, 0);
436 ASSERTIFCMP(test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags),
437 object->n_exclusive, >, 0);
438 ASSERTIFCMP(test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags),
439 object->n_in_progress, ==, 1);
440
441 spin_lock(&object->lock);
442
David Howells1f372df2012-12-13 20:03:13 +0000443 op->state = cancelled ?
444 FSCACHE_OP_ST_CANCELLED : FSCACHE_OP_ST_COMPLETE;
David Howells9f105232012-12-20 21:52:35 +0000445
446 if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
447 object->n_exclusive--;
448 object->n_in_progress--;
449 if (object->n_in_progress == 0)
450 fscache_start_operations(object);
451
452 spin_unlock(&object->lock);
453 _leave("");
454}
455EXPORT_SYMBOL(fscache_op_complete);
456
457/*
David Howells952efe72009-04-03 16:42:39 +0100458 * release an operation
459 * - queues pending ops if this is the last in-progress op
460 */
461void fscache_put_operation(struct fscache_operation *op)
462{
463 struct fscache_object *object;
464 struct fscache_cache *cache;
465
466 _enter("{OBJ%x OP%x,%d}",
467 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
468
469 ASSERTCMP(atomic_read(&op->usage), >, 0);
470
471 if (!atomic_dec_and_test(&op->usage))
472 return;
473
474 _debug("PUT OP");
David Howellsa39caad2015-02-25 14:22:40 +0000475 ASSERTIFCMP(op->state != FSCACHE_OP_ST_INITIALISED &&
476 op->state != FSCACHE_OP_ST_COMPLETE,
David Howells9f105232012-12-20 21:52:35 +0000477 op->state, ==, FSCACHE_OP_ST_CANCELLED);
478 op->state = FSCACHE_OP_ST_DEAD;
David Howells952efe72009-04-03 16:42:39 +0100479
480 fscache_stat(&fscache_n_op_release);
481
482 if (op->release) {
483 op->release(op);
484 op->release = NULL;
485 }
486
487 object = op->object;
David Howellsa39caad2015-02-25 14:22:40 +0000488 if (likely(object)) {
489 if (test_bit(FSCACHE_OP_DEC_READ_CNT, &op->flags))
490 atomic_dec(&object->n_reads);
491 if (test_bit(FSCACHE_OP_UNUSE_COOKIE, &op->flags))
492 fscache_unuse_cookie(object);
David Howells952efe72009-04-03 16:42:39 +0100493
David Howellsa39caad2015-02-25 14:22:40 +0000494 /* now... we may get called with the object spinlock held, so we
495 * complete the cleanup here only if we can immediately acquire the
496 * lock, and defer it otherwise */
497 if (!spin_trylock(&object->lock)) {
498 _debug("defer put");
499 fscache_stat(&fscache_n_op_deferred_release);
David Howells4fbf4292009-11-19 18:11:04 +0000500
David Howellsa39caad2015-02-25 14:22:40 +0000501 cache = object->cache;
502 spin_lock(&cache->op_gc_list_lock);
503 list_add_tail(&op->pend_link, &cache->op_gc_list);
504 spin_unlock(&cache->op_gc_list_lock);
505 schedule_work(&cache->op_gc);
506 _leave(" [defer]");
507 return;
508 }
David Howells952efe72009-04-03 16:42:39 +0100509
David Howellsa39caad2015-02-25 14:22:40 +0000510 ASSERTCMP(object->n_ops, >, 0);
511 object->n_ops--;
512 if (object->n_ops == 0)
513 fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
514
515 spin_unlock(&object->lock);
David Howells952efe72009-04-03 16:42:39 +0100516 }
517
David Howells952efe72009-04-03 16:42:39 +0100518 kfree(op);
519 _leave(" [done]");
520}
521EXPORT_SYMBOL(fscache_put_operation);
522
523/*
524 * garbage collect operations that have had their release deferred
525 */
526void fscache_operation_gc(struct work_struct *work)
527{
528 struct fscache_operation *op;
529 struct fscache_object *object;
530 struct fscache_cache *cache =
531 container_of(work, struct fscache_cache, op_gc);
532 int count = 0;
533
534 _enter("");
535
536 do {
537 spin_lock(&cache->op_gc_list_lock);
538 if (list_empty(&cache->op_gc_list)) {
539 spin_unlock(&cache->op_gc_list_lock);
540 break;
541 }
542
543 op = list_entry(cache->op_gc_list.next,
544 struct fscache_operation, pend_link);
545 list_del(&op->pend_link);
546 spin_unlock(&cache->op_gc_list_lock);
547
548 object = op->object;
David Howells9f105232012-12-20 21:52:35 +0000549 spin_lock(&object->lock);
David Howells952efe72009-04-03 16:42:39 +0100550
551 _debug("GC DEFERRED REL OBJ%x OP%x",
552 object->debug_id, op->debug_id);
553 fscache_stat(&fscache_n_op_gc);
554
555 ASSERTCMP(atomic_read(&op->usage), ==, 0);
David Howells9f105232012-12-20 21:52:35 +0000556 ASSERTCMP(op->state, ==, FSCACHE_OP_ST_DEAD);
David Howells952efe72009-04-03 16:42:39 +0100557
558 ASSERTCMP(object->n_ops, >, 0);
559 object->n_ops--;
560 if (object->n_ops == 0)
561 fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
562
563 spin_unlock(&object->lock);
David Howells9f105232012-12-20 21:52:35 +0000564 kfree(op);
David Howells952efe72009-04-03 16:42:39 +0100565
566 } while (count++ < 20);
567
568 if (!list_empty(&cache->op_gc_list))
569 schedule_work(&cache->op_gc);
570
571 _leave("");
572}
573
574/*
Tejun Heo8af7c122010-07-20 22:09:01 +0200575 * execute an operation using fs_op_wq to provide processing context -
576 * the caller holds a ref to this object, so we don't need to hold one
David Howells952efe72009-04-03 16:42:39 +0100577 */
Tejun Heo8af7c122010-07-20 22:09:01 +0200578void fscache_op_work_func(struct work_struct *work)
David Howells952efe72009-04-03 16:42:39 +0100579{
580 struct fscache_operation *op =
Tejun Heo8af7c122010-07-20 22:09:01 +0200581 container_of(work, struct fscache_operation, work);
David Howells952efe72009-04-03 16:42:39 +0100582 unsigned long start;
583
584 _enter("{OBJ%x OP%x,%d}",
585 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
586
587 ASSERT(op->processor != NULL);
588 start = jiffies;
589 op->processor(op);
590 fscache_hist(fscache_ops_histogram, start);
Tejun Heo8af7c122010-07-20 22:09:01 +0200591 fscache_put_operation(op);
David Howells952efe72009-04-03 16:42:39 +0100592
593 _leave("");
594}