From: kbuild test robot <lkp@intel.com>
To: Raphael Gault <raphael.gault@arm.com>
Cc: mark.rutland@arm.com, raph.gault+kdev@gmail.com,
peterz@infradead.org, catalin.marinas@arm.com,
will.deacon@arm.com, linux-kernel@vger.kernel.org,
acme@kernel.org, Raphael Gault <raphael.gault@arm.com>,
mingo@redhat.com, kbuild-all@01.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 4/5] arm64: perf: Enable pmu counter direct access for perf event on armv8
Date: Sun, 18 Aug 2019 20:37:44 +0800 [thread overview]
Message-ID: <201908182002.KAH4UW2w%lkp@intel.com> (raw)
In-Reply-To: <20190816125934.18509-5-raphael.gault@arm.com>
[-- Attachment #1: Type: text/plain, Size: 3028 bytes --]
Hi Raphael,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[cannot apply to v5.3-rc4 next-20190816]
[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/Raphael-Gault/perf-arm64-Add-test-to-check-userspace-access-to-hardware-counters/20190818-182238
config: arm-omap2plus_defconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 7.4.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=7.4.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/perf/arm_pmu.c: In function 'refresh_pmuserenr':
>> drivers/perf/arm_pmu.c:784:2: error: implicit declaration of function 'perf_switch_user_access'; did you mean 'perf_fetch_caller_regs'? [-Werror=implicit-function-declaration]
perf_switch_user_access(mm);
^~~~~~~~~~~~~~~~~~~~~~~
perf_fetch_caller_regs
drivers/perf/arm_pmu.c: In function 'armpmu_event_mapped':
>> drivers/perf/arm_pmu.c:804:36: error: 'mm_context_t {aka struct <anonymous>}' has no member named 'pmu_direct_access'
if (atomic_inc_return(&mm->context.pmu_direct_access) == 1)
^
drivers/perf/arm_pmu.c: In function 'armpmu_event_unmapped':
drivers/perf/arm_pmu.c:813:38: error: 'mm_context_t {aka struct <anonymous>}' has no member named 'pmu_direct_access'
if (atomic_dec_and_test(&mm->context.pmu_direct_access))
^
cc1: some warnings being treated as errors
vim +784 drivers/perf/arm_pmu.c
781
782 static void refresh_pmuserenr(void *mm)
783 {
> 784 perf_switch_user_access(mm);
785 }
786
787 static void armpmu_event_mapped(struct perf_event *event, struct mm_struct *mm)
788 {
789 if (!(event->hw.flags & ARMPMU_EL0_RD_CNTR))
790 return;
791
792 /*
793 * This function relies on not being called concurrently in two
794 * tasks in the same mm. Otherwise one task could observe
795 * pmu_direct_access > 1 and return all the way back to
796 * userspace with user access disabled while another task is still
797 * doing on_each_cpu_mask() to enable user access.
798 *
799 * For now, this can't happen because all callers hold mmap_sem
800 * for write. If this changes, we'll need a different solution.
801 */
802 lockdep_assert_held_write(&mm->mmap_sem);
803
> 804 if (atomic_inc_return(&mm->context.pmu_direct_access) == 1)
805 on_each_cpu(refresh_pmuserenr, mm, 1);
806 }
807
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 36719 bytes --]
[-- Attachment #3: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2019-08-18 12:38 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-16 12:59 [PATCH v3 0/5] arm64: Enable access to pmu registers by user-space Raphael Gault
2019-08-16 12:59 ` [PATCH v3 1/5] perf: arm64: Add test to check userspace access to hardware counters Raphael Gault
2019-08-16 12:59 ` [PATCH v3 2/5] arm64: cpufeature: Add feature to detect heterogeneous systems Raphael Gault
2019-08-20 15:23 ` Mark Rutland
2019-08-20 15:49 ` Mark Rutland
2019-08-20 15:55 ` Raphael Gault
2019-08-20 16:03 ` Mark Rutland
2019-08-16 12:59 ` [PATCH v3 3/5] arm64: pmu: Add function implementation to update event index in userpage Raphael Gault
2019-08-20 15:34 ` Mark Rutland
2019-08-16 12:59 ` [PATCH v3 4/5] arm64: perf: Enable pmu counter direct access for perf event on armv8 Raphael Gault
2019-08-18 12:37 ` kbuild test robot [this message]
2019-08-19 7:59 ` Raphael Gault
2019-08-20 6:49 ` [kbuild-all] " Philip Li
2019-08-16 12:59 ` [PATCH v3 5/5] Documentation: arm64: Document PMU counters access from userspace Raphael Gault
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=201908182002.KAH4UW2w%lkp@intel.com \
--to=lkp@intel.com \
--cc=acme@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=kbuild-all@01.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=raph.gault+kdev@gmail.com \
--cc=raphael.gault@arm.com \
--cc=will.deacon@arm.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 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).