Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1246873
| From | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism |
| Date | 2015-10-14 17:10 +0200 |
| Message-ID | <qjvQK-2a2-15@gated-at.bofh.it> (permalink) |
| References | <qj4Qx-3vO-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, 13 Oct 2015, Qais Yousef wrote: >Qais Yousef (14): > irq: add new IRQ_DOMAIN_FLAGS_IPI > irq: add GENERIC_IRQ_IPI Kconfig symbol > irq: add new struct ipi_mask > irq: add a new irq_send_ipi() to irq_chip > irq: add struct ipi_mask to irq_data > irq: add struct ipi_mapping and its helper functions > irq: add a new generic IPI reservation code to irq core > irq: implement irq_send_ipi > MIPS: add support for generic SMP IPI support > MIPS: make smp CMP, CPS and MT use the new generic IPI functions > MIPS: delete smp-gic.c > irqchip: mips-gic: add a IPI hierarchy domain > irqchip: mips-gic: implement the new irq_send_ipi > irqchip: mips-gic: remove IPI init code > > arch/mips/Kconfig | 6 -- > arch/mips/include/asm/smp-ops.h | 5 +- > arch/mips/kernel/Makefile | 1 - > arch/mips/kernel/smp-cmp.c | 4 +- > arch/mips/kernel/smp-cps.c | 4 +- > arch/mips/kernel/smp-gic.c | 64 ----------- > arch/mips/kernel/smp-mt.c | 2 +- > arch/mips/kernel/smp.c | 117 ++++++++++++++++++++ > drivers/irqchip/Kconfig | 2 + > drivers/irqchip/irq-mips-gic.c | 225 ++++++++++++++++++++++++--------------- > include/linux/irq.h | 43 ++++++++ > include/linux/irqchip/mips-gic.h | 3 - > include/linux/irqdomain.h | 19 ++++ > kernel/irq/Kconfig | 4 + > kernel/irq/irqdomain.c | 84 +++++++++++++++ > kernel/irq/manage.c | 103 ++++++++++++++++++ > 16 files changed, 517 insertions(+), 169 deletions(-) > delete mode 100644 arch/mips/kernel/smp-gic.c It strikes me that Documentation/ should at least get _some_ love. Perhaps IRQ-ipi.txt? I dunno... Thanks, Davidlohr -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[RFC v2 PATCH 00/14] Implement generic IPI support mechanism Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 12:20 +0200
[RFC v2 PATCH 03/14] irq: add new struct ipi_mask Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 12:20 +0200
Re: [RFC v2 PATCH 03/14] irq: add new struct ipi_mask Thomas Gleixner <tglx@linutronix.de> - 2015-10-13 15:30 +0200
Re: [RFC v2 PATCH 03/14] irq: add new struct ipi_mask Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 16:30 +0200
[RFC v2 PATCH 08/14] irq: implement irq_send_ipi Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 12:20 +0200
Re: [RFC v2 PATCH 08/14] irq: implement irq_send_ipi kbuild test robot <lkp@intel.com> - 2015-10-13 13:20 +0200
Re: [RFC v2 PATCH 08/14] irq: implement irq_send_ipi kbuild test robot <lkp@intel.com> - 2015-10-13 13:40 +0200
Re: [RFC v2 PATCH 08/14] irq: implement irq_send_ipi Thomas Gleixner <tglx@linutronix.de> - 2015-10-13 15:50 +0200
Re: [RFC v2 PATCH 08/14] irq: implement irq_send_ipi Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 16:50 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Thomas Gleixner <tglx@linutronix.de> - 2015-10-13 16:00 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Qais Yousef <qais.yousef@imgtec.com> - 2015-10-13 16:50 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-10-13 19:30 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Thomas Gleixner <tglx@linutronix.de> - 2015-10-13 19:30 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Davidlohr Bueso <dave@stgolabs.net> - 2015-10-14 17:10 +0200
Re: [RFC v2 PATCH 00/14] Implement generic IPI support mechanism Qais Yousef <qais.yousef@imgtec.com> - 2015-10-14 17:50 +0200
csiph-web