From: Kalle Valo <kvalo@qca.qualcomm.com>
To: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Cc: <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH V2 00/31] ath6kl Add multiple vif support
Date: Wed, 26 Oct 2011 11:24:26 +0300 [thread overview]
Message-ID: <4EA7C3BA.8000108@qca.qualcomm.com> (raw)
In-Reply-To: <1319551466-29070-1-git-send-email-vthiagar@qca.qualcomm.com>
On 10/25/2011 05:03 PM, Vasanthakumar Thiagarajan wrote:
> This patch set adds basic infrastructure for multiple
> virtual interface. As configuring the firmware with more than one
> vif causes random target assert, the number of supported vifs is
> restricted to 1 for now. I would like to thank Vivek Natarajan
> (nataraja@qca.qualcomm.com) for his inital work in this area and
> Arthi Thiruvengadam (athiruve@qca.qualcomm.com) for finding some
> critical bugs.
Thanks, app patches applied. But please do take a look at the lockdep
warning I saw.
Kalle
prev parent reply other threads:[~2011-10-26 8:25 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-25 14:03 [PATCH V2 00/31] ath6kl Add multiple vif support Vasanthakumar Thiagarajan
2011-10-25 14:03 ` [PATCH V2 01/31] ath6kl: Pass ath6kl structure to ath6kl_init() instead of net_device Vasanthakumar Thiagarajan
2011-10-25 14:03 ` [PATCH V2 02/31] ath6kl: Keep wiphy reference in ath6kl structure Vasanthakumar Thiagarajan
2011-10-25 14:03 ` [PATCH V2 03/31] ath6kl: Refactor wiphy dev and net dev init functions Vasanthakumar Thiagarajan
2011-10-25 14:03 ` [PATCH V2 04/31] ath6kl: Cleanup fw interface type setting Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 05/31] ath6kl: Define an initial vif structure and use it Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 06/31] ath6kl: Define interface specific states Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 07/31] ath6kl: Move ssid and crypto information to vif structure Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 08/31] ath6kl: Move nw_type " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 09/31] ath6kl: Move bssid information " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 10/31] ath6kl: Move channel " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 11/31] ath6kl: Move key " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 12/31] ath6kl: Move aggregation " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 13/31] ath6kl: Move disconnect timer " Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 14/31] ath6kl: Move scan_req info and sme_state to vif Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 15/31] ath6kl: Move few more vif specific information to struct ath6kl_vif Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 16/31] ath6kl: Make net and target stats vif specific Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 17/31] ath6kl: Maintain firmware interface index in struct ath6kl_vif Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 18/31] ath6kl: Take vif information from wmi event Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 19/31] ath6kl: Remove net_device from ath6kl Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 20/31] ath6kl: Cleanup parameters in ath6kl_init_control_info() and ath6kl_init_profile_info() Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 21/31] ath6kl: Refactor ath6kl_destroy() Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 22/31] ath6kl: Use interface index from wmi data headr Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 23/31] ath6kl: Store hw mac address in struct ath6kl Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 24/31] ath6kl: Introduce spinlock to protect vif specific information Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 25/31] ath6kl: Maintain virtual interface in a list Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 26/31] ath6kl: Use the other variant of netdev (un)register APIs Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 27/31] ath6kl: Configure inteface information at init time Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 28/31] ath6kl: Implement add_virtual_intf() and del_virtual_intf() Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 29/31] ath6kl: Add a modparam to enable multi normal interface support Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 30/31] ath6kl: Initialize target wlan values for every vif Vasanthakumar Thiagarajan
2011-10-25 14:04 ` [PATCH V2 31/31] ath6kl: Use appropriate wdev from vif Vasanthakumar Thiagarajan
2011-10-26 7:22 ` [PATCH V2 00/31] ath6kl Add multiple vif support Kalle Valo
2011-11-01 5:29 ` Vasanthakumar Thiagarajan
2011-10-26 8:24 ` Kalle Valo [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EA7C3BA.8000108@qca.qualcomm.com \
--to=kvalo@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
--cc=vthiagar@qca.qualcomm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).