Function report |
Source Code:kernel\irq\ipi.c |
Create Date:2022-07-28 10:15:40 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:pi_send_mask - send an IPI to target Linux SMP CPU(s)*@desc: pointer to irq_desc of the IRQ*@dest: dest CPU(s), must be a subset of the mask passed to* irq_reserve_ipi()* This function is for architecture or core code to speed up IPI sending. Not
Proto:int __ipi_send_mask(struct irq_desc *desc, const struct cpumask *dest)
Type:int
Parameter:
Type | Parameter | Name |
---|---|---|
struct irq_desc * | desc | |
const struct cpumask * | dest |
265 | data = irq_desc_get_irq_data(desc) |
266 | chip = irq_data_get_irq_chip(data) |
278 | If ipi_send_mask Then |
279 | ipi_send_mask(data, dest) |
280 | Return 0 |
283 | If irq_domain_is_ipi_per_cpu(domain) Then |
292 | Else |
293 | for_each_cpu(cpu, dest) |
294 | ipi_send_single(data, cpu) |
296 | Return 0 |
Name | Describe |
---|---|
ipi_send_mask | pi_send_mask - Send an IPI to target CPU(s)*@virq: linux irq number from irq_reserve_ipi()*@dest: dest CPU(s), must be a subset of the mask passed to* irq_reserve_ipi()* Returns zero on success and negative error number on failure. |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |