Re: [PATCH 37/62] infiniband: irq: Remove IRQF_DISABLED

From: Hoang-Nam Nguyen
Date: Tue Sep 13 2011 - 04:28:02 EST


This patch looks fine to me.
Thx
Nam

> From: Yong Zhang <yong.zhang0@xxxxxxxxx>
> To: linux-kernel@xxxxxxxxxxxxxxx
> Cc: tglx@xxxxxxxxxxxxx, mingo@xxxxxxx, Hoang-Nam Nguyen/Germany/
> IBM@IBMDE, Christoph Raisch/Germany/IBM@IBMDE, Roland Dreier
> <roland@xxxxxxxxxx>, Sean Hefty <sean.hefty@xxxxxxxxx>, Hal
> Rosenstock <hal.rosenstock@xxxxxxxxx>, linux-rdma@xxxxxxxxxxxxxxx
> Date: 09/07/2011 10:22 AM
> Subject: [PATCH 37/62] infiniband: irq: Remove IRQF_DISABLED
>
> This flag is a NOOP and can be removed now.
>
> Signed-off-by: Yong Zhang <yong.zhang0@xxxxxxxxx>
> ---
> drivers/infiniband/hw/ehca/ehca_eq.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/hw/ehca/ehca_eq.c b/drivers/
> infiniband/hw/ehca/ehca_eq.c
> index d9b1bb4..818d721 100644
> --- a/drivers/infiniband/hw/ehca/ehca_eq.c
> +++ b/drivers/infiniband/hw/ehca/ehca_eq.c
> @@ -125,7 +125,7 @@ int ehca_create_eq(struct ehca_shca *shca,
> tasklet_init(&eq->interrupt_task, ehca_tasklet_eq, (long)shca);
>
> ret = ibmebus_request_irq(eq->ist, ehca_interrupt_eq,
> - IRQF_DISABLED, "ehca_eq",
> + 0, "ehca_eq",
> (void *)shca);
> if (ret < 0)
> ehca_err(ib_dev, "Can't map interrupt handler.");
> @@ -133,7 +133,7 @@ int ehca_create_eq(struct ehca_shca *shca,
> tasklet_init(&eq->interrupt_task, ehca_tasklet_neq, (long)shca);
>
> ret = ibmebus_request_irq(eq->ist, ehca_interrupt_neq,
> - IRQF_DISABLED, "ehca_neq",
> + 0, "ehca_neq",
> (void *)shca);
> if (ret < 0)
> ehca_err(ib_dev, "Can't map interrupt handler.");
> --
> 1.7.4.1
>

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