aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 16:39:11 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 16:39:11 -0500
commit9228ff90387e276ad67b10c0eb525c9d6a57d5e9 (patch)
treee7c87b68daba7cf7ca4c342c6b52165bd78fbe16 /lib
parent9360b53661a2c7754517b2925580055bacc8ec38 (diff)
parentd2ec180c23a5a1bfe34d8638b0342a47c00cf70f (diff)
Merge branch 'for-3.8/drivers' of git://git.kernel.dk/linux-block
Pull block driver update from Jens Axboe: "Now that the core bits are in, here are the driver bits for 3.8. The branch contains: - A huge pile of drbd bits that were dumped from the 3.7 merge window. Following that, it was both made perfectly clear that there is going to be no more over-the-wall pulls and how the situation on individual pulls can be improved. - A few cleanups from Akinobu Mita for drbd and cciss. - Queue improvement for loop from Lukas. This grew into adding a generic interface for waiting/checking an even with a specific lock, allowing this to be pulled out of md and now loop and drbd is also using it. - A few fixes for xen back/front block driver from Roger Pau Monne. - Partition improvements from Stephen Warren, allowing partiion UUID to be used as an identifier." * 'for-3.8/drivers' of git://git.kernel.dk/linux-block: (609 commits) drbd: update Kconfig to match current dependencies drbd: Fix drbdsetup wait-connect, wait-sync etc... commands drbd: close race between drbd_set_role and drbd_connect drbd: respect no-md-barriers setting also when changed online via disk-options drbd: Remove obsolete check drbd: fixup after wait_even_lock_irq() addition to generic code loop: Limit the number of requests in the bio list wait: add wait_event_lock_irq() interface xen-blkfront: free allocated page xen-blkback: move free persistent grants code block: partition: msdos: provide UUIDs for partitions init: reduce PARTUUID min length to 1 from 36 block: store partition_meta_info.uuid as a string cciss: use check_signature() cciss: cleanup bitops usage drbd: use copy_highpage drbd: if the replication link breaks during handshake, keep retrying drbd: check return of kmalloc in receive_uuids drbd: Broadcast sync progress no more often than once per second drbd: don't try to clear bits once the disk has failed ...
Diffstat (limited to 'lib')
-rw-r--r--lib/lru_cache.c359
1 files changed, 225 insertions, 134 deletions
diff --git a/lib/lru_cache.c b/lib/lru_cache.c
index a07e7268d7ed..d71d89498943 100644
--- a/lib/lru_cache.c
+++ b/lib/lru_cache.c
@@ -44,8 +44,8 @@ MODULE_LICENSE("GPL");
44} while (0) 44} while (0)
45 45
46#define RETURN(x...) do { \ 46#define RETURN(x...) do { \
47 clear_bit(__LC_PARANOIA, &lc->flags); \ 47 clear_bit_unlock(__LC_PARANOIA, &lc->flags); \
48 smp_mb__after_clear_bit(); return x ; } while (0) 48 return x ; } while (0)
49 49
50/* BUG() if e is not one of the elements tracked by lc */ 50/* BUG() if e is not one of the elements tracked by lc */
51#define PARANOIA_LC_ELEMENT(lc, e) do { \ 51#define PARANOIA_LC_ELEMENT(lc, e) do { \
@@ -55,9 +55,40 @@ MODULE_LICENSE("GPL");
55 BUG_ON(i >= lc_->nr_elements); \ 55 BUG_ON(i >= lc_->nr_elements); \
56 BUG_ON(lc_->lc_element[i] != e_); } while (0) 56 BUG_ON(lc_->lc_element[i] != e_); } while (0)
57 57
58
59/* We need to atomically
60 * - try to grab the lock (set LC_LOCKED)
61 * - only if there is no pending transaction
62 * (neither LC_DIRTY nor LC_STARVING is set)
63 * Because of PARANOIA_ENTRY() above abusing lc->flags as well,
64 * it is not sufficient to just say
65 * return 0 == cmpxchg(&lc->flags, 0, LC_LOCKED);
66 */
67int lc_try_lock(struct lru_cache *lc)
68{
69 unsigned long val;
70 do {
71 val = cmpxchg(&lc->flags, 0, LC_LOCKED);
72 } while (unlikely (val == LC_PARANOIA));
73 /* Spin until no-one is inside a PARANOIA_ENTRY()/RETURN() section. */
74 return 0 == val;
75#if 0
76 /* Alternative approach, spin in case someone enters or leaves a
77 * PARANOIA_ENTRY()/RETURN() section. */
78 unsigned long old, new, val;
79 do {
80 old = lc->flags & LC_PARANOIA;
81 new = old | LC_LOCKED;
82 val = cmpxchg(&lc->flags, old, new);
83 } while (unlikely (val == (old ^ LC_PARANOIA)));
84 return old == val;
85#endif
86}
87
58/** 88/**
59 * lc_create - prepares to track objects in an active set 89 * lc_create - prepares to track objects in an active set
60 * @name: descriptive name only used in lc_seq_printf_stats and lc_seq_dump_details 90 * @name: descriptive name only used in lc_seq_printf_stats and lc_seq_dump_details
91 * @max_pending_changes: maximum changes to accumulate until a transaction is required
61 * @e_count: number of elements allowed to be active simultaneously 92 * @e_count: number of elements allowed to be active simultaneously
62 * @e_size: size of the tracked objects 93 * @e_size: size of the tracked objects
63 * @e_off: offset to the &struct lc_element member in a tracked object 94 * @e_off: offset to the &struct lc_element member in a tracked object
@@ -66,6 +97,7 @@ MODULE_LICENSE("GPL");
66 * or NULL on (allocation) failure. 97 * or NULL on (allocation) failure.
67 */ 98 */
68struct lru_cache *lc_create(const char *name, struct kmem_cache *cache, 99struct lru_cache *lc_create(const char *name, struct kmem_cache *cache,
100 unsigned max_pending_changes,
69 unsigned e_count, size_t e_size, size_t e_off) 101 unsigned e_count, size_t e_size, size_t e_off)
70{ 102{
71 struct hlist_head *slot = NULL; 103 struct hlist_head *slot = NULL;
@@ -98,12 +130,13 @@ struct lru_cache *lc_create(const char *name, struct kmem_cache *cache,
98 INIT_LIST_HEAD(&lc->in_use); 130 INIT_LIST_HEAD(&lc->in_use);
99 INIT_LIST_HEAD(&lc->lru); 131 INIT_LIST_HEAD(&lc->lru);
100 INIT_LIST_HEAD(&lc->free); 132 INIT_LIST_HEAD(&lc->free);
133 INIT_LIST_HEAD(&lc->to_be_changed);
101 134
102 lc->name = name; 135 lc->name = name;
103 lc->element_size = e_size; 136 lc->element_size = e_size;
104 lc->element_off = e_off; 137 lc->element_off = e_off;
105 lc->nr_elements = e_count; 138 lc->nr_elements = e_count;
106 lc->new_number = LC_FREE; 139 lc->max_pending_changes = max_pending_changes;
107 lc->lc_cache = cache; 140 lc->lc_cache = cache;
108 lc->lc_element = element; 141 lc->lc_element = element;
109 lc->lc_slot = slot; 142 lc->lc_slot = slot;
@@ -117,6 +150,7 @@ struct lru_cache *lc_create(const char *name, struct kmem_cache *cache,
117 e = p + e_off; 150 e = p + e_off;
118 e->lc_index = i; 151 e->lc_index = i;
119 e->lc_number = LC_FREE; 152 e->lc_number = LC_FREE;
153 e->lc_new_number = LC_FREE;
120 list_add(&e->list, &lc->free); 154 list_add(&e->list, &lc->free);
121 element[i] = e; 155 element[i] = e;
122 } 156 }
@@ -175,15 +209,15 @@ void lc_reset(struct lru_cache *lc)
175 INIT_LIST_HEAD(&lc->in_use); 209 INIT_LIST_HEAD(&lc->in_use);
176 INIT_LIST_HEAD(&lc->lru); 210 INIT_LIST_HEAD(&lc->lru);
177 INIT_LIST_HEAD(&lc->free); 211 INIT_LIST_HEAD(&lc->free);
212 INIT_LIST_HEAD(&lc->to_be_changed);
178 lc->used = 0; 213 lc->used = 0;
179 lc->hits = 0; 214 lc->hits = 0;
180 lc->misses = 0; 215 lc->misses = 0;
181 lc->starving = 0; 216 lc->starving = 0;
182 lc->dirty = 0; 217 lc->locked = 0;
183 lc->changed = 0; 218 lc->changed = 0;
219 lc->pending_changes = 0;
184 lc->flags = 0; 220 lc->flags = 0;
185 lc->changing_element = NULL;
186 lc->new_number = LC_FREE;
187 memset(lc->lc_slot, 0, sizeof(struct hlist_head) * lc->nr_elements); 221 memset(lc->lc_slot, 0, sizeof(struct hlist_head) * lc->nr_elements);
188 222
189 for (i = 0; i < lc->nr_elements; i++) { 223 for (i = 0; i < lc->nr_elements; i++) {
@@ -194,6 +228,7 @@ void lc_reset(struct lru_cache *lc)
194 /* re-init it */ 228 /* re-init it */
195 e->lc_index = i; 229 e->lc_index = i;
196 e->lc_number = LC_FREE; 230 e->lc_number = LC_FREE;
231 e->lc_new_number = LC_FREE;
197 list_add(&e->list, &lc->free); 232 list_add(&e->list, &lc->free);
198 } 233 }
199} 234}
@@ -208,14 +243,14 @@ size_t lc_seq_printf_stats(struct seq_file *seq, struct lru_cache *lc)
208 /* NOTE: 243 /* NOTE:
209 * total calls to lc_get are 244 * total calls to lc_get are
210 * (starving + hits + misses) 245 * (starving + hits + misses)
211 * misses include "dirty" count (update from an other thread in 246 * misses include "locked" count (update from an other thread in
212 * progress) and "changed", when this in fact lead to an successful 247 * progress) and "changed", when this in fact lead to an successful
213 * update of the cache. 248 * update of the cache.
214 */ 249 */
215 return seq_printf(seq, "\t%s: used:%u/%u " 250 return seq_printf(seq, "\t%s: used:%u/%u "
216 "hits:%lu misses:%lu starving:%lu dirty:%lu changed:%lu\n", 251 "hits:%lu misses:%lu starving:%lu locked:%lu changed:%lu\n",
217 lc->name, lc->used, lc->nr_elements, 252 lc->name, lc->used, lc->nr_elements,
218 lc->hits, lc->misses, lc->starving, lc->dirty, lc->changed); 253 lc->hits, lc->misses, lc->starving, lc->locked, lc->changed);
219} 254}
220 255
221static struct hlist_head *lc_hash_slot(struct lru_cache *lc, unsigned int enr) 256static struct hlist_head *lc_hash_slot(struct lru_cache *lc, unsigned int enr)
@@ -224,16 +259,8 @@ static struct hlist_head *lc_hash_slot(struct lru_cache *lc, unsigned int enr)
224} 259}
225 260
226 261
227/** 262static struct lc_element *__lc_find(struct lru_cache *lc, unsigned int enr,
228 * lc_find - find element by label, if present in the hash table 263 bool include_changing)
229 * @lc: The lru_cache object
230 * @enr: element number
231 *
232 * Returns the pointer to an element, if the element with the requested
233 * "label" or element number is present in the hash table,
234 * or NULL if not found. Does not change the refcnt.
235 */
236struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr)
237{ 264{
238 struct hlist_node *n; 265 struct hlist_node *n;
239 struct lc_element *e; 266 struct lc_element *e;
@@ -241,29 +268,48 @@ struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr)
241 BUG_ON(!lc); 268 BUG_ON(!lc);
242 BUG_ON(!lc->nr_elements); 269 BUG_ON(!lc->nr_elements);
243 hlist_for_each_entry(e, n, lc_hash_slot(lc, enr), colision) { 270 hlist_for_each_entry(e, n, lc_hash_slot(lc, enr), colision) {
244 if (e->lc_number == enr) 271 /* "about to be changed" elements, pending transaction commit,
272 * are hashed by their "new number". "Normal" elements have
273 * lc_number == lc_new_number. */
274 if (e->lc_new_number != enr)
275 continue;
276 if (e->lc_new_number == e->lc_number || include_changing)
245 return e; 277 return e;
278 break;
246 } 279 }
247 return NULL; 280 return NULL;
248} 281}
249 282
250/* returned element will be "recycled" immediately */ 283/**
251static struct lc_element *lc_evict(struct lru_cache *lc) 284 * lc_find - find element by label, if present in the hash table
285 * @lc: The lru_cache object
286 * @enr: element number
287 *
288 * Returns the pointer to an element, if the element with the requested
289 * "label" or element number is present in the hash table,
290 * or NULL if not found. Does not change the refcnt.
291 * Ignores elements that are "about to be used", i.e. not yet in the active
292 * set, but still pending transaction commit.
293 */
294struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr)
252{ 295{
253 struct list_head *n; 296 return __lc_find(lc, enr, 0);
254 struct lc_element *e; 297}
255
256 if (list_empty(&lc->lru))
257 return NULL;
258
259 n = lc->lru.prev;
260 e = list_entry(n, struct lc_element, list);
261
262 PARANOIA_LC_ELEMENT(lc, e);
263 298
264 list_del(&e->list); 299/**
265 hlist_del(&e->colision); 300 * lc_is_used - find element by label
266 return e; 301 * @lc: The lru_cache object
302 * @enr: element number
303 *
304 * Returns true, if the element with the requested "label" or element number is
305 * present in the hash table, and is used (refcnt > 0).
306 * Also finds elements that are not _currently_ used but only "about to be
307 * used", i.e. on the "to_be_changed" list, pending transaction commit.
308 */
309bool lc_is_used(struct lru_cache *lc, unsigned int enr)
310{
311 struct lc_element *e = __lc_find(lc, enr, 1);
312 return e && e->refcnt;
267} 313}
268 314
269/** 315/**
@@ -280,22 +326,34 @@ void lc_del(struct lru_cache *lc, struct lc_element *e)
280 PARANOIA_LC_ELEMENT(lc, e); 326 PARANOIA_LC_ELEMENT(lc, e);
281 BUG_ON(e->refcnt); 327 BUG_ON(e->refcnt);
282 328
283 e->lc_number = LC_FREE; 329 e->lc_number = e->lc_new_number = LC_FREE;
284 hlist_del_init(&e->colision); 330 hlist_del_init(&e->colision);
285 list_move(&e->list, &lc->free); 331 list_move(&e->list, &lc->free);
286 RETURN(); 332 RETURN();
287} 333}
288 334
289static struct lc_element *lc_get_unused_element(struct lru_cache *lc) 335static struct lc_element *lc_prepare_for_change(struct lru_cache *lc, unsigned new_number)
290{ 336{
291 struct list_head *n; 337 struct list_head *n;
338 struct lc_element *e;
339
340 if (!list_empty(&lc->free))
341 n = lc->free.next;
342 else if (!list_empty(&lc->lru))
343 n = lc->lru.prev;
344 else
345 return NULL;
346
347 e = list_entry(n, struct lc_element, list);
348 PARANOIA_LC_ELEMENT(lc, e);
292 349
293 if (list_empty(&lc->free)) 350 e->lc_new_number = new_number;
294 return lc_evict(lc); 351 if (!hlist_unhashed(&e->colision))
352 __hlist_del(&e->colision);
353 hlist_add_head(&e->colision, lc_hash_slot(lc, new_number));
354 list_move(&e->list, &lc->to_be_changed);
295 355
296 n = lc->free.next; 356 return e;
297 list_del(n);
298 return list_entry(n, struct lc_element, list);
299} 357}
300 358
301static int lc_unused_element_available(struct lru_cache *lc) 359static int lc_unused_element_available(struct lru_cache *lc)
@@ -308,45 +366,7 @@ static int lc_unused_element_available(struct lru_cache *lc)
308 return 0; 366 return 0;
309} 367}
310 368
311 369static struct lc_element *__lc_get(struct lru_cache *lc, unsigned int enr, bool may_change)
312/**
313 * lc_get - get element by label, maybe change the active set
314 * @lc: the lru cache to operate on
315 * @enr: the label to look up
316 *
317 * Finds an element in the cache, increases its usage count,
318 * "touches" and returns it.
319 *
320 * In case the requested number is not present, it needs to be added to the
321 * cache. Therefore it is possible that an other element becomes evicted from
322 * the cache. In either case, the user is notified so he is able to e.g. keep
323 * a persistent log of the cache changes, and therefore the objects in use.
324 *
325 * Return values:
326 * NULL
327 * The cache was marked %LC_STARVING,
328 * or the requested label was not in the active set
329 * and a changing transaction is still pending (@lc was marked %LC_DIRTY).
330 * Or no unused or free element could be recycled (@lc will be marked as
331 * %LC_STARVING, blocking further lc_get() operations).
332 *
333 * pointer to the element with the REQUESTED element number.
334 * In this case, it can be used right away
335 *
336 * pointer to an UNUSED element with some different element number,
337 * where that different number may also be %LC_FREE.
338 *
339 * In this case, the cache is marked %LC_DIRTY (blocking further changes),
340 * and the returned element pointer is removed from the lru list and
341 * hash collision chains. The user now should do whatever housekeeping
342 * is necessary.
343 * Then he must call lc_changed(lc,element_pointer), to finish
344 * the change.
345 *
346 * NOTE: The user needs to check the lc_number on EACH use, so he recognizes
347 * any cache set change.
348 */
349struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
350{ 370{
351 struct lc_element *e; 371 struct lc_element *e;
352 372
@@ -356,8 +376,12 @@ struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
356 RETURN(NULL); 376 RETURN(NULL);
357 } 377 }
358 378
359 e = lc_find(lc, enr); 379 e = __lc_find(lc, enr, 1);
360 if (e) { 380 /* if lc_new_number != lc_number,
381 * this enr is currently being pulled in already,
382 * and will be available once the pending transaction
383 * has been committed. */
384 if (e && e->lc_new_number == e->lc_number) {
361 ++lc->hits; 385 ++lc->hits;
362 if (e->refcnt++ == 0) 386 if (e->refcnt++ == 0)
363 lc->used++; 387 lc->used++;
@@ -366,6 +390,26 @@ struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
366 } 390 }
367 391
368 ++lc->misses; 392 ++lc->misses;
393 if (!may_change)
394 RETURN(NULL);
395
396 /* It has been found above, but on the "to_be_changed" list, not yet
397 * committed. Don't pull it in twice, wait for the transaction, then
398 * try again */
399 if (e)
400 RETURN(NULL);
401
402 /* To avoid races with lc_try_lock(), first, mark us dirty
403 * (using test_and_set_bit, as it implies memory barriers), ... */
404 test_and_set_bit(__LC_DIRTY, &lc->flags);
405
406 /* ... only then check if it is locked anyways. If lc_unlock clears
407 * the dirty bit again, that's not a problem, we will come here again.
408 */
409 if (test_bit(__LC_LOCKED, &lc->flags)) {
410 ++lc->locked;
411 RETURN(NULL);
412 }
369 413
370 /* In case there is nothing available and we can not kick out 414 /* In case there is nothing available and we can not kick out
371 * the LRU element, we have to wait ... 415 * the LRU element, we have to wait ...
@@ -375,71 +419,109 @@ struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
375 RETURN(NULL); 419 RETURN(NULL);
376 } 420 }
377 421
378 /* it was not present in the active set. 422 /* It was not present in the active set. We are going to recycle an
379 * we are going to recycle an unused (or even "free") element. 423 * unused (or even "free") element, but we won't accumulate more than
380 * user may need to commit a transaction to record that change. 424 * max_pending_changes changes. */
381 * we serialize on flags & TF_DIRTY */ 425 if (lc->pending_changes >= lc->max_pending_changes)
382 if (test_and_set_bit(__LC_DIRTY, &lc->flags)) {
383 ++lc->dirty;
384 RETURN(NULL); 426 RETURN(NULL);
385 }
386 427
387 e = lc_get_unused_element(lc); 428 e = lc_prepare_for_change(lc, enr);
388 BUG_ON(!e); 429 BUG_ON(!e);
389 430
390 clear_bit(__LC_STARVING, &lc->flags); 431 clear_bit(__LC_STARVING, &lc->flags);
391 BUG_ON(++e->refcnt != 1); 432 BUG_ON(++e->refcnt != 1);
392 lc->used++; 433 lc->used++;
393 434 lc->pending_changes++;
394 lc->changing_element = e;
395 lc->new_number = enr;
396 435
397 RETURN(e); 436 RETURN(e);
398} 437}
399 438
400/* similar to lc_get, 439/**
401 * but only gets a new reference on an existing element. 440 * lc_get - get element by label, maybe change the active set
402 * you either get the requested element, or NULL. 441 * @lc: the lru cache to operate on
403 * will be consolidated into one function. 442 * @enr: the label to look up
443 *
444 * Finds an element in the cache, increases its usage count,
445 * "touches" and returns it.
446 *
447 * In case the requested number is not present, it needs to be added to the
448 * cache. Therefore it is possible that an other element becomes evicted from
449 * the cache. In either case, the user is notified so he is able to e.g. keep
450 * a persistent log of the cache changes, and therefore the objects in use.
451 *
452 * Return values:
453 * NULL
454 * The cache was marked %LC_STARVING,
455 * or the requested label was not in the active set
456 * and a changing transaction is still pending (@lc was marked %LC_DIRTY).
457 * Or no unused or free element could be recycled (@lc will be marked as
458 * %LC_STARVING, blocking further lc_get() operations).
459 *
460 * pointer to the element with the REQUESTED element number.
461 * In this case, it can be used right away
462 *
463 * pointer to an UNUSED element with some different element number,
464 * where that different number may also be %LC_FREE.
465 *
466 * In this case, the cache is marked %LC_DIRTY,
467 * so lc_try_lock() will no longer succeed.
468 * The returned element pointer is moved to the "to_be_changed" list,
469 * and registered with the new element number on the hash collision chains,
470 * so it is possible to pick it up from lc_is_used().
471 * Up to "max_pending_changes" (see lc_create()) can be accumulated.
472 * The user now should do whatever housekeeping is necessary,
473 * typically serialize on lc_try_lock_for_transaction(), then call
474 * lc_committed(lc) and lc_unlock(), to finish the change.
475 *
476 * NOTE: The user needs to check the lc_number on EACH use, so he recognizes
477 * any cache set change.
404 */ 478 */
405struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr) 479struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
406{ 480{
407 struct lc_element *e; 481 return __lc_get(lc, enr, 1);
408 482}
409 PARANOIA_ENTRY();
410 if (lc->flags & LC_STARVING) {
411 ++lc->starving;
412 RETURN(NULL);
413 }
414 483
415 e = lc_find(lc, enr); 484/**
416 if (e) { 485 * lc_try_get - get element by label, if present; do not change the active set
417 ++lc->hits; 486 * @lc: the lru cache to operate on
418 if (e->refcnt++ == 0) 487 * @enr: the label to look up
419 lc->used++; 488 *
420 list_move(&e->list, &lc->in_use); /* Not evictable... */ 489 * Finds an element in the cache, increases its usage count,
421 } 490 * "touches" and returns it.
422 RETURN(e); 491 *
492 * Return values:
493 * NULL
494 * The cache was marked %LC_STARVING,
495 * or the requested label was not in the active set
496 *
497 * pointer to the element with the REQUESTED element number.
498 * In this case, it can be used right away
499 */
500struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr)
501{
502 return __lc_get(lc, enr, 0);
423} 503}
424 504
425/** 505/**
426 * lc_changed - tell @lc that the change has been recorded 506 * lc_committed - tell @lc that pending changes have been recorded
427 * @lc: the lru cache to operate on 507 * @lc: the lru cache to operate on
428 * @e: the element pending label change 508 *
509 * User is expected to serialize on explicit lc_try_lock_for_transaction()
510 * before the transaction is started, and later needs to lc_unlock() explicitly
511 * as well.
429 */ 512 */
430void lc_changed(struct lru_cache *lc, struct lc_element *e) 513void lc_committed(struct lru_cache *lc)
431{ 514{
515 struct lc_element *e, *tmp;
516
432 PARANOIA_ENTRY(); 517 PARANOIA_ENTRY();
433 BUG_ON(e != lc->changing_element); 518 list_for_each_entry_safe(e, tmp, &lc->to_be_changed, list) {
434 PARANOIA_LC_ELEMENT(lc, e); 519 /* count number of changes, not number of transactions */
435 ++lc->changed; 520 ++lc->changed;
436 e->lc_number = lc->new_number; 521 e->lc_number = e->lc_new_number;
437 list_add(&e->list, &lc->in_use); 522 list_move(&e->list, &lc->in_use);
438 hlist_add_head(&e->colision, lc_hash_slot(lc, lc->new_number)); 523 }
439 lc->changing_element = NULL; 524 lc->pending_changes = 0;
440 lc->new_number = LC_FREE;
441 clear_bit(__LC_DIRTY, &lc->flags);
442 smp_mb__after_clear_bit();
443 RETURN(); 525 RETURN();
444} 526}
445 527
@@ -458,13 +540,12 @@ unsigned int lc_put(struct lru_cache *lc, struct lc_element *e)
458 PARANOIA_ENTRY(); 540 PARANOIA_ENTRY();
459 PARANOIA_LC_ELEMENT(lc, e); 541 PARANOIA_LC_ELEMENT(lc, e);
460 BUG_ON(e->refcnt == 0); 542 BUG_ON(e->refcnt == 0);
461 BUG_ON(e == lc->changing_element); 543 BUG_ON(e->lc_number != e->lc_new_number);
462 if (--e->refcnt == 0) { 544 if (--e->refcnt == 0) {
463 /* move it to the front of LRU. */ 545 /* move it to the front of LRU. */
464 list_move(&e->list, &lc->lru); 546 list_move(&e->list, &lc->lru);
465 lc->used--; 547 lc->used--;
466 clear_bit(__LC_STARVING, &lc->flags); 548 clear_bit_unlock(__LC_STARVING, &lc->flags);
467 smp_mb__after_clear_bit();
468 } 549 }
469 RETURN(e->refcnt); 550 RETURN(e->refcnt);
470} 551}
@@ -504,16 +585,24 @@ unsigned int lc_index_of(struct lru_cache *lc, struct lc_element *e)
504void lc_set(struct lru_cache *lc, unsigned int enr, int index) 585void lc_set(struct lru_cache *lc, unsigned int enr, int index)
505{ 586{
506 struct lc_element *e; 587 struct lc_element *e;
588 struct list_head *lh;
507 589
508 if (index < 0 || index >= lc->nr_elements) 590 if (index < 0 || index >= lc->nr_elements)
509 return; 591 return;
510 592
511 e = lc_element_by_index(lc, index); 593 e = lc_element_by_index(lc, index);
512 e->lc_number = enr; 594 BUG_ON(e->lc_number != e->lc_new_number);
595 BUG_ON(e->refcnt != 0);
513 596
597 e->lc_number = e->lc_new_number = enr;
514 hlist_del_init(&e->colision); 598 hlist_del_init(&e->colision);
515 hlist_add_head(&e->colision, lc_hash_slot(lc, enr)); 599 if (enr == LC_FREE)
516 list_move(&e->list, e->refcnt ? &lc->in_use : &lc->lru); 600 lh = &lc->free;
601 else {
602 hlist_add_head(&e->colision, lc_hash_slot(lc, enr));
603 lh = &lc->lru;
604 }
605 list_move(&e->list, lh);
517} 606}
518 607
519/** 608/**
@@ -553,8 +642,10 @@ EXPORT_SYMBOL(lc_try_get);
553EXPORT_SYMBOL(lc_find); 642EXPORT_SYMBOL(lc_find);
554EXPORT_SYMBOL(lc_get); 643EXPORT_SYMBOL(lc_get);
555EXPORT_SYMBOL(lc_put); 644EXPORT_SYMBOL(lc_put);
556EXPORT_SYMBOL(lc_changed); 645EXPORT_SYMBOL(lc_committed);
557EXPORT_SYMBOL(lc_element_by_index); 646EXPORT_SYMBOL(lc_element_by_index);
558EXPORT_SYMBOL(lc_index_of); 647EXPORT_SYMBOL(lc_index_of);
559EXPORT_SYMBOL(lc_seq_printf_stats); 648EXPORT_SYMBOL(lc_seq_printf_stats);
560EXPORT_SYMBOL(lc_seq_dump_details); 649EXPORT_SYMBOL(lc_seq_dump_details);
650EXPORT_SYMBOL(lc_try_lock);
651EXPORT_SYMBOL(lc_is_used);