Re: sysfs cpu entry

2008-04-26 Thread Kevin Diggs
Kumar Gala wrote: What 32-bit chip are you looking to enable this for? - k I am working on some stuff for the 750GX kevin ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

get_cycles()

2008-04-26 Thread Kevin Diggs
H, Anyone know how to turn get_cycles() into an actual time in a module? ppc_tb_freq does not seem to be exported? kevin ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: get_cycles()

2008-04-26 Thread David Miller
From: Kevin Diggs [EMAIL PROTECTED] Date: Sat, 26 Apr 2008 00:54:11 -0700 Anyone know how to turn get_cycles() into an actual time in a module? ppc_tb_freq does not seem to be exported? You should really be using ktime_t and associated interfaces.

[BUG] 2.6.25-git8 Kernel Bug while bootup on ppc and x86

2008-04-26 Thread Kamalesh Babulal
While booting the 2.6.25-git8 kernel on the ppc and x86_64 machine, kernel bug is hit. This was reported in the next-20080423 kernel http://lkml.org/lkml/2008/4/23/206. Call trace of x86_64 machine BUG: unable to handle kernel paging request at IP: [802359e5]

Re: [BUG] 2.6.25-git8 Kernel Bug while bootup on ppc and x86

2008-04-26 Thread Adrian Bunk
On Sat, Apr 26, 2008 at 04:51:54PM +0530, Kamalesh Babulal wrote: While booting the 2.6.25-git8 kernel on the ppc and x86_64 machine, kernel bug is hit. This was reported in the next-20080423 kernel http://lkml.org/lkml/2008/4/23/206. Call trace of x86_64 machine BUG: unable to handle

Re: [BUG] 2.6.25-git8 Kernel Bug while bootup on ppc and x86

2008-04-26 Thread Kamalesh Babulal
Adrian Bunk wrote: On Sat, Apr 26, 2008 at 04:51:54PM +0530, Kamalesh Babulal wrote: While booting the 2.6.25-git8 kernel on the ppc and x86_64 machine, kernel bug is hit. This was reported in the next-20080423 kernel http://lkml.org/lkml/2008/4/23/206. Call trace of x86_64 machine BUG:

Re: [PATCH1/7] i2c: Add support for device alias names

2008-04-26 Thread Jean Delvare
Hi Jochen, On Fri, 11 Apr 2008 16:07:35 +0200, Jochen Friedrich wrote: Based on earlier work by Jon Smirl and Jean Delvare. This patch allows new-style i2c chip drivers to have alias names using the official kernel aliasing system and MODULE_DEVICE_TABLE(). At this point, the old i2c driver

Re: sysfs cpu entry

2008-04-26 Thread Benjamin Herrenschmidt
On Thu, 2008-04-24 at 21:08 -0700, Kevin Diggs wrote: P.S.: On an unrelated note, anyone know where to start looking for problems in pmac_zilog. My 8600 modem which worked fine in 2.4 is now essentially useless. Some problem with handshaking, I think. It's possible that handshaking is

Re: get_cycles()

2008-04-26 Thread Kevin Diggs
David Miller wrote: From: Kevin Diggs [EMAIL PROTECTED] Date: Sat, 26 Apr 2008 00:54:11 -0700 Anyone know how to turn get_cycles() into an actual time in a module? ppc_tb_freq does not seem to be exported? You should really be using ktime_t and associated interfaces. This looks pretty

Re: get_cycles()

2008-04-26 Thread David Miller
From: Kevin Diggs [EMAIL PROTECTED] Date: Sat, 26 Apr 2008 19:39:07 -0700 This looks pretty cool ... but I don't want to create a dependency on hrtimer. It doesn't create such a dependency. We use it unconditionally in the generic networking. Please don't use platform specific interfaces if