This seems redundant:
store_swapout.c:131
    /*
     * Grab the swapout_size and check to see whether we're going to defer
     * the swapout based upon size
     */
    swapout_size = (ssize_t) (mem->inmem_hi - mem->swapout.queue_offset);
    if ((e->store_status != STORE_OK) && (swapout_size < store_maxobjsize)) {
        debug(20, 5) ("storeSwapOut: Deferring starting swapping out\n");
        return;
    }
store_swapout.c:196
    /* 
     * Don't start swapping out until its either all in memory, or bigger
     * than the maximum object size (so we pick a -1 maxobjsize fs)
     */
    if ((e->store_status != STORE_OK) && (swapout_size < store_maxobjsize)) {
        debug(20, 5) ("storeSwapOut: Deferring starting swapping out\n");
        return;
    }
Received on Tue May 30 2000 - 22:30:40 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:12:26 MST