All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp at intel.com>
To: mptcp at lists.01.org
Subject: [MPTCP] [mptcp:export 980/1097] drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:34:1: warning: no previous prototype for 'mlx5_esw_indir_table_init'
Date: Tue, 09 Feb 2021 19:41:27 +0800	[thread overview]
Message-ID: <202102091925.b7FePGQJ-lkp@intel.com> (raw)

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

tree:   https://github.com/multipath-tcp/mptcp_net-next.git export
head:   6c723e9819cfcbf50da3779b526928008ad1b6d8
commit: 34ca65352ddf2aaa094f4016369103c4c7b98958 [980/1097] net/mlx5: E-Switch, Indirect table infrastructure
config: sparc-randconfig-r015-20210209 (attached as .config)
compiler: sparc64-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
        # https://github.com/multipath-tcp/mptcp_net-next/commit/34ca65352ddf2aaa094f4016369103c4c7b98958
        git remote add mptcp https://github.com/multipath-tcp/mptcp_net-next.git
        git fetch --no-tags mptcp export
        git checkout 34ca65352ddf2aaa094f4016369103c4c7b98958
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sparc 

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

All warnings (new ones prefixed by >>):

   In file included from drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c:41:
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:34:1: warning: no previous prototype for 'mlx5_esw_indir_table_init' [-Wmissing-prototypes]
      34 | mlx5_esw_indir_table_init(void)
         | ^~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:40:1: warning: no previous prototype for 'mlx5_esw_indir_table_destroy' [-Wmissing-prototypes]
      40 | mlx5_esw_indir_table_destroy(struct mlx5_esw_indir_table *indir)
         | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:61:1: warning: no previous prototype for 'mlx5_esw_indir_table_needed' [-Wmissing-prototypes]
      61 | mlx5_esw_indir_table_needed(struct mlx5_eswitch *esw,
         | ^~~~~~~~~~~~~~~~~~~~~~~~~~~

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for COMPAT_BINFMT_ELF
   Depends on COMPAT && BINFMT_ELF
   Selected by
   - COMPAT && SPARC64


vim +/mlx5_esw_indir_table_init +34 drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h

    30	
    31	#else
    32	/* indir API stubs */
    33	struct mlx5_esw_indir_table *
  > 34	mlx5_esw_indir_table_init(void)
    35	{
    36		return NULL;
    37	}
    38	
    39	void
  > 40	mlx5_esw_indir_table_destroy(struct mlx5_esw_indir_table *indir)
    41	{
    42	}
    43	
    44	static inline struct mlx5_flow_table *
    45	mlx5_esw_indir_table_get(struct mlx5_eswitch *esw,
    46				 struct mlx5_flow_attr *attr,
    47				 struct mlx5_flow_spec *spec,
    48				 u16 vport, bool decap)
    49	{
    50		return ERR_PTR(-EOPNOTSUPP);
    51	}
    52	
    53	static inline void
    54	mlx5_esw_indir_table_put(struct mlx5_eswitch *esw,
    55				 struct mlx5_flow_attr *attr,
    56				 u16 vport, bool decap)
    57	{
    58	}
    59	
    60	bool
  > 61	mlx5_esw_indir_table_needed(struct mlx5_eswitch *esw,
    62				    struct mlx5_flow_attr *attr,
    63				    u16 vport_num,
    64				    struct mlx5_core_dev *dest_mdev)
    65	{
    66		return false;
    67	}
    68	

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [mptcp:export 980/1097] drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:34:1: warning: no previous prototype for 'mlx5_esw_indir_table_init'
Date: Tue, 09 Feb 2021 19:41:27 +0800	[thread overview]
Message-ID: <202102091925.b7FePGQJ-lkp@intel.com> (raw)

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

tree:   https://github.com/multipath-tcp/mptcp_net-next.git export
head:   6c723e9819cfcbf50da3779b526928008ad1b6d8
commit: 34ca65352ddf2aaa094f4016369103c4c7b98958 [980/1097] net/mlx5: E-Switch, Indirect table infrastructure
config: sparc-randconfig-r015-20210209 (attached as .config)
compiler: sparc64-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
        # https://github.com/multipath-tcp/mptcp_net-next/commit/34ca65352ddf2aaa094f4016369103c4c7b98958
        git remote add mptcp https://github.com/multipath-tcp/mptcp_net-next.git
        git fetch --no-tags mptcp export
        git checkout 34ca65352ddf2aaa094f4016369103c4c7b98958
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sparc 

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

All warnings (new ones prefixed by >>):

   In file included from drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c:41:
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:34:1: warning: no previous prototype for 'mlx5_esw_indir_table_init' [-Wmissing-prototypes]
      34 | mlx5_esw_indir_table_init(void)
         | ^~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:40:1: warning: no previous prototype for 'mlx5_esw_indir_table_destroy' [-Wmissing-prototypes]
      40 | mlx5_esw_indir_table_destroy(struct mlx5_esw_indir_table *indir)
         | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:61:1: warning: no previous prototype for 'mlx5_esw_indir_table_needed' [-Wmissing-prototypes]
      61 | mlx5_esw_indir_table_needed(struct mlx5_eswitch *esw,
         | ^~~~~~~~~~~~~~~~~~~~~~~~~~~

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for COMPAT_BINFMT_ELF
   Depends on COMPAT && BINFMT_ELF
   Selected by
   - COMPAT && SPARC64


vim +/mlx5_esw_indir_table_init +34 drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h

    30	
    31	#else
    32	/* indir API stubs */
    33	struct mlx5_esw_indir_table *
  > 34	mlx5_esw_indir_table_init(void)
    35	{
    36		return NULL;
    37	}
    38	
    39	void
  > 40	mlx5_esw_indir_table_destroy(struct mlx5_esw_indir_table *indir)
    41	{
    42	}
    43	
    44	static inline struct mlx5_flow_table *
    45	mlx5_esw_indir_table_get(struct mlx5_eswitch *esw,
    46				 struct mlx5_flow_attr *attr,
    47				 struct mlx5_flow_spec *spec,
    48				 u16 vport, bool decap)
    49	{
    50		return ERR_PTR(-EOPNOTSUPP);
    51	}
    52	
    53	static inline void
    54	mlx5_esw_indir_table_put(struct mlx5_eswitch *esw,
    55				 struct mlx5_flow_attr *attr,
    56				 u16 vport, bool decap)
    57	{
    58	}
    59	
    60	bool
  > 61	mlx5_esw_indir_table_needed(struct mlx5_eswitch *esw,
    62				    struct mlx5_flow_attr *attr,
    63				    u16 vport_num,
    64				    struct mlx5_core_dev *dest_mdev)
    65	{
    66		return false;
    67	}
    68	

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

             reply	other threads:[~2021-02-09 11:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-09 11:41 kernel test robot [this message]
2021-02-09 11:41 ` [mptcp:export 980/1097] drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.h:34:1: warning: no previous prototype for 'mlx5_esw_indir_table_init' 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=202102091925.b7FePGQJ-lkp@intel.com \
    --to=unknown@example.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.