Blame view

fs/fscache/operation.c 11.8 KB
952efe7b7   David Howells   FS-Cache: Add and...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /* FS-Cache worker operation management routines
   *
   * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
   * Written by David Howells (dhowells@redhat.com)
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
   * as published by the Free Software Foundation; either version
   * 2 of the License, or (at your option) any later version.
   *
   * See Documentation/filesystems/caching/operations.txt
   */
  
  #define FSCACHE_DEBUG_LEVEL OPERATION
  #include <linux/module.h>
440f0affe   David Howells   FS-Cache: Annotat...
16
  #include <linux/seq_file.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
17
  #include <linux/slab.h>
952efe7b7   David Howells   FS-Cache: Add and...
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  #include "internal.h"
  
  atomic_t fscache_op_debug_id;
  EXPORT_SYMBOL(fscache_op_debug_id);
  
  /**
   * fscache_enqueue_operation - Enqueue an operation for processing
   * @op: The operation to enqueue
   *
   * Enqueue an operation for processing by the FS-Cache thread pool.
   *
   * This will get its own ref on the object.
   */
  void fscache_enqueue_operation(struct fscache_operation *op)
  {
  	_enter("{OBJ%x OP%x,%u}",
  	       op->object->debug_id, op->debug_id, atomic_read(&op->usage));
5753c4418   David Howells   FS-Cache: Permit ...
35
  	ASSERT(list_empty(&op->pend_link));
952efe7b7   David Howells   FS-Cache: Add and...
36
37
38
  	ASSERT(op->processor != NULL);
  	ASSERTCMP(op->object->state, >=, FSCACHE_OBJECT_AVAILABLE);
  	ASSERTCMP(atomic_read(&op->usage), >, 0);
5753c4418   David Howells   FS-Cache: Permit ...
39
40
  	fscache_stat(&fscache_n_op_enqueue);
  	switch (op->flags & FSCACHE_OP_TYPE) {
8af7c1243   Tejun Heo   fscache: convert ...
41
42
  	case FSCACHE_OP_ASYNC:
  		_debug("queue async");
5753c4418   David Howells   FS-Cache: Permit ...
43
  		atomic_inc(&op->usage);
8af7c1243   Tejun Heo   fscache: convert ...
44
  		if (!queue_work(fscache_op_wq, &op->work))
5753c4418   David Howells   FS-Cache: Permit ...
45
46
  			fscache_put_operation(op);
  		break;
5753c4418   David Howells   FS-Cache: Permit ...
47
48
49
50
51
52
53
54
  	case FSCACHE_OP_MYTHREAD:
  		_debug("queue for caller's attention");
  		break;
  	default:
  		printk(KERN_ERR "FS-Cache: Unexpected op type %lx",
  		       op->flags);
  		BUG();
  		break;
952efe7b7   David Howells   FS-Cache: Add and...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  	}
  }
  EXPORT_SYMBOL(fscache_enqueue_operation);
  
  /*
   * start an op running
   */
  static void fscache_run_op(struct fscache_object *object,
  			   struct fscache_operation *op)
  {
  	object->n_in_progress++;
  	if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
  		wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
  	if (op->processor)
  		fscache_enqueue_operation(op);
  	fscache_stat(&fscache_n_op_run);
  }
  
  /*
   * submit an exclusive operation for an object
   * - other ops are excluded from running simultaneously with this one
   * - this gets any extra refs it needs on an op
   */
  int fscache_submit_exclusive_op(struct fscache_object *object,
  				struct fscache_operation *op)
  {
  	int ret;
  
  	_enter("{OBJ%x OP%x},", object->debug_id, op->debug_id);
  
  	spin_lock(&object->lock);
  	ASSERTCMP(object->n_ops, >=, object->n_in_progress);
  	ASSERTCMP(object->n_ops, >=, object->n_exclusive);
5753c4418   David Howells   FS-Cache: Permit ...
88
  	ASSERT(list_empty(&op->pend_link));
952efe7b7   David Howells   FS-Cache: Add and...
89
90
91
92
93
94
  
  	ret = -ENOBUFS;
  	if (fscache_object_is_active(object)) {
  		op->object = object;
  		object->n_ops++;
  		object->n_exclusive++;	/* reads and writes must wait */
ba28b93a5   Akshat Aranya   FS-Cache: Fix ope...
95
  		if (object->n_ops > 1) {
952efe7b7   David Howells   FS-Cache: Add and...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  			atomic_inc(&op->usage);
  			list_add_tail(&op->pend_link, &object->pending_ops);
  			fscache_stat(&fscache_n_op_pend);
  		} else if (!list_empty(&object->pending_ops)) {
  			atomic_inc(&op->usage);
  			list_add_tail(&op->pend_link, &object->pending_ops);
  			fscache_stat(&fscache_n_op_pend);
  			fscache_start_operations(object);
  		} else {
  			ASSERTCMP(object->n_in_progress, ==, 0);
  			fscache_run_op(object, op);
  		}
  
  		/* need to issue a new write op after this */
  		clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
  		ret = 0;
  	} else if (object->state == FSCACHE_OBJECT_CREATING) {
  		op->object = object;
  		object->n_ops++;
  		object->n_exclusive++;	/* reads and writes must wait */
  		atomic_inc(&op->usage);
  		list_add_tail(&op->pend_link, &object->pending_ops);
  		fscache_stat(&fscache_n_op_pend);
  		ret = 0;
  	} else {
  		/* not allowed to submit ops in any other state */
  		BUG();
  	}
  
  	spin_unlock(&object->lock);
  	return ret;
  }
  
  /*
   * report an unexpected submission
   */
  static void fscache_report_unexpected_submission(struct fscache_object *object,
  						 struct fscache_operation *op,
  						 unsigned long ostate)
  {
  	static bool once_only;
  	struct fscache_operation *p;
  	unsigned n;
  
  	if (once_only)
  		return;
  	once_only = true;
  
  	kdebug("unexpected submission OP%x [OBJ%x %s]",
  	       op->debug_id, object->debug_id,
  	       fscache_object_states[object->state]);
  	kdebug("objstate=%s [%s]",
  	       fscache_object_states[object->state],
  	       fscache_object_states[ostate]);
  	kdebug("objflags=%lx", object->flags);
  	kdebug("objevent=%lx [%lx]", object->events, object->event_mask);
  	kdebug("ops=%u inp=%u exc=%u",
  	       object->n_ops, object->n_in_progress, object->n_exclusive);
  
  	if (!list_empty(&object->pending_ops)) {
  		n = 0;
  		list_for_each_entry(p, &object->pending_ops, pend_link) {
  			ASSERTCMP(p->object, ==, object);
  			kdebug("%p %p", op->processor, op->release);
  			n++;
  		}
  
  		kdebug("n=%u", n);
  	}
  
  	dump_stack();
  }
  
  /*
   * submit an operation for an object
   * - objects may be submitted only in the following states:
   *   - during object creation (write ops may be submitted)
   *   - whilst the object is active
   *   - after an I/O error incurred in one of the two above states (op rejected)
   * - this gets any extra refs it needs on an op
   */
  int fscache_submit_op(struct fscache_object *object,
  		      struct fscache_operation *op)
  {
  	unsigned long ostate;
  	int ret;
  
  	_enter("{OBJ%x OP%x},{%u}",
  	       object->debug_id, op->debug_id, atomic_read(&op->usage));
  
  	ASSERTCMP(atomic_read(&op->usage), >, 0);
  
  	spin_lock(&object->lock);
  	ASSERTCMP(object->n_ops, >=, object->n_in_progress);
  	ASSERTCMP(object->n_ops, >=, object->n_exclusive);
5753c4418   David Howells   FS-Cache: Permit ...
191
  	ASSERT(list_empty(&op->pend_link));
952efe7b7   David Howells   FS-Cache: Add and...
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  
  	ostate = object->state;
  	smp_rmb();
  
  	if (fscache_object_is_active(object)) {
  		op->object = object;
  		object->n_ops++;
  
  		if (object->n_exclusive > 0) {
  			atomic_inc(&op->usage);
  			list_add_tail(&op->pend_link, &object->pending_ops);
  			fscache_stat(&fscache_n_op_pend);
  		} else if (!list_empty(&object->pending_ops)) {
  			atomic_inc(&op->usage);
  			list_add_tail(&op->pend_link, &object->pending_ops);
  			fscache_stat(&fscache_n_op_pend);
  			fscache_start_operations(object);
  		} else {
  			ASSERTCMP(object->n_exclusive, ==, 0);
  			fscache_run_op(object, op);
  		}
  		ret = 0;
  	} else if (object->state == FSCACHE_OBJECT_CREATING) {
  		op->object = object;
  		object->n_ops++;
  		atomic_inc(&op->usage);
  		list_add_tail(&op->pend_link, &object->pending_ops);
  		fscache_stat(&fscache_n_op_pend);
  		ret = 0;
e3d4d28b1   David Howells   FS-Cache: Handle ...
221
222
223
224
225
  	} else if (object->state == FSCACHE_OBJECT_DYING ||
  		   object->state == FSCACHE_OBJECT_LC_DYING ||
  		   object->state == FSCACHE_OBJECT_WITHDRAWING) {
  		fscache_stat(&fscache_n_op_rejected);
  		ret = -ENOBUFS;
952efe7b7   David Howells   FS-Cache: Add and...
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
  	} else if (!test_bit(FSCACHE_IOERROR, &object->cache->flags)) {
  		fscache_report_unexpected_submission(object, op, ostate);
  		ASSERT(!fscache_object_is_active(object));
  		ret = -ENOBUFS;
  	} else {
  		ret = -ENOBUFS;
  	}
  
  	spin_unlock(&object->lock);
  	return ret;
  }
  
  /*
   * queue an object for withdrawal on error, aborting all following asynchronous
   * operations
   */
  void fscache_abort_object(struct fscache_object *object)
  {
  	_enter("{OBJ%x}", object->debug_id);
  
  	fscache_raise_event(object, FSCACHE_OBJECT_EV_ERROR);
  }
  
  /*
   * jump start the operation processing on an object
   * - caller must hold object->lock
   */
  void fscache_start_operations(struct fscache_object *object)
  {
  	struct fscache_operation *op;
  	bool stop = false;
  
  	while (!list_empty(&object->pending_ops) && !stop) {
  		op = list_entry(object->pending_ops.next,
  				struct fscache_operation, pend_link);
  
  		if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags)) {
  			if (object->n_in_progress > 0)
  				break;
  			stop = true;
  		}
  		list_del_init(&op->pend_link);
5753c4418   David Howells   FS-Cache: Permit ...
268
  		fscache_run_op(object, op);
952efe7b7   David Howells   FS-Cache: Add and...
269
270
271
272
273
274
275
276
277
278
279
280
  
  		/* the pending queue was holding a ref on the object */
  		fscache_put_operation(op);
  	}
  
  	ASSERTCMP(object->n_in_progress, <=, object->n_ops);
  
  	_debug("woke %d ops on OBJ%x",
  	       object->n_in_progress, object->debug_id);
  }
  
  /*
5753c4418   David Howells   FS-Cache: Permit ...
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
   * cancel an operation that's pending on an object
   */
  int fscache_cancel_op(struct fscache_operation *op)
  {
  	struct fscache_object *object = op->object;
  	int ret;
  
  	_enter("OBJ%x OP%x}", op->object->debug_id, op->debug_id);
  
  	spin_lock(&object->lock);
  
  	ret = -EBUSY;
  	if (!list_empty(&op->pend_link)) {
  		fscache_stat(&fscache_n_op_cancelled);
  		list_del_init(&op->pend_link);
  		object->n_ops--;
  		if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags))
  			object->n_exclusive--;
  		if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags))
  			wake_up_bit(&op->flags, FSCACHE_OP_WAITING);
  		fscache_put_operation(op);
  		ret = 0;
  	}
  
  	spin_unlock(&object->lock);
  	_leave(" = %d", ret);
  	return ret;
  }
  
  /*
952efe7b7   David Howells   FS-Cache: Add and...
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
   * release an operation
   * - queues pending ops if this is the last in-progress op
   */
  void fscache_put_operation(struct fscache_operation *op)
  {
  	struct fscache_object *object;
  	struct fscache_cache *cache;
  
  	_enter("{OBJ%x OP%x,%d}",
  	       op->object->debug_id, op->debug_id, atomic_read(&op->usage));
  
  	ASSERTCMP(atomic_read(&op->usage), >, 0);
  
  	if (!atomic_dec_and_test(&op->usage))
  		return;
  
  	_debug("PUT OP");
  	if (test_and_set_bit(FSCACHE_OP_DEAD, &op->flags))
  		BUG();
  
  	fscache_stat(&fscache_n_op_release);
  
  	if (op->release) {
  		op->release(op);
  		op->release = NULL;
  	}
  
  	object = op->object;
4fbf4291a   David Howells   FS-Cache: Allow t...
339
340
  	if (test_bit(FSCACHE_OP_DEC_READ_CNT, &op->flags))
  		atomic_dec(&object->n_reads);
952efe7b7   David Howells   FS-Cache: Add and...
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
  	/* now... we may get called with the object spinlock held, so we
  	 * complete the cleanup here only if we can immediately acquire the
  	 * lock, and defer it otherwise */
  	if (!spin_trylock(&object->lock)) {
  		_debug("defer put");
  		fscache_stat(&fscache_n_op_deferred_release);
  
  		cache = object->cache;
  		spin_lock(&cache->op_gc_list_lock);
  		list_add_tail(&op->pend_link, &cache->op_gc_list);
  		spin_unlock(&cache->op_gc_list_lock);
  		schedule_work(&cache->op_gc);
  		_leave(" [defer]");
  		return;
  	}
  
  	if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags)) {
  		ASSERTCMP(object->n_exclusive, >, 0);
  		object->n_exclusive--;
  	}
  
  	ASSERTCMP(object->n_in_progress, >, 0);
  	object->n_in_progress--;
  	if (object->n_in_progress == 0)
  		fscache_start_operations(object);
  
  	ASSERTCMP(object->n_ops, >, 0);
  	object->n_ops--;
  	if (object->n_ops == 0)
  		fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
  
  	spin_unlock(&object->lock);
  
  	kfree(op);
  	_leave(" [done]");
  }
  EXPORT_SYMBOL(fscache_put_operation);
  
  /*
   * garbage collect operations that have had their release deferred
   */
  void fscache_operation_gc(struct work_struct *work)
  {
  	struct fscache_operation *op;
  	struct fscache_object *object;
  	struct fscache_cache *cache =
  		container_of(work, struct fscache_cache, op_gc);
  	int count = 0;
  
  	_enter("");
  
  	do {
  		spin_lock(&cache->op_gc_list_lock);
  		if (list_empty(&cache->op_gc_list)) {
  			spin_unlock(&cache->op_gc_list_lock);
  			break;
  		}
  
  		op = list_entry(cache->op_gc_list.next,
  				struct fscache_operation, pend_link);
  		list_del(&op->pend_link);
  		spin_unlock(&cache->op_gc_list_lock);
  
  		object = op->object;
  
  		_debug("GC DEFERRED REL OBJ%x OP%x",
  		       object->debug_id, op->debug_id);
  		fscache_stat(&fscache_n_op_gc);
  
  		ASSERTCMP(atomic_read(&op->usage), ==, 0);
  
  		spin_lock(&object->lock);
  		if (test_bit(FSCACHE_OP_EXCLUSIVE, &op->flags)) {
  			ASSERTCMP(object->n_exclusive, >, 0);
  			object->n_exclusive--;
  		}
  
  		ASSERTCMP(object->n_in_progress, >, 0);
  		object->n_in_progress--;
  		if (object->n_in_progress == 0)
  			fscache_start_operations(object);
  
  		ASSERTCMP(object->n_ops, >, 0);
  		object->n_ops--;
  		if (object->n_ops == 0)
  			fscache_raise_event(object, FSCACHE_OBJECT_EV_CLEARED);
  
  		spin_unlock(&object->lock);
  
  	} while (count++ < 20);
  
  	if (!list_empty(&cache->op_gc_list))
  		schedule_work(&cache->op_gc);
  
  	_leave("");
  }
  
  /*
8af7c1243   Tejun Heo   fscache: convert ...
439
440
   * execute an operation using fs_op_wq to provide processing context -
   * the caller holds a ref to this object, so we don't need to hold one
952efe7b7   David Howells   FS-Cache: Add and...
441
   */
8af7c1243   Tejun Heo   fscache: convert ...
442
  void fscache_op_work_func(struct work_struct *work)
952efe7b7   David Howells   FS-Cache: Add and...
443
444
  {
  	struct fscache_operation *op =
8af7c1243   Tejun Heo   fscache: convert ...
445
  		container_of(work, struct fscache_operation, work);
952efe7b7   David Howells   FS-Cache: Add and...
446
447
448
449
450
451
452
453
454
  	unsigned long start;
  
  	_enter("{OBJ%x OP%x,%d}",
  	       op->object->debug_id, op->debug_id, atomic_read(&op->usage));
  
  	ASSERT(op->processor != NULL);
  	start = jiffies;
  	op->processor(op);
  	fscache_hist(fscache_ops_histogram, start);
8af7c1243   Tejun Heo   fscache: convert ...
455
  	fscache_put_operation(op);
952efe7b7   David Howells   FS-Cache: Add and...
456
457
458
  
  	_leave("");
  }