<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap">
    <title>gmane.linux.drivers.hostap</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28096"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28095"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28094"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28093"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28092"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28091"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28090"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28089"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28088"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28087"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28086"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28085"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28084"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28083"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28082"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28081"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28080"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28079"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28078"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.drivers.hostap/28077"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28096">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28096</link>
    <description>&lt;pre&gt;
The situation is this:
1. load hwsim -&amp;gt; wlan0 down.
2. start wpa_supplicant -&amp;gt; wlan0 up, p2p-dev-wlan0 started.
3. do P2P_GROUP_ADD in wpa_cli -&amp;gt; p2p-wlan0-0 created.

So the -EBUSY is coming because wlan0 is UP as already.

Gr. AvS
&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-24T08:15:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28095">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28095</link>
    <description>&lt;pre&gt;

Oh. I thought it was brcmfmac. With hwsim there shouldn't be an issue.


No, P2P_DEVICE doesn't use up a channel (in hwsim.) And setting an
interface UP won't consume and require a channel anyway.

johannes
&lt;/pre&gt;</description>
    <dc:creator>Johannes Berg</dc:creator>
    <dc:date>2013-05-24T08:10:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28094">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28094</link>
    <description>&lt;pre&gt;
Will give it a try.


This log was testing with mac80211_hwsim, which has the following:

static const struct ieee80211_iface_limit hwsim_if_limits[] = {
{ .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
{ .max = 2048,  .types = BIT(NL80211_IFTYPE_STATION) |
 BIT(NL80211_IFTYPE_P2P_CLIENT) |
#ifdef CONFIG_MAC80211_MESH
 BIT(NL80211_IFTYPE_MESH_POINT) |
#endif
 BIT(NL80211_IFTYPE_AP) |
 BIT(NL80211_IFTYPE_P2P_GO) },
{ .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
};

static struct ieee80211_iface_combination hwsim_if_comb = {
.limits = hwsim_if_limits,
.n_limits = ARRAY_SIZE(hwsim_if_limits),
.max_interfaces = 2048,
.num_different_channels = 1,
};

Crap. num_different_channels should probably be 2 here, right?

Gr. AvS
&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-24T08:05:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28093">
    <title>Re: How to set a scan with ath9k driver</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28093</link>
    <description>&lt;pre&gt;INIT_DELAYED_WORK(&amp;amp;local-&amp;gt;scan_work, ieee80211_scan_work);

So it would do void ieee80211_scan_work(struct work_struct *work) {.....


2013/5/24 Francisco Cuesta &amp;lt;ndarkness&amp;lt; at &amp;gt;gmail.com&amp;gt;

_______________________________________________
HostAP mailing list
HostAP&amp;lt; at &amp;gt;lists.shmoo.com
http://lists.shmoo.com/mailman/listinfo/hostap
&lt;/pre&gt;</description>
    <dc:creator>Matt Chen</dc:creator>
    <dc:date>2013-05-24T07:47:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28092">
    <title>Re: How to set a scan with ath9k driver</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28092</link>
    <description>&lt;pre&gt;HEllo Mohammend, thanks for replying your sequence was really helpful

2013/5/22 Mohammed Shafi Shajakhan &amp;lt;mohammed&amp;lt; at &amp;gt;qca.qualcomm.com&amp;gt;:
I'm getting stuck since I'm looking for the function queues
ieee80211_scan_work, but I cannot identify it on my mac80211 code,
which is as follows

static int ieee80211_start_sw_scan(struct ieee80211_local *local)
{
    /*
     * Hardware/driver doesn't support hw_scan, so use software...
     */
    drv_sw_scan_start(local);

    local-&amp;gt;leave_oper_channel_time = jiffies;
    local-&amp;gt;next_scan_state = SCAN_DECISION;
    local-&amp;gt;scan_channel_idx = 0;

    ieee80211_offchannel_stop_vifs(local, true);

    ieee80211_configure_filter(local);

    /* We need to set power level at maximum rate for scanning. */
    ieee80211_hw_config(local, 0);

    ieee80211_queue_delayed_work(&amp;amp;local-&amp;gt;hw,
                     &amp;amp;local-&amp;gt;scan_work, 0);

    return 0;
}

Is the function called ieee80211_queue_delayed_work??

&lt;/pre&gt;</description>
    <dc:creator>Francisco Cuesta</dc:creator>
    <dc:date>2013-05-24T07:12:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28091">
    <title>Re: [PATCH] wpa_supplicant: Emit signal when the station authorizedor deauthorized in AP mode</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28091</link>
    <description>&lt;pre&gt;Hi,

Please tell me how to submit this patch.

Thanks.

Chengyi

2013/5/23 Chengyi Zhao &amp;lt;chengyix.zhao&amp;lt; at &amp;gt;gmail.com&amp;gt;:
&lt;/pre&gt;</description>
    <dc:creator>Chengyi Zhao</dc:creator>
    <dc:date>2013-05-24T01:59:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28090">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28090</link>
    <description>&lt;pre&gt;
You really should be on IRC ;-)


From the log it seems you get -EBUSY, which is a bit odd. Are you sure
your advertised interface combinations support what you were doing?

johannes
&lt;/pre&gt;</description>
    <dc:creator>Johannes Berg</dc:creator>
    <dc:date>2013-05-23T20:48:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28089">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28089</link>
    <description>&lt;pre&gt;
I actually did and it is working with brcmfmac advertising P2P_DEVICE 
and I would like to keep it in for 3.10, but it does not make much sense 
if there is no user-space support (apart from iw).

I tried getting hwsim to work with P2P_DEVICE by removing 
'p2p_no_group_iface=1' from the configuration files. wpa_supplicant will 
create a P2P_GO interface but I get a failure when bringing the 
interface up (see attached log). Creating a P2P_GO using iw and bringing 
it up with ifconfig works fine.

Gr. AvS

1369339573.419211: wpa_supplicant v2.1-devel
1369339573.419269: random: Trying to read entropy from /dev/random
1369339573.419284: Successfully initialized wpa_supplicant
1369339573.419296: Initializing interface 'wlan0' conf '/home/arend/scm/hostap/tests/hwsim/p2p0.conf' driver 'nl80211' ctrl_interface 'N/A' bridge 'N/A'
1369339573.419308: Configuration file '/home/arend/scm/hostap/tests/hwsim/p2p0.conf' -&amp;gt; '/home/arend/scm/hostap/tests/hwsim/p2p0.conf'
1369339573.419350: Reading configuration file '/home&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-23T20:27:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28088">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28088</link>
    <description>&lt;pre&gt;

Yes, this is a bit unfortunate. We can probably send a patch to 3.9
stable to remove the P2P_DEVICE advertising. However, I'm not all that
worried about hwsim, and iwlmvm unfortunately is looking like we won't
be able to ship firmware that works with the driver in 3.9 given the
recent firmware changes. As such, I think there aren't and won't be any
real drivers that actually advertise P2P_DEVICE.


The current wireless-testing should have all the required fixes, can
somebody verify that?

johannes
&lt;/pre&gt;</description>
    <dc:creator>Johannes Berg</dc:creator>
    <dc:date>2013-05-23T20:12:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28087">
    <title>Re: [PATCH] P2P: Add IFNAME=iface command option for interfaceredirection</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28087</link>
    <description>&lt;pre&gt;
Great, thanks !

&lt;/pre&gt;</description>
    <dc:creator>Dmitry Shmidt</dc:creator>
    <dc:date>2013-05-23T17:49:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28086">
    <title>Re: [PATCH] P2P: Add IFNAME=iface command option for interfaceredirection</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28086</link>
    <description>&lt;pre&gt;
I was thinking of quite a bit more complete integration to the existing
command completion mechanism than use of the raw command. I pushed these
commits now to address this:

http://w1.fi/gitweb/gitweb.cgi?p=hostap.git;a=commitdiff;h=13b11ba70260d99de5015e06142b6168d645c169
http://w1.fi/gitweb/gitweb.cgi?p=hostap.git;a=commitdiff;h=376204934db44d45f798bdde4db005bc88d666f0

I would find it quite painful if I had to live without full tab
completion support for commands and arguments.. ;-)

&lt;/pre&gt;</description>
    <dc:creator>Jouni Malinen</dc:creator>
    <dc:date>2013-05-23T17:40:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28085">
    <title>[PATCH] wpa_supplicant: Emit signal when the station authorized ordeauthorized in AP mode</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28085</link>
    <description>&lt;pre&gt;From: Chengyi Zhao &amp;lt;chengyix.zhao&amp;lt; at &amp;gt;gmail.com&amp;gt;

Signed-off-by: Chengyi Zhao &amp;lt;chengyix.zhao&amp;lt; at &amp;gt;gmail.com&amp;gt;
---
 wpa_supplicant/dbus/dbus_new.c |   78 ++++++++++++++++++++++++++++++++++++++++
 wpa_supplicant/dbus/dbus_new.h |   16 +++++++++
 wpa_supplicant/notify.c        |    4 +++
 3 files changed, 98 insertions(+)

diff --git a/wpa_supplicant/dbus/dbus_new.c b/wpa_supplicant/dbus/dbus_new.c
index e9bd51f..dfd0a8b 100644
--- a/wpa_supplicant/dbus/dbus_new.c
+++ b/wpa_supplicant/dbus/dbus_new.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -868,6 +868,72 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; nomem:
 dbus_message_unref(msg);
 }
 
+/**
+ * wpas_dbus_signal_sta - Send a station related event signal
+ * &amp;lt; at &amp;gt;wpa_s: %wpa_supplicant network interface data
+ * &amp;lt; at &amp;gt;sta: station address
+ * &amp;lt; at &amp;gt;sig_name: signal name - StaAuthorized or StaDeauthorized
+ *
+ * Notify listeners about event related with station
+ */
+static void wpas_dbus_signal_sta(struct wpa_supplicant *wpa_s,
+ const u8 *sta, const char *sig_name)
+{
+struct wpas_dbus_priv *iface;
+DBusMessage *msg;
+char sta_mac[WPAS_DBUS_OBJECT_PATH_M&lt;/pre&gt;</description>
    <dc:creator>Chengyi Zhao</dc:creator>
    <dc:date>2013-05-23T02:25:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28084">
    <title>Re: How to work with hostapd code</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28084</link>
    <description>&lt;pre&gt;
I stopped using Eclipse for the linux kernel, but I just cloned the git 
repositories in my Eclipse workspace and add a project for it. You can 
also take a look at EGit [1].

Regards,
Arend

[1] http://www.eclipse.org/egit/
&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-22T20:29:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28083">
    <title>How to work with hostapd code</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28083</link>
    <description>&lt;pre&gt;Hello,

I was wondering what is the better way of import the hostapd code to
Eclipse. I mean, I don´t know whether is better to work with git or
download the tar, uncompress it and load the code into Eclipse.
Indeed, I have already try to do the second option, but Eclipse
complains aboout the paths...

What is your advice?

Thanks in advance
&lt;/pre&gt;</description>
    <dc:creator>Francisco Cuesta</dc:creator>
    <dc:date>2013-05-22T20:20:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28082">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28082</link>
    <description>&lt;pre&gt;
The drivers are indicating whether P2P Device is supported. Our brcmfmac 
driver had it set to 3.9 but it was removed as wpa_supplicant had no 
support. Bit of a chicken-egg story. Also at least a number of issues in 
cfg80211 and mac80211 has been found and fixed in 3.10-rc1, so wireless 
drivers can start to consider announcing P2P Device support. A quick 
grep in v3.9 shows iwlwifi and mac80211_hwsim are the only driver 
reporting P2P Device support. That should only be true when cfg80211 and 
mac80211 changes are also applied to 3.9 kernel and those will probably 
not work because cfg80211 and mac80211 fixes are missing.

I decided to dive into hwsim tests and tested test_p2p_discovery.py with 
3.10-rc1 kernel. Device discovery works for test_discovery(), but 
Provision Discovery fails unless I create the control interfaces on 
p2p-dev-wlanX in run-tests.py. So it seems not all p2p commands are 
truly global.

The other test test_discovery_group_client also fails, but that is 
because p2p0.conf has 'p2p&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-22T20:15:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28081">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28081</link>
    <description>&lt;pre&gt;
I have not. Thanks.

Gr. AvS
&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-22T16:13:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28080">
    <title>Re: [PATCH] wpa_supplicant: Emit signal when the station connect ordisconnect the AP</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28080</link>
    <description>&lt;pre&gt;
At some point there should probably be a property for
"AuthorizedStations" which is a string list containing the MAC addresses
of all authorized stations.  Otherwise a client connecting to the
supplicant after it has authorized a station has no idea that station is
authorized, because it never heard the StaConnected signal.

Also, shouldn't the signals really be "StaAuthorized" and
"StaDeauthorized" instead of Connected?  Same for the functions.  We
might want to use "connected" for something else in the future.

Dan

&lt;/pre&gt;</description>
    <dc:creator>Dan Williams</dc:creator>
    <dc:date>2013-05-22T15:16:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28079">
    <title>Re: wpa_supplicant:  Issue with long scan times on startup.</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28079</link>
    <description>&lt;pre&gt;
The logic that shares scan results helps a lot, and the kernel will reject
(EBUSY I think) duplicate scan attempts.  As long as supplicant backs off
in some way, I don't think the initial scan time that this patch modifies
matters too much.  I'm tempted to decrease it down to % 2, in fact...

The patch I put in recently to allow scan-on-channel when 1+ VIFS is associated is
also a big help in this case.  At least for ath9k, there is basically zero
overhead to scanning just on the working channel (we can continue processing
normal frames during the scan process).

Another reason why I don't like the initial timer is that we may
have 100 stations associated, and then we add the 101'st.  There is no
reason not to scan right away..or at least very quickly, since it will
be the only station scanning....

Thanks,
Ben




&lt;/pre&gt;</description>
    <dc:creator>Ben Greear</dc:creator>
    <dc:date>2013-05-22T14:52:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28078">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28078</link>
    <description>&lt;pre&gt;
Do you have

http://git.kernel.org/cgit/linux/kernel/git/linville/wireless.git/commit/?id=1b737f88dc1b05cf571e96d42f748aaff6df1eb5

johannes
&lt;/pre&gt;</description>
    <dc:creator>Johannes Berg</dc:creator>
    <dc:date>2013-05-22T14:08:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28077">
    <title>Re: [PATCH 00/20] wpa_s: p2p: support nl80211 P2P_DEVICE interface</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28077</link>
    <description>&lt;pre&gt;
The issue you saw were that pcap dump shows only probe requests, right? 
I ran hwsim tests or actually the tests in test_p2p_discovery.py and 
used cfg80211 tracing. It seems mac80211 only calls cfg80211_rx_mgmt() 
for wdev(1) and returns false as it is not registered for that. The P2P 
Device interface is wdev(2). I am not that familiar with mac80211 rx 
path, but probe request register seems to succeed for wdev(2). The 
function __ieee80211_rx_handle_packet() seems to feed the frame to the 
virtual interfaces.

Johannes, do you have any clues here? I think this is the issue that 
David saw when using my patch fixing registration of probe requests as 
that failed for him (using a mac80211 driver).

commit 1b3aa0c188ddc3f912f1ee5cd3c7207088a32751
Author: Arend van Spriel &amp;lt;arend&amp;lt; at &amp;gt;broadcom.com&amp;gt;
Date:   Mon Mar 25 14:47:25 2013 +0100

     p2p_supplicant: probe reporting should be from listen interface

     P2P listen phase is used to listen for P2P probe request messages
     from peers. The probe reporting c&lt;/pre&gt;</description>
    <dc:creator>Arend van Spriel</dc:creator>
    <dc:date>2013-05-22T14:03:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.drivers.hostap/28076">
    <title>Re: How to set a scan with ath9k driver</title>
    <link>http://permalink.gmane.org/gmane.linux.drivers.hostap/28076</link>
    <description>&lt;pre&gt;
nl80211 nl80211_trigger_scan-&amp;gt;rdev_scan which
calls mac80211's callback iee80211_scan 

iee80211_scan -&amp;gt; ieee80211_request_scan -&amp;gt; ieee80211_start_scan
-&amp;gt;ieee80211_start_sw_scan -&amp;gt; queues ieee80211_scan_work

ieee80211_scan_work has the states 
SCAN_DECISION/SET_CHANNEL/PROBE etc

SCAN_SET_CHANNEL calls drivers ath9k_config with CONF_CHANGE_CHANNEL
flag set, please follow from there for the driver code.


&lt;/pre&gt;</description>
    <dc:creator>Mohammed Shafi Shajakhan</dc:creator>
    <dc:date>2013-05-22T12:51:59</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.drivers.hostap">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.drivers.hostap</link>
  </textinput>
</rdf:RDF>
