__exit

2001-05-17 Thread Anil Kumar
what does __exit, __p and other such directives means in the linux source code. what is its significance. thanks, anil - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

Linking

2001-05-17 Thread Anil Kumar
How do i link the kernel functions such as test_ans_set functions with my applications. thanks, anil - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please

File read.

2001-05-27 Thread Anil Kumar
hi, How do i read file within the kernel modules. I hope we can't use the FS open... calls within kernel. thanks - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

Kernel Address

2001-05-28 Thread Anil Kumar
Under which directory is the Linus's kernel? anil - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

question regarding adding kernel patch

2000-09-29 Thread Anil kumar
Hi, I am working on Red hat linux ver 6.1 kernel version : 2.2.12 I want to add as patch for RAID controller supported in 2.3.40.For this I need kernel version patch 2.3.40 where can I get this 2.3. kernel version with regards, Anil

question : make bzImage

2000-09-29 Thread Anil kumar
Hi, I want to build the kernel These are the following steps what I am doing: In /usr/src/linux make config make dep make bzImage while make bzImage , I get many errors under diffirent drivers ex: sound, net, char Ex: undefined reference in hfmodem driver same errors for sound video

patch installation

2000-10-04 Thread Anil kumar
Hi, I am installing a RAID patch to my present kernel which is 2.2.12. This is the procedure I am following: 1.I get the patch file in /usr/src/linux 2. #patch -p1 patchfilename After this is done it asks me something like this: Already available . creating a patch file /usr/src/

disk partition RAID

2000-10-06 Thread Anil kumar
Hi, I want to setup the RAID. For this I am partitioning the disks .The following is the procedure: fdisk /dev/hde fdisk -n /dev/hde /*to add new partition*/ I specify the first last cylinder fdisk -w /dev/hde /*save quit*/ when I do so , I get following : The partition table

RAID setup

2000-10-09 Thread Anil kumar
Hi, I want to setup RAID. I am working on kernel version 2.2.12. I am using RAID patches available. I create a RAID configuring file called /etc/raidtab #mkraid /dev/md0/*md0 is the device I am selecting*/ After this when I check /proc/mdstat , I find

RAID setup

2000-10-10 Thread Anil kumar
Hi, I want to setup RAID. I am working on kernel version 2.2.12. I am using RAID patches available. I create a RAID configuring file called /etc/raidtab #mkraid /dev/md0/*md0 is the device I am selecting*/ After this when I check /proc/mdstat , I find

remap_page_range

2000-10-16 Thread anil kumar
Hi, suppose i allocate an buffer by calling kmalloc. i want to map this buffer to user address space. will remap_page_range will automatically map this buffer to calling process's address space. thanks. __ Do You Yahoo!? Yahoo! Messenger - Talk

Bootable RAID

2000-10-20 Thread Anil kumar
Hi, I want to make a Bootable RAID. can I make a partition on the disk which I want to make as bootable or should I be use whole disk? What I mean is like this: In the lilo.conf file I do like this: disk = /dev/md0 boot = /dev/hdc Is this all what I can do? or can I make a

RAID setup

2000-10-23 Thread Anil kumar
Hi, Does Linux give options to choose RAID levels from BIOS? with regards, Anil __ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe

regarding fsck

2000-10-24 Thread Anil kumar
Hi, I am getting a kernel panic when I boot linux. There is some bad block. To get rid of this, I want to run fsck.I boot linux with a boot diskette and then with rescue.img I get to the command prompt and then run fsck. #e2fsck /dev/hdb5 //hdb5 is my linux native when I run

RAID superblock

2000-10-25 Thread Anil kumar
Hi, After I create a RAID setup on the drives,The superblock will be generated at the end of the drives. If I move these drives to other linux system, will this system recognise the RAID setup without reconfiguring the Linux ? with regards, Anil

RAID Benchmarking

2000-11-21 Thread Anil kumar
Hi, I want to know , how to Benchmark the performance of RAID.Is there any tool for benchmarking? with regards, Anil __ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ - To unsubscribe

mkraid

2000-10-27 Thread Anil kumar
Hi, I have a problem with mkraid I am working on a Red hat Linux ver 7.0 kernel version: 2.2.16 No raid patch no raid tools when I run #mkraid /dev/md0 when I check /proc/mdstat,I find md0 active with raid information. But when again I run #mkraid /dev/md0 I get an

physical end of disk

2000-11-01 Thread Anil kumar
Hi, I want to know how does the ide driver calculate the end of the disk. Is there any function in the ide driver that finds the end of the disk? I dont know the particular ide mailing list.So I have posted to linux-kernel mailing list. with regards, Anil

problem with startx in linux kernel 2.4

2000-11-08 Thread Anil kumar
Hi, I ahave installed Red Hat 7.0 kernel ver 2.4.0-test9 After I boot, when I do #startx I get an error as server crash. My processor is Pentium II I am attaching with this mail the error output I get and also /var/log/XFree86.0.log file Please let me know how to fix this

RE: semaphores and noatomic flag

2001-06-04 Thread Anil Kumar
Will it not be a very specialized case rather than being general call type? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mihai Moise Sent: Monday, June 04, 2001 11:05 PM To: [EMAIL PROTECTED] Subject: semaphores and noatomic flag I write this to

RE:

2001-06-11 Thread Anil Kumar
you can use sys_mprotect call which is kernel space equ. of mprotect . The implementation for the same can be found in mm\mprotect.c. anil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, June 11, 2001 10:29 AM To: [EMAIL

RE: Validating dynamically allocated kernel memory

2001-06-11 Thread Anil Kumar
try sys_mprotect with neccessary bit patterns set i.e, read/write/exec type of protection check. anil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, June 11, 2001 5:12 PM To: [EMAIL PROTECTED] Subject: Validating

RE: threading question

2001-06-15 Thread Anil Kumar
Since while using only a small subset of primitives provided by the pthreads the burden for the other primitive maintanence is much more so i too feel when we use only a small part its better to implement in our own requiredd way for performance issues. -Original Message- From: [EMAIL

RE: sizeof problem in kernel modules

2001-06-24 Thread Anil Kumar
struct { short x; long y; short z; }bad_struct; struct { long y; short x; short z; }good_struct; I would expect both structs to be 8byte in size , or atleast the same size ! but good_struct turns out to be 8bytes and bad_struct 12 . what am I doing wrong here ? thx ! hofrat

RE: Validation of memory allocated through kmalloc

2001-07-03 Thread Anil Kumar
use sys_mprotect(...) to verify the validity of the returned address. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 2:45 PM To: [EMAIL PROTECTED] Subject: Validation of memory allocated through kmalloc

noapic for smp

2005-07-11 Thread Anil kumar
Hi, I have a rhel4 (2.6.9-5.EL) system. The SMP kernel boot fails(rather locks up system). But when use noapic it boots fine. Is it that my system APIC is bad? Will noapic have performance impact (IRQ routing,etc)? My system is a Uni processor with HT enabled. with regards, Anil

driver compile parse errors for RHEL4

2005-03-10 Thread Anil Kumar
Hi, I am getting parse errors when I try to build aic7xxx( Adaptec SCSI controller) driver for RHEL4. I am using my own build enviroment (I mean Makefiles, scripts) to build this. #gcc -v Reading specs from /usr/adaptec/build/gcc343-32bit/lib/gcc/i386-redhat-linux/3.4.3/specs Configured with:

driver compile Parse error with gcc-3.4.3

2005-02-20 Thread Anil Kumar
Hi, I am new to linux. I am trying to build one of my drivers for 2.6.9-5.EL, RHEL 4, I am getting compile parse errors as follows: error: parse error before '(' token #gcc -v Configured with: ./configure --prefix=/usr/adaptec/build/gcc343-32bit --enable-threads=posix --disable-checking

loading driver automatically manually

2005-02-22 Thread Anil Kumar
Hi, I am trying to install RHEL 4, 2.6.9-5.EL. I have adaptec 39320 controller, The install CD already has aic79xx driver in it. The driver does NOT load for some reason. If I take the same aic79xx driver source, Create an img and install RHEL4 using linux dd, it works fine. Can you please

module insert question

2005-02-23 Thread Anil Kumar
Hi, Can you please let me know, what all files does the OS look into to load modules? I see the following messages during boot rather installation: == Finished bus probing modules to insert tg3 aic79xx == which files does the OS look into to load tg3 and aic79xx after finishing bus

Re: Getting kernel uImage build issue on omap2+

2013-03-16 Thread Anil Kumar
Hi Javier, On Sat, Mar 16, 2013 at 2:53 PM, Javier Martinez Canillas jav...@dowhile0.org wrote: On Sat, Mar 16, 2013 at 5:44 AM, Anil Kumar anilk...@gmail.com wrote: Hi, I am getting kernel uImage build issue on omap2+ log[1] Taken kernel branch for_3.10/dts from https://git.kernel.org/pub

Re: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-03-16 Thread Anil Kumar
Hi Benoit, On Thu, Mar 7, 2013 at 12:21 PM, Benoit Cousson b-cous...@ti.com wrote: Hi, On 03/06/2013 06:53 PM, Tony Lindgren wrote: * Anil Kumar anilk...@gmail.com [130305 18:40]: Hi Tony, From: linux-arm-kernel [mailto:linux-arm-kernel- boun...@lists.infradead.org] On Behalf Of Anil

Re: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-03-05 Thread Anil Kumar
Hi Tony, From: linux-arm-kernel [mailto:linux-arm-kernel- boun...@lists.infradead.org] On Behalf Of Anil Kumar Sent: Wednesday, February 27, 2013 8:03 AM To: devicetree-disc...@lists.ozlabs.org; linux-o...@vger.kernel.org; linux-kernel@vger.kernel.org; linux-arm-ker...@lists.infradead.org

[PATCH V2] ARM: dts: add minimal DT support for DevKit8000

2013-02-10 Thread Anil Kumar
, I2C1, leds and there pim mux information are added. Signed-off-by: Anil Kumar anilk...@gmail.com Tested-by: Thomas Weber tho...@tomweber.eu --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V2: -Change model name as TimLL OMAP3 Devkit8000 -Change compatible as timll

Re: Sound record on Devkit8000 with DT boot issue

2013-02-11 Thread Anil Kumar
Hi Peter, Thanks for helping me. please see my comment inline On Mon, Feb 11, 2013 at 6:47 PM, Peter Ujfalusi peter.ujfal...@ti.com wrote: On 02/10/2013 04:21 PM, Anil Kumar wrote: Hi All, I am working on Devkit8000 and adding DT support for that. I am trying to add sound DT node support

Re: Sound record on Devkit8000 with DT boot issue

2013-02-11 Thread Anil Kumar
Hi Peter, On Mon, Feb 11, 2013 at 11:44 PM, Peter Ujfalusi peter.ujfal...@ti.com wrote: Hi, On 02/11/2013 06:58 PM, Anil Kumar wrote: Here you should have something like: ti,audio-routing = Ext Spk, PREDRIVEL, Ext Spk, PREDRIVER, MAINMIC, Main Mic, Main

[PATCH] ARM: dts: omap3-devkit8000: Enable audio support

2013-02-12 Thread Anil Kumar
Add the needed sections to enable audio support and related pin mux on Devkit8000 when booted with DT blob. Signed-off-by: Anil Kumar anilk...@gmail.com --- This patch is based on top of kernel 3.8-rc5 and the following patches. Peter Ujfalusi:- ASoC: twl4030: Correct the support for Voice port

[PATCH] ARM: dts: add minimal DT support for DevKit8000

2013-02-07 Thread Anil Kumar
, I2C1, leds and there pim mux information are added. Signed-off-by: Anil Kumar anilk...@gmail.com Tested-by: Thomas Weber tho...@tomweber.eu --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. :100644 100644 5ebb44f... 22ebc76... M arch/arm/boot/dts/Makefile :00 100644

Re: FW: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-02-26 Thread Anil Kumar
(PMIC), MMC1, I2C1 and leds are added. Signed-off-by: Anil Kumar anilk...@gmail.com Tested-by: Thomas Weber tho...@tomweber.eu Gentle Ping. As there are no review comments on this patch, Could you please pull this patch ? Thanks, Anil --- -This patch is based on top of kernel 3.8-rc5

Re: [PATCH V2] ARM: dts: omap3-devkit8000: Enable audio support

2013-02-26 Thread Anil Kumar
Hi, On Mon, Feb 18, 2013 at 4:50 PM, Peter Ujfalusi peter.ujfal...@ti.com wrote: On 02/16/2013 08:33 AM, Anil Kumar wrote: Add the needed sections to enable audio support on Devkit8000 when booted with DT blob. Signed-off-by: Anil Kumar anilk...@gmail.com Looks good: Acked-by: Peter

[PATCH V3] ARM: dts: add minimal DT support for DevKit8000

2013-02-15 Thread Anil Kumar
), MMC1, I2C1 and leds are added. Signed-off-by: Anil Kumar anilk...@gmail.com Tested-by: Thomas Weber tho...@tomweber.eu --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V3: - Remove pin mux as done at device boot time by default. For V2: - Change model name as TimLL

[PATCH V2] ARM: dts: omap3-devkit8000: Enable audio support

2013-02-15 Thread Anil Kumar
Add the needed sections to enable audio support on Devkit8000 when booted with DT blob. Signed-off-by: Anil Kumar anilk...@gmail.com --- This patch is based on top of kernel 3.8-rc5 and the following patches. Peter Ujfalusi:- ASoC: twl4030: Correct the support for Voice port ASoC: twl4030

[PATCH 0/2] arm/dts: OMAP3: Add gpmc DT node support

2013-02-16 Thread Anil Kumar
Add gpmc DT node in dtsi file. Add nand DT node and partitions information for devkit8000. This series is based on top of branch “omap-for-v3.9/gpmc” git tree http://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git and patches. Anil Kumar:- ARM: dts: add minimal DT support

[PATCH 1/2] ARM: dts: omap3: Add gpmc node

2013-02-16 Thread Anil Kumar
Add gpmc DT node. Signed-off-by: Anil Kumar anilk...@gmail.com --- :100644 100644 1acc261... 9f36531... M arch/arm/boot/dts/omap3.dtsi arch/arm/boot/dts/omap3.dtsi | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot

[PATCH 2/2] ARM: dts: omap3-devkit8000: add nand dt node

2013-02-16 Thread Anil Kumar
Add the needed sections to enable nand support on Devkit8000. Add nand partitions information. Signed-off-by: Anil Kumar anilk...@gmail.com --- :100644 100644 6338993... 6c6decf... M arch/arm/boot/dts/omap3-devkit8000.dts arch/arm/boot/dts/omap3-devkit8000.dts | 52

Re: [PATCH 1/2] ARM: dts: omap3: Add gpmc node

2013-02-16 Thread Anil Kumar
Hi, On Sat, Feb 16, 2013 at 5:54 PM, Ezequiel Garcia ezequiel.gar...@free-electrons.com wrote: Hi Anil, On Sat, Feb 16, 2013 at 05:08:27PM +0530, Anil Kumar wrote: Add gpmc DT node. Signed-off-by: Anil Kumar anilk...@gmail.com --- :100644 100644 1acc261... 9f36531... March/arm

Re: [PATCH V3] ARM: dts: add minimal DT support for DevKit8000

2013-02-20 Thread Anil Kumar
Hi Manish, On Wed, Feb 20, 2013 at 5:28 PM, Manish Badarkhe badarkhe.man...@gmail.com wrote: On Sat, Feb 16, 2013 at 12:49 PM, Anil Kumar anilk...@gmail.com wrote: DevKit8000 is a beagle board clone from Timll, sold by armkits.com. The DevKit8000 has RS232 serial port, LCD, DVI-D, S-Video

[PATCH V4] ARM: dts: add minimal DT support for DevKit8000

2013-02-20 Thread Anil Kumar
), MMC1, I2C1 and leds are added. Signed-off-by: Anil Kumar anilk...@gmail.com Tested-by: Thomas Weber tho...@tomweber.eu --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V4: -Tiny nitpick. For V3: - Remove pin mux as done at device boot time by default. For V2

Build error in torvalds kernel 3.11 for omap2plus

2013-09-08 Thread Anil Kumar
Hi All, I am getting below build error in torvalds kernel 3.11 for omap2plus. scripts/kconfig/conf --silentoldconfig Kconfig CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALL

[PATCH] ASoC: davinvi-mcasp: Balance pm_runtime_enable() on probe failure

2014-11-09 Thread Anil Kumar
If probe fails then we need to call pm_runtime_disable() to balance out the previous pm_runtime_enable() call. Signed-off-by: Anil Kumar anilk...@gmail.com --- :100644 100644 0eed9b1... 99c747d... M sound/soc/davinci/davinci-mcasp.c sound/soc/davinci/davinci-mcasp.c | 1 + 1 file changed, 1

__exit

2001-05-17 Thread Anil Kumar
what does __exit, __p and other such directives means in the linux source code. what is its significance. thanks, anil - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Linking

2001-05-17 Thread Anil Kumar
How do i link the kernel functions such as test_ans_set functions with my applications. thanks, anil - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please

File read.

2001-05-27 Thread Anil Kumar
hi, How do i read file within the kernel modules. I hope we can't use the FS open... calls within kernel. thanks - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Kernel Address

2001-05-28 Thread Anil Kumar
Under which directory is the Linus's kernel? anil - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

RE: semaphores and noatomic flag

2001-06-04 Thread Anil Kumar
Will it not be a very specialized case rather than being general call type? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mihai Moise Sent: Monday, June 04, 2001 11:05 PM To: [EMAIL PROTECTED] Subject: semaphores and noatomic flag I write this to

RE:

2001-06-11 Thread Anil Kumar
you can use "sys_mprotect" call which is kernel space equ. of "mprotect" . The implementation for the same can be found in "mm\mprotect.c". anil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, June 11, 2001 10:29 AM To:

RE: Validating dynamically allocated kernel memory

2001-06-11 Thread Anil Kumar
try "sys_mprotect" with neccessary bit patterns set i.e, read/write/exec type of protection check. anil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, June 11, 2001 5:12 PM To: [EMAIL PROTECTED] Subject: Validating

RE: threading question

2001-06-15 Thread Anil Kumar
Since while using only a small subset of primitives provided by the pthreads the burden for the other primitive maintanence is much more so i too feel when we use only a small part its better to implement in our own requiredd way for performance issues. -Original Message- From: [EMAIL

RE: sizeof problem in kernel modules

2001-06-24 Thread Anil Kumar
struct { short x; long y; short z; }bad_struct; struct { long y; short x; short z; }good_struct; I would expect both structs to be 8byte in size , or atleast the same size ! but good_struct turns out to be 8bytes and bad_struct 12 . what am I doing wrong here ? thx ! hofrat

RE: Validation of memory allocated through kmalloc

2001-07-03 Thread Anil Kumar
use sys_mprotect(...) to verify the validity of the returned address. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 2:45 PM To: [EMAIL PROTECTED] Subject: Validation of memory allocated through kmalloc

RAID Benchmarking

2000-11-21 Thread Anil kumar
Hi, I want to know , how to Benchmark the performance of RAID.Is there any tool for benchmarking? with regards, Anil __ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ - To unsubscribe

question regarding adding kernel patch

2000-09-29 Thread Anil kumar
Hi, I am working on Red hat linux ver 6.1 kernel version : 2.2.12 I want to add as patch for RAID controller supported in 2.3.40.For this I need kernel version patch 2.3.40 where can I get this 2.3. kernel version with regards, Anil

question : make bzImage

2000-09-29 Thread Anil kumar
Hi, I want to build the kernel These are the following steps what I am doing: In /usr/src/linux make config make dep make bzImage while make bzImage , I get many errors under diffirent drivers ex: sound, net, char Ex: undefined reference in hfmodem driver same errors for sound &

RAID patches

2000-10-02 Thread Anil kumar
Hi, I am looking for RAID patches .Please suggest where can I get these patches. with regards, Anil __ Do You Yahoo!? Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free! http://photos.yahoo.com/ - To unsubscribe from this list: send the line

patch installation

2000-10-04 Thread Anil kumar
Hi, I am installing a RAID patch to my present kernel which is 2.2.12. This is the procedure I am following: 1.I get the patch file in /usr/src/linux 2. #patch -p1 < patchfilename After this is done it asks me something like this: Already available . creating a patch file /usr/src/

disk partition & RAID

2000-10-06 Thread Anil kumar
Hi, I want to setup the RAID. For this I am partitioning the disks .The following is the procedure: fdisk /dev/hde fdisk -n /dev/hde /*to add new partition*/ I specify the first & last cylinder fdisk -w /dev/hde /*save & quit*/ when I do so , I get following : The partition table

RAID setup

2000-10-09 Thread Anil kumar
Hi, I want to setup RAID. I am working on kernel version 2.2.12. I am using RAID patches available. I create a RAID configuring file called /etc/raidtab #mkraid /dev/md0/*md0 is the device I am selecting*/ After this when I check /proc/mdstat , I find

RAID setup

2000-10-10 Thread Anil kumar
Hi, I want to setup RAID. I am working on kernel version 2.2.12. I am using RAID patches available. I create a RAID configuring file called /etc/raidtab #mkraid /dev/md0/*md0 is the device I am selecting*/ After this when I check /proc/mdstat , I find

remap_page_range

2000-10-16 Thread anil kumar
Hi, suppose i allocate an buffer by calling kmalloc. i want to map this buffer to user address space. will remap_page_range will automatically map this buffer to calling process's address space. thanks. __ Do You Yahoo!? Yahoo! Messenger - Talk

Bootable RAID

2000-10-20 Thread Anil kumar
Hi, I want to make a Bootable RAID. can I make a partition on the disk which I want to make as bootable or should I be use whole disk? What I mean is like this: In the lilo.conf file I do like this: disk = /dev/md0 boot = /dev/hdc Is this all what I can do? or can I make a

RAID setup

2000-10-23 Thread Anil kumar
Hi, Does Linux give options to choose RAID levels from BIOS? with regards, Anil __ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe

regarding fsck

2000-10-24 Thread Anil kumar
Hi, I am getting a kernel panic when I boot linux. There is some bad block. To get rid of this, I want to run fsck.I boot linux with a boot diskette and then with rescue.img I get to the command prompt and then run fsck. #e2fsck /dev/hdb5 //hdb5 is my linux native when I run

RAID from BIOS

2000-10-25 Thread Anil kumar
Hi, 1. Does Linux support this: Setting RAID options & configurations from BIOS itself. 2.I am not able to post messages to linux-raid group. with regards, Anil __ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE.

RAID superblock

2000-10-25 Thread Anil kumar
Hi, After I create a RAID setup on the drives,The superblock will be generated at the end of the drives. If I move these drives to other linux system, will this system recognise the RAID setup without reconfiguring the Linux ? with regards, Anil

mkraid

2000-10-27 Thread Anil kumar
Hi, I have a problem with mkraid I am working on a Red hat Linux ver 7.0 kernel version: 2.2.16 No raid patch no raid tools when I run #mkraid /dev/md0 when I check /proc/mdstat,I find md0 active with raid information. But when again I run #mkraid /dev/md0 I get an

physical end of disk

2000-11-01 Thread Anil kumar
Hi, I want to know how does the ide driver calculate the end of the disk. Is there any function in the ide driver that finds the end of the disk? I dont know the particular ide mailing list.So I have posted to linux-kernel mailing list. with regards, Anil

Installing kernel 2.4

2000-11-07 Thread Anil kumar
Hi , I installed Red Hat 7.0, I am able to find the linux-2.2.16 in /usr/src These are the following steps I did to install kernel 2.4: cd /usr/src #rm -r linux # rm -rf linux-2.2.16 #tar -xvf linux-2.4.0-test9.tar #cd /usr/src #ls linux redhat #mv linux

problem with startx in linux kernel 2.4

2000-11-08 Thread Anil kumar
Hi, I ahave installed Red Hat 7.0 kernel ver 2.4.0-test9 After I boot, when I do #startx I get an error as server crash. My processor is Pentium II I am attaching with this mail the error output I get and also /var/log/XFree86.0.log file Please let me know how to fix this

driver compile Parse error with gcc-3.4.3

2005-02-20 Thread Anil Kumar
Hi, I am new to linux. I am trying to build one of my drivers for 2.6.9-5.EL, RHEL 4, I am getting compile parse errors as follows: error: parse error before '(' token #gcc -v Configured with: ./configure --prefix=/usr/adaptec/build/gcc343-32bit --enable-threads=posix --disable-checking

noapic for smp

2005-07-11 Thread Anil kumar
Hi, I have a rhel4 (2.6.9-5.EL) system. The SMP kernel boot fails(rather locks up system). But when use "noapic" it boots fine. Is it that my system "APIC" is bad? Will "noapic" have performance impact (IRQ routing,etc)? My system is a Uni processor with HT enabled. with regards, Anil

driver compile parse errors for RHEL4

2005-03-10 Thread Anil Kumar
Hi, I am getting parse errors when I try to build aic7xxx( Adaptec SCSI controller) driver for RHEL4. I am using my own build enviroment (I mean Makefiles, scripts) to build this. #gcc -v Reading specs from /usr/adaptec/build/gcc343-32bit/lib/gcc/i386-redhat-linux/3.4.3/specs Configured with:

loading driver automatically & manually

2005-02-22 Thread Anil Kumar
Hi, I am trying to install RHEL 4, 2.6.9-5.EL. I have adaptec 39320 controller, The install CD already has aic79xx driver in it. The driver does NOT load for some reason. If I take the same aic79xx driver source, Create an img and install RHEL4 using linux dd, it works fine. Can you please

module insert question

2005-02-23 Thread Anil Kumar
Hi, Can you please let me know, what all files does the OS look into to load modules? I see the following messages during boot rather installation: == Finished bus probing modules to insert tg3 aic79xx == which files does the OS look into to load tg3 and aic79xx after finishing bus

Re: Getting kernel uImage build issue on omap2+

2013-03-16 Thread Anil Kumar
Hi Javier, On Sat, Mar 16, 2013 at 2:53 PM, Javier Martinez Canillas wrote: > On Sat, Mar 16, 2013 at 5:44 AM, Anil Kumar wrote: >> Hi, >> >> I am getting kernel uImage build issue on omap2+ log[1] >> >> Taken kernel branch "for_3.10/dts" from >>

Re: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-03-16 Thread Anil Kumar
Hi Benoit, On Thu, Mar 7, 2013 at 12:21 PM, Benoit Cousson wrote: > Hi, > > On 03/06/2013 06:53 PM, Tony Lindgren wrote: >> * Anil Kumar [130305 18:40]: >>> Hi Tony, >>> >>>>> From: linux-arm-kernel [mailto:linux-arm-kernel- >>>>>

[PATCH] ARM: dts: add minimal DT support for DevKit8000

2013-02-07 Thread Anil Kumar
, I2C1, leds and there pim mux information are added. Signed-off-by: Anil Kumar Tested-by: Thomas Weber --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. :100644 100644 5ebb44f... 22ebc76... M arch/arm/boot/dts/Makefile :00 100644 000... 9864fd7... A arch/arm

Re: FW: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-02-26 Thread Anil Kumar
his time, Information > of twl4030 (PMIC), MMC1, I2C1 and leds are added. > > Signed-off-by: Anil Kumar > Tested-by: Thomas Weber Gentle Ping. As there are no review comments on this patch, Could you please pull this patch ? Thanks, Anil > --- > -This patch is based on top of ker

Re: [PATCH V2] ARM: dts: omap3-devkit8000: Enable audio support

2013-02-26 Thread Anil Kumar
Hi, On Mon, Feb 18, 2013 at 4:50 PM, Peter Ujfalusi wrote: > On 02/16/2013 08:33 AM, Anil Kumar wrote: >> Add the needed sections to enable audio support on >> Devkit8000 when booted with DT blob. >> >> Signed-off-by: Anil Kumar > > Looks good: > Ac

Build error in torvalds kernel 3.11 for omap2plus

2013-09-08 Thread Anil Kumar
Hi All, I am getting below build error in torvalds kernel 3.11 for omap2plus. scripts/kconfig/conf --silentoldconfig Kconfig CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALL

Re: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-03-05 Thread Anil Kumar
Hi Tony, >> From: linux-arm-kernel [mailto:linux-arm-kernel- >> boun...@lists.infradead.org] On Behalf Of Anil Kumar >> Sent: Wednesday, February 27, 2013 8:03 AM >> To: devicetree-disc...@lists.ozlabs.org; linux-o...@vger.kernel.org; >> linux-kernel@

[PATCH V3] ARM: dts: add minimal DT support for DevKit8000

2013-02-15 Thread Anil Kumar
), MMC1, I2C1 and leds are added. Signed-off-by: Anil Kumar Tested-by: Thomas Weber --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V3: - Remove pin mux as done at device boot time by default. For V2: - Change model name as "TimLL OMAP3 Devkit8000"

[PATCH V2] ARM: dts: omap3-devkit8000: Enable audio support

2013-02-15 Thread Anil Kumar
Add the needed sections to enable audio support on Devkit8000 when booted with DT blob. Signed-off-by: Anil Kumar --- This patch is based on top of kernel 3.8-rc5 and the following patches. Peter Ujfalusi:- ASoC: twl4030: Correct the support for Voice port ASoC: twl4030: Convert MICBIAS

[PATCH 0/2] arm/dts: OMAP3: Add gpmc DT node support

2013-02-16 Thread Anil Kumar
Add gpmc DT node in dtsi file. Add nand DT node and partitions information for devkit8000. This series is based on top of branch “omap-for-v3.9/gpmc” git tree http://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git and patches. Anil Kumar:- ARM: dts: add minimal DT support

[PATCH 1/2] ARM: dts: omap3: Add gpmc node

2013-02-16 Thread Anil Kumar
Add gpmc DT node. Signed-off-by: Anil Kumar --- :100644 100644 1acc261... 9f36531... M arch/arm/boot/dts/omap3.dtsi arch/arm/boot/dts/omap3.dtsi | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index

[PATCH 2/2] ARM: dts: omap3-devkit8000: add nand dt node

2013-02-16 Thread Anil Kumar
Add the needed sections to enable nand support on Devkit8000. Add nand partitions information. Signed-off-by: Anil Kumar --- :100644 100644 6338993... 6c6decf... M arch/arm/boot/dts/omap3-devkit8000.dts arch/arm/boot/dts/omap3-devkit8000.dts | 52 1 files

Re: [PATCH 1/2] ARM: dts: omap3: Add gpmc node

2013-02-16 Thread Anil Kumar
Hi, On Sat, Feb 16, 2013 at 5:54 PM, Ezequiel Garcia wrote: > Hi Anil, > > On Sat, Feb 16, 2013 at 05:08:27PM +0530, Anil Kumar wrote: >> Add gpmc DT node. >> >> Signed-off-by: Anil Kumar >> --- >> :100644 100644 1acc261... 9f36531... March/arm/bo

Re: [PATCH V3] ARM: dts: add minimal DT support for DevKit8000

2013-02-20 Thread Anil Kumar
Hi Manish, On Wed, Feb 20, 2013 at 5:28 PM, Manish Badarkhe wrote: > On Sat, Feb 16, 2013 at 12:49 PM, Anil Kumar wrote: >> DevKit8000 is a beagle board clone from Timll, sold by >> armkits.com. The DevKit8000 has RS232 serial port, LCD, DVI-D, >> S-Video, Ethernet, SD/

[PATCH V4] ARM: dts: add minimal DT support for DevKit8000

2013-02-20 Thread Anil Kumar
), MMC1, I2C1 and leds are added. Signed-off-by: Anil Kumar Tested-by: Thomas Weber --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V4: -Tiny nitpick. For V3: - Remove pin mux as done at device boot time by default. For V2: - Change model name as "TimLL

[PATCH V2] ARM: dts: add minimal DT support for DevKit8000

2013-02-10 Thread Anil Kumar
, I2C1, leds and there pim mux information are added. Signed-off-by: Anil Kumar Tested-by: Thomas Weber --- -This patch is based on top of kernel 3.8-rc5. -Tested on Devkit8000. For V2: -Change model name as "TimLL OMAP3 Devkit8000" -Change compatible as "timll,omap3-devkit800

Re: Sound record on Devkit8000 with DT boot issue

2013-02-11 Thread Anil Kumar
Hi Peter, Thanks for helping me. please see my comment inline On Mon, Feb 11, 2013 at 6:47 PM, Peter Ujfalusi wrote: > On 02/10/2013 04:21 PM, Anil Kumar wrote: >> Hi All, >> >> I am working on Devkit8000 and adding DT support for that. I am trying >> t

  1   2   >