Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp2361296ybl; Thu, 9 Jan 2020 11:21:55 -0800 (PST) X-Google-Smtp-Source: APXvYqzBH3gLF2p9QBE8KPCbSJgC5yqk1EviSl+Zs2BH3+KOQVk7pigwSnyMv+E3hdtyvQbmNVKP X-Received: by 2002:a9d:7851:: with SMTP id c17mr10168042otm.58.1578597714994; Thu, 09 Jan 2020 11:21:54 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1578597714; cv=none; d=google.com; s=arc-20160816; b=pbB+9MFTxCT8AO7wWLQPtxWm8mWX2JcNUztQuP5UVZFKfQ2wpMghoFYe9j9VGMIOVi nsyUJJ7+p66XwIzB56Gl4S3eNwACFKpT4q65ZRJQsOciznX9y8S6i+Fl/OFFsFitV4s0 rYU4wcuWQvNULcTbmF8dHDqE2MZvNJznJh7D2qarGrkol2GeZNxSBGSE6zRQGhzTv6Pn WWll89Oa1Jh7AB8Q+IQtLDbOULocXADxL8LH1igHdmRSgFVlHSiv9mCtWj8tZ6jyxc6N 8s8sqFrk3Cse5agttuSxgg85kAO93CfoAowm1H+0joB0s9Q9se7GfRDW7sgC87DQlbyJ sl4A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :organization:references:in-reply-to:message-id:subject:cc:to:from :date; bh=jFMKPN6hqgcKdT2GLKxAyi3QyNzDLwYw6OCh4DWZtGg=; b=OfJpdCK89WWCBtnI9qdGWsP92LZeuB6ImQN2Mjjy/Vs8H0psng6nya7fYHnVPt99dy 2ZSERiFNoV0xuK2xhdpC7FJn3wV2qxHgk/kdw7B+Pk+LUU6DfgSPfYr4GCbfFb+D0VBe nrrBUDznOzmlQSVxNvG9dh9vxXHeb9cyd5nFfFQ0YkCTRHam6QYYGV8tnagRthh8Evht 2ibRS9gpUgfbr+1ja2caf4aEJ40yep7InJyGOUBqz6nECyySyvu56/DDxEy0YeH6UkEy zHJE2cl7HZROAJdbQJhPMz0//NGAvDNGSbE/102FGJaqEf/lpcQlWPBKPe7Ec8/014rF 1mFw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a15si4652482otq.83.2020.01.09.11.21.41; Thu, 09 Jan 2020 11:21:54 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732500AbgAIPh6 convert rfc822-to-8bit (ORCPT + 99 others); Thu, 9 Jan 2020 10:37:58 -0500 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:34195 "EHLO relay1-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729532AbgAIPh6 (ORCPT ); Thu, 9 Jan 2020 10:37:58 -0500 X-Originating-IP: 91.224.148.103 Received: from xps13 (unknown [91.224.148.103]) (Authenticated sender: miquel.raynal@bootlin.com) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id D3BEF240009; Thu, 9 Jan 2020 15:37:53 +0000 (UTC) Date: Thu, 9 Jan 2020 16:37:52 +0100 From: Miquel Raynal To: Martin Devera Cc: linux-kernel@vger.kernel.org, jan.pohanka@merz.cz, Christophe Kerello , Boris Brezillon , Richard Weinberger , David Woodhouse , Brian Norris , Marek Vasut , linux-mtd@lists.infradead.org Subject: Re: [PATCH] mtd: rawnand: Fix unexpected timeouts in waitrdy Message-ID: <20200109163752.621c6248@xps13> In-Reply-To: <20191210150319.3125-1-devik@eaxlabs.cz> References: <20191210150319.3125-1-devik@eaxlabs.cz> Organization: Bootlin X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Martin, Martin Devera wrote on Tue, 10 Dec 2019 16:03:18 +0100: > The used way to compute jiffies timeout brokes when > jiffie difference is 1. Simply add 1 - it has no other > side effects. > Fixes STM32MP1 FMC2 NAND controller which sometimes failed > exactly in this way. > > Signed-off-by: Martin Devera > --- > drivers/mtd/nand/raw/nand_base.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/nand/raw/nand_base.c b/drivers/mtd/nand/raw/nand_base.c > index d527e448ce19..beab3a775cc7 100644 > --- a/drivers/mtd/nand/raw/nand_base.c > +++ b/drivers/mtd/nand/raw/nand_base.c > @@ -721,7 +721,11 @@ int nand_soft_waitrdy(struct nand_chip *chip, unsigned long timeout_ms) > if (ret) > return ret; > > - timeout_ms = jiffies + msecs_to_jiffies(timeout_ms); > + /* +1 below is necessary because if we are now in the last fraction > + * of jiffy and msecs_to_jiffies is 1 then we will wait only that > + * small jiffy fraction - possibly leading to false timeout > + */ > + timeout_ms = jiffies + msecs_to_jiffies(timeout_ms) + 1; > do { > ret = nand_read_data_op(chip, &status, sizeof(status), true); > if (ret) I don't really what you are fixing here, I suspect the root cause to be a wrongly calculated timeout_ms in the calling driver. It is the responsibility of the caller to use this function with a relevant timeout_ms parameter. Maybe Christophe can help you here? Thanks, Miquèl