From 5745e536d410a5f3b4a1e261a627cb98eb5e7e35 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Mon, 11 Aug 2008 14:36:50 +0000
Subject: [PATCH] madwifi: napi polling fix - fix u_int negative comparison -
 add some reserve for polling packets (ff has two frames in one descriptor)

SVN-Revision: 12280
---
 package/madwifi/patches/300-napi_polling.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/madwifi/patches/300-napi_polling.patch b/package/madwifi/patches/300-napi_polling.patch
index 609e74cd217..0d7b566b8d7 100644
--- a/package/madwifi/patches/300-napi_polling.patch
+++ b/package/madwifi/patches/300-napi_polling.patch
@@ -234,7 +234,7 @@
 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
 +		processed++;
 +#endif
-+		if (rx_limit-- < 0) {
++		if (rx_limit-- < 2) {
 +			early_stop = 1;
 +			break;
 +		}
-- 
GitLab