1
vote
3answers
35 views
How does linux-kernel read proc/pid file?
How and Where does linux-kernel read proc/pid file which shows all processes in the system. I found linux-source-2.6.31/fs/proc/ Here there are files, but it is hard to understand …
0
votes
4answers
116 views
Why sizeof(spinlock_t) is greater than zero on uni-processor ?
The following line printed output as 4 whereas I was expecting 0.
printk(KERN_INFO "size of spinlock_t %d\n", sizeof(spinlock_t));
I tried this on a system with single cpu. N …
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
2answers
44 views
Kernel Panic after changes in sys_close
I'm doing a course on operating systems and we work in Linux Red Hat 8.0
AS part of an assignment I had to change sys close and sys open. Changes to sys close passed without an inc …
0
votes
1answer
19 views
About compiling Linux kernel in Debian Live
Hi all,
This is my first time compiling Linux kernel. I am using Debian Live. I used kernel-package to compile and I also added a new system call to return an arbitrary integer va …
0
votes
3answers
43 views
Kernel threads and POSIX library
How does one create a Kernel Thread using Posix library?
2
votes
3answers
65 views
In a linux kernel module, how can I get inode of a known path
In a linux kernel module (i.e. working in kernel space), I have a path of a file.
Which function(s) can be used to get the inode of that file. Specifically I need to get the "ino …
2
votes
15answers
408 views
C memcpy() a function
Hi guys,
Is there any method to calculate size of a function? I have a pointer to a function and I have to copy entire function using memcpy. I have to malloc some space and know …
2
votes
4answers
58 views
accessing internal memory of the ARM from a user process on GNU/Linux
Due to some requirements on speed, we need to some computation in-place on internal memory and then DMA the results of the computation to a external memory. The application runs on …
3
votes
3answers
49 views
Current Linux Kernel debugging techniques
A linux machine freezes few hours after booting and running software (including custom drivers). I'm looking a method to debug such problem. Recently, there has been significant pr …
7
votes
7answers
178 views
Signed executables under Linux
For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is
How to sign executable code an …
0
votes
0answers
19 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
171 views
Virtual area to pages
In the Linux kernel, given the task_struct's mm I can access the process's list of vm_area_structs. Given these vm_area_structs, how do I get the struct pages which actually corres …
1
vote
2answers
55 views
How to Diff Files Directly from the Linux Kernel GIT Repository?
I'd like to be able to diff files / directories directly from the Linux Kernel GIT repository without having to download full source.
Specifically, I'm interested in two potential …
0
votes
1answer
34 views
CPU Numbering on a hypertheading enabled system
Hi,
I am trying to find out how an OS (Windows, linux) assigns numbers to logical cpus in a Hyper threading enabled environment. ?
Does both the OSs first serially assign numbers …
