From: kernel test robot <lkp@intel.com>
To: Josh Poimboeuf <jpoimboe@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH RFC 09/10] unwind: Introduce SFrame user space unwinding
Date: Fri, 10 Nov 2023 19:12:36 +0800 [thread overview]
Message-ID: <202311101855.npau2GOV-lkp@intel.com> (raw)
In-Reply-To: <09460e60dd1c2f8ea1abb8d9188195db699ce76f.1699487758.git.jpoimboe@kernel.org>
Hi Josh,
[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:
[auto build test WARNING on linus/master]
[also build test WARNING on next-20231110]
[cannot apply to perf-tools-next/perf-tools-next tip/perf/core perf-tools/perf-tools acme/perf/core v6.6]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Josh-Poimboeuf/perf-Remove-get_perf_callchain-init_nr-argument/20231109-085548
base: linus/master
patch link: https://lore.kernel.org/r/09460e60dd1c2f8ea1abb8d9188195db699ce76f.1699487758.git.jpoimboe%40kernel.org
patch subject: [PATCH RFC 09/10] unwind: Introduce SFrame user space unwinding
config: x86_64-randconfig-001-20231110 (https://download.01.org/0day-ci/archive/20231110/202311101855.npau2GOV-lkp@intel.com/config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231110/202311101855.npau2GOV-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202311101855.npau2GOV-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from kernel/unwind/user.c:9:0:
>> arch/x86/include/asm/user_unwind.h:6:13: warning: overflow in implicit constant conversion [-Woverflow]
.ra_off = sizeof(long) * -1, \
^
kernel/unwind/user.c:12:2: note: in expansion of macro 'ARCH_INIT_USER_FP_FRAME'
ARCH_INIT_USER_FP_FRAME
^~~~~~~~~~~~~~~~~~~~~~~
arch/x86/include/asm/user_unwind.h:8:13: warning: overflow in implicit constant conversion [-Woverflow]
.fp_off = sizeof(long) * -2, \
^
kernel/unwind/user.c:12:2: note: in expansion of macro 'ARCH_INIT_USER_FP_FRAME'
ARCH_INIT_USER_FP_FRAME
^~~~~~~~~~~~~~~~~~~~~~~
vim +6 arch/x86/include/asm/user_unwind.h
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 4
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 5 #define ARCH_INIT_USER_FP_FRAME \
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 @6 .ra_off = sizeof(long) * -1, \
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 7 .cfa_off = sizeof(long) * 2, \
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 8 .fp_off = sizeof(long) * -2, \
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 9 .use_fp = true,
c8c95a7eb658588 Josh Poimboeuf 2023-11-08 10
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2023-11-10 11:13 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-09 0:41 [PATCH RFC 00/10] perf: user space sframe unwinding Josh Poimboeuf
2023-11-09 0:41 ` [PATCH RFC 01/10] perf: Remove get_perf_callchain() 'init_nr' argument Josh Poimboeuf
2023-11-11 6:09 ` Namhyung Kim
2023-11-09 0:41 ` [PATCH RFC 02/10] perf: Remove get_perf_callchain() 'crosstask' argument Josh Poimboeuf
2023-11-11 6:11 ` Namhyung Kim
2023-11-11 20:53 ` Jordan Rome
2023-11-09 0:41 ` [PATCH RFC 03/10] perf: Simplify get_perf_callchain() user logic Josh Poimboeuf
2023-11-11 6:11 ` Namhyung Kim
2023-11-09 0:41 ` [PATCH RFC 04/10] perf: Introduce deferred user callchains Josh Poimboeuf
2023-11-11 6:57 ` Namhyung Kim
2023-11-11 18:49 ` Josh Poimboeuf
2023-11-11 18:54 ` Josh Poimboeuf
2023-11-13 16:56 ` Namhyung Kim
2023-11-13 17:21 ` Peter Zijlstra
2023-11-13 17:48 ` Namhyung Kim
2023-11-13 18:49 ` Peter Zijlstra
2023-11-13 19:16 ` Namhyung Kim
2023-11-15 16:13 ` Namhyung Kim
2023-11-20 14:03 ` Peter Zijlstra
2024-09-13 13:08 ` Josh Poimboeuf
2024-09-13 13:36 ` Peter Zijlstra
2024-09-13 13:53 ` Josh Poimboeuf
2024-09-13 14:47 ` Josh Poimboeuf
2024-09-13 15:26 ` Peter Zijlstra
2023-11-09 0:41 ` [PATCH RFC 05/10] perf/x86: Add HAVE_PERF_CALLCHAIN_DEFERRED Josh Poimboeuf
2023-11-09 0:41 ` [PATCH RFC 06/10] unwind: Introduce generic user space unwinding interfaces Josh Poimboeuf
2023-11-09 0:41 ` [PATCH RFC 07/10] unwind/x86: Add HAVE_USER_UNWIND Josh Poimboeuf
2023-11-09 0:41 ` [PATCH RFC 08/10] perf/x86: Use user_unwind interface Josh Poimboeuf
2023-11-09 0:41 ` [PATCH RFC 09/10] unwind: Introduce SFrame user space unwinding Josh Poimboeuf
2023-11-09 19:31 ` Indu Bhagat
2023-11-09 19:37 ` Josh Poimboeuf
2023-11-09 19:49 ` Steven Rostedt
2023-11-09 19:53 ` Josh Poimboeuf
2023-11-10 11:12 ` kernel test robot [this message]
2023-11-09 0:41 ` [PATCH RFC 10/10] unwind/x86/64: Add HAVE_USER_UNWIND_SFRAME Josh Poimboeuf
2023-11-09 0:45 ` [PATCH RFC 00/10] perf: user space sframe unwinding Josh Poimboeuf
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=202311101855.npau2GOV-lkp@intel.com \
--to=lkp@intel.com \
--cc=jpoimboe@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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.