From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from imx9.toshiba.co.jp (imx9.toshiba.co.jp [202.33.96.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTP id BBEDF679F0 for ; Fri, 11 Aug 2006 14:05:54 +1000 (EST) Received: from imx11.toshiba.co.jp (imx11 [61.202.160.20]) by imx9.toshiba.co.jp with ESMTP id k7B24gjU029267 for ; Fri, 11 Aug 2006 11:04:52 +0900 (JST) Date: Fri, 11 Aug 2006 11:04:35 +0900 Message-ID: From: Tsutomu OWA To: linux-kernel@vger.kernel.org Subject: [RFC PATCH 4/4] powerpc 2.6.16-rt29: to fix network driver (workaround) MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=US-ASCII Cc: linuxppc-dev@ozlabs.org, mingo@elte.hu, tglx@linutronix.de List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To make network driver available for rt29 (actually rt21 and later). When doing "ping -f", the network driver seems to hang without this workaround for rt version 29. -- owa # I suppose this should be fixed in other way in future but for now... --- rt29/kernel/irq/manage.c 2006-07-10 09:01:21.000000000 +0900 +++ rt-powerpc/kernel/irq/manage.c 2006-07-21 20:17:50.000000000 +0900 @@ -723,15 +723,24 @@ static int do_irqd(void * __desc) set_current_state(TASK_INTERRUPTIBLE); do_hardirq(desc); cond_resched_all(); +#ifndef CONFIG_PPC_PMAC64 /* work around: to revert to patch-2.6.16-rt20 version */ local_irq_disable(); +#endif /* !CONFIG_PPC_PMAC64 */ __do_softirq(); local_irq_enable(); #ifdef CONFIG_SMP /* * Did IRQ affinities change? */ +#ifdef CONFIG_PPC_PMAC64 /* work around; revert to patch-2.6.16-rt20 version */ + if (!cpu_isset(smp_processor_id(), irq_affinity[irq])) { + mask = cpumask_of_cpu(any_online_cpu(irq_affinity[irq])); + set_cpus_allowed(current, mask); + } +#else if (!cpus_equal(current->cpus_allowed, irq_affinity[irq])) set_cpus_allowed(current, irq_affinity[irq]); +#endif /* CONFIG_PPC_PMAC64 */ #endif schedule(); }