All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Cc: kbuild-all@01.org, linux-wireless@vger.kernel.org,
	ath9k-devel@lists.ath9k.org,
	Janusz Dziedzic <janusz.dziedzic@tieto.com>
Subject: Re: [PATCH 09/12] ath9k: request NOA update when chanctx active
Date: Thu, 12 Nov 2015 21:59:13 +0800	[thread overview]
Message-ID: <201511122152.U0VLxODP%fengguang.wu@intel.com> (raw)
In-Reply-To: <1447334149-15507-9-git-send-email-janusz.dziedzic@tieto.com>

[-- Attachment #1: Type: text/plain, Size: 1552 bytes --]

Hi Janusz,

[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on v4.3 next-20151112]

url:    https://github.com/0day-ci/linux/commits/Janusz-Dziedzic/ath9k-add-debug-messages-to-aggr-chanctx-funcs/20151112-212004
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: i386-allmodconfig (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath9k/main.c: In function 'ath9k_add_interface':
>> drivers/net/wireless/ath/ath9k/main.c:1255:24: error: 'IEEE80211_VIF_GET_NOA_UPDATE' undeclared (first use in this function)
      vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
                           ^
   drivers/net/wireless/ath/ath9k/main.c:1255:24: note: each undeclared identifier is reported only once for each function it appears in

vim +/IEEE80211_VIF_GET_NOA_UPDATE +1255 drivers/net/wireless/ath/ath9k/main.c

  1249		}
  1250	
  1251		ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
  1252		sc->cur_chan->nvifs++;
  1253	
  1254		if (vif->type == NL80211_IFTYPE_STATION && ath9k_is_chanctx_enabled())
> 1255			vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
  1256	
  1257		if (ath9k_uses_beacons(vif->type))
  1258			ath9k_beacon_assign_slot(sc, vif);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 51725 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] [PATCH 09/12] ath9k: request NOA update when chanctx active
Date: Thu, 12 Nov 2015 14:09:26 -0000	[thread overview]
Message-ID: <201511122152.U0VLxODP%fengguang.wu@intel.com> (raw)
In-Reply-To: <1447334149-15507-9-git-send-email-janusz.dziedzic@tieto.com>

Hi Janusz,

[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on v4.3 next-20151112]

url:    https://github.com/0day-ci/linux/commits/Janusz-Dziedzic/ath9k-add-debug-messages-to-aggr-chanctx-funcs/20151112-212004
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: i386-allmodconfig (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath9k/main.c: In function 'ath9k_add_interface':
>> drivers/net/wireless/ath/ath9k/main.c:1255:24: error: 'IEEE80211_VIF_GET_NOA_UPDATE' undeclared (first use in this function)
      vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
                           ^
   drivers/net/wireless/ath/ath9k/main.c:1255:24: note: each undeclared identifier is reported only once for each function it appears in

vim +/IEEE80211_VIF_GET_NOA_UPDATE +1255 drivers/net/wireless/ath/ath9k/main.c

  1249		}
  1250	
  1251		ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
  1252		sc->cur_chan->nvifs++;
  1253	
  1254		if (vif->type == NL80211_IFTYPE_STATION && ath9k_is_chanctx_enabled())
> 1255			vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
  1256	
  1257		if (ath9k_uses_beacons(vif->type))
  1258			ath9k_beacon_assign_slot(sc, vif);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation
-------------- next part --------------
A non-text attachment was scrubbed...
Name: .config.gz
Type: application/octet-stream
Size: 51725 bytes
Desc: not available
Url : http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20151112/075f427b/attachment-0001.obj 

  reply	other threads:[~2015-11-12 14:02 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-12 13:15 [PATCH 01/12] ath9k: add debug messages to aggr/chanctx funcs Janusz Dziedzic
2015-11-12 13:15 ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 02/12] ath9k: print real timer value Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 03/12] ath9k: queue null frames in case of MCC Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 04/12] ath9k: P2P_CLIENT, send frames after 1ms AP/GO will aprear Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 05/12] ath9k: use u32 when calculate tsf Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 19:51   ` Kalle Valo
2015-11-12 19:51     ` [ath9k-devel] " Kalle Valo
2015-11-12 13:15 ` [PATCH 06/12] ath9k: setup correct skb priority for nullfunc Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 07/12] ath9k: MCC enable Opportunistic Power Save Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 08/12] ath9k: P2P_CLIENT, get/set NOA correctly Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 09/12] ath9k: request NOA update when chanctx active Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:59   ` kbuild test robot [this message]
2015-11-12 14:09     ` kbuild test robot
2015-11-12 13:15 ` [PATCH 10/12] ath9k: MCC, add NOA also in case of an AP Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 11/12] ath9k: MCC add sta_ap_ratio module param Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic
2015-11-12 13:15 ` [PATCH 12/12] ath9k: MCC, print time elapsed between events Janusz Dziedzic
2015-11-12 13:15   ` [ath9k-devel] " Janusz Dziedzic

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=201511122152.U0VLxODP%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=ath9k-devel@lists.ath9k.org \
    --cc=janusz.dziedzic@tieto.com \
    --cc=kbuild-all@01.org \
    --cc=linux-wireless@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.