Lines Matching refs:mtype
665 struct memory_dev_type *mtype; in mt_find_alloc_memory_type() local
667 list_for_each_entry(mtype, memory_types, list) in mt_find_alloc_memory_type()
668 if (mtype->adistance == adist) in mt_find_alloc_memory_type()
669 return mtype; in mt_find_alloc_memory_type()
671 mtype = alloc_memory_type(adist); in mt_find_alloc_memory_type()
672 if (IS_ERR(mtype)) in mt_find_alloc_memory_type()
673 return mtype; in mt_find_alloc_memory_type()
675 list_add(&mtype->list, memory_types); in mt_find_alloc_memory_type()
677 return mtype; in mt_find_alloc_memory_type()
683 struct memory_dev_type *mtype, *mtn; in mt_put_memory_types() local
685 list_for_each_entry_safe(mtype, mtn, memory_types, list) { in mt_put_memory_types()
686 list_del(&mtype->list); in mt_put_memory_types()
687 put_memory_type(mtype); in mt_put_memory_types()