linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Srujana Challa <schalla@marvell.com>, herbert@gondor.apana.org.au
Cc: kbuild-all@lists.01.org, davem@davemloft.net,
	netdev@vger.kernel.org, linux-crypto@vger.kernel.org,
	schandran@marvell.com, pathreya@marvell.com,
	sgoutham@marvell.com, Srujana Challa <schalla@marvell.com>
Subject: Re: [PATCH 4/4] crypto: marvell: enable OcteonTX2 cpt options for build
Date: Sat, 25 Jul 2020 07:54:20 +0800	[thread overview]
Message-ID: <202007250711.Z4apQnpA%lkp@intel.com> (raw)
In-Reply-To: <1595596084-29809-5-git-send-email-schalla@marvell.com>

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

Hi Srujana,

I love your patch! Yet something to improve:

[auto build test ERROR on cryptodev/master]
[also build test ERROR on crypto/master sparc-next/master linus/master v5.8-rc6 next-20200724]
[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]

url:    https://github.com/0day-ci/linux/commits/Srujana-Challa/Add-Support-for-Marvell-OcteonTX2-Cryptographic/20200724-211100
base:   https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git master
config: ia64-allmodconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 9.3.0
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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=ia64 

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 >>):

   In file included from drivers/crypto/marvell/octeontx2/otx2_cptpf_ucode.h:12,
                    from drivers/crypto/marvell/octeontx2/otx2_cptpf.h:8,
                    from drivers/crypto/marvell/octeontx2/otx2_cpt_mbox_common.h:8,
                    from drivers/crypto/marvell/octeontx2/otx2_cptpf_main.c:5:
>> drivers/crypto/marvell/octeontx2/otx2_cpt_common.h:14:10: fatal error: rvu.h: No such file or directory
      14 | #include "rvu.h"
         |          ^~~~~~~
   compilation terminated.
--
   In file included from drivers/crypto/marvell/octeontx2/otx2_cptvf_reqmgr.c:4:
>> drivers/crypto/marvell/octeontx2/otx2_cptvf.h:8:10: fatal error: mbox.h: No such file or directory
       8 | #include "mbox.h"
         |          ^~~~~~~~
   compilation terminated.

vim +14 drivers/crypto/marvell/octeontx2/otx2_cpt_common.h

9b59f386596e8e Srujana Challa 2020-07-24   7  
9b59f386596e8e Srujana Challa 2020-07-24   8  #include <linux/pci.h>
9b59f386596e8e Srujana Challa 2020-07-24   9  #include <linux/types.h>
9b59f386596e8e Srujana Challa 2020-07-24  10  #include <linux/module.h>
9b59f386596e8e Srujana Challa 2020-07-24  11  #include <linux/delay.h>
9b59f386596e8e Srujana Challa 2020-07-24  12  #include <linux/crypto.h>
9b59f386596e8e Srujana Challa 2020-07-24  13  #include "otx2_cpt_hw_types.h"
9b59f386596e8e Srujana Challa 2020-07-24 @14  #include "rvu.h"
9b59f386596e8e Srujana Challa 2020-07-24  15  

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

  parent reply	other threads:[~2020-07-25  0:41 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-24 13:08 [PATCH 0/4] Add Support for Marvell OcteonTX2 Cryptographic Srujana Challa
2020-07-24 13:08 ` [PATCH 1/4] octeontx2-af: add support to manage the CPT unit Srujana Challa
2020-07-24 13:08 ` [PATCH 2/4] drivers: crypto: add support for OCTEONTX2 CPT engine Srujana Challa
2020-07-25  3:14   ` David Miller
2020-07-27 14:12     ` Srujana Challa
2020-07-27 19:48       ` David Miller
2020-07-28  7:17         ` Srujana Challa
2020-07-24 13:08 ` [PATCH 3/4] drivers: crypto: add the Virtual Function driver for OcteonTX2 CPT Srujana Challa
2020-07-24 13:08 ` [PATCH 4/4] crypto: marvell: enable OcteonTX2 cpt options for build Srujana Challa
2020-07-24 20:42   ` kernel test robot
2020-07-24 23:54   ` kernel test robot [this message]
2020-07-26  3:55 ` [PATCH 0/4] Add Support for Marvell OcteonTX2 Cryptographic sundeep subbaraya

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=202007250711.Z4apQnpA%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=davem@davemloft.net \
    --cc=herbert@gondor.apana.org.au \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pathreya@marvell.com \
    --cc=schalla@marvell.com \
    --cc=schandran@marvell.com \
    --cc=sgoutham@marvell.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).