All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Dominik Brodowski <linux@dominikbrodowski.net>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
	mingo@kernel.org, Linus Torvalds <torvalds@linux-foundation.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
	Andi Kleen <ak@linux.intel.com>,
	x86@kernel.org
Subject: Re: [PATCH 8/8] syscalls/x86: rename struct pt_regs-based sys_*() to __sys_x86_*()
Date: Fri, 6 Apr 2018 02:35:36 +0800	[thread overview]
Message-ID: <201804060250.L6AS31o7%fengguang.wu@intel.com> (raw)
In-Reply-To: <20180405095307.3730-9-linux@dominikbrodowski.net>

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

Hi Dominik,

I love your patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on next-20180405]
[cannot apply to tip/x86/core v4.16]
[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/Dominik-Brodowski/use-struct-pt_regs-based-syscall-calling-for-x86-64/20180406-003520
config: um-x86_64_defconfig (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=um SUBARCH=x86_64

All errors (new ones prefixed by >>):

>> arch/x86/um/sys_call_table_64.o:(.rodata+0x0): undefined reference to `__sys_x86_read'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x8): undefined reference to `__sys_x86_write'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x10): undefined reference to `__sys_x86_open'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x18): undefined reference to `__sys_x86_close'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x20): undefined reference to `__sys_x86_newstat'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x28): undefined reference to `__sys_x86_newfstat'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x30): undefined reference to `__sys_x86_newlstat'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x38): undefined reference to `__sys_x86_poll'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x40): undefined reference to `__sys_x86_lseek'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x48): undefined reference to `__sys_x86_mmap'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x50): undefined reference to `__sys_x86_mprotect'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x58): undefined reference to `__sys_x86_munmap'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x60): undefined reference to `__sys_x86_brk'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x68): undefined reference to `__sys_x86_rt_sigaction'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x70): undefined reference to `__sys_x86_rt_sigprocmask'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x78): undefined reference to `__sys_x86_rt_sigreturn'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x80): undefined reference to `__sys_x86_ioctl'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x88): undefined reference to `__sys_x86_pread64'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x90): undefined reference to `__sys_x86_pwrite64'
>> arch/x86/um/sys_call_table_64.o:(.rodata+0x98): undefined reference to `__sys_x86_readv'

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

  reply	other threads:[~2018-04-05 18:36 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-05  9:52 [PATCH 0/8] use struct pt_regs based syscall calling for x86-64 Dominik Brodowski
2018-04-05  9:53 ` [PATCH 1/8] x86: don't pointlessly reload the system call number Dominik Brodowski
2018-04-06 17:09   ` [tip:x86/asm] x86/syscalls: Don't " tip-bot for Linus Torvalds
2018-04-05  9:53 ` [PATCH 2/8] syscalls: introduce CONFIG_ARCH_HAS_SYSCALL_WRAPPER Dominik Brodowski
2018-04-06 17:10   ` [tip:x86/asm] syscalls/core: Introduce CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 3/8] syscalls/x86: use struct pt_regs based syscall calling for 64-bit syscalls Dominik Brodowski
2018-04-06 17:11   ` [tip:x86/asm] syscalls/x86: Use 'struct pt_regs' based syscall calling convention " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 4/8] syscalls: prepare ARCH_HAS_SYSCALL_WRAPPER for compat syscalls Dominik Brodowski
2018-04-06 17:11   ` [tip:x86/asm] syscalls/core: Prepare CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 5/8] syscalls/x86: use struct pt_regs based syscall calling for IA32_EMULATION and x32 Dominik Brodowski
2018-04-06 17:12   ` [tip:x86/asm] syscalls/x86: Use 'struct pt_regs' " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 6/8] syscalls/x86: unconditionally enable struct pt_regs based syscalls on x86_64 Dominik Brodowski
2018-04-06 17:12   ` [tip:x86/asm] syscalls/x86: Unconditionally enable 'struct pt_regs' " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 7/8] x86/entry/64: extend register clearing on syscall entry to lower registers Dominik Brodowski
2018-04-06 17:13   ` [tip:x86/asm] syscalls/x86: Extend " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 8/8] syscalls/x86: rename struct pt_regs-based sys_*() to __sys_x86_*() Dominik Brodowski
2018-04-05 18:35   ` kbuild test robot [this message]
2018-04-05 15:19 ` [PATCH 0/8] use struct pt_regs based syscall calling for x86-64 Ingo Molnar
2018-04-05 20:31   ` Dominik Brodowski
2018-04-06  8:23     ` Ingo Molnar
2018-04-06  8:31       ` Dominik Brodowski
2018-04-06  8:34       ` Dominik Brodowski
2018-04-06  9:20         ` Ingo Molnar
2018-04-06  9:34           ` Dominik Brodowski
2018-04-06 12:34             ` Ingo Molnar
2018-04-06 13:07               ` Dominik Brodowski
2018-04-06 17:03                 ` Ingo Molnar

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=201804060250.L6AS31o7%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=ak@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@dominikbrodowski.net \
    --cc=mingo@kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=x86@kernel.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 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.