From owner-soc-status@FreeBSD.ORG Mon Sep 2 16:21:52 2013 Return-Path: Delivered-To: soc-status@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E2ECD312 for ; Mon, 2 Sep 2013 16:21:52 +0000 (UTC) (envelope-from qinchenchong@gmail.com) Received: from mail-vb0-x22c.google.com (mail-vb0-x22c.google.com [IPv6:2607:f8b0:400c:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A62192F5A for ; Mon, 2 Sep 2013 16:21:52 +0000 (UTC) Received: by mail-vb0-f44.google.com with SMTP id e13so3222840vbg.3 for ; Mon, 02 Sep 2013 09:21:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=FCqK8U/sQB48lxyEDfBMhGwk9OmoFvpywOG1axMkdRk=; b=UScifK92G+ah/FPv+ZK6gDw10gmEXXpz2j07L/PUKbyotqxIKjGPhlZdwkhukASKKM 2n2RYmwEviNgUDRU0qF96JwOKbNv4wPqVMcAfmwGY/e4UTGW9AkSwHMpKcxOcIax5jD5 ZLJz+niKj+ZA+JgcpXhgZs/mDa0oZDJZfN54vvDHkTgPaLQrFEc2FUl7xSc64mpK/Tr/ UvSFphIz3bZNoRFylDH04AY20ClmomHhRUdoILARxh/DUeA5LHYbrZjTv8cFrLQ//YPQ sVSIl8g1w4Mo8TIgtQumIvFEWGJYH4w/VLp4X/nOXSmAR37mL/4W1iOA8cmWrxpO8B0u 79cg== MIME-Version: 1.0 X-Received: by 10.220.11.7 with SMTP id r7mr23687492vcr.12.1378138911777; Mon, 02 Sep 2013 09:21:51 -0700 (PDT) Received: by 10.220.182.68 with HTTP; Mon, 2 Sep 2013 09:21:51 -0700 (PDT) Date: Tue, 3 Sep 2013 00:21:51 +0800 Message-ID: Subject: Weekly Status Report, Sep 2, 2013 From: Chenchong Qin To: soc-status@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: soc-status@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Summer of Code Status Reports and Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Sep 2013 16:21:53 -0000 Hi! Here is last week's status. I taught ieee80211_amrr to return multiple rates and modified ath to let it use net80211_ratectl. I also try to perform some tests on my AR9227 device. * add amrr_rates to teach ieee80211_amrr of multiple rate. * change ieee80211_ratectl_complete(), drop stats, arg1, arg2, add ieee80211_rc_info *. adapt amrr_tx_complete correspondingly. * update ieee80211_ratectl_hascap_* functions to make it more reasonable. * modify ieee80211_ratectl_complete_rcflags() to let it work properly. we just care about rc flags here. ratecode is left for drivers to fill. * add a 48 bytes buf to mbuf(m_hdr) to record rc state. * modify ath to make it use net80211_ratectl api. Thanks! Chenchong