samsung smdk2440 ethernet driver

2009-06-25 Thread J.H.Kim
Hi, everyone I have a question about the ethernet driver of SMDK2440(ARM920T) board. I'm reading the kernel 2.6.26 now. The ethernet device in the SMDK2440 schematic from SAMSUNG is CS8900. However, the ethernet driver of SMDK2440 in kernel 2.6.26 is DM9000. Is there any reason why kernel 2.6.26

paing_init() in setup_arch() of ARM920T

2009-06-25 Thread J.H.Kim
Hi, everyone When "mem" option is not defined in command line and memory tag is not transferred by bootloader, how is meminfo structure in /arch/arm/kernel/setup.c set ? When is meminfo structure in /arch/arm/kernel/setup.c set to data of memory banks before it is sent as a argument in paging_ini

Re: Testing tool

2009-06-25 Thread Pei Lin
http://en.wikipedia.org/wiki/Linux_GUI_Application_Testing Linux Test project http://ltp.sourceforge.net/ u need use google more... BRs 2009/6/24 Srdjan Todorovic : > Hi, > > On 24/06/2009, Shyam Burkule wrote: >> Hi All,   I am sorry, my question is not really about Linux kernel. > > Thi

Re: Testing tool

2009-06-25 Thread Pei Lin
Phoronix Test Suite - Linux Testing & Benchmarking Platform http://www.phoronix-test-suite.com/ 2009/6/26 Pei Lin : > http://en.wikipedia.org/wiki/Linux_GUI_Application_Testing > > Linux Test project > http://ltp.sourceforge.net/ > > u need use google more... > > BRs > > > 2009/6/24 Srdjan Tod

Re: Firing timers

2009-06-25 Thread Peter Teoh
hrtimer, is triggered based on softirq mechanism. and it can be triggered whether interrupt is enabled or disabled - two different modes. checkout kernel/hrtimer.c. within u can find the function enqueue_hrtimer(), which shows how the hrtimer can be enqueued into a red black tree. so similar

Re: Linux ksoftirq

2009-06-25 Thread Peter Teoh
On Wed, Jun 17, 2009 at 4:40 PM, Tharindu Rukshan Bamunuarachchi wrote: > with Oprofile, due to performance hit, we did not see the issue. at > least we could not pump desired transaction rate. > > however, i could find workaround for 100% issue. > > i have installed two 1G network cards and used b

Re: the error about building kernel

2009-06-25 Thread Markus Heidelberg
loody, 25.06.2009: > > My kernel version is 2.6.18.8. > > Does the problem come from kernel version? > > appreciate your help, > > miloody > Below are the include files in sumversion.c. > I cannot see any .h has PATH_MAX defined. > > #include > #ifdef __sun__ > #include > #else > #include > #en

Re: How to make USB to work dynamically

2009-06-25 Thread Greg KH
On Thu, Jun 25, 2009 at 12:46:46PM +0530, Arjun Joshi wrote: > Hi Greg, > > I am trying to make USB work dynamically on an OMAP board which has a > USB OTG controller. The board has a mini-AB receptacle. > > My target is that whenever I insert a mini-B cable the gadget related > kernel modules

Re: How to post Q ?

2009-06-25 Thread Greg Freemyer
On Thu, Jun 25, 2009 at 2:34 AM, Anuz Pratap Singh Tomar wrote: > If you look around a little bit in linux communities: > kernelnewbies.org > or > kerneltrap.org > or > lwn.net > or > even > kernel.org > > You will find FAQ's, and they will have such question answers, The next best > thing on the e

Re: How to make USB to work dynamically

2009-06-25 Thread microbit
Hi Arjun, > I am trying to make USB work dynamically on an OMAP board which has a > USB OTG controller. The board has a mini-AB receptacle. Is this the Beagle board you're referring to ? If so, are you happy with it ? I've been considering getting Beagle, because (AFAIK) TI's OMAP is so far the

Re: How to make USB to work dynamically

2009-06-25 Thread sanjeev sharma
Hi All, Udev (dynamic device management)is the best tool to achieve loading and unloading of device driver automatically. You need to write down an rule to support loading and unloading of driver in rules.d file. Sanjeev sharma On Thu, Jun 25, 2009 at 2:08 PM, Peter Chen wrote: > Hi, > > In our

Re: Block drivers

2009-06-25 Thread Erik Mouw
On Tue, 23 Jun 2009 14:25:40 +0530 "Leena M." wrote: > I want to write a block driver for SATA/SCSI drive which can give me > a good experience in Block drivers.May be any drive not supporting > GNU/Linux currently ??? Please guide me. There are no unsupported SATA/SCSI drives simply because all

Firing timers

2009-06-25 Thread Nicola Manica
Hi, I'm a student that want to study the kernel code. I have a simple question: If I set an hrtimer, I think that when it expires it raise a timer interrupt. What is the sequence of functions called at this point (in a recent kernel for example 2.6.29)? How I can know which is the timer expired? Th

Re: How to make USB to work dynamically

2009-06-25 Thread Peter Chen
Hi, In our platform, we use udev to implement that host/slave problem. Best Regards, Peter Chen On Thu, 2009-06-25 at 12:46 +0530, Arjun Joshi wrote: > Hi Greg, > > I am trying to make USB work dynamically on an OMAP board which has a > USB OTG controller. The board has a mini-AB receptacle.

Re: preemption

2009-06-25 Thread Mulyadi Santosa
Hi Please don't do top posting... 2009/6/25 Kostya B : > > Mulyadi, thank you for the detailed explanation. Thus > > (a) is a source for interrupt latency and (b) actually fixes it. > > -- > Kostya > > > >> Date: Thu, 25 Jun 2009 02:26:25 +0700 >> Subj

Re: How to make USB to work dynamically

2009-06-25 Thread Arjun Joshi
Hi Greg, I am trying to make USB work dynamically on an OMAP board which has a USB OTG controller. The board has a mini-AB receptacle. My target is that whenever I insert a mini-B cable the gadget related kernel modules must be loaded automatically so that my board works as mass storage devi