From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750983AbdAQDkj (ORCPT ); Mon, 16 Jan 2017 22:40:39 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47510 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750820AbdAQDkh (ORCPT ); Mon, 16 Jan 2017 22:40:37 -0500 Date: Tue, 17 Jan 2017 11:40:21 +0800 From: Fam Zheng To: kbuild test robot Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org, Paolo Bonzini , linux-scsi@vger.kernel.org, "James E.J. Bottomley" , "Michael S. Tsirkin" , Jason Wang , "Martin K. Petersen" , stefanha@redhat.com, virtualization@lists.linux-foundation.org Subject: Re: [PATCH 2/2] virtio_scsi: Implement fc_host Message-ID: <20170117034021.GB21563@lemon.Home> References: <20170116160430.11815-3-famz@redhat.com> <201701170223.3QJ4sR4f%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201701170223.3QJ4sR4f%fengguang.wu@intel.com> User-Agent: Mutt/1.7.1 (2016-10-04) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Tue, 17 Jan 2017 03:40:38 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 01/17 03:02, kbuild test robot wrote: > Hi Fam, > > [auto build test ERROR on linus/master] > [also build test ERROR on v4.10-rc4 next-20170116] > [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/Fam-Zheng/virtio-scsi-Implement-FC_HOST-feature/20170117-011950 > config: i386-randconfig-r0-201703 (attached as .config) > compiler: gcc-5 (Debian 5.4.1-2) 5.4.1 20160904 > reproduce: > # save the attached .config to linux build tree > make ARCH=i386 > > All errors (new ones prefixed by >>): > > drivers/built-in.o: In function `init': > >> virtio_scsi.c:(.init.text+0x10d52): undefined reference to `fc_attach_transport' > drivers/built-in.o: In function `fini': > >> virtio_scsi.c:(.exit.text+0x14a4): undefined reference to `fc_release_transport' This is good catch. Looks like virtio-scsi will now have to depend on fc, or we wrap the fc code with #ifdef's. Fam