[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202402032150.DmM8VjRz-lkp@intel.com>
Date: Sat, 3 Feb 2024 21:15:48 +0800
From: kernel test robot <lkp@...el.com>
To: Jiaxun Yang <jiaxun.yang@...goat.com>, Oleg Nesterov <oleg@...hat.com>,
Thomas Bogendoerfer <tsbogend@...ha.franken.de>,
Andrew Morton <akpm@...ux-foundation.org>,
Ben Hutchings <bwh@...nel.org>
Cc: oe-kbuild-all@...ts.linux.dev,
Linux Memory Management List <linux-mm@...ck.org>,
linux-arch@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-mips@...r.kernel.org, Jiaxun Yang <jiaxun.yang@...goat.com>,
Xi Ruoyao <xry111@...111.site>
Subject: Re: [PATCH 3/3] mm/memory: Use exception ip to search exception
tables
Hi Jiaxun,
kernel test robot noticed the following build errors:
[auto build test ERROR on 06f658aadff0e483ee4f807b0b46c9e5cba62bfa]
url: https://github.com/intel-lab-lkp/linux/commits/Jiaxun-Yang/ptrace-Introduce-exception_ip-arch-hook/20240201-234906
base: 06f658aadff0e483ee4f807b0b46c9e5cba62bfa
patch link: https://lore.kernel.org/r/20240201-exception_ip-v1-3-aa26ab3ee0b5%40flygoat.com
patch subject: [PATCH 3/3] mm/memory: Use exception ip to search exception tables
config: i386-buildonly-randconfig-002-20240203 (https://download.01.org/0day-ci/archive/20240203/202402032150.DmM8VjRz-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/20240203/202402032150.DmM8VjRz-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202402032150.DmM8VjRz-lkp@intel.com/
All errors (new ones prefixed by >>):
mm/memory.c: In function 'get_mmap_lock_carefully':
>> mm/memory.c:5484:22: error: implicit declaration of function 'exception_ip' [-Werror=implicit-function-declaration]
unsigned long ip = exception_ip(regs);
^~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/exception_ip +5484 mm/memory.c
5477
5478 static inline bool get_mmap_lock_carefully(struct mm_struct *mm, struct pt_regs *regs)
5479 {
5480 if (likely(mmap_read_trylock(mm)))
5481 return true;
5482
5483 if (regs && !user_mode(regs)) {
> 5484 unsigned long ip = exception_ip(regs);
5485 if (!search_exception_tables(ip))
5486 return false;
5487 }
5488
5489 return !mmap_read_lock_killable(mm);
5490 }
5491
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists