All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	linux-kernel@vger.kernel.org
Subject: [intel-tdx:guest 75/113] drivers/virtio/virtio.c:350:6: error: implicit declaration of function 'prot_guest_has'
Date: Fri, 27 Aug 2021 10:26:23 +0800	[thread overview]
Message-ID: <202108271016.eEKfpskl-lkp@intel.com> (raw)

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

tree:   https://github.com/intel/tdx.git guest
head:   44e41606b85b08fad5378c876547f8557f835cf6
commit: 6ab2ec84687b999b5f42477972779e801d557612 [75/113] virtio: Initialize authorized attribute for protected guest
config: hexagon-buildonly-randconfig-r003-20210826 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ea08c4cd1c0869ec5024a8bb3f5cdf06ab03ae83)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/intel/tdx/commit/6ab2ec84687b999b5f42477972779e801d557612
        git remote add intel-tdx https://github.com/intel/tdx.git
        git fetch --no-tags intel-tdx guest
        git checkout 6ab2ec84687b999b5f42477972779e801d557612
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=hexagon 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/virtio/virtio.c:350:6: error: implicit declaration of function 'prot_guest_has' [-Werror,-Wimplicit-function-declaration]
           if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
               ^
>> drivers/virtio/virtio.c:350:21: error: use of undeclared identifier 'PATTR_GUEST_DEVICE_FILTER'
           if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
                              ^
>> drivers/virtio/virtio.c:351:25: error: implicit declaration of function 'prot_guest_authorized' [-Werror,-Wimplicit-function-declaration]
                   dev->dev.authorized = prot_guest_authorized(&dev->dev,
                                         ^
   3 errors generated.


vim +/prot_guest_has +350 drivers/virtio/virtio.c

   321	
   322	/**
   323	 * register_virtio_device - register virtio device
   324	 * @dev        : virtio device to be registered
   325	 *
   326	 * On error, the caller must call put_device on &@dev->dev (and not kfree),
   327	 * as another code path may have obtained a reference to @dev.
   328	 *
   329	 * Returns: 0 on suceess, -error on failure
   330	 */
   331	int register_virtio_device(struct virtio_device *dev)
   332	{
   333		int err;
   334	
   335		dev->dev.bus = &virtio_bus;
   336		device_initialize(&dev->dev);
   337	
   338		/* Assign a unique device index and hence name. */
   339		err = ida_simple_get(&virtio_index_ida, 0, 0, GFP_KERNEL);
   340		if (err < 0)
   341			goto out;
   342	
   343		dev->index = err;
   344		dev_set_name(&dev->dev, "virtio%u", dev->index);
   345	
   346		spin_lock_init(&dev->config_lock);
   347		dev->config_enabled = false;
   348		dev->config_change_pending = false;
   349	
 > 350		if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
 > 351			dev->dev.authorized = prot_guest_authorized(&dev->dev,
   352							(char *)dev_name(&dev->dev));
   353	
   354		/* We always start by resetting the device, in case a previous
   355		 * driver messed it up.  This also tests that code path a little. */
   356		dev->config->reset(dev);
   357	
   358		/* Acknowledge that we've seen the device. */
   359		virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
   360	
   361		INIT_LIST_HEAD(&dev->vqs);
   362	
   363		/*
   364		 * device_add() causes the bus infrastructure to look for a matching
   365		 * driver.
   366		 */
   367		err = device_add(&dev->dev);
   368		if (err)
   369			ida_simple_remove(&virtio_index_ida, dev->index);
   370	out:
   371		if (err)
   372			virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
   373		return err;
   374	}
   375	EXPORT_SYMBOL_GPL(register_virtio_device);
   376	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 29778 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [intel-tdx:guest 75/113] drivers/virtio/virtio.c:350:6: error: implicit declaration of function 'prot_guest_has'
Date: Fri, 27 Aug 2021 10:26:23 +0800	[thread overview]
Message-ID: <202108271016.eEKfpskl-lkp@intel.com> (raw)

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

tree:   https://github.com/intel/tdx.git guest
head:   44e41606b85b08fad5378c876547f8557f835cf6
commit: 6ab2ec84687b999b5f42477972779e801d557612 [75/113] virtio: Initialize authorized attribute for protected guest
config: hexagon-buildonly-randconfig-r003-20210826 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ea08c4cd1c0869ec5024a8bb3f5cdf06ab03ae83)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/intel/tdx/commit/6ab2ec84687b999b5f42477972779e801d557612
        git remote add intel-tdx https://github.com/intel/tdx.git
        git fetch --no-tags intel-tdx guest
        git checkout 6ab2ec84687b999b5f42477972779e801d557612
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=hexagon 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/virtio/virtio.c:350:6: error: implicit declaration of function 'prot_guest_has' [-Werror,-Wimplicit-function-declaration]
           if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
               ^
>> drivers/virtio/virtio.c:350:21: error: use of undeclared identifier 'PATTR_GUEST_DEVICE_FILTER'
           if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
                              ^
>> drivers/virtio/virtio.c:351:25: error: implicit declaration of function 'prot_guest_authorized' [-Werror,-Wimplicit-function-declaration]
                   dev->dev.authorized = prot_guest_authorized(&dev->dev,
                                         ^
   3 errors generated.


vim +/prot_guest_has +350 drivers/virtio/virtio.c

   321	
   322	/**
   323	 * register_virtio_device - register virtio device
   324	 * @dev        : virtio device to be registered
   325	 *
   326	 * On error, the caller must call put_device on &@dev->dev (and not kfree),
   327	 * as another code path may have obtained a reference to @dev.
   328	 *
   329	 * Returns: 0 on suceess, -error on failure
   330	 */
   331	int register_virtio_device(struct virtio_device *dev)
   332	{
   333		int err;
   334	
   335		dev->dev.bus = &virtio_bus;
   336		device_initialize(&dev->dev);
   337	
   338		/* Assign a unique device index and hence name. */
   339		err = ida_simple_get(&virtio_index_ida, 0, 0, GFP_KERNEL);
   340		if (err < 0)
   341			goto out;
   342	
   343		dev->index = err;
   344		dev_set_name(&dev->dev, "virtio%u", dev->index);
   345	
   346		spin_lock_init(&dev->config_lock);
   347		dev->config_enabled = false;
   348		dev->config_change_pending = false;
   349	
 > 350		if (prot_guest_has(PATTR_GUEST_DEVICE_FILTER))
 > 351			dev->dev.authorized = prot_guest_authorized(&dev->dev,
   352							(char *)dev_name(&dev->dev));
   353	
   354		/* We always start by resetting the device, in case a previous
   355		 * driver messed it up.  This also tests that code path a little. */
   356		dev->config->reset(dev);
   357	
   358		/* Acknowledge that we've seen the device. */
   359		virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
   360	
   361		INIT_LIST_HEAD(&dev->vqs);
   362	
   363		/*
   364		 * device_add() causes the bus infrastructure to look for a matching
   365		 * driver.
   366		 */
   367		err = device_add(&dev->dev);
   368		if (err)
   369			ida_simple_remove(&virtio_index_ida, dev->index);
   370	out:
   371		if (err)
   372			virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
   373		return err;
   374	}
   375	EXPORT_SYMBOL_GPL(register_virtio_device);
   376	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29778 bytes --]

             reply	other threads:[~2021-08-27  2:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-27  2:26 kernel test robot [this message]
2021-08-27  2:26 ` [intel-tdx:guest 75/113] drivers/virtio/virtio.c:350:6: error: implicit declaration of function 'prot_guest_has' kernel test robot

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=202108271016.eEKfpskl-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.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 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.