From 384bdd021bb6ded6d903923bcd5b2900b4c5f967 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 18 Nov 2013 17:58:14 +0200 Subject: [PATCH] P2P: Prefer VHT channels for initial pick If there are no other preferences from local configuration or driver, prefer a random VHT channel instead of falling back to the fixed pre-configured channel or 5 GHz/HT40 channel preference. Signed-hostap: Jouni Malinen --- src/p2p/p2p.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/p2p/p2p.c b/src/p2p/p2p.c index 94d57b5dd..ee25bbc4c 100644 --- a/src/p2p/p2p.c +++ b/src/p2p/p2p.c @@ -1182,6 +1182,7 @@ static void p2p_prepare_channel_best(struct p2p_data *p2p) u8 op_class, op_channel; const int op_classes_5ghz[] = { 115, 124, 0 }; const int op_classes_ht40[] = { 116, 117, 126, 127, 0 }; + const int op_classes_vht[] = { 128, 0 }; p2p_dbg(p2p, "Prepare channel best"); @@ -1213,6 +1214,11 @@ static void p2p_prepare_channel_best(struct p2p_data *p2p) p2p_dbg(p2p, "Select first pref_chan entry as operating channel preference"); p2p->op_reg_class = p2p->cfg->pref_chan[0].op_class; p2p->op_channel = p2p->cfg->pref_chan[0].chan; + } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_vht, + &p2p->op_reg_class, &p2p->op_channel) == + 0) { + p2p_dbg(p2p, "Select possible VHT channel (op_class %u channel %u) as operating channel preference", + p2p->op_reg_class, p2p->op_channel); } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_ht40, &p2p->op_reg_class, &p2p->op_channel) == 0) {