This tag is for questions about the internals of the Linux kernel itself - particularly about writing code that runs within the context of the kernel (like kernel modules or drivers). Questions about writing userspace code in Linux should generally be tagged [linux] instead. Since the ...

learn more… | top users | synonyms

0
votes
0answers
9 views

request_irq to be handled by a single CPU

I would like to ask if there is a way to register the interrupt handler so that only one cpu will handle this interrupt line. The problem is that we have a function that can be called in both normal ...
1
vote
0answers
24 views

Atomicity for Unix Domain Socket

This question is similar to Atomic write on an unix socket? but that did not quite provide an answer. This is Linux kernel 3.6.11 on the Raspberry Pi (ARM arch). I have vendor supplied code with a ...
2
votes
0answers
37 views

C++ exception support in linux kernel module

In 2005 Dr Dobb's magazine published an article about patch for linux kernel. The patch pretended to allow Itanium C++ ABI in kernel space. The patch was not accepted. The code disappeared from the ...
1
vote
0answers
31 views

packet sending in low speed in linux

recently working on a project which is to forward packets in a high rate (more than 500Mbitps). I have tried 2 methods, but they don't work. The host is a vm, ubuntu-11.10 32bit, the nic is r8169, ...
1
vote
3answers
38 views

Alternatives to googling Linux log messages? [closed]

I am intermediate Linux user which has basic knowledge of programming (c, perl, js ...) and some system troubleshooting (strace, SystemTap, lsof ...) and I am tired of Googling the messages which ...
0
votes
0answers
7 views

crash on _spin_lock_irqsave when executing a work_queue

I wrote a kernel module which forwards network packets to user space. To handle the bottom half in the netfilter I use work queues. But at some point of time while filtering, I got below crash. ...
4
votes
1answer
41 views

Page table in Linux kernel space

I feel confuse in page table management in Linux kernel ? In Linux kernel space, before page table is turned on. Kernel will run in virtual memory with 1-1 mapping mechanism. After page table is ...
0
votes
1answer
22 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 ...
1
vote
1answer
15 views

Periodic thread fails real-time in Xenomai

I'm creating a periodic thread which outputs a square signal on an analogic output. I'm using Posix Skin and Analogy from the Xenomai API. I tested the real-time performance of my code using an ...
1
vote
0answers
12 views

Why simple_rename() does nothing in ramfs?

Linux ramfs uses simple_rename(), but why in such function the new_dentry and old_inode are not linked to each other? Here is the source code of simple_rename() for your reference: int ...
-1
votes
0answers
16 views

Steps behind a simple assignment operation in linux

What are the sequence of steps that happen in CPU, cache, TLB, VM, HDD leading to execution of “x = 7” which isn’t present in cache or sysmem nor translation in TLB. It will be great if someone can ...
1
vote
0answers
22 views

When the linux kernel reports time as spent servicing “soft interrupts”, precisely what does it mean?

I have top showing high activity in the %si column for several cpus. Sar reports something similar. Q1) What are the possibilities for what might be executing in the kernel? It appears that ...
-2
votes
0answers
33 views

Building a Linux distro [closed]

Today was a terrible day at office, failed to compile a 'hello world.c' for an arm machine. I gave up that. But After noon I found a blog to compile kernal here I compiled it successfully, and booted ...
0
votes
1answer
33 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 ...
1
vote
1answer
23 views

Why are there ioctl calls in socket.c?

Trying to understand why there are ioctl calls in socket.c ? I can see a modified kernel that I am using, it has some ioctl calls which load in the required modules when the calls are made. I was ...
2
votes
0answers
24 views

In Linux Driver, how to disable a specific USB Device [closed]

Assume a USB devices is powered by USB bus. Sometimes the firmware in the USB device encounter a problem and can't recovery by itself. I have to unplug and plug the USB device from the host. Is there ...
0
votes
1answer
28 views

When to use network system calls vs. sk_buff within a KM

While trying to learn more about linux kernel networking ... I have a kernel module that contains a protocol which runs on top of TCP. Its almost an application layer protocol I'm experimenting with. ...
0
votes
0answers
12 views

can't mount windows directory using samba client in linux running on custom ARM board

I have a ARM board (custom board) running linux-3.4.0 kernel with ramdisk image (root file system) build with buildroot (http://buildroot.uclibc.org) samba client and dependencies are built for the ...
0
votes
1answer
42 views

Inconsistent lock state

I am a biginner of Linux kernel. I modified the scheduling sub-module of linux kernel 3.3 and tried to boot the kernel on Beagleboard. I met the error of "Inconsistent lock state". Anyone could help ...
0
votes
2answers
29 views

Reading /proc/kcore file

I am trying to read the kcore file in the /proc directory using the command cat /proc/kcore but something is coming in unreadable form. Is this possible to read this kcore file ? Thanks in advance.
0
votes
0answers
22 views

Difference between 2 process and 2 threads in contex of usage of device file ( node file )

I had made a driver(simpler one). Now i am opening device file through 2 process (By fork()) and through 2 threads. What is the differences of them ??
0
votes
2answers
25 views

Uboot Option to print boot time prefixes

Is there any uboot config option to print boot sequence with time prefixes similar to kernel option CONFIG_PRINTK? I am expecting output like below, [ 0.000000] U-Boot 1.1.4-gedeced79 (Feb 6 ...
0
votes
2answers
53 views

Linux IOCTL commands

Trying to implement IOCTL commands, and just encountered as below: If _IO is for both read and write than why should I consider _IOR and _IOW any clue please ?
0
votes
2answers
61 views

why do we need to burn a root file system in embedded system development

You know when we do embedded system development,we'll burn a root file system first(like cramfs etc.) and then burn a Linux kernel.Since there's already a file system in the Linux kernel, why should ...
0
votes
0answers
28 views

printk works eventhough kernel.h is not included

I was writing a simple hello world module and found that prink works eventhough kernel.h is not included. My program is #include<linux/module.h> int hello_init(void) { printk(KERN_ALERT ...
1
vote
1answer
22 views

Is ip_hdr() on a sk_buff guaranteed to work?

When dealing with a sk_buff in kernel modules code, I see many code samples use either (struct iphdr *)skb_network_header(skb) //skb is an instance of (struct sk_buff*) or the function ip_hdr() ...
-1
votes
0answers
19 views

Linux snapshotting issues [closed]

Is there any way to deal with incoming writes while a backup is in progress in linux. Example, you are writing to your sql database and lvm snapshotting at the same time. This will result in corrupted ...
1
vote
0answers
34 views

mmap() slower than write() copy_form_user(), why?

I need to transfer big blocks of data (~6MB) to my driver from user space. In the driver, I allocate 2 3MB chunks per block using pci_alloc_consistent(). I then mmap() each block (i.e. 2 chunks) to a ...
0
votes
0answers
19 views

How Main Makefile is creating .ko for .o file

/: prepare scripts FORCE $(cmd_crmodverdir) $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ $(build)=$(build-dir) %/: prepare scripts FORCE $(cmd_crmodverdir) ...
4
votes
1answer
59 views

Is it reasonable to expect that in Linux, fd < maximum number of open file descriptors?

I'm writing a server that needs to handle many open sockets, so I use setrlimit() to set the maximum number of open file descriptors (as root, before dropping privileges) like so: #include ...
0
votes
0answers
24 views

printk stopped writing to after booting into new compiled kernel

I have compiled latest Linux kernel version (3.7.6) on my VMware machine and was able to successfully boot into new kernel, however for some reason I am not able to view printk messages from kernel in ...
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
0answers
16 views

How to make reference to an android library project inside Android.mk

I am using an android library project in my application. android-uitableview is the name of the android library project. How should I add it inside Android.mk file Following is my current Android.mk ...
0
votes
0answers
41 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. ...
0
votes
2answers
32 views

Parallel port IRQ Handler registration on IRQ7

I have written one device driver of parallel port driver with IRQ handler. Now, first i must have to access IRQ7 because my parallel port gives interrupt on it(I had seen that on /proc/interrupts). ...
0
votes
1answer
49 views

How to align a kmalloc() address in linux

I have a requirement in kernel space wherein i have to program device register with 64K aligned address. Currently i am using kmalloc() to allocate memory but not sure how to align this 64K. Does ...
1
vote
0answers
23 views

BUG: sleeping function called from invalid context at arch/x86/mm/fault.c

I am new in Kernel coding. I have define a workqueue in a kernel module like as below: struct sk_buff_head *g_temp =NULL; struct workqueue_struct *myqueue; // pointer to your workqueue void ...
1
vote
1answer
57 views

Kernel Illegal Instruction when writing to kernel module

I'm making an FPGA System-on-Chip system where I change hardware configuration at runtime with a kernel module. They system uses Linux 2.6 and the LEON3 CPU (SPARC). Some bitfiles work fine but for ...
1
vote
0answers
51 views

Force Init process to wait in Linux

Is it possible forcing the Init process to wait in Linux? Would it be safe to do so? In my exercise we implement a new scheduling policy that should be active only if the Init process waits (Linux ...
0
votes
1answer
12 views

Error report to external BMC inside interrupt handler

We have one system and an external Baseboard Management Controller (BMC) to monitor this system. When there is a critical error occurred in the system, the error should be logged and sent to the ...
1
vote
1answer
43 views

c++ applcation for linux to convert ipv4 packet to ipv6 [closed]

I'm looking to develope a c/c++ application for linux that converts ipv4 packet received to ipv6 and viceversa ( losing some ipv6 only features ) step 1: how to receive all necessary info from an ...
-3
votes
1answer
40 views

kernel: Phoenix BIOS detected: BIOS may corrupt low RAM, working around it [closed]

I am new in kernel coding and implemeted a workqueue and getting below crash: kernel: imklog 4.4.2, log source = /proc/kmsg started. rsyslogd: [origin software="rsyslogd" swVersion="4.4.2" ...
0
votes
1answer
59 views

Occasional fault seen on xscal arm “Unhandled fault: imprecise external abort (0x416) at 0x40019004”

We have prodcution software running on the feild , which has ixp23xx netowrk processor with XSCALE arm core running linux 2.6.24. We have seen occasional problem from the feild and sometimes ...
0
votes
0answers
28 views

how to configure the gpio.h file in order to request for irq

I am using the LPC1788 evb cortex board manufactured by emcraft. In that the linux source which is provided along with the board is not configured for IRQ. this I came to know by seeing the ...
1
vote
0answers
62 views

Linux not freeing the file buffer when we execute rm or > (redirection) operator

I have a router with embedded-linux, kernel version 2.4.22. I know its very old version but I have to deal with it. The following is free command output on the box, [8300002902-3] Debug> free ...
0
votes
0answers
47 views

【SLOVED】Fatal exception in interrupt when booting Linux 3.3.7 on BeagleBoard

I have tried to implement a new scheduling algorithm in Linux Kernel 3.3.7 and boot it on the BeagleBoard. However, it throws errors like "Kernel panic - not syncing: Fatal exception in interrupt". I ...
1
vote
0answers
23 views

Will the implementation of RFC3465 Appropriate Byte Count in Linux 2.6.32 be affected by GRO

The implementation of tcp_abc in linux kernel 2.6.32 is like: 323 /* RFC3465: ABC 324 * We MAY increase by 2 if discovered delayed ack 325 */ 326 if (sysctl_tcp_abc > 1 ...
-1
votes
0answers
32 views

Need for 1GB memory for kernel in Process address space [closed]

I have a basic doubt. Please clear my doubt if you have an idea about the same. In a 32 bit PC running Linux, out of 4GB virtual space available for user process , 1GB is allocated for kernel and 3GB ...
0
votes
1answer
63 views

BUG: sleeping function called from invalid context at mm/slub.c:1719

I have allocated a pointer like int *ptr = kmalloc(sizeof(int), GFP_ATOMIC); And this pointer is deallocated in a timer function which having 5 second timeout value. if( NULL != ptr ) ...

1 2 3 4 5 79