From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.codeaurora.org ([198.145.11.231]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XxcUX-0000VL-Ke for linux-mtd@lists.infradead.org; Sun, 07 Dec 2014 14:07:18 +0000 Message-ID: <54845EFE.6060406@codeaurora.org> Date: Sun, 07 Dec 2014 16:06:54 +0200 From: Tanya Brokhman MIME-Version: 1.0 To: Richard Weinberger , dedekind1@gmail.com Subject: Re: [PATCH 5/6] UBI: Fastmap: Fix fastmap usage in ubi_volume_notify() References: <1417347340-6872-1-git-send-email-richard@nod.at> <1417347340-6872-6-git-send-email-richard@nod.at> In-Reply-To: <1417347340-6872-6-git-send-email-richard@nod.at> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 11/30/2014 1:35 PM, Richard Weinberger wrote: > There is no need to switch to ro mode if ubi_update_fastmap() fails. > Also get rid of the ifdef. > > Signed-off-by: Richard Weinberger Reviewed-by: Tanya Brokhman > --- > drivers/mtd/ubi/build.c | 11 +++++------ > 1 file changed, 5 insertions(+), 6 deletions(-) > > diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c > index 3405be4..3152331 100644 > --- a/drivers/mtd/ubi/build.c > +++ b/drivers/mtd/ubi/build.c > @@ -154,23 +154,22 @@ static struct device_attribute dev_mtd_num = > */ > int ubi_volume_notify(struct ubi_device *ubi, struct ubi_volume *vol, int ntype) > { > + int ret; > struct ubi_notification nt; > > ubi_do_get_device_info(ubi, &nt.di); > ubi_do_get_volume_info(ubi, vol, &nt.vi); > > -#ifdef CONFIG_MTD_UBI_FASTMAP > switch (ntype) { > case UBI_VOLUME_ADDED: > case UBI_VOLUME_REMOVED: > case UBI_VOLUME_RESIZED: > case UBI_VOLUME_RENAMED: > - if (ubi_update_fastmap(ubi)) { > - ubi_err(ubi, "Unable to update fastmap!"); > - ubi_ro_mode(ubi); > - } > + ret = ubi_update_fastmap(ubi); > + if (ret) > + ubi_msg(ubi, "Unable to write a new fastmap: %i", ret); > } > -#endif > + > return blocking_notifier_call_chain(&ubi_notifiers, ntype, &nt); > } > > Thanks, Tanya Brokhman -- Qualcomm Israel, on behalf of Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project