linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipmi: remove deprecated IRQF_DISABLED
@ 2013-10-13  3:59 Michael Opdenacker
  2013-10-13 19:45 ` Corey Minyard
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Opdenacker @ 2013-10-13  3:59 UTC (permalink / raw)
  To: minyard; +Cc: openipmi-developer, linux-kernel, Michael Opdenacker

This patch proposes to remove the use of the IRQF_DISABLED flag

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
---
 drivers/char/ipmi/ipmi_si_intf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
index 15e4a60..68c5ef5 100644
--- a/drivers/char/ipmi/ipmi_si_intf.c
+++ b/drivers/char/ipmi/ipmi_si_intf.c
@@ -1358,7 +1358,7 @@ static int std_irq_setup(struct smi_info *info)
 	if (info->si_type == SI_BT) {
 		rv = request_irq(info->irq,
 				 si_bt_irq_handler,
-				 IRQF_SHARED | IRQF_DISABLED,
+				 IRQF_SHARED,
 				 DEVICE_NAME,
 				 info);
 		if (!rv)
@@ -1368,7 +1368,7 @@ static int std_irq_setup(struct smi_info *info)
 	} else
 		rv = request_irq(info->irq,
 				 si_irq_handler,
-				 IRQF_SHARED | IRQF_DISABLED,
+				 IRQF_SHARED,
 				 DEVICE_NAME,
 				 info);
 	if (rv) {
-- 
1.8.1.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ipmi: remove deprecated IRQF_DISABLED
  2013-10-13  3:59 [PATCH] ipmi: remove deprecated IRQF_DISABLED Michael Opdenacker
@ 2013-10-13 19:45 ` Corey Minyard
  2013-12-09  9:31   ` Michael Opdenacker
  0 siblings, 1 reply; 4+ messages in thread
From: Corey Minyard @ 2013-10-13 19:45 UTC (permalink / raw)
  To: Michael Opdenacker; +Cc: openipmi-developer, linux-kernel

Thanks, it's in the queue.

-corey

On 10/12/2013 10:59 PM, Michael Opdenacker wrote:
> This patch proposes to remove the use of the IRQF_DISABLED flag
>
> It's a NOOP since 2.6.35 and it will be removed one day.
>
> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> ---
>  drivers/char/ipmi/ipmi_si_intf.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
> index 15e4a60..68c5ef5 100644
> --- a/drivers/char/ipmi/ipmi_si_intf.c
> +++ b/drivers/char/ipmi/ipmi_si_intf.c
> @@ -1358,7 +1358,7 @@ static int std_irq_setup(struct smi_info *info)
>  	if (info->si_type == SI_BT) {
>  		rv = request_irq(info->irq,
>  				 si_bt_irq_handler,
> -				 IRQF_SHARED | IRQF_DISABLED,
> +				 IRQF_SHARED,
>  				 DEVICE_NAME,
>  				 info);
>  		if (!rv)
> @@ -1368,7 +1368,7 @@ static int std_irq_setup(struct smi_info *info)
>  	} else
>  		rv = request_irq(info->irq,
>  				 si_irq_handler,
> -				 IRQF_SHARED | IRQF_DISABLED,
> +				 IRQF_SHARED,
>  				 DEVICE_NAME,
>  				 info);
>  	if (rv) {


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ipmi: remove deprecated IRQF_DISABLED
  2013-10-13 19:45 ` Corey Minyard
@ 2013-12-09  9:31   ` Michael Opdenacker
  2013-12-09 14:04     ` Corey Minyard
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Opdenacker @ 2013-12-09  9:31 UTC (permalink / raw)
  To: minyard; +Cc: openipmi-developer, linux-kernel

Hi Corey,

On 10/13/2013 09:45 PM, Corey Minyard wrote:
> Thanks, it's in the queue.
>
> -corey
>
> On 10/12/2013 10:59 PM, Michael Opdenacker wrote:
>> This patch proposes to remove the use of the IRQF_DISABLED flag
>>
>> It's a NOOP since 2.6.35 and it will be removed one day.
>>
>> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Did you miss the latest merge window? I'm just asking to understand the
process...

Thank you for your support.

Cheers,

Michael.

-- 
Michael Opdenacker, CEO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
+33 484 258 098


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ipmi: remove deprecated IRQF_DISABLED
  2013-12-09  9:31   ` Michael Opdenacker
@ 2013-12-09 14:04     ` Corey Minyard
  0 siblings, 0 replies; 4+ messages in thread
From: Corey Minyard @ 2013-12-09 14:04 UTC (permalink / raw)
  To: Michael Opdenacker; +Cc: openipmi-developer, linux-kernel

On 12/09/2013 03:31 AM, Michael Opdenacker wrote:
> Hi Corey,
>
> On 10/13/2013 09:45 PM, Corey Minyard wrote:
>> Thanks, it's in the queue.
>>
>> -corey
>>
>> On 10/12/2013 10:59 PM, Michael Opdenacker wrote:
>>> This patch proposes to remove the use of the IRQF_DISABLED flag
>>>
>>> It's a NOOP since 2.6.35 and it will be removed one day.
>>>
>>> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> Did you miss the latest merge window? I'm just asking to understand the
> process...

Yes, I did.  I was working with someone on another problem, and this is
the only thing I have queued, so I missed it.  I'll try to get it next
window.

-corey

>
> Thank you for your support.
>
> Cheers,
>
> Michael.
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-09 14:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-13  3:59 [PATCH] ipmi: remove deprecated IRQF_DISABLED Michael Opdenacker
2013-10-13 19:45 ` Corey Minyard
2013-12-09  9:31   ` Michael Opdenacker
2013-12-09 14:04     ` Corey Minyard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).