From: john.garry@huawei.com (John Garry)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/6] drivers: perf: hisi: Add support for HiSilicon SoC HHA PMU driver
Date: Wed, 28 Jun 2017 11:55:44 +0100 [thread overview]
Message-ID: <b9e7ef7f-518c-b2db-a704-a808a712fb26@huawei.com> (raw)
In-Reply-To: <201706281706.O4jmBQ6k%fengguang.wu@intel.com>
On 28/06/2017 10:56, kbuild test robot wrote:
> Hi Shaokun,
>
> [auto build test ERROR on next-20170619]
> [also build test ERROR on v4.12-rc7]
> [cannot apply to linus/master linux/master arm64/for-next/core v4.12-rc6 v4.12-rc5 v4.12-rc4]
> [if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
>
> url: https://github.com/0day-ci/linux/commits/Shaokun-Zhang/Add-HiSilicon-SoC-uncore-Performance-Monitoring-Unit-driver/20170628-070841
> config: i386-allmodconfig (attached as .config)
> compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c: In function 'hisi_hha_pmu_read_counter':
>>> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c:71:9: error: implicit declaration of function 'readq' [-Werror=implicit-function-declaration]
> return readq(hha_pmu->base + reg);
> ^~~~~
> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c: In function 'hisi_hha_pmu_write_counter':
>>> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c:87:2: error: implicit declaration of function 'writeq' [-Werror=implicit-function-declaration]
> writeq(val, hha_pmu->base + reg);
> ^~~~~~
> cc1: some warnings being treated as errors
I think that these will not reappear for v2 series since you have
removed COMPILE_TEST in the Kconfig
>
> coccinelle warnings: (new ones prefixed by >>)
>
>>> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c:272:1-3: WARNING: PTR_ERR_OR_ZERO can be used
I think coccinelle is recommending this:
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
hha_pmu->base = devm_ioremap_resource(dev, res);
return PTR_ERR_OR_ZERO(hha_pmu->base);
}
However you could leave as is with the IS_ERR check and add a print for
ioremap error'ing
>
> Please review and possibly fold the followup patch.
>
> vim +/readq +71 drivers/perf/hisilicon/hisi_uncore_hha_pmu.c
>
> 65 return 0;
> 66 }
> 67
> 68 reg = get_counter_reg_off(idx);
> 69
> 70 /* Read 64 bits and like L3C, top 16 bits are RAZ */
> > 71 return readq(hha_pmu->base + reg);
> 72 }
> 73
> 74 static void hisi_hha_pmu_write_counter(struct hisi_pmu *hha_pmu,
> 75 struct hw_perf_event *hwc, u64 val)
> 76 {
> 77 u32 idx = hwc->idx;
> 78 u32 reg;
> 79
> 80 if (!hisi_uncore_pmu_counter_valid(hha_pmu, idx)) {
> 81 dev_err(hha_pmu->dev, "Unsupported event index:%d!\n", idx);
> 82 return;
> 83 }
> 84
> 85 reg = get_counter_reg_off(idx);
> 86 /* Write 64 bits and like L3C, top 16 bits are WI */
> > 87 writeq(val, hha_pmu->base + reg);
> 88 }
> 89
> 90 static void hisi_hha_pmu_write_evtype(struct hisi_pmu *hha_pmu, int idx,
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
>
>
> _______________________________________________
> linuxarm mailing list
> linuxarm at huawei.com
> http://rnd-openeuler.huawei.com/mailman/listinfo/linuxarm
>
next prev parent reply other threads:[~2017-06-28 10:55 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-27 8:26 [PATCH 0/6] Add HiSilicon SoC uncore Performance Monitoring Unit driver Shaokun Zhang
2017-06-27 8:26 ` [PATCH 1/6] Documentation: perf: hisi: Documentation for HiSilicon SoC PMU driver Shaokun Zhang
2017-06-27 8:26 ` [PATCH 2/6] drivers: perf: hisi: Add support for HiSilicon SoC uncore " Shaokun Zhang
2017-06-28 1:49 ` kbuild test robot
2017-06-28 5:50 ` Zhangshaokun
2017-06-27 8:26 ` [PATCH 3/6] drivers: perf: hisi: Add support for HiSilicon SoC L3C " Shaokun Zhang
2017-06-28 9:21 ` [PATCH] drivers: perf: hisi: fix ptr_ret.cocci warnings kbuild test robot
2017-06-28 9:21 ` [PATCH 3/6] drivers: perf: hisi: Add support for HiSilicon SoC L3C PMU driver kbuild test robot
2017-06-27 8:26 ` [PATCH 4/6] drivers: perf: hisi: Add support for HiSilicon SoC HHA " Shaokun Zhang
2017-06-28 9:56 ` [PATCH] drivers: perf: hisi: fix ptr_ret.cocci warnings kbuild test robot
2017-06-28 9:56 ` [PATCH 4/6] drivers: perf: hisi: Add support for HiSilicon SoC HHA PMU driver kbuild test robot
2017-06-28 10:55 ` John Garry [this message]
2017-06-27 8:26 ` [PATCH 5/6] drivers: perf: hisi: Add support for HiSilicon SoC DDRC " Shaokun Zhang
2017-06-28 10:42 ` [PATCH] drivers: perf: hisi: fix ptr_ret.cocci warnings kbuild test robot
2017-06-28 10:42 ` [PATCH 5/6] drivers: perf: hisi: Add support for HiSilicon SoC DDRC PMU driver kbuild test robot
2017-06-27 8:26 ` [PATCH 6/6] arm64: MAINTAINERS: hisi: Add HiSilicon SoC PMU support Shaokun Zhang
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=b9e7ef7f-518c-b2db-a704-a808a712fb26@huawei.com \
--to=john.garry@huawei.com \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).