From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1426700AbdD1VsL (ORCPT ); Fri, 28 Apr 2017 17:48:11 -0400 Received: from mail-oi0-f54.google.com ([209.85.218.54]:35403 "EHLO mail-oi0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422797AbdD1VsH (ORCPT ); Fri, 28 Apr 2017 17:48:07 -0400 MIME-Version: 1.0 In-Reply-To: <20170427225706.26791-1-toshi.kani@hpe.com> References: <20170427225706.26791-1-toshi.kani@hpe.com> From: Dan Williams Date: Fri, 28 Apr 2017 14:48:05 -0700 Message-ID: Subject: Re: [PATCH 1/2] libnvdimm: fix clear length of nvdimm_forget_poison() To: Toshi Kani Cc: Dave Jiang , Vishal L Verma , "linux-nvdimm@lists.01.org" , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Apr 27, 2017 at 3:57 PM, Toshi Kani wrote: > ND_CMD_CLEAR_ERROR command returns 'clear_err.cleared', the length > of error actually cleared, which may be smaller than its requested > 'len'. > > Change nvdimm_clear_poison() to call nvdimm_forget_poison() with > 'clear_err.cleared' when this value is valid. > > Signed-off-by: Toshi Kani > Cc: Dan Williams > Cc: Dave Jiang > Cc: Vishal Verma > --- > Based on 'libnvdimm-for-next'. > --- > drivers/nvdimm/bus.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c > index d214ac44..43ddfd4 100644 > --- a/drivers/nvdimm/bus.c > +++ b/drivers/nvdimm/bus.c > @@ -219,7 +219,9 @@ long nvdimm_clear_poison(struct device *dev, phys_addr_t phys, > if (cmd_rc < 0) > return cmd_rc; > > - nvdimm_forget_poison(nvdimm_bus, phys, len); > + if (clear_err.cleared > 0) > + nvdimm_forget_poison(nvdimm_bus, phys, clear_err.cleared); > + > return clear_err.cleared; Looks, good we need to mark this for -stable since the bug is also present in current mainline. Fixes: e046114af5fc ("libnvdimm: clear the internal poison_list when clearing badblocks")