* [PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready()
@ 2015-09-02 16:20 Peter Mamonov
2015-09-04 5:39 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Peter Mamonov @ 2015-09-02 16:20 UTC (permalink / raw)
To: barebox; +Cc: Peter Mamonov
Signed-off-by: Peter Mamonov <pmamonov@gmail.com>
---
drivers/ata/ide-sff.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ata/ide-sff.c b/drivers/ata/ide-sff.c
index a8f2b26..e32cc3f 100644
--- a/drivers/ata/ide-sff.c
+++ b/drivers/ata/ide-sff.c
@@ -118,7 +118,7 @@ static int ata_wait_ready(struct ide_port *ide, unsigned timeout)
{
uint8_t status;
uint64_t start = get_time_ns();
- uint64_t toffs = timeout * 1000 * 1000;
+ uint64_t toffs = timeout * MSECOND;
do {
status = ata_rd_status(ide);
--
2.1.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready()
2015-09-02 16:20 [PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready() Peter Mamonov
@ 2015-09-04 5:39 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2015-09-04 5:39 UTC (permalink / raw)
To: Peter Mamonov; +Cc: barebox
On Wed, Sep 02, 2015 at 07:20:50PM +0300, Peter Mamonov wrote:
> Signed-off-by: Peter Mamonov <pmamonov@gmail.com>
> ---
> drivers/ata/ide-sff.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-04 5:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-02 16:20 [PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready() Peter Mamonov
2015-09-04 5:39 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox