diff options
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -465,20 +465,20 @@ static void cgit_fill_cache(struct cacheitem *item) | |||
465 | 465 | ||
466 | static void cgit_refresh_cache(struct cacheitem *item) | 466 | static void cgit_refresh_cache(struct cacheitem *item) |
467 | { | 467 | { |
468 | cache_prepare(item); | ||
468 | top: | 469 | top: |
469 | if (!cache_lookup(item)) { | 470 | if (!cache_exist(item)) { |
470 | if (cache_lock(item)) { | 471 | if (!cache_lock(item)) { |
471 | cgit_fill_cache(item); | ||
472 | cache_unlock(item); | ||
473 | } else { | ||
474 | sched_yield(); | 472 | sched_yield(); |
475 | goto top; | 473 | goto top; |
476 | } | 474 | } |
477 | } else if (cache_expired(item)) { | 475 | if (!cache_exist(item)) |
478 | if (cache_lock(item)) { | ||
479 | cgit_fill_cache(item); | 476 | cgit_fill_cache(item); |
480 | cache_unlock(item); | 477 | cache_unlock(item); |
481 | } | 478 | } else if (cache_expired(item) && cache_lock(item)) { |
479 | if (cache_expired(item)) | ||
480 | cgit_fill_cache(item); | ||
481 | cache_unlock(item); | ||
482 | } | 482 | } |
483 | } | 483 | } |
484 | 484 | ||