0
votes
0answers
27 views

Why filp_open get failed here?

In mu linux kernel driver A register my device and creates node as /dev/xyz Now after that driver B's probe is called inside that i am opening my device with flip_open() mm_segment_t fs; fs ...
0
votes
0answers
14 views

obtaining pages created by copy-on-write which were originally mapped to our device

For a number of reasons we have the following problem. The development kernel is 3.5 The program MyProgram has mmapped the set of N pages P from device /dev/MyDevice as private and copy on write. ...
0
votes
0answers
16 views

Convert old USB Driver to new Linux Kernel

I am trying to compile igotu2gpx for Ubuntu 12.10. It was only compiled until Ubuntu 10.04. I got it to compile but there is a driver module which won't compile. It won't compile because the ...
1
vote
2answers
26 views

Record kernel Log while running an application

I have put some printk statement inside Linux kernel like this printk(KERN_DEBUG " Hello from Kernel "); and I am interested to record output of this command while running a.out application , ...
0
votes
0answers
21 views

Non preemptive work queuesin linux

I work with madwifi drivers on a linux 2.6.32-44 kernel. inside my code i call to the function queue_work() that enqueues a task to the CPU. this task is basically sending some frames. the problem is ...
0
votes
2answers
50 views

which version of linux kernel starts to support sd/sdio version 3.00?

--Hello there, Here is a question about linux kernel sd/mmc subsystem. At present, the version of linux kernel we use is 2.6.29.4. Now, there is a SD/MMC controller which supports SD/SDIO ...
1
vote
0answers
29 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
1answer
88 views

Error while compiling kernel: missing double arithmetic?

I am compiling an android kernel with android toolchain. Inside a driver, I need to use double arithmetic, but when I compile i get lots of error, one for each time i use double type. For instance i ...
0
votes
0answers
171 views

/dev/video0 : invalid argument

Why I am not able to read this file. I tried reading this file with cat as : cat /dev/video0 But it says cat: /dev/video0 : invalid arguments Similarly, if I try to use dd as : dd ...
-1
votes
2answers
107 views

Good links to learn network driver interfacing

I want to know(study) about the network driver interfacing with the linux kernel or the TCP/IP stack. For this i would like to use my own system driver as a case study. Can you please tell me any ...
1
vote
1answer
68 views

inode parameter in driver open

Today, I started thinking about inode structure passed in "open" call to device drivers in linux. I have religiously used "inode->i_rdev" for major and minor numbers before. But I never used it for ...
2
votes
2answers
86 views

process information at runtime at kernel level

I am working on a linux kernel module which would take care of all the processes that are running for a specific task. Is it possible to know if the certain process named 'X' is still running or not ...
0
votes
0answers
51 views

login keyboard, usb mouse and touchpad inactive

i hardly customized my kernel. now the login pops up. although the input line symbol flushes in the username text box, I cannot enter text via keyboard, nor can move the mouse and use touch pad. ...
1
vote
1answer
118 views

How to get USB device details in kernel programming?

I am new to kernel programming and I have dev_t value of a USB device. I want to get the details of the device like vendor ID, product ID, or some other attribute which will vary from device to ...
0
votes
0answers
37 views

Protected disk area accessed through LKM

I'm developing a LKM to keep some data securely in disk. These data will be accessed through my module and will contain some simple filesystem-like structure to store small amounts of data (passwords, ...
0
votes
0answers
33 views

Device Probe and Bus Probe

In driver_register the probe functionality is checked drv->bus->probe && drv->probe. Q. What is use of driver probe and bus probe? Q. One more thing, it is said that probe ...
0
votes
0answers
428 views

mapping memory reserved by mmap kernel boot param into user space

As discussed in this question, i am reserving a memory chunk at the boot time using a kernel boot parameter memmap=8G$64G I have written a character driver kernel module which , during ...
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
202 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 ...
1
vote
1answer
55 views

Chardevice major number freeing

here is dumb chardevice lkm: #include <linux/module.h> #include <linux/init.h> #include <linux/cdev.h> #include <linux/fs.h> MODULE_AUTHOR ("milo"); MODULE_DESCRIPTION ...
3
votes
1answer
339 views

Linux kernel struct file pointer

Is it guaranteed that a struct file pointer won't be deallocated and reallocated somewhere else in memory during its open to close lifecycle? I want to uniquely identify file structs that are passed ...
0
votes
0answers
57 views

Bootloader Upgradation Supoort in Kernel

Can anyone please suggest which piece of code in linux kernel take care of upgradation of bootloader from Kernel prompt? I am working with iMX35 freescale processor.. They have offical release of ...
2
votes
3answers
526 views

What happens to preempted interrupt handler?

I could not find a proper answer for the following questions even in some well written kernel books: They are saying that an ISR can't sleep because its not possible to reschedule an ISR as it is ...
0
votes
2answers
155 views

Is algorithm analysis needed for a linux kernel, linux device driver or module writer programmer? [closed]

I am not good in analysis of algorithm and trying to get some knowledge. As I am interested in kernel, linux device driver or module writer programming is this analysis really needed for these ...
0
votes
2answers
1k views

Mapping physical addresses to virtual address linux

I am working on a small embedded system. When my linux boots up into user space, I know where are my devices in the physical memory. I want to map them into user space virtual addresses. Currently, I ...
0
votes
2answers
2k views

How compile a user space program with kernel headers

I need to test a usbfs device by using ioctl. I need use ioctl(fd, USBDEVFS_REAPURBNDELAY, &receive);. But USBDEVFS_REAPURBNDELAY is defined in a kernel header, so I include some kernel file like ...
0
votes
1answer
239 views

8 byte aligned free contiguous page list in kernel

can any body please tell me if there is any linux kernel API that can give me free contiguous page list that the starting page address is 8byte aligned. I need to get contiguous physical memory but ...
1
vote
4answers
86 views

How can I know where has a function been called from?

I am trying to debug some functions in my code. Unfortunately, gdb is not available in the system, so debugging is done, at the moment, by printk messages (it is a linux kernel driver). There is a ...
1
vote
2answers
209 views

Running user thread in context of an interrupt in linux

I am writing some customized application and allowed to change interrupt handler code in the linux kernel. I am having a user thread which is waiting for an interrupt to happen. If that interrupt ...
0
votes
0answers
185 views

USB: How to explicitly check if a particular Endpoint is STALLED or not?

Currently I am writing a USB Class driver above USB Core (libusb). I have a situation where explicitly checking if there is STALL on a particular Endpoint is really helpful. The actual scenario is ...
0
votes
0answers
167 views

Netns : NET_TX NET_RX softirq processing

Am wondering: in the context of network namespace (netns): if several network packets are flowing in different, say n number of netns's, will they be processed by n separate softirq instances or just ...
0
votes
0answers
58 views

__exit() call in platform driver

I have a doubt that when exactly __exit(func) is called, because I tried to put few logs in my func(), and when I powered it off, I am not able to see those logs, I only saw logs of shutdown() ...
1
vote
0answers
240 views

How to change LED trigger?

I have register in BSP's driver a LED: static struct gpio_led ic_leds[] = { { .name = "led1:green", .gpio = USER_LED, ...
2
votes
1answer
282 views

Accessing IRQ description array within a module and displaying action names

I am programming a kernel module in C which is struggling to access IRQ description array elements and to display all action names of these elements. At the beginning, I thought that this irq_desc ...
0
votes
1answer
88 views

Where do I find the keymap for linux?

Let I have all my keycodes. If I want to look up my ascii character for 'a' which would be scancode 30 on press, this translates to 0141 via keymap. Where do I find this keymap?
0
votes
1answer
351 views

How can I pick a good magic/type number for ioctl?

I was wondering if there was a macro that could assign my device a random 'magic' number that linux was currently not using. This is obviously in the interest of portability. Also if this is not ...
0
votes
0answers
135 views

Compiling nouveau driver for linux 2.6.32-20 kernel

I have been reading through the nouveau wiki to figure out how I could compile the nouveau kernel driver for the linux 2.6.32-20 kernel specifically. Why I need to do this is kind of a long story, ...
0
votes
1answer
562 views

How do I print a string from kernel buffer? Am I using copy_from_user() right?

Hi I'm writing a write() method for my character driver and I was wondering why when I copy data from the user into my kernel buffer that my buffer contains random jibberish. Bellow is the method that ...
1
vote
3answers
266 views

How i can use ioctl for the communication between the user program and driver?

i am writing a driver in linux. How i can use ioctl for the communication between the user program and driver ? In my driver, the structure is as follows: struct file_operations fops = {.read = ...
0
votes
1answer
2k views

proc_create() example for kernel module

Can someone give me proc_create example. Because earlier they used create_proc_entry() but now they are using proc_create(). If you have any example. Please share it with me.
0
votes
2answers
561 views

printk not working for kernel debgugging

I put some debugging messages in the kernel code. have checked /var/log/messages, dmesg and there is no such dump there. syslogd is running on the machine i also changed /proc/sys/kernel/printk to 8 ...
3
votes
1answer
3k views

Linux driver access through sysfs

I'm making a small kernel module to provide user-space access to some kernel-mode only features of an ARMv7 chip (specifically, cache control). I'm reading through Linux Device Drivers by Corbet, ...
2
votes
1answer
184 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 ...
0
votes
1answer
951 views

Kernel Function Failing on interrupt but not on ioctl

Im writing a kernel driver interfacing over i2c and I do a read from the bus interface chip in multiple places. Some are done from the user space via an ioctl and others occur on an interrupt. The ...
4
votes
2answers
5k views

struct file in linux driver

I am currently learning how to write Linux device drivers and I have trouble understanding "struct file". I am using the book Linux Device Drivers 3rd edition to help me out. This is what I ...
2
votes
1answer
175 views

ZONE_NORMAL association with kernel/user-pages

Above is presented a case where I have only 512 MB of physical memory. What I have read up so far, is that ZONE_NORMAL is mapped to the kernel virtual address space as shown. Essentially I have a ...
24
votes
3answers
3k views

How does the linux kernel manage less than 1GB physical memory?

I'm learning the linux kernel internals and while reading "Understanding Linux Kernel", quite a few memory related questions struck me. One of them is, how the Linux kernel handles the memory mapping ...
1
vote
1answer
867 views

unevictable page

I getting a kernel crash as below. Here I can observe large memory is present in unevictablle page. I wish to know when exactly memory is added to unevictable page list. Also, from the below message ...
3
votes
3answers
4k views

module_init and init_module of linux

I have been trying to port few linux drivers and realized that there is substantial difference between kernel version 2.4 and 2.6 of linux. In the 2.4 version of kernel, the module programming was as ...
1
vote
3answers
2k views

Problem with chardev.c example from The Linux Kernel Module Programmers Guide

I compiled and ran the chardev.c example from the lkmpg and when writing to the device received an unexpected error: anon@anon:~/lkmpg$ sudo echo "hi" > /dev/chardev bash: /dev/chardev: Permission ...

1 2