Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c09c7237eadc65916305835ca1e3ee8a03f01159
Commit:     c09c7237eadc65916305835ca1e3ee8a03f01159
Parent:     f99b751fca5b16bea53c0d6724935e1949350052
Author:     Stefano Brivio <[EMAIL PROTECTED]>
AuthorDate: Thu Jan 17 00:38:29 2008 +0100
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:10:43 2008 -0800

    rc80211-pid: fix last_sample initialization
    
    Fix last_sample initialization. kzalloc'ing the per-STA data wasn't enough,
    as jiffies can assume negative values as well. This fixes a bug which
    prevented correct PID operation for a while after booting.
    
    Thanks to Michael Buesch for reporting this.
    
    Reported-and-tested-by: Michael Buesch <[EMAIL PROTECTED]>
    Signed-off-by: Stefano Brivio <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 net/mac80211/rc80211_pid_algo.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/net/mac80211/rc80211_pid_algo.c b/net/mac80211/rc80211_pid_algo.c
index 962286d..554c4ba 100644
--- a/net/mac80211/rc80211_pid_algo.c
+++ b/net/mac80211/rc80211_pid_algo.c
@@ -496,6 +496,8 @@ static void *rate_control_pid_alloc_sta(void *priv, gfp_t 
gfp)
        if (spinfo == NULL)
                return NULL;
 
+       spinfo->last_sample = jiffies;
+
 #ifdef CONFIG_MAC80211_DEBUGFS
        spin_lock_init(&spinfo->events.lock);
        init_waitqueue_head(&spinfo->events.waitqueue);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to