This tag is for general questions regarding code that runs in the context of an operating system kernel (kernelspace, as opposed to userspace), including writing custom kernels. Questions about specific kernels should use a relevant tag (eg. [linux-kernel], [windows-kernel], [xnu]). This tag is ...
0
votes
1answer
11 views
the only overhead incurred by fork is page table duplication and process id creation
The only overhead incurred by fork() is the duplication of the parent’s page tables
and the creation of a unique process descriptor for the child.
In Linux, fork() is implemented
through the use of ...
0
votes
0answers
13 views
Persistent global kernel objects in windows?
Is there a version of CreateFileMapping or a similar function that is not reference counted? I have a situation where I would like a file mapping to stay up forever, even after terminating all ...
0
votes
0answers
8 views
Compile and run Linux kernel - kernel-panic: no init found
I did the following:
Made a directory named 'iso' which contains these two files:
iso/boot/bzImage: the bzImage that I got by compiling linux from source
iso/sbin/bash: Copied ubuntu bash file
...
-1
votes
0answers
6 views
How to read information from DeviceIoControl output?
I passed the IOCTL code IOCTL_BTH_GET_LOCAL_INFO to the DeviceIoControl Kernel method and received a valid handle. Now i would like to read the device information from the outBuffer and the IOCTL code ...
1
vote
0answers
23 views
How to trap file access attempts with a filter driver (kernel) and offer dialog to allow/deny (user)?
I've been looking at Windows's File System Filter Drivers. I started with this "FsFilter" example:
http://www.codeproject.com/Articles/43586/File-System-Filter-Driver-Tutorial
With effort, I ...
0
votes
1answer
21 views
Kernel module with multiple files - unknown symbol
Hello stackoverflowers :)
For the last several hours I've been trying to compile+load a multiple file module. The compilation emits a strange warning and the module fails to load. Here are the ...
0
votes
1answer
11 views
Configured storage parameter to be persistent in journald.conf
Even after configuring storage=persistent in journald.conf configuration file under /etc/systemd, journal directory (log) is getting created/stored under /run/log/journal instead of /var/log/journal. ...
0
votes
1answer
24 views
building /lib/modules/$(uname -r)/build while compiling a kernel
I am cross-compiling 3.4.0 kernel for an embedded device. Then I would like to install compat-wireless drivers which require /lib/modules/3.4/build directory and sub-files. Could anyone explain how ...
0
votes
1answer
34 views
ARM Kernel Oops when interrupts are enabled in page fault handler or with preemptive scheduling
Can you enable interrupts in page fault handler? Is there an ARM kernel contention with preemptive scheduling?
I got an ARM kernel oops in UDP receiving code with CONFIG_PREEMPT, or when interrupt ...
3
votes
0answers
17 views
What kernel module function gets called, when I say “cat myfile > /dev/sda”
I've skimmed through the Linux Kernel Module Programming guide, but can't figure out:
When I say cat image.iso > /dev/sda, will it cause the write function of file_operations structure to be ...
0
votes
0answers
6 views
Getting define values
Is it possible to get the actual values of defines used by preprocessor during the project build aswell as macro final definitions?
This is the question connected with big projects for instance ...
0
votes
1answer
37 views
How to preempt one process from another process/kernel thread?
I have a process P and a kernel thread KT. I want to synchronize execution of P with KT. KT is basically an event handler. But my requirement is that KT should not go ahead processing events if P is ...
0
votes
1answer
19 views
list_for_each_entry reset cursor
Hi I am new in this and I trying to use list_for_each_entry to iterate over a list. It looks something like this
list_for_each_entry(pos, head, member){
if (something == pos.x)
//reset the ...
0
votes
0answers
19 views
UART - Using FIFO in Polling Mode
Ok, as far as I understand, in polling mode I need to continually check UART registers to both receive and send characters. I have that working, and next step is dealing with FIFO.
I enabled it and ...
0
votes
2answers
37 views
Handling CTRL-C during UART polling in Linux Kernel
I have a syscall read, like so:
ssize_t serp_read(struct file *filep, char __user *buf, size_t count, loff_t *offp){
ssize_t cnt;
char *buffer;
int i;
buffer = ...
0
votes
0answers
11 views
Different values in iowrite32 and ioread32
I am not much into kernel but need to debug some existing code.
I am writing some particular 32 bit integer on a dpram location using iowrite32
But when I read the value then there is slight ...
-1
votes
0answers
17 views
Good way for filtering in minifilter driver
I need to write a minifilter driver that crypt and decrypt all, that copied/opened and other from/to USB Storage device. i use swapBuffer sample at base. Then i debugged it, i see a large number of ...
-2
votes
0answers
17 views
How easy is to crack the following setup? [closed]
I am trying to copyprotect some work, which is a bootable SD card booting a linux kernel on ARM device (Raspberry pi). I am using this approach:
The approach uses an initrd to mount an encrypted ...
0
votes
0answers
11 views
how to resolve following errors
I am trying to compile madwifi device driver for kernel 3.8.2.
I have not compiled this kernel but made the config file. I am getting following errors
/root/Desktop/linux-3.8.2/arch/x86/Makefile:88: ...
2
votes
1answer
25 views
Linux kernel: sequence of events/paths before process coredump happens
When there is a segmentation fault and a process coredump is generated what are the sequence of events happening in kernel and user space (w.r.t Linux) ?
Linux does support a sigsegv handler.
How ...
-1
votes
0answers
15 views
Cannot unload driver
I'm using CreateService, StartService to load my driver. After doing that I can see some messages printed by DbgPrint calls and Driver and Device objects in WinObj. When calling ControlService() with ...
0
votes
0answers
12 views
What's the type of my Ubuntu kernel? [migrated]
Four commands on my pc:
$ dpkg -l |grep linux-image
Linux kernel image for version 3.4.0 on 32 bit x86 SM
It means my Ubuntu kernel is 32 bits?
$ uname -a
Linux ny 3.4.0-030400-generic ...
0
votes
1answer
31 views
Where can I find instruction address(PC value) in linux kernel?
All.
I am trying to print current PC value, when I allocate a new physical page.
In linux kernel source, mm/memory.c is responsible for allocating pages,
but it does not have information about PC ...
-1
votes
1answer
37 views
Bisection Method on Cuda
i was trying to implement the Bisection Method on CUDA, this method is capable to aproximate the eigenvalues from an aplication, Bisection Method, but when i try to make some comparisons on the CUDA ...
0
votes
1answer
17 views
linue kernel driver, dereference pointer and printk
this is a testing device driver code.
I have kernel space data which is dptr->data.
Afte I copyt it to user. I would like to printk it.
But my printk seems prints out address.
if (copy_to_user(buf, ...
0
votes
1answer
49 views
How to link kernel module to use their function?
I have some kernel module that i have added thanks modprobe:
sudo modprobe mymodule
In this module i have some function that i want to call.
#include <stdio.h>
int main() {
int f = ...
0
votes
1answer
31 views
Calculating TCP Checksum in a netfilter module
I am trying to change some fields in the IP and TCP header in a netfilter postrouting hook, however I can't seem to get the kernels TCP checksum function to work properly to amend it afterwards.
The ...
0
votes
0answers
18 views
How to trace IOCTL graphics card syscalls from userspace programs to the kernel?
I tried strace to capture IOCTL syscalls to the graphics card when opening a GUI app like gedit doing a strace -ttT gedit. But they do not appear, I assume this is because the kernel does not give ...
1
vote
0answers
44 views
+100
Where m flag and o flag will be stored in Linux
I want to know the value of m flag and o flag of recently received Router Advertisement. From the kernel source code I came to know that m flag and o flag are stored.
/*
* Remember the ...
0
votes
0answers
45 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
16 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.
...
1
vote
1answer
46 views
Interrupts in UART 16550 and Linux Kernel
I'm trying to use interrupts to see if there are errors in an UART 16550D and when a character is available to be read.
The UART configurations is as follows:
#define UART 0x03f8 // Endereço ...
0
votes
3answers
45 views
What's the different between pwd and root in struct of task_struct?
the sched.h in Linux-0.12:
struct task_struct {
/* these are hardcoded - don't touch */
long state; /* -1 unrunnable, 0 runnable, >0 stopped */
long counter;
long ...
0
votes
1answer
35 views
VFS : Cannot open root device “sda1” or unknown-block(0,0) error
i have a SBC and it has a flash nandrive. i used to run it with kernel 2.6.18 but i am trying to upgrade my kernel to 2.6.33.7 or 2.6.38.8.
i have no problem with 2.6.18 kernel, it is stable and sees ...
0
votes
1answer
25 views
context_switch and system call virtualization
When the kernel is executing a context_switch(), i.e. when it is in that function, is it possible that some other task makes a system call? As far as I understand, as the processor state is being ...
0
votes
0answers
19 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
1answer
136 views
Compile new kernel on debian wheezy
I'm trying to compile the 3.8.11 kernel on Debian 7.0 Wheeze. I'm using this tutorial,
but have a strange issue on the last step:
sudo dpkg -i linux-headers-3.8.11_3.8.11-10.00.Custom_amd64.deb
...
0
votes
1answer
41 views
MySQL database hangs due to disk journaling?
Occasionally one of our Linux MySQL database servers will hang for a while, creating a long queue of active queries. After 10-20 mins, service resumes as normally.
This happens in kern.log:
May 14 ...
1
vote
1answer
21 views
Why doesn't strace show HDD IOCTL syscalls?
When doing an strace -ttT date I miss a lot of syscalls right after the lauch of the executable. After the execve() there are no further syscalls where the date ELF is copied from HDD to memory, does ...
0
votes
1answer
30 views
Cuda profiler says that my two kernels are expensive, however their execution time seems to be small
I use two kernels, let's call them A an B.
I run the CUDA profiler and this is what it returned:
The first kernel has 44% overhead while the second 20%.
However, if I decide to find out the ...
0
votes
1answer
33 views
Windbg “Processes and Threads” window doesn't change context when kernel debugging
My "Processes and Threads" window is stuck on 000:f0f0f0f0 ntkrnlpa.exe.
I tried changing the context in various ways, none of which affected the window.
My actions:
kd> !process 0 0 notepad.exe
...
0
votes
1answer
141 views
insmod: init_module failed (Exec format error)
I'm able to compile kernel module for Galaxy S4 Kernel 3.4.xx but I get following errors during module insertion. could someone please shed some light on what's missing here.
The kernel module is a ...
4
votes
2answers
28 views
How does kernel know, which pages in the virtual address space correspond to a swapped out physical page frame?
Consider the following situation: the kernel has exhausted the physical RAM and needs to swap out a page. It picks least recently used page frame and wants to swap its contents out to the disk and ...
1
vote
1answer
53 views
Problems Compiling simple C program against custom Linux Kernel
I recently compiled a custom kernel which defines a new address family/protocol family called "AF_CUSTOM"
Such, include/linux/socket.h in the my kernel source was changed, as seen here(as well as for ...
0
votes
1answer
22 views
Buffer in driver for PCI device
I'm writing driver for some pci device. My driver need buffer for handling data user wrote.
Then driver is providing device with the data.
There would be no problem, but my driver must handle many ...
0
votes
0answers
14 views
Why are Caches Disabled at the Kernel Bootup?
Why are the Caches disabled at the Kernel Bootup? Can the Linux kernel boot with the caches enabled? As enabling the caches can decrease the kernel boottime.
Regards,
Krishna
-1
votes
1answer
44 views
How to generate a stack trace with in own kernel module [closed]
I would like to generate a stack trace report like one generated by kernel oops.
------------[ cut here ]------------
kernel BUG at ...
0
votes
1answer
44 views
C - Linux - kernel module - TCP header
I'm trying to create linux kernel module, that will inspect incoming packets. At the moment, I'm in process of extracting TCP header of packet and reading source and destination port -> However I'm ...
0
votes
0answers
10 views
Hide File System in XFCE Thunar
I am trying to hide File system and Removable media items in Thunar.
Adding /dev/sda1 to /etc/fstab and adding /etc/udev/rules.d/hide-partitions.rules file with
KERNEL=="sda1",ENV{UDISKS_IGNORE}="1"
...
1
vote
1answer
34 views
The equivalent of path_lookup() of linux 2.6 in linux 3.7
I am reading "Understanding the Linux Kernel" 3rd edition, by D.Bovet & M.Cesati. In the chapter about Virtual file systems, they refer to the function "path_lookup()" that does the lookup for a ...



