madwifi: napi polling fix
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 11 Aug 2008 14:36:50 +0000 (14:36 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 11 Aug 2008 14:36:50 +0000 (14:36 +0000)
 - fix u_int negative comparison
 - add some reserve for polling packets (ff has two frames in one descriptor)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12280 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/madwifi/patches/300-napi_polling.patch

index 609e74cd217127de3dcab928049dd1d8c0e36f22..0d7b566b8d7a7396c4721c445bcceba9ad19dcb8 100644 (file)
 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
 +              processed++;
 +#endif
-+              if (rx_limit-- < 0) {
++              if (rx_limit-- < 2) {
 +                      early_stop = 1;
 +                      break;
 +              }