From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Schmidt Date: Wed, 16 Nov 2011 16:56:29 +0000 Subject: Re: [patch] btrfs scrub: handle -ENOMEM from init_ipath() Message-Id: <4EC3EB3D.4030601@jan-o-sch.net> List-Id: References: <20111116082801.GE10264@elgon.mountain> In-Reply-To: <20111116082801.GE10264@elgon.mountain> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Dan Carpenter Cc: linux-btrfs , Chris Mason , kernel-janitors@vger.kernel.org On 16.11.2011 09:28, Dan Carpenter wrote: > init_ipath() can return an ERR_PTR(-ENOMEM). > > Signed-off-by: Dan Carpenter Signed-off-by: Jan Schmidt Thanks, -Jan > diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c > index ed11d38..b72ee47 100644 > --- a/fs/btrfs/scrub.c > +++ b/fs/btrfs/scrub.c > @@ -256,6 +256,11 @@ static int scrub_print_warning_inode(u64 inum, u64 offset, u64 root, void *ctx) > btrfs_release_path(swarn->path); > > ipath = init_ipath(4096, local_root, swarn->path); > + if (IS_ERR(ipath)) { > + ret = PTR_ERR(ipath); > + ipath = NULL; > + goto err; > + } > ret = paths_from_inode(inum, ipath); > > if (ret < 0) > -- > To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html