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

SVN-Revision: 19377
master
Felix Fietkau 15 years ago
parent b935b1abe2
commit 8de3096f63
  1. 2
      package/madwifi/patches/452-minstrel_no_timer.patch

@ -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;
+ }

Loading…
Cancel
Save