Remove to stop wasting memory.
Signed-off-by: Joe Thornber <ejt@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
         */
        bool dirty:1;
        unsigned hit_count;
-       unsigned generation;
 };
 
 /*
        new_e->oblock = e->oblock;
        new_e->dirty = false;
        new_e->hit_count = e->hit_count;
-       new_e->generation = e->generation;
 
        del(mq, e);
        free_entry(&mq->pre_cache_pool, e);
        e->dirty = false;
        e->oblock = oblock;
        e->hit_count = 1;
-       e->generation = mq->generation;
        push(mq, e);
 }
 
        e->oblock = oblock;
        e->dirty = false;
        e->hit_count = 1;
-       e->generation = mq->generation;
        push(mq, e);
 
        result->cblock = infer_cblock(&mq->cache_pool, e);
        e->oblock = oblock;
        e->dirty = false;       /* this gets corrected in a minute */
        e->hit_count = hint_valid ? hint : 1;
-       e->generation = mq->generation;
        push(mq, e);
 
        return 0;