Lines Matching refs:e3
365 struct e_node *e, *e3;
395 e3 = rb_entry(n3, struct e_node, start.node);
396 if (e3->start.key >= end_in)
399 if (e3->count.key == wnd->extent_max)
402 end3 = e3->start.key + e3->count.key;
404 e3->start.key = end_in;
405 rb_erase(&e3->count.node, &wnd->count_tree);
406 e3->count.key = end3 - end_in;
407 rb_insert_count(&wnd->count_tree, e3);
412 rb_erase(&e3->start.node, &wnd->start_tree);
413 rb_erase(&e3->count.node, &wnd->count_tree);
415 kmem_cache_free(ntfs_enode_cachep, e3);
436 e3 = rb_entry(n3, struct e_node, count.node);
437 wnd->extent_max = max(e3->count.key, max_new_len);