On Thu, 1 May 2014, Yinghai Lu wrote:
> Prepare for ioapic hotplug.
> 
> Signed-off-by: Yinghai Lu <ying...@kernel.org>
> ---
>  include/linux/irq.h  |  3 +++
>  kernel/irq/irqdesc.c | 68 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 71 insertions(+)
> 
> diff --git a/include/linux/irq.h b/include/linux/irq.h
> index 02dc0e4..2ba3245 100644
> --- a/include/linux/irq.h
> +++ b/include/linux/irq.h
> @@ -603,6 +603,9 @@ static inline u32 irq_get_trigger_type(unsigned int irq)
>       return d ? irqd_get_trigger_type(d) : 0;
>  }
>  
> +int irq_clear_reserved_irqs(unsigned int from, unsigned int cnt);
> +int irq_mark_reserved_irqs(int irq, unsigned int from, unsigned int cnt);
> +
>  int __irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node,
>               struct module *owner);
>  
> diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c
> index 49bf891..865ebc0 100644
> --- a/kernel/irq/irqdesc.c
> +++ b/kernel/irq/irqdesc.c
> @@ -97,6 +97,7 @@ int nr_irqs = NR_IRQS;
>  EXPORT_SYMBOL_GPL(nr_irqs);
>  
>  static DEFINE_MUTEX(sparse_irq_lock);
> +static DECLARE_BITMAP(reserved_irqs, IRQ_BITMAP_BITS);
>  static DECLARE_BITMAP(allocated_irqs, IRQ_BITMAP_BITS);
>  
>  #ifdef CONFIG_SPARSE_IRQ
> @@ -400,6 +401,73 @@ err:
>  EXPORT_SYMBOL_GPL(__irq_alloc_descs);
>  
>  /**
> + * irq_clear_reserved_irqs - clear irqs reserved
> + * @from:    clear from irq number
> + * @cnt:     number of irqs to clear
> + *
> + * Returns 0 on success or an appropriate error code
> + */
> +int irq_clear_reserved_irqs(unsigned int from, unsigned int cnt)
> +{
> +     if (!cnt || (from + cnt) > nr_irqs)
> +             return -EINVAL;
> +
> +     mutex_lock(&sparse_irq_lock);
> +     bitmap_clear(reserved_irqs, from, cnt);
> +     mutex_unlock(&sparse_irq_lock);
> +
> +     return 0;
> +}
> +
> +/**
> + * irq_mark_reserved_irqs - mark irqs reserved
> + * @irq:     Allocate for specific irq number if irq >= 0
> + * @from:    mark from irq number
> + * @cnt:     number of irqs to mark
> + *
> + * Returns the first irq number or error code
> + */
> +int irq_mark_reserved_irqs(int irq, unsigned int from, unsigned int cnt)
> +{
> +     unsigned int start, reserve;
> +     int ret;
> +
> +     if (!cnt)
> +             return -EINVAL;
> +
> +     if (irq >= 0) {
> +             if (from > irq)
> +                     return -EINVAL;
> +             from = irq;
> +     }
> +
> +     mutex_lock(&sparse_irq_lock);
> +     start = bitmap_find_next_zero_area(allocated_irqs, IRQ_BITMAP_BITS,
> +                                             from, cnt, 0);
> +     ret = -EEXIST;
> +     if (irq >= 0 && start != irq)
> +             goto err;
> +
> +     if (start + cnt > nr_irqs) {
> +             ret = irq_expand_nr_irqs(start + cnt);
> +             if (ret)
> +                     goto err;
> +     }
> +
> +     reserve = bitmap_find_next_zero_area(reserved_irqs, nr_irqs, start,
> +                                             cnt, 0);
> +     if (reserve == start) {
> +             ret = start;
> +             bitmap_set(reserved_irqs, start, cnt);
> +     } else
> +             ret = -EEXIST;

And what exactly is the point of this exercise?

Something calls irq_mark_reserved_irqs() which sets the bits in
reserved_irqs and then before the irqs are allocated for the reserved
range some random driver allocates an MSI IRQ and that calls
alloc_irq() which will happily take an interrupt out of the reserved
area.

This is beyond sloppy. Go and find something to hack on which fits
your incompetence. "Hello world!" might be a good starting point.

My patience with you is finally exhausted. I'm not longer going to
deal with you and waste my precious time.

Send your future patches to /dev/null right away as they are going to
end up via procmail there anyway. Spare the bandwidth.

Thanks,

        tglx







--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to