Commit 551d9631 authored by Robert Love's avatar Robert Love Committed by Linus Torvalds

[PATCH] type typo in do_softirq

kernel/softirq.c :: do_softirq() has a typo in the type of the `cpu'
value.  I incorrectly set it to `unsigned long' in a previous patch...
this is a CPU value not a bitmask and is thus an `int'.
parent b5302490
...@@ -61,7 +61,7 @@ static inline void wakeup_softirqd(unsigned cpu) ...@@ -61,7 +61,7 @@ static inline void wakeup_softirqd(unsigned cpu)
asmlinkage void do_softirq() asmlinkage void do_softirq()
{ {
unsigned long cpu; int cpu;
__u32 pending; __u32 pending;
long flags; long flags;
__u32 mask; __u32 mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment