All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: manikanta.pubbisetty@gmail.com
Cc: kbuild-all@01.org, ath10k@lists.infradead.org,
	linux-wireless@vger.kernel.org,
	Manikanta Pubbisetty <manikanta.pubbisetty@gmail.com>
Subject: Re: [PATCH] ath10k: consolidate if statements in ath10k_wmi_event_mgmt_rx
Date: Wed, 21 Oct 2015 02:59:50 +0800	[thread overview]
Message-ID: <201510210238.TeLjyzvp%fengguang.wu@intel.com> (raw)
In-Reply-To: <1445320966-17024-1-git-send-email-manikanta.pubbisetty@gmail.com>

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

Hi Manikanta,

[auto build test ERROR on wireless-drivers/master -- if it's inappropriate base, please suggest rules for selecting the more suitable base]

url:    https://github.com/0day-ci/linux/commits/manikanta-pubbisetty-gmail-com/ath10k-consolidate-if-statements-in-ath10k_wmi_event_mgmt_rx/20151021-023414
config: xtensa-allyesconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=xtensa 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/wmi.c: In function 'ath10k_wmi_event_mgmt_rx':
>> drivers/net/wireless/ath/ath10k/wmi.c:2204:7: error: 'rx_stats' undeclared (first use in this function)
         (rx_stats & (WMI_RX_STATUS_ERR_DECRYPT |
          ^
   drivers/net/wireless/ath/ath10k/wmi.c:2204:7: note: each undeclared identifier is reported only once for each function it appears in

vim +/rx_stats +2204 drivers/net/wireless/ath/ath10k/wmi.c

  2198		memset(status, 0, sizeof(*status));
  2199	
  2200		ath10k_dbg(ar, ATH10K_DBG_MGMT,
  2201			   "event mgmt rx status %08x\n", rx_status);
  2202	
  2203		if ((test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags)) ||
> 2204		    (rx_stats & (WMI_RX_STATUS_ERR_DECRYPT |
  2205		    WMI_RX_STATUS_ERR_KEY_CACHE_MISS | WMI_RX_STATUS_ERR_CRC))) {
  2206			dev_kfree_skb(skb);
  2207			return 0;

---
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: 42331 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: manikanta.pubbisetty@gmail.com
Cc: linux-wireless@vger.kernel.org, kbuild-all@01.org,
	ath10k@lists.infradead.org
Subject: Re: [PATCH] ath10k: consolidate if statements in ath10k_wmi_event_mgmt_rx
Date: Wed, 21 Oct 2015 02:59:50 +0800	[thread overview]
Message-ID: <201510210238.TeLjyzvp%fengguang.wu@intel.com> (raw)
In-Reply-To: <1445320966-17024-1-git-send-email-manikanta.pubbisetty@gmail.com>

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

Hi Manikanta,

[auto build test ERROR on wireless-drivers/master -- if it's inappropriate base, please suggest rules for selecting the more suitable base]

url:    https://github.com/0day-ci/linux/commits/manikanta-pubbisetty-gmail-com/ath10k-consolidate-if-statements-in-ath10k_wmi_event_mgmt_rx/20151021-023414
config: xtensa-allyesconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=xtensa 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/wmi.c: In function 'ath10k_wmi_event_mgmt_rx':
>> drivers/net/wireless/ath/ath10k/wmi.c:2204:7: error: 'rx_stats' undeclared (first use in this function)
         (rx_stats & (WMI_RX_STATUS_ERR_DECRYPT |
          ^
   drivers/net/wireless/ath/ath10k/wmi.c:2204:7: note: each undeclared identifier is reported only once for each function it appears in

vim +/rx_stats +2204 drivers/net/wireless/ath/ath10k/wmi.c

  2198		memset(status, 0, sizeof(*status));
  2199	
  2200		ath10k_dbg(ar, ATH10K_DBG_MGMT,
  2201			   "event mgmt rx status %08x\n", rx_status);
  2202	
  2203		if ((test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags)) ||
> 2204		    (rx_stats & (WMI_RX_STATUS_ERR_DECRYPT |
  2205		    WMI_RX_STATUS_ERR_KEY_CACHE_MISS | WMI_RX_STATUS_ERR_CRC))) {
  2206			dev_kfree_skb(skb);
  2207			return 0;

---
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: 42331 bytes --]

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

  reply	other threads:[~2015-10-20 19:00 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-20  6:02 [PATCH] ath10k: consolidate if statements in ath10k_wmi_event_mgmt_rx manikanta.pubbisetty
2015-10-20  6:02 ` manikanta.pubbisetty
2015-10-20 18:59 ` kbuild test robot [this message]
2015-10-20 18:59   ` kbuild test robot

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=201510210238.TeLjyzvp%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=ath10k@lists.infradead.org \
    --cc=kbuild-all@01.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=manikanta.pubbisetty@gmail.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 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.