diff mbox series

[01/12] scan: add colocated scan flag

Message ID 20220719185544.456727-1-prestwoj@gmail.com (mailing list archive)
State Not Applicable, archived
Headers show
Series [01/12] scan: add colocated scan flag | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
prestwoj/iwd-alpine-ci-fetch success Fetch PR
prestwoj/iwd-ci-fetch success Fetch PR
prestwoj/iwd-ci-gitlint success GitLint
prestwoj/iwd-ci-makedistcheck fail Make Distcheck Make FAIL: ../../src/wiphy.c: In function ‘wiphy_estimate_data_rate’: ../../src/wiphy.c:862:14: warning: implicit declaration of function ‘band_estimate_he_rx_rate’; did you mean ‘band_estimate_ht_rx_rate’? [-Wimplicit-function-declaration] 862 | if (!band_estimate_he_rx_rate(bandp, he_capabilities, | ^~~~~~~~~~~~~~~~~~~~~~~~ | band_estimate_ht_rx_rate /usr/bin/ld: src/wiphy.o: in function `wiphy_estimate_data_rate': wiphy.c:(.text+0x261c): undefined reference to `band_estimate_he_rx_rate' collect2: error: ld returned 1 exit status make[2]: *** [Makefile:1999: src/iwd] Error 1 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [Makefile:1570: all] Error 2 make: *** [Makefile:3160: distcheck] Error 1
prestwoj/iwd-alpine-ci-makedistcheck fail Make Distcheck Make FAIL: ../../src/wiphy.c: In function 'wiphy_estimate_data_rate': ../../src/wiphy.c:862:14: warning: implicit declaration of function 'band_estimate_he_rx_rate'; did you mean 'band_estimate_ht_rx_rate'? [-Wimplicit-function-declaration] 862 | if (!band_estimate_he_rx_rate(bandp, he_capabilities, | ^~~~~~~~~~~~~~~~~~~~~~~~ | band_estimate_ht_rx_rate /usr/lib/gcc/x86_64-alpine-linux-musl/11.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: src/wiphy.o: in function `wiphy_estimate_data_rate': wiphy.c:(.text+0x24ac): undefined reference to `band_estimate_he_rx_rate' collect2: error: ld returned 1 exit status make[2]: *** [Makefile:2000: src/iwd] Error 1 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [Makefile:1571: all] Error 2 make: *** [Makefile:3161: distcheck] Error 1
prestwoj/iwd-ci-build success Build - Configure
prestwoj/iwd-alpine-ci-build success Build - Configure
prestwoj/iwd-ci-makecheck pending makecheck SKIP
prestwoj/iwd-ci-testrunner pending testrunner SKIP
prestwoj/iwd-alpine-ci-makecheckvalgrind fail Make FAIL: src/wiphy.c: In function 'wiphy_estimate_data_rate': src/wiphy.c:862:14: error: implicit declaration of function 'band_estimate_he_rx_rate'; did you mean 'band_estimate_ht_rx_rate'? [-Werror=implicit-function-declaration] 862 | if (!band_estimate_he_rx_rate(bandp, he_capabilities, | ^~~~~~~~~~~~~~~~~~~~~~~~ | band_estimate_ht_rx_rate cc1: all warnings being treated as errors make[1]: *** [Makefile:2384: src/wiphy.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make: *** [Makefile:1571: all] Error 2
prestwoj/iwd-alpine-ci-makecheck pending makecheck SKIP
prestwoj/iwd-ci-makecheckvalgrind fail Make FAIL: src/wiphy.c: In function ‘wiphy_estimate_data_rate’: src/wiphy.c:862:14: error: implicit declaration of function ‘band_estimate_he_rx_rate’; did you mean ‘band_estimate_ht_rx_rate’? [-Werror=implicit-function-declaration] 862 | if (!band_estimate_he_rx_rate(bandp, he_capabilities, | ^~~~~~~~~~~~~~~~~~~~~~~~ | band_estimate_ht_rx_rate cc1: all warnings being treated as errors make[1]: *** [Makefile:2383: src/wiphy.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make: *** [Makefile:1570: all] Error 2
prestwoj/iwd-ci-clang fail Clang IWD - make FAIL: src/wiphy.c:862:7: error: implicit declaration of function 'band_estimate_he_rx_rate' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (!band_estimate_he_rx_rate(bandp, he_capabilities, ^ src/wiphy.c:862:7: note: did you mean 'band_estimate_ht_rx_rate'? ./src/band.h:82:5: note: 'band_estimate_ht_rx_rate' declared here int band_estimate_ht_rx_rate(const struct band *band, ^ 1 error generated. make[1]: *** [Makefile:2383: src/wiphy.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make: *** [Makefile:1570: all] Error 2
prestwoj/iwd-ci-incremental_build success Incremental Build with patches
prestwoj/iwd-alpine-ci-incremental_build success Incremental Build with patches

Commit Message

James Prestwood July 19, 2022, 6:55 p.m. UTC
---
 src/scan.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Denis Kenzior July 19, 2022, 10:11 p.m. UTC | #1
Hi James,

On 7/19/22 13:55, James Prestwood wrote:
> ---
>   src/scan.c | 2 ++
>   1 file changed, 2 insertions(+)
> 

I went ahead and applied patches 1-9 and 12.

Regards,
-Denis
diff mbox series

Patch

diff --git a/src/scan.c b/src/scan.c
index 05e8f66e..e1c89fb2 100644
--- a/src/scan.c
+++ b/src/scan.c
@@ -394,6 +394,8 @@  static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
 	if (params->ap_scan)
 		flags |= NL80211_SCAN_FLAG_AP;
 
+	flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
+
 	if (flags)
 		l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);