linux.kernel - 26 new messages in 20 topics - digest
linux.kernel
http://groups.google.com/group/linux.kernel?hl=en
Today's topics:
* : Sparc - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/f43dd9e158765728?hl=en
* twl4030 threaded_irq support - 2 messages, 2 authors
http://groups.google.com/group/linux.kernel/t/dad470d391a03375?hl=en
* PROBLEM: freeze on ppp connection (using an usb "key" modem) - 3 messages, 3
authors
http://groups.google.com/group/linux.kernel/t/2da2ca2c0a18eb99?hl=en
* starting emacs makes lockdep warning - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/b92a5fcdc20fcbff?hl=en
* OOM-Killer kills too much with 2.6.32.2 - 2 messages, 2 authors
http://groups.google.com/group/linux.kernel/t/3f7afc452c078f22?hl=en
* regulator: support max8649 - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/0c21f2834789c0db?hl=en
* PCI host bridge windows ignored (works with pci=use_crs) - 1 messages, 1
author
http://groups.google.com/group/linux.kernel/t/8dc02ff411331726?hl=en
* acpi_idle: Very idle Core i7 machine never enters C3 - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/1565d34d7e04b9c7?hl=en
* High cpu temperature with 2.6.32 - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/79452d5903d061a3?hl=en
* HDA Intel Audio hang on boot - 3 messages, 3 authors
http://groups.google.com/group/linux.kernel/t/a0ad5b25d979d11d?hl=en
* oprofile fixes for v2.6.33 - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/2915761a5b76e9c7?hl=en
* option driver freezing entire system - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/c558616bc45ffcc0?hl=en
* gpio_keys and how PXA27x sets gpio_set_wake() (was Re: sharp c-3000 aka
spitz: fix warn_on introduced in 2.6.32-rc1) - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/337ac495cfb9a0e2?hl=en
* mm/readahead.c: update the LRU positions of in-core pages, too - 1 messages,
1 author
http://groups.google.com/group/linux.kernel/t/c3e8affbeb80ebe0?hl=en
* Fix 1 untangling ima mess, part 2 with counters - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/fca0cbdc1743a322?hl=en
* media: dvb-usb/af9015, fix disconnection crashes - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/9393db4854ad140c?hl=en
* drivers/net/ariadne.c:165: error: 'set_multicast_list' undeclared here (not
in a function) - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/6ca1e9867f4201ee?hl=en
* block: fix bio_add_page for non trivial merge_bvec_fn case - 1 messages, 1
author
http://groups.google.com/group/linux.kernel/t/10f0ec95bfdc56f7?hl=en
* kernel error : 'find /proc/ -type f | xargs -n 1 head -c 10 >/dev/null' - 1
messages, 1 author
http://groups.google.com/group/linux.kernel/t/4702d3f21f78cefc?hl=en
* s390 && user_enable_single_step() (Was: odd utrace testing results on s390x)
- 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/e13ca0bcc54b2ee7?hl=en
==============================================================================
TOPIC: : Sparc
http://groups.google.com/group/linux.kernel/t/f43dd9e158765728?hl=en
==============================================================================
== 1 of 1 ==
Date: Tues, Jan 26 2010 4:20 am
From: David Miller
From: Alexander Beregalov <a.beregalov@gmail.com>
Date: Tue, 26 Jan 2010 12:23:06 +0300
> Hi David
>
>> 7) IRQ ->set_affinity() using wrong cpu mask, thanks to Ben H. for
>> noticing.
>> sparc64: Fix IRQ ->set_affinity() methods.
>
> This commit breaks UP build
Sorry, I'll fix this, thanks for the report.
sparc64: Fix UP build.
Can't reference irq_desc[].affinity when !SMP.
Reported-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/arch/sparc/kernel/irq_64.c b/arch/sparc/kernel/irq_64.c
index f2179cc..e1cbdb9 100644
--- a/arch/sparc/kernel/irq_64.c
+++ b/arch/sparc/kernel/irq_64.c
@@ -268,10 +268,8 @@ static int irq_choose_cpu(unsigned int virt_irq, const struct cpumask *affinity)
return cpuid;
}
#else
-static int irq_choose_cpu(unsigned int virt_irq, const struct cpumask *affinity)
-{
- return real_hard_smp_processor_id();
-}
+#define irq_choose_cpu(virt_irq, affinity) \
+ real_hard_smp_processor_id()
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home