xfs
[Top] [All Lists]

Re: [PATCH 3/5] ext4: Extent overlap bugfix

To: "Amit K. Arora" <aarora@xxxxxxxxxxxxxxxxxx>
Subject: Re: [PATCH 3/5] ext4: Extent overlap bugfix
From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Date: Thu, 3 May 2007 21:30:02 -0700
Cc: torvalds@xxxxxxxxxxxxxxxxxxxx, linux-fsdevel@xxxxxxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, linux-ext4@xxxxxxxxxxxxxxx, xfs@xxxxxxxxxxx, suparna@xxxxxxxxxx, cmm@xxxxxxxxxx
In-reply-to: <20070426181101.GC7209@xxxxxxxxxxxxxxxxxxxx>
References: <20070321120425.GA27273@xxxxxxxxxxxxxxxxxxxx> <20070329115126.GB7374@xxxxxxxxxxxxxxxxxxxx> <20070329101010.7a2b8783.akpm@xxxxxxxxxxxxxxxxxxxx> <20070330071417.GI355@xxxxxxxxxxxxxxxxxxxxxxxx> <20070417125514.GA7574@xxxxxxxxxxxxxxxxxxxx> <20070418130600.GW5967@xxxxxxxxxxxxxxxxxxxx> <20070420135146.GA21352@xxxxxxxxxxxxxxxxxxxx> <20070420145918.GY355@xxxxxxxxxxxxxxxxxxxxxxxx> <20070424121632.GA10136@xxxxxxxxxxxxxxxxxxxx> <20070426175056.GA25321@xxxxxxxxxxxxxxxxxxxx> <20070426181101.GC7209@xxxxxxxxxxxxxxxxxxxx>
Sender: xfs-bounce@xxxxxxxxxxx
On Thu, 26 Apr 2007 23:41:01 +0530 "Amit K. Arora" <aarora@xxxxxxxxxxxxxxxxxx> 
wrote:

> +unsigned int ext4_ext_check_overlap(struct inode *inode,
> +                                     struct ext4_extent *newext,
> +                                     struct ext4_ext_path *path)
> +{
> +     unsigned long b1, b2;
> +     unsigned int depth, len1;
> +
> +     b1 = le32_to_cpu(newext->ee_block);
> +     len1 = le16_to_cpu(newext->ee_len);
> +     depth = ext_depth(inode);
> +     if (!path[depth].p_ext)
> +             goto out;
> +     b2 = le32_to_cpu(path[depth].p_ext->ee_block);
> +
> +     /* get the next allocated block if the extent in the path
> +      * is before the requested block(s) */
> +     if (b2 < b1) {
> +             b2 = ext4_ext_next_allocated_block(path);
> +             if (b2 == EXT_MAX_BLOCK)
> +                     goto out;
> +     }
> +
> +     if (b1 + len1 > b2) {

Are we sure that b1+len cannot wrap through zero here?

> +             newext->ee_len = cpu_to_le16(b2 - b1);
> +             return 1;
> +     }


<Prev in Thread] Current Thread [Next in Thread>