[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1401099763-2427-1-git-send-email-_govind@gmx.com>
Date: Mon, 26 May 2014 15:52:43 +0530
From: Govindarajulu Varadarajan <_govind@....com>
To: netdev@...r.kernel.org, davem@...emloft.net
Cc: arnd@...db.de, David.Laight@...lab.com, gvaradar@...co.com,
Govindarajulu Varadarajan <_govind@....com>,
Christian Benvenuti <benve@...co.com>,
Sujith Sankar <ssujith@...co.com>,
Neel Patel <neepatel@...co.com>
Subject: [PATCH net-next] enic: Fix 64 bit divide on 32bit system
Division of a 32 bit number by a 64 bit number causes the following link
error introduced by
7c2ce6e60f703 "enic: Add support for adaptive interrupt coalescing"
drivers/built-in.o: In function `enic_poll_msix':
enic_main.c:(.text+0x48710a): undefined reference to `__udivdi3'
make: *** [vmlinux] Error 1
Since numerator is 32 bit, convert denominator to 32 bit accordingly.
Fixes: 7c2ce6e60f703 ("enic: Add support for adaptive interrupt coalescing")
Reported-by: Jim Davis <jim.epost@...il.com>
Cc: Christian Benvenuti <benve@...co.com>
Cc: Sujith Sankar <ssujith@...co.com>
Cc: Neel Patel <neepatel@...co.com>
Signed-off-by: Govindarajulu Varadarajan <_govind@....com>
---
drivers/net/ethernet/cisco/enic/enic_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/cisco/enic/enic_main.c b/drivers/net/ethernet/cisco/enic/enic_main.c
index 0d8995c..d5a220d 100644
--- a/drivers/net/ethernet/cisco/enic/enic_main.c
+++ b/drivers/net/ethernet/cisco/enic/enic_main.c
@@ -1217,7 +1217,7 @@ static void enic_calc_int_moderation(struct enic *enic, struct vnic_rq *rq)
*/
traffic <<= 3;
- traffic /= delta;
+ traffic = delta > UINT_MAX ? 0 : traffic / (u32)delta;
for (index = 0; index < ENIC_MAX_COALESCE_TIMERS; index++)
if (traffic < mod_table[index].rx_rate)
--
1.9.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists