0
votes
0answers
47 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
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
48 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
3answers
129 views

Calling kernel_fpu_begin twice before kernel_fpu_end

I'm using the kernel_fpu_begin and kernel_fpu_end functions in asm/i387.h to protect the FPU register states for some simple floating point arithmetic inside of a Linux kernel module. I'm curious ...
0
votes
1answer
71 views

TCP not working for custom network device driver

We have developed an ASIC for Power Line Communications and are developing a ethernet device driver for the same. The chip is connected to our host processor (iMX233 ARM9) via Serial Peripheral ...
1
vote
1answer
49 views

How to block packets received by eth0 from going up to TCP/IP stack

We are using dev_add_pack with ETH_P_ALL to get copies of sk_buff of all ethernet frames received by eth1. Is there a way we can prevent eth1 from forwarding all the ethernet frames up to TCP/IP layer ...
0
votes
2answers
122 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 ...
0
votes
0answers
53 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. ...
0
votes
0answers
67 views

Eclipse Internal Builder failed to build Linux Kernel Module

I make a simple linux kernel module. I am able to build the module with External builder option and a makefile prepared by me. But when i tried to build the same file with Internal Builder option ...
3
votes
1answer
153 views

Is it possible to send SCSI commands to a USB device from within a kernel module?

Question How, given the information udev passes to my kernel module (the block device path maybe), can I send SCSI commands to the block device? (yet have it function normally otherwise, meaning ...
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, ...
1
vote
1answer
64 views

Wrapping a kernel-driver in userspace: is it real? Is it possible?

I have written a Loadable Kernel Module (LKM) which wraps the audio-driver under /dev/snd/pcmC0D0p . Therefore I moved pcmC0D0p to pcmC0D0p_bak, renamed my driver to pcmC0D0p and passthru every ...
1
vote
1answer
113 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 ...
-1
votes
1answer
342 views

list_for_each_entry does not work

i write a module about link list with pri as the head node. It's empty initially. In pri_init(), I insert 3 nodes into the list and assign value to each of them. Finally, i want to use ...
0
votes
1answer
135 views

How to identify Hp TouchScreen Driver from lsmod command (ubuntu)

I'm using Ubuntu(10.04) in HP-DV6 laptop with touchscreen, I would like to disable the Touch in laptop. After a brief search I found that the lsmod command output will list all the installed drivers. ...
1
vote
1answer
41 views

NULL pointer dereference in swiotlb_unmap_sg_attrs() on disk IO

I'm getting an error I really don't understand when reading or writing files using a PCIe block device driver. I seem to be hitting an issue in swiotlb_unmap_sg_attrs(), which appears to be doing a ...
1
vote
1answer
215 views

Write timer in Linux device driver

I'm newbies with the module linux. I try to create a counter module where the counter is increment on timer callback. The result of the counter must be send to an other module (a memory module). ...
0
votes
1answer
264 views

Use of count variable in register_chrdev_region

As of I understand, the signature of the register_chrdev_region is described as follows extern int register_chrdev_region(dev_t firstmajor,unsigned int count,const char*dev_name); //firstmajor: The ...
0
votes
1answer
159 views

maximum allocated memory by linux-kernel module

I want to write a module whose task is to capture the incoming packets without sending them to the user space application & doing some modification on the captured packet. then this module will ...
1
vote
1answer
273 views

sk_buff copy & sk_buff clone

i m writing a module for linux kernel & it try to steal the packet & its related sk_buff. to do so i want to use struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask) & then ...
4
votes
1answer
173 views

loopback network kernel module not working

I am new to kernel module development. I am trying to development a pseudo network driver operates in loopback mode without any actual device. My goal is to use the following setup: iperf -s ...
0
votes
0answers
443 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
200 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
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 ...
0
votes
2answers
534 views

pci_driver.probe function not called so pci_device_id wrong?

I am moving my first steps into Linux Kernel Device Driver development. I learnt that for pci-e cards I have to call pci_register_driver providing information via an object of type pci_driver ( below ...
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) ...
0
votes
2answers
312 views

Does any interrupt occur when a usb device is connected?

I am working on USB HIDs on linux platform. Keyboards, mouse etc., are examples of Human Interface Devices. Whenever a HID is inserted to a system, at first device enumeration occurs. Then an entry in ...
2
votes
1answer
200 views

inserting kernel module after make mrproper

I download the kernel source, compile it and run the new kernel. I am making some change to kvm kernel module and testing it. So this is what I do after making some change in the kernel source. ...
0
votes
1answer
787 views

Error while compiling module for linux kernel

I am using Fedora 16.The kernel is 3.3.2.-6.fc16.i686.PAE.I have installed the correct kernel devel.But when I am trying to compile any module against it I am getting an error mentioned below No ...
1
vote
1answer
321 views

net_device get_stats function, how to use?

this is how the function looks like: struct net_device_stats* (*get_stats)(struct net_device *dev); I simply need to call this function in my code and get it's results in a net_device_stats ...
0
votes
3answers
271 views

Device Driver code compilation?

I am new to linux .i have to compile a device driver sample code. i tried to install linux-source-2.6.38 from the synaptic, then it showed the message quoted below: This package provides the ...
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 ...
1
vote
3answers
305 views

Kernel module for SSH/SCP drive

Me and my colleague have a project, to make a driver which will provide access to a remote drive like it was a local drive (using SSH/SCP). The drive should be seen normally as a drive, and operations ...
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 ...
1
vote
3answers
199 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. ...
2
votes
2answers
2k views

Accessing a serial port from a linux kernel module

Hello Linux Kernel Driver Gurus! I'm writing a v4l2 driver for a camera that uses a serial interface for configuration. I'd like the driver to configure the camera, as it keeps the client code ...
0
votes
2answers
197 views

modinfo() equivalent INSIDE kernel?

I have two modules A, B. A has a function f() that is globally acessible, i.e. the f() symbol is exported. B may want to call f() occasionally. But B should only call f() if module A is loaded. ...
0
votes
3answers
828 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 ...
0
votes
1answer
807 views

Linux: Getting a character device to show up in /dev

What is the best way to get a character to show up in /dev? I have a driver that calls register_chrdev, and I see the entry in /proc/devices when I load the module. However, I still have to call mknod ...
2
votes
3answers
391 views

What options do we have for communication between a user program and a Linux Kernel Module?

I am a new comer to Linux Kernel Module programming. From the material that I have read so far, I have found that there are 3 ways for a user program to request services or to communicate with a Linux ...
2
votes
2answers
1k views

Changing the Interrupt descriptor Table

I am using Linux 2.6.26 kernel version and I am trying to change the interrupt descriptor table using a kernel module. I am only trying to change the page fault table entry here. So I make a copy of ...
4
votes
1answer
3k views

Linux Kernel Modules: When to use try_module_get / module_put

I was reading the LKMPG ( See Section 4.1.4. Unregistering A Device ) and it wasn't clear to me when to use the try_module_get / module_put functions. Some of the LKMPG examples use them, some don't. ...
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
vote
3answers
4k views

open() returns with “No such device” error, but there is such a device (linux)

I'm trying to use a somewhat old DAQ, and had to jump through a few hoops to get an old (circa 2004) device driver for it to compile (DTI-DT340 Linux-DAQ-PCI). I've gotten to the point where it ...