Home
last modified time | relevance | path

Searched refs:new_e (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/drivers/md/
Ddm-cache-policy-mq.c810 struct entry *new_e; in pre_cache_to_cache() local
824 new_e = alloc_entry(&mq->cache_pool); in pre_cache_to_cache()
825 BUG_ON(!new_e); in pre_cache_to_cache()
827 new_e->oblock = e->oblock; in pre_cache_to_cache()
828 new_e->dirty = false; in pre_cache_to_cache()
829 new_e->hit_count = e->hit_count; in pre_cache_to_cache()
833 push(mq, new_e); in pre_cache_to_cache()
835 result->cblock = infer_cblock(&mq->cache_pool, new_e); in pre_cache_to_cache()
Ddm-snap.c698 struct dm_exception *new_e) in dm_insert_exception() argument
703 l = &eh->table[exception_hash(eh, new_e->old_chunk)]; in dm_insert_exception()
712 if (new_e->old_chunk == (e->old_chunk + in dm_insert_exception()
714 new_e->new_chunk == (dm_chunk_number(e->new_chunk) + in dm_insert_exception()
717 free_completed_exception(new_e); in dm_insert_exception()
722 if (new_e->old_chunk == (e->old_chunk - 1) && in dm_insert_exception()
723 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) { in dm_insert_exception()
727 free_completed_exception(new_e); in dm_insert_exception()
731 if (new_e->old_chunk > e->old_chunk) in dm_insert_exception()
736 list_add(&new_e->hash_list, e ? &e->hash_list : l); in dm_insert_exception()
/linux-4.1.27/block/
Delevator.c892 static int elevator_switch(struct request_queue *q, struct elevator_type *new_e) in elevator_switch() argument
916 err = new_e->ops.elevator_init_fn(q, new_e); in elevator_switch()
930 blk_add_trace_msg(q, "elv switch: %s", new_e->elevator_name); in elevator_switch()