• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/

Lines Matching refs:el

296 	struct ocfs2_extent_list *el;
305 el = &eb->h_list;
307 if (el->l_tree_depth) {
316 next_free = le16_to_cpu(el->l_next_free_rec);
319 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0])))
328 * Return the 1st index within el which contains an extent start
331 static int ocfs2_search_for_hole_index(struct ocfs2_extent_list *el,
337 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
338 rec = &el->l_recs[i];
354 * If we have in-inode extents, then el points to the dinode list and
356 * containing el.
359 struct ocfs2_extent_list *el,
368 i = ocfs2_search_for_hole_index(el, v_cluster);
370 if (i == le16_to_cpu(el->l_next_free_rec) && eb_bh) {
389 el = &next_eb->h_list;
390 i = ocfs2_search_for_hole_index(el, v_cluster);
394 if (i == le16_to_cpu(el->l_next_free_rec)) {
402 *num_clusters = le32_to_cpu(el->l_recs[i].e_cpos) - v_cluster;
420 struct ocfs2_extent_list *el;
429 el = &di->id2.i_list;
430 tree_height = le16_to_cpu(el->l_tree_depth);
433 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, v_cluster,
441 el = &eb->h_list;
443 if (el->l_tree_depth) {
453 i = ocfs2_search_extent_list(el, v_cluster);
462 el, eb_bh,
474 rec = &el->l_recs[i];
482 ocfs2_rec_clusters(el, rec));
505 if (i == (le16_to_cpu(el->l_next_free_rec) - 1)) {
546 struct ocfs2_extent_list *el,
555 if (el->l_tree_depth) {
556 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, v_cluster,
564 el = &eb->h_list;
566 if (el->l_tree_depth) {
576 i = ocfs2_search_extent_list(el, v_cluster);
582 rec = &el->l_recs[i];
589 ocfs2_rec_clusters(el, rec));
598 *num_clusters = ocfs2_rec_clusters(el, rec) - coff;