All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Qais Yousef <qais.yousef@imgtec.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
	tglx@linutronix.de, jason@lakedaemon.net, marc.zyngier@arm.com,
	jiang.liu@linux.intel.com, ralf@linux-mips.org,
	linux-mips@linux-mips.org, Qais Yousef <qais.yousef@imgtec.com>
Subject: Re: [PATCH 09/14] genirq: Implement irq_send_ipi() to be used by drivers
Date: Tue, 3 Nov 2015 20:09:06 +0800	[thread overview]
Message-ID: <201511032043.GG6QObR1%fengguang.wu@intel.com> (raw)
In-Reply-To: <1446549181-31788-10-git-send-email-qais.yousef@imgtec.com>

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

Hi Qais,

[auto build test WARNING on tip/irq/core -- if it's inappropriate base, please suggest rules for selecting the more suitable base]

url:    https://github.com/0day-ci/linux/commits/Qais-Yousef/Implement-generic-IPI-support-mechanism/20151103-192028
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

   include/linux/irq.h:168: warning: No description found for parameter 'ipi_mask'
>> kernel/irq/manage.c:2103: warning: No description found for parameter 'desc'
>> kernel/irq/manage.c:2103: warning: Excess function parameter 'irq_desc' description in '__irq_desc_send_ipi'
   kernel/irq/manage.c:2146: warning: No description found for parameter 'virq'
   kernel/irq/manage.c:2146: warning: Excess function parameter 'irq' description in 'irq_send_ipi'
   kernel/irq/handle.c:1: warning: no structured comments found
--
   lib/crc32.c:148: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:148: warning: Excess function parameter 'tab' description in 'crc32_le_generic'
   lib/crc32.c:293: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:293: warning: Excess function parameter 'tab' description in 'crc32_be_generic'
   lib/crc32.c:1: warning: no structured comments found
>> kernel/irq/manage.c:2103: warning: No description found for parameter 'desc'
>> kernel/irq/manage.c:2103: warning: Excess function parameter 'irq_desc' description in '__irq_desc_send_ipi'
   kernel/irq/manage.c:2146: warning: No description found for parameter 'virq'
   kernel/irq/manage.c:2146: warning: Excess function parameter 'irq' description in 'irq_send_ipi'
   block/blk-core.c:1549: warning: No description found for parameter 'same_queue_rq'
   block/blk-core.c:1549: warning: No description found for parameter 'same_queue_rq'

vim +/desc +2103 kernel/irq/manage.c

  2087		return 0;
  2088	}
  2089	
  2090	/**
  2091	 *	__irq_desc_send_ipi - send an IPI to target CPU(s)
  2092	 *	@irq_desc: pointer to irq_desc of the IRQ
  2093	 *	@dest: dest CPU(s), must be the same or a subset of the mask passed to
  2094	 *	       irq_reserve_ipi()
  2095	 *
  2096	 *	Sends an IPI to all cpus in dest mask.
  2097	 *	This function is meant to be used from arch code to save the need to do
  2098	 *	desc lookup that happens in the generic irq_send_ipi().
  2099	 *
  2100	 *	Returns zero on success and negative error number on failure.
  2101	 */
  2102	int __irq_desc_send_ipi(struct irq_desc *desc, const struct ipi_mask *dest)
> 2103	{
  2104		struct irq_data *data = irq_desc_get_irq_data(desc);
  2105		struct irq_chip *chip = irq_data_get_irq_chip(data);
  2106	
  2107		if (!chip || !chip->irq_send_ipi)
  2108			return -EINVAL;
  2109	
  2110		if (dest->nbits > data->common->ipi_mask->nbits)
  2111			return -EINVAL;

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6062 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: Qais Yousef <qais.yousef@imgtec.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
	tglx@linutronix.de, jason@lakedaemon.net, marc.zyngier@arm.com,
	jiang.liu@linux.intel.com, ralf@linux-mips.org,
	linux-mips@linux-mips.org
Subject: Re: [PATCH 09/14] genirq: Implement irq_send_ipi() to be used by drivers
Date: Tue, 3 Nov 2015 20:09:06 +0800	[thread overview]
Message-ID: <201511032043.GG6QObR1%fengguang.wu@intel.com> (raw)
Message-ID: <20151103120906.I9nTkI8eyJyEwqMF5GszX2AdZhRJ_M2Ah2EWLe4gmXY@z> (raw)
In-Reply-To: <1446549181-31788-10-git-send-email-qais.yousef@imgtec.com>

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

Hi Qais,

[auto build test WARNING on tip/irq/core -- if it's inappropriate base, please suggest rules for selecting the more suitable base]

url:    https://github.com/0day-ci/linux/commits/Qais-Yousef/Implement-generic-IPI-support-mechanism/20151103-192028
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

   include/linux/irq.h:168: warning: No description found for parameter 'ipi_mask'
>> kernel/irq/manage.c:2103: warning: No description found for parameter 'desc'
>> kernel/irq/manage.c:2103: warning: Excess function parameter 'irq_desc' description in '__irq_desc_send_ipi'
   kernel/irq/manage.c:2146: warning: No description found for parameter 'virq'
   kernel/irq/manage.c:2146: warning: Excess function parameter 'irq' description in 'irq_send_ipi'
   kernel/irq/handle.c:1: warning: no structured comments found
--
   lib/crc32.c:148: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:148: warning: Excess function parameter 'tab' description in 'crc32_le_generic'
   lib/crc32.c:293: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:293: warning: Excess function parameter 'tab' description in 'crc32_be_generic'
   lib/crc32.c:1: warning: no structured comments found
>> kernel/irq/manage.c:2103: warning: No description found for parameter 'desc'
>> kernel/irq/manage.c:2103: warning: Excess function parameter 'irq_desc' description in '__irq_desc_send_ipi'
   kernel/irq/manage.c:2146: warning: No description found for parameter 'virq'
   kernel/irq/manage.c:2146: warning: Excess function parameter 'irq' description in 'irq_send_ipi'
   block/blk-core.c:1549: warning: No description found for parameter 'same_queue_rq'
   block/blk-core.c:1549: warning: No description found for parameter 'same_queue_rq'

vim +/desc +2103 kernel/irq/manage.c

  2087		return 0;
  2088	}
  2089	
  2090	/**
  2091	 *	__irq_desc_send_ipi - send an IPI to target CPU(s)
  2092	 *	@irq_desc: pointer to irq_desc of the IRQ
  2093	 *	@dest: dest CPU(s), must be the same or a subset of the mask passed to
  2094	 *	       irq_reserve_ipi()
  2095	 *
  2096	 *	Sends an IPI to all cpus in dest mask.
  2097	 *	This function is meant to be used from arch code to save the need to do
  2098	 *	desc lookup that happens in the generic irq_send_ipi().
  2099	 *
  2100	 *	Returns zero on success and negative error number on failure.
  2101	 */
  2102	int __irq_desc_send_ipi(struct irq_desc *desc, const struct ipi_mask *dest)
> 2103	{
  2104		struct irq_data *data = irq_desc_get_irq_data(desc);
  2105		struct irq_chip *chip = irq_data_get_irq_chip(data);
  2106	
  2107		if (!chip || !chip->irq_send_ipi)
  2108			return -EINVAL;
  2109	
  2110		if (dest->nbits > data->common->ipi_mask->nbits)
  2111			return -EINVAL;

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6062 bytes --]

  reply	other threads:[~2015-11-03 12:07 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-03 11:12 [PATCH 00/14] Implement generic IPI support mechanism Qais Yousef
2015-11-03 11:12 ` Qais Yousef
2015-11-03 11:12 ` [PATCH 01/14] genirq: Add new IRQ_DOMAIN_FLAGS_IPI Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 02/14] genirq: Add DOMAIN_BUS_IPI Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 03/14] genirq: Add GENERIC_IRQ_IPI Kconfig symbol Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 04/14] genirq: Add new struct ipi_mask and helper functions Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-07 12:05   ` Thomas Gleixner
2015-11-03 11:12 ` [PATCH 05/14] genirq: Add struct ipi_mask to irq_data Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 06/14] genirq: Add struct ipi_mapping and its helper functions Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-07 12:09   ` Thomas Gleixner
2015-11-09 10:05     ` Qais Yousef
2015-11-09 10:05       ` Qais Yousef
2015-11-03 11:12 ` [PATCH 07/14] genirq: Add a new generic IPI reservation code to irq core Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 12:06   ` kbuild test robot
2015-11-03 12:06     ` kbuild test robot
2015-11-07 12:11   ` Thomas Gleixner
2015-11-07 13:31   ` Thomas Gleixner
2015-11-09 10:07     ` Qais Yousef
2015-11-09 10:07       ` Qais Yousef
2015-11-16 15:09       ` Thomas Gleixner
2015-11-03 11:12 ` [PATCH 08/14] genirq: Add a new irq_send_ipi() to irq_chip Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 09/14] genirq: Implement irq_send_ipi() to be used by drivers Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 12:09   ` kbuild test robot [this message]
2015-11-03 12:09     ` kbuild test robot
2015-11-07 12:14   ` Thomas Gleixner
2015-11-03 11:12 ` [PATCH 10/14] irqchip/mips-gic: Add a IPI hierarchy domain Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-07 14:51   ` Thomas Gleixner
2015-11-09 11:10     ` Qais Yousef
2015-11-09 11:10       ` Qais Yousef
2015-11-16 17:17       ` Thomas Gleixner
2015-11-17 10:08         ` Qais Yousef
2015-11-17 10:08           ` Qais Yousef
2015-11-17 10:11           ` Thomas Gleixner
2015-11-17 10:30             ` Qais Yousef
2015-11-17 10:30               ` Qais Yousef
2015-11-20 10:48         ` Qais Yousef
2015-11-20 10:48           ` Qais Yousef
2015-11-20 20:39           ` [PATCH 10/14] irqchip/mips-gic: Add a IPI hierarchy domaind Thomas Gleixner
2015-11-23 16:55             ` Qais Yousef
2015-11-23 16:55               ` Qais Yousef
2015-11-12 15:12     ` [PATCH 10/14] irqchip/mips-gic: Add a IPI hierarchy domain Qais Yousef
2015-11-12 15:12       ` Qais Yousef
2015-11-16 17:24       ` Thomas Gleixner
2015-11-17 10:24         ` Qais Yousef
2015-11-17 10:24           ` Qais Yousef
2015-11-17 10:30           ` Thomas Gleixner
2015-11-03 11:12 ` [PATCH 11/14] MIPS: Add generic SMP IPI support Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:12 ` [PATCH 12/14] MIPS: Make smp CMP, CPS and MT use the new generic IPI functions Qais Yousef
2015-11-03 11:12   ` Qais Yousef
2015-11-03 11:13 ` [PATCH 13/14] MIPS: Delete smp-gic.c Qais Yousef
2015-11-03 11:13   ` Qais Yousef
2015-11-03 11:13 ` [PATCH 14/14] Docs: IRQ: Add new IRQ-ipi.txt Qais Yousef
2015-11-03 11:13   ` Qais Yousef

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=201511032043.GG6QObR1%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=jason@lakedaemon.net \
    --cc=jiang.liu@linux.intel.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=marc.zyngier@arm.com \
    --cc=qais.yousef@imgtec.com \
    --cc=ralf@linux-mips.org \
    --cc=tglx@linutronix.de \
    /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.