On Tue, Jan 02, 2007 at 05:35:28PM -0800, Mingming Cao wrote: > > +struct ext4_extent * ext4_ext_check_overlap(struct inode *inode, > > + struct ext4_extent *newext) > > +{ > > + struct ext4_ext_path *path; > > + struct ext4_extent *ex; > > + unsigned int depth, b1, b2, len1; > > + > > + b1 = le32_to_cpu(newext->ee_block); > > + len1 = le16_to_cpu(newext->ee_len); > > + path = ext4_ext_find_extent(inode, b1, NULL); > > + if (IS_ERR(path)) > > + return NULL; > > + > > + depth = ext_depth(inode); > > + ex = path[depth].p_ext; > > + if (!ex) > > + return NULL; > > + > > I am confused, when we come here, isn't we confirmed that we need block > allocation, thus there is no extent start from b1? Yes, we are sure here that there is no extent which covers b1 block. Since I couldn't find a direct way to get the next extent (extent on the right from the "would be" position of the new extent in the tree), we make a call to ext4_ext_find_extent() to get the extent on the left, and then use this to call ext4_ext_next_allocated_block() to get the logical block number (LBN) of the "next" extent in the tree. This LBN is compared with the LBN of the new extent plus its length, to detect an overlap. > > > + b2 = ext4_ext_next_allocated_block(path); > > + if (b2 == EXT_MAX_BLOCK) > > + > > return NULL; > > + path = ext4_ext_find_extent(inode, b2, path); > > + if (IS_ERR(path)) > > + return NULL; > > + BUG_ON(path[depth].p_hdr == NULL); > > + ex = path[depth].p_ext; > > + > > How useful to have the next extent pointer?It seems only used to print > out warning messages. I am a little concerned about the expensive > ext4_ext_find_extent(). After all ext4_ext_next_allocated_block() > already returns the start block of next extent, isn't it? Ok, agreed. Will get rid of this extra code. -- Regards, Amit Arora - To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html