Tagged Questions
0
votes
0answers
27 views
Private driver (sub-directory) does not work with Linux kernel Kbuild system
I have a private char driver..lets say test. I have created a separate sub-directory under drivers/char/ viz. drivers/char/test.
I have modified drivers/char/Makefile to have
obj-$CONFIG_TEST := ...
0
votes
1answer
27 views
How Devfs and dev file system differ
I read about devfs(known as device file system ) to facilitate device driver programming as mentioned in linux device drivers text . How different is devfs from /dev directory in linux.Are they ...
0
votes
2answers
53 views
How to associate a kernel module to a specific device (driver instance)?
dev-audio declares two devices:
struct platform_device s5pv210_device_iis0 = {
63 .name = "samsung-i2s",
64 .id = 0,
65 .num_resources = ...
0
votes
1answer
46 views
How to find *.o file by KERNEL level Makefile
Generally in kernel level make file contain
$(CONFIG_SERIAL_DEVICE) += serial.o
When we are making user level make file then it'll find .o file from that particular folder. But in this, where ...
0
votes
1answer
47 views
How a task in linux which is waiting for a lock, wakes up once the lock is released by the another task?
lets say task A in linux is waiting for a lock and on that time the specified lock is held by another task B. so task A will be in wait queue. now once the task B are done then release the lock. Now ...
0
votes
1answer
45 views
Why does my printk messages are updated in the log file lately?
I have written a simple module as follows:
#include<linux/module.h>
#include<linux/kernel.h>
static int __init own_init(void)
{
printk(KERN_INFO "Hi");
return 0;
}
static int ...
0
votes
1answer
62 views
Please tell about the query of network packet traversal in linux
I was reading Understanding linux networking Internal book and the pdf Network packet capture in Linux kernelspace on the link networkkernel.pdf
In the Understanding linux networking Internal under ...
1
vote
0answers
30 views
Query Related to Packet traversal in kernel
After reading the book "Understanding Linux Network internals".
I came to know about some concepts of how we get the packet from the network:-
> When working in interrupt driven model, the nic ...
0
votes
2answers
119 views
Regarding how the parameters to the read function is passed in simple char driver
I am newbei to driver programming i am started writing the simple char driver . Then i created special file for my char driver mknod /dev/simple-driver c 250 0 .when it type cat /dev/simple-driver. it ...
1
vote
1answer
112 views
Check and load a kernel module [duplicate]
Possible Duplicate:
modinfo() equivalent INSIDE kernel?
I need to check whether a particular module ( abc.ko ) is loaded or not in a e1000 network driver. if abc.ko is not loaded, it has to ...
0
votes
1answer
331 views
Reference for installing driver in android source code
I have android source code with kernel. i want to add or remove driver in source code .
Like adding camera drive,BT(bluetooth) device driver in source code and make the code.
Where to start from . ...
0
votes
1answer
149 views
Dynamic allocation in kernel space
I have been trying to allocate space using malloc in kernel space for a driver I am working on (using malloc is a constraint here; I am not allowed to allocate space in any other manner), but if I try ...
0
votes
1answer
614 views
Do we need to ioremap for memmap reserved memory chunk ?
I reserve the memory chunk using a memmap=8G$4G linux kernel boot parameter.
Is it needed to ioremap this memory ?
ioremap man pages say :
ioremap performs a platform specific sequence of ...
0
votes
1answer
199 views
Linux UART driver - debugging time taken for __init call
I am a bit new to the Linux kernel and our team is trying to optimize the boot-up time for the device. It was observed that 8250 UART driver takes more than 1 second to complete the __init call. Using ...
-1
votes
1answer
209 views
Where is the “Zero divide” done in kernel for Arm Cortex A-9
I am looking into kernel source code (2.6.35 ) for Zero divide .
I inserted Zero divide in user space program and all threads stopped.
So I want to know Where is the "Zero divide" done in kernel for ...
2
votes
2answers
378 views
Provide several kernel buffers through mmap
I have a kernel driver which allocates several buffers in kernel space (physically contiguous, aligned to page boundaries, and consisting of integral number of pages).
Next, I need to make my driver ...
1
vote
2answers
51 views
Linux SLAB_CTOR_VERIFY and cache undeclared
I try to compile a program, that serves as a example how storage allocation works.
The compiler gives me a error, that 'cache' and 'SLAB_CTOR_VERIFY' is undeclared.
I can not find the declaration in ...
0
votes
2answers
296 views
Linux DD passing data to serial port ttyS0
Hi i want to pass a data from my char device driver to serial port ttyS0..
I have created a simple char driver module which reads and write and it's my first tym doing it.. i am using debian guest ...
2
votes
1answer
342 views
Check validity of virtual memory address
I am iterating through the pages between VMALLOC_START and VMALLOC_END and I want to
check if the address that I get every time is valid.
How can I manage this?
I iterate through the pages like this:
...
0
votes
1answer
194 views
how does compiler/linker resolves kernel API like 'printk' called from a module on linux
I have written a sample hello.ko kernel module:
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_INFO */
int init_module(void)
...
-2
votes
3answers
634 views
important topics for linux programming in C
i have an interview in 10 days for a job. requirements are: (1)Strong Linux kernel or device driver design and programming.(2)Demonstrated skills in C/C++ programming under Linux, and system ...
0
votes
1answer
598 views
How to integrate Module.symvers while compiling a Module
I have a Module.symvers files which has the symbols (from Module A) I need to use in other module say B.
But I cant make changes to the original module A. Is there a way to tell Module B, to get ...
2
votes
3answers
908 views
How to debug deadlock problems in kernel
I have a buggy kernel module which I am trying to fix. Basically when this module is running, it will cause other tasks to hang for more than 120 seconds. Since almost all the hung tasks are waiting ...
0
votes
3answers
114 views
Using structures to set the functions
While writing kernel modules/drivers, most of the time some structures are initialized to point to some specific functions. As a beginner in this could someone explain the importance of this.
I saw ...
0
votes
2answers
460 views
How does the kernel Makefile magically knows what to compile?
I'm new in writing Linux device driver, and I'm wondering how the kernel Makefile magically knows what to compile. To illustrate what I don't understand, consider the following case:
I did a #include ...
3
votes
1answer
341 views
Existing Linux Module Symbol
I am porting a Linux module (PageMgrMod) to a more recent kernel, but now the functions are not visible to other modules. For example, loading a module that uses PageMgrMod gives the error
no ...
2
votes
1answer
186 views
How can I get the value of “%d” variables in dynamic_debug info of Linux kernel?
I enabled config_dynamic_debug=y in the Linux kernel customized by myself, and following the dynamic_debug documentation shipped with kernel source code, I run the following command to enable the ...
2
votes
2answers
4k views
How to include C backtrace in a kernel module code?
So I am trying to find out what kernel processes are calling some functions in a block driver. I thought including backtrace() in the C library would make it easy. But I am having trouble to load the ...
1
vote
3answers
198 views
Which module in linux 2.6 kernel should I modify to count the number of ip packets sent/received?
I need to modify a kernel module(s) to count number of packets that the machine has sent / received over my wireless adapter for the linux 2.6 kernel. Please let me know which modules should I modify. ...
0
votes
3answers
827 views
How to generate ~100kHz clock signal in Liunx kernel module with bit-banging?
I'm trying to generate clock signal on GPIO pin (ARM platform, mach-davinci, kernel 2.6.27) which will have something arroung 100kHz. Using tasklet with high priority to do that. Theory is simple, set ...
8
votes
3answers
2k views
Function caller in linux kernel
Is there a way to get function caller in linux kernel? I know __func__ returns the function name which is executing. I am looking for the function which called "__func__"
6
votes
3answers
15k views
“FATAL: Module not found error” using modprobe
i have a problem with modprobe command...i compiled the hello world module and inserted using "insmod" command, it works fine..when i do "lsmod", i can see it in the output list...but when i insert ...
2
votes
1answer
244 views
What does a linux device need to be seen by Hal?
I'm trying to learn about device drivers on Linux Kernel, for that I've created three modules with:
A bus type
A device driver
A fake device that does nothing now, only is registered
Everything ...
6
votes
2answers
582 views
What is the sequence followed by the Linux kernel to configure a device?
As I understood after reading the chapter related to The Linux Device Model in the Linux Device Drivers 3rd Edition, when a new device is configured, the kernel (2.6) follows more or less this ...
2
votes
3answers
4k views
Is it possible to call a user-space callback function from kernel space in Linux (ioctl)?
Is it possible to expand the ioctl interface in Linux so that the user-space application can send a pointer to a function to the kernel space driver?
I'm in particular thinking of ways to handle the ...
11
votes
3answers
2k views
New to Linux Kernel/Driver development
Recently, i began developing a driver of an embedded device running linux.
Until now i have only read about linux internals.
Having no prior experience in driver devlopment, i am finding it a tad ...
3
votes
2answers
553 views
copy_from_user twice - character device
I've implemented a character device and I'd like to ask If this is correct:
In a Userspace I've a struct with 2 pointers.
I write this struct into my device.
In my write function in char device I ...


