From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:41609 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752424AbbEBOWC (ORCPT ); Sat, 2 May 2015 10:22:02 -0400 Subject: Patch "[SCSI] bfa: Replace large udelay() with mdelay()" has been added to the 3.14-stable tree To: ben@decadent.org.uk, JBottomley@Parallels.com, gregkh@linuxfoundation.org, linux@roeck-us.net, vagrant@debian.org Cc: , From: Date: Sat, 02 May 2015 16:21:19 +0200 Message-ID: <143057647924654@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled [SCSI] bfa: Replace large udelay() with mdelay() to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: bfa-replace-large-udelay-with-mdelay.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From b367dcaa512922e9207160bef0895622cfae4c9f Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Sun, 9 Mar 2014 04:04:18 +0000 Subject: [SCSI] bfa: Replace large udelay() with mdelay() From: Ben Hutchings commit b367dcaa512922e9207160bef0895622cfae4c9f upstream. udelay() does not work on some architectures for values above 2000, in particular on ARM: ERROR: "__bad_udelay" [drivers/scsi/bfa/bfa.ko] undefined! Reported-by: Vagrant Cascadian Signed-off-by: Ben Hutchings Signed-off-by: James Bottomley Cc: Guenter Roeck Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/bfa/bfa_ioc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/scsi/bfa/bfa_ioc.c +++ b/drivers/scsi/bfa/bfa_ioc.c @@ -7006,7 +7006,7 @@ bfa_flash_sem_get(void __iomem *bar) while (!bfa_raw_sem_get(bar)) { if (--n <= 0) return BFA_STATUS_BADFLASH; - udelay(10000); + mdelay(10); } return BFA_STATUS_OK; } Patches currently in stable-queue which might be from ben@decadent.org.uk are queue-3.14/bfa-replace-large-udelay-with-mdelay.patch