1
vote
2answers
33 views
Where has the the owner field of struct proc_dir_entry gone? [ Linux Kernel ]
According to the list of API changes in the 2.6 kernel series on LWN the .owner field of struct proc_dir_entry was removed in the 2.6.30 Kernel.
So here's a couple of questions:
…
0
votes
0answers
21 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 u …
1
vote
2answers
32 views
Reading from a block device in kernel space
Hello
I am writing a kernel module and need to perform reads from an existing block device. (/dev/something).
Does anyone know of any other modules that do these that I can use …
0
votes
0answers
18 views
How to use/learn Video4Linux2 (On Screen Display) Output APIs?
My latest microprocessor( Freescale iMX233 ) has 8 hardware overlay plus inbuilt YUV to RGB conversion functionality. They have exposed these functionality through v4l2 driver. v4l …
1
vote
3answers
97 views
How can I test my driver is loaded, and then access my driver functions from the linux kernel?
I have a driver which compiles and loads into the linux kernel just fine. In this driver are some functions which I would like to access from the kernel file 'fs/readdir.c'.
Additi …
1
vote
3answers
120 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 …
0
votes
1answer
22 views
Running ctags for an external kernel module ( or pulling in tags from a separate related project )
I'm building a an 'external' module ( device driver ), i.e. it's not in the Linux kernel source tree, but in a separate unrelated source tree.
I want to use ctags to browse variab …
1
vote
2answers
92 views
Communicating between Kernel Threads in Linux
I am porting a app/PCI driver from vxWorks to Linux and I would like to keep the same architecture if possible. The current driver has 2 tasks(threads) that communicate with each …
0
votes
1answer
92 views
error compiling the linux kernel
Hi,
I was trying to compile the linux kernel, but getting some errors.
While running the top Makefile i am getting the following errors :-
CHK include/linux/version.h
CHK …
2
votes
7answers
579 views
Linux: direct access to the hard-disk in C
How can I obtain a raw access to the HD and know if that location is used or is a free space?
Just a piece of example, I can obtain a direct access simply with an open and a read o …
0
votes
1answer
284 views
linux usb-hid :add libhid library to eclipse(C++) or netbeans IDEs or native input.h or hiddev.h ?
Hi
i have problem with libhid .
i found that there 2 way 4 accessing the usb-hid in linux
1)linux default libraries like input.h and hiddev.h and ...
2)using libhid
i found l …
18
votes
9answers
290 views
Content for Linux Operating Systems Class
I will be TA for an operating systems class this upcoming semester. The labs will be deal specifically with the Linux Kernel. What concepts/components of the Linux kernel do you …
4
votes
6answers
171 views
What are the consequences of calling write() with zero length?
At fairly high level in the Linux write() function, it filters out requests for writing 0 length buffers. Which makes sense. Who'd want to the OS wasting it's time drilling throug …
3
votes
4answers
216 views
How might I learn to write char device drivers for Linux?
How to write char device drivers in Linux?
0
votes
2answers
47 views
git commit hash of an external loadable module
I'm developing a Linux kernel module outside of the Linux source tree (in the standard way) and am trying to automatically include the git commit hash of the driver into the versio …
