Lines Matching full:mt
19 struct maple_tree *mt = map->cache; in regcache_maple_read() local
20 MA_STATE(mas, mt, reg, reg); in regcache_maple_read()
41 struct maple_tree *mt = map->cache; in regcache_maple_write() local
42 MA_STATE(mas, mt, reg, reg); in regcache_maple_write()
110 struct maple_tree *mt = map->cache; in regcache_maple_drop() local
111 MA_STATE(mas, mt, min, max); in regcache_maple_drop()
241 struct maple_tree *mt = map->cache; in regcache_maple_sync() local
243 MA_STATE(mas, mt, min, max); in regcache_maple_sync()
295 struct maple_tree *mt; in regcache_maple_init() local
297 mt = kmalloc_obj(*mt, map->alloc_flags); in regcache_maple_init()
298 if (!mt) in regcache_maple_init()
300 map->cache = mt; in regcache_maple_init()
302 mt_init(mt); in regcache_maple_init()
304 if (!mt_external_lock(mt) && map->lock_key) in regcache_maple_init()
305 lockdep_set_class_and_subclass(&mt->ma_lock, map->lock_key, 1); in regcache_maple_init()
312 struct maple_tree *mt = map->cache; in regcache_maple_exit() local
313 MA_STATE(mas, mt, 0, UINT_MAX); in regcache_maple_exit()
317 if (!mt) in regcache_maple_exit()
323 __mt_destroy(mt); in regcache_maple_exit()
326 kfree(mt); in regcache_maple_exit()
335 struct maple_tree *mt = map->cache; in regcache_maple_insert_block() local
336 MA_STATE(mas, mt, first, last); in regcache_maple_insert_block()