1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-02 09:01:18 +02:00

madwifi: make sure that minstrel rc updates still work after a jiffies wraparound

SVN-Revision: 19377
This commit is contained in:
Felix Fietkau 2010-01-29 02:49:13 +00:00
parent b935b1abe2
commit 8de3096f63

@ -32,7 +32,7 @@
int mrr;
+
+ if (sn->last_update + msecs_to_jiffies(TIMER_INTERVAL) < jiffies) {
+ if (abs(jiffies - sn->last_update) > msecs_to_jiffies(TIMER_INTERVAL)) {
+ ath_rate_statistics(&an->an_node);
+ sn->last_update = jiffies;
+ }