Sun Oct 17 01:24:35 CEST 1999 Modified Files in squid/src store.c Don't lock cache_mem memory during on-disk cache rebuild. There is no reason to lock objects in memory during this. ----------------------------------------------------------------- Index: squid/src/store.c diff -u squid/src/store.c:1.1.1.39.2.5 squid/src/store.c:1.1.1.39.2.6 --- squid/src/store.c:1.1.1.39.2.5 Wed Aug 4 22:33:23 1999 +++ squid/src/store.c Sun Oct 17 01:24:34 1999 @@ -670,8 +670,10 @@ pages_needed = (size / SM_PAGE_SIZE) + 1; if (memInUse(MEM_STMEM_BUF) + pages_needed < store_pages_max) return; +#if DONT_DO_THIS_HERE if (store_rebuilding) return; +#endif debug(20, 2) ("storeGetMemSpace: Starting, need %d pages\n", pages_needed); head = inmem_list.head; for (m = inmem_list.tail; m; m = prev) {