From: kernel test robot <lkp@intel.com>
To: sharmaajay@linuxonhyperv.com, Jason Gunthorpe <jgg@ziepe.ca>,
Leon Romanovsky <leon@kernel.org>,
Dexuan Cui <decui@microsoft.com>, Wei Liu <wei.liu@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
linux-rdma@vger.kernel.org, linux-hyperv@vger.kernel.org,
linux-kernel@vger.kernel.org,
Ajay Sharma <sharmaajay@microsoft.com>
Subject: Re: [Patch v2 3/5] RDMA/mana_ib : Add error eq and notification from SoC
Date: Wed, 26 Jul 2023 23:11:13 +0800 [thread overview]
Message-ID: <202307262214.QoyNnN8T-lkp@intel.com> (raw)
In-Reply-To: <1690343820-20188-4-git-send-email-sharmaajay@linuxonhyperv.com>
Hi,
kernel test robot noticed the following build warnings:
[auto build test WARNING on rdma/for-next]
[also build test WARNING on linus/master v6.5-rc3 next-20230726]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/sharmaajay-linuxonhyperv-com/RDMA-mana-ib-Rename-all-mana_ib_dev-type-variables-to-mib_dev/20230726-115925
base: https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
patch link: https://lore.kernel.org/r/1690343820-20188-4-git-send-email-sharmaajay%40linuxonhyperv.com
patch subject: [Patch v2 3/5] RDMA/mana_ib : Add error eq and notification from SoC
config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20230726/202307262214.QoyNnN8T-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce: (https://download.01.org/0day-ci/archive/20230726/202307262214.QoyNnN8T-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202307262214.QoyNnN8T-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/infiniband/hw/mana/main.c:508:6: warning: no previous prototype for 'mana_ib_soc_event_handler' [-Wmissing-prototypes]
508 | void mana_ib_soc_event_handler(void *ctx, struct gdma_queue *queue,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
vim +/mana_ib_soc_event_handler +508 drivers/infiniband/hw/mana/main.c
507
> 508 void mana_ib_soc_event_handler(void *ctx, struct gdma_queue *queue,
509 struct gdma_event *event)
510 {
511 struct mana_ib_dev *mib_dev = (struct mana_ib_dev *)ctx;
512
513 switch (event->type) {
514 case GDMA_EQE_SOC_EVENT_NOTIFICATION:
515 ibdev_info(&mib_dev->ib_dev, "Received SOC Notification");
516 break;
517 case GDMA_EQE_SOC_EVENT_TEST:
518 ibdev_info(&mib_dev->ib_dev, "Received SoC Test");
519 break;
520 default:
521 ibdev_err(&mib_dev->ib_dev, "Received unsolicited evt %d",
522 event->type);
523 }
524 }
525
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2023-07-26 15:12 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-26 3:56 [Patch v2 0/5] RDMA/mana_ib Read Capabilities sharmaajay
2023-07-26 3:56 ` [Patch v2 1/5] RDMA/mana-ib : Rename all mana_ib_dev type variables to mib_dev sharmaajay
2023-07-26 3:56 ` [Patch v2 2/5] RDMA/mana_ib : Register Mana IB device with Management SW sharmaajay
2023-07-26 3:56 ` [Patch v2 3/5] RDMA/mana_ib : Add error eq and notification from SoC sharmaajay
2023-07-26 12:25 ` Simon Horman
2023-07-26 15:11 ` kernel test robot [this message]
2023-07-26 3:56 ` [Patch v2 4/5] RDMA/mana_ib : Create Adapter - each vf bound to adapter object sharmaajay
2023-07-26 12:26 ` Simon Horman
2023-07-26 3:57 ` [Patch v2 5/5] RDMA/mana_ib : Query adapter capabilities sharmaajay
2023-07-26 12:31 ` Simon Horman
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=202307262214.QoyNnN8T-lkp@intel.com \
--to=lkp@intel.com \
--cc=davem@davemloft.net \
--cc=decui@microsoft.com \
--cc=edumazet@google.com \
--cc=jgg@ziepe.ca \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.com \
--cc=sharmaajay@linuxonhyperv.com \
--cc=sharmaajay@microsoft.com \
--cc=wei.liu@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox