]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/commitdiff
ata: pata_it821x: Replace mdelay with usleep_range in it821x_firmware_command
authorJia-Ju Bai <baijiaju1990@gmail.com>
Thu, 25 Jan 2018 10:32:59 +0000 (18:32 +0800)
committerTejun Heo <tj@kernel.org>
Thu, 25 Jan 2018 15:28:23 +0000 (07:28 -0800)
After checking all possible call chains to it821x_firmware_command here,
my tool finds that it821x_firmware_command
is never called in atomic context,
namely never in an interrupt handler or holding a spinlock.
And it821x_firmware_command calls kmalloc(GFP_KERNEL),
so it proves again that it821x_firmware_command
can call functions which can sleep.
Thus mdelay can be replaced with usleep_range to avoid busy wait.

This is found by a static analysis tool named DCNS written by myself.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/pata_it821x.c

index 7a21edf89e72adb643dfb6fd7ac127e806bdc614..8468b300193be1e9ae8d1a018e83182933c69972 100644 (file)
@@ -683,7 +683,7 @@ static u8 *it821x_firmware_command(struct ata_port *ap, u8 cmd, int len)
                        ioread16_rep(ap->ioaddr.data_addr, buf, len/2);
                        return (u8 *)buf;
                }
-               mdelay(1);
+               usleep_range(500, 1000);
        }
        kfree(buf);
        printk(KERN_ERR "it821x_firmware_command: timeout\n");