0
votes
1answer
39 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 ...
4
votes
1answer
57 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
22 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
45 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
33 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
1answer
45 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
1answer
54 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
50 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 ...
-3
votes
1answer
38 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
58 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 ) ...
2
votes
2answers
60 views

Linux kernel module freezing the computer while iterating over running processes to access process opened files

I am developing a kernel module using kernel version 3.x. I have a function that is responsible to determine if a running process has a given file opened. Here is my code (see my comments after): ...
-3
votes
1answer
46 views

removing from the output of NETSTAT

I am new here. So I am developing a Linux Kernel Module, and want to hide an open socket on a specific port number from the output of sudo netstat -nap What is the approach that I should take? I ...
0
votes
0answers
35 views

Exclude process memory region from kernel and heap usage

I'm trying to implement the solution suggested in this question Is it possible to store pointers in shared memory without using offsets? The proposed solution involves specifying a memory to ...
2
votes
1answer
105 views

How to know linux scheduler time slice?

I'm looking for the value of the time slice (or quantum) of my Linux kernel. Is there a /proc file which expose such an information ? (Or) Is it well-defined in the Linux header of my distributions ...
-7
votes
1answer
63 views

What is the use of Virtual memory when sufficient physical memory is available [closed]

What is the use of virtual memory when sufficient physical memory is available. For example, if i am having a ram of 4GB then what is the use of virtual memory.
3
votes
1answer
67 views

How can I send data packets into the network without using sockets?

I want to send data packets into the network bypassing the Linux network stack. I mean is there any way where I can interrupt the network card driver and place a frame in the network card buffer ...
-2
votes
1answer
45 views

How the function do_raw_spin_lock is implemented in linux

While debugging panic issue realted to spinlock, I came across this definition of spinlock in include/linux/spinlock.h . It is rather hard for me to understand this definition. Why is ...
2
votes
2answers
76 views

How to allocate user space buffer in kernel driver?

In some mess up i need to call one kernel function who is not suppose to call from kernel space because in argument it takes buffer from user space allocated. const char __user *buf But i need to ...
0
votes
2answers
49 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 = ...
-2
votes
1answer
56 views

Is there a reference of all the user data structures used over linux (gcc)

where is the type size_t defined what are the other types like this , Is there a reference of the all the user defined types and data structures in linux (gcc) . for example a reference guide on ...
4
votes
1answer
84 views

How to ensure the uniquesness of global symbols and restric its scope in C?

Below is the trick used in Linux Kernel for per-cpu valuables. As the comment says, it could acheive these two goals: 1.enforce scope. 2.ensure uniqueness, even the static ones. Here is how the ...
0
votes
1answer
82 views

Is there a significance to a leading underscore in the argument name of a function-like macro?

Some preprocessor macros I come across have arguments with names containing a leading underscore; for example, in the Linux kernel: #define DEVICE_ATTR(_name, _mode, _show, _store) \ struct ...
2
votes
1answer
80 views

How to create a simple sysfs class attribute in Linux kernel v3.2

I'm learning how to use sysfs in my Linux modules, but I'm having the hardest time finding current documentation on these topics. The Linux Device Drivers 3rd Edition book I've been using seems to be ...
0
votes
4answers
133 views

Ask for <strike>root</strike> password to get desired privileges

I'm loading a Linux Kernel Module from my application via libkmod ( https://github.com/profusion/kmod ) and everything works fine (as in the module gets loaded and unloaded when I want), but for that ...
1
vote
2answers
48 views

Sending data from LKM to userspace

I have a Linux Kernel Module that generates data and I'd like to send that data to a userspace application. What are the options and what pros/cons do they have? The data could be, let's say, 100 ...
2
votes
1answer
72 views

compiling raspbian wheezy usb driver ch341.c to ch341.ko

I am supposed to compile /usb/serial/ch341.c file to ch341.ko. I am using rs485 module which is not working. I found on some forums that other people also facing this problem because drivers come with ...
1
vote
0answers
66 views

Loading kernel module from C user space application

I'm trying to load a kernel module from C using kmod, but it's not working at all. Here's what I have: #include <stdio.h> #include <stddef.h> #include <unistd.h> #include ...
1
vote
1answer
48 views

What is the best practice to intercept an exception handler in Linux kernel

I need to intercept the exception handling of page fault in Linux kernel, but I'm not allowed to modify the kernel source and compile the kernel. I have to do this in a kernel module. I now have ...
0
votes
0answers
24 views

Does inotify group IN_MOVED_FROM and IN_MOVED_TO?

I'm using a single inotify file descriptor to monitor many busy directories for several events, including IN_MOVED_TO and IN_MOVED_FROM. I have a loop that calls read on it (which blocks until there ...
1
vote
1answer
36 views

Purpose of wake_up_sync/wake_up_interruptible_sync in the Linux kernel

I'm following an example in the Linux Device Drivers 3rd Edition book: if (temp = = 0) wake_up_interruptible_sync(&scull_w_wait); /* awake other uid's */ return 0; The author states: ...
1
vote
1answer
37 views

How to EXPORT_SYMBOL uniquely with the function's arguments?

As we all know when using EXPORT_SYMBOL("function name") we get into the symbol list in System.map the function name as symbol. c041bc90 b packet_sklist c041bc94 b packet_sklist_lock c041bc94 b ...
0
votes
2answers
79 views

Purpose of the ATOMIC_INIT macro in the Linux kernel

I'm reading the Linux Device Drivers 3rd Edition book online and I'm having trouble understanding the initialization macro for atomic variables: static atomic_t foobar = ATOMIC_INIT(1); I've looked ...
0
votes
1answer
120 views

SO_SNDBUF and SO_RCVBUF in c sockets under linux

iam programming client server application ,simply the server can use select on tcp and udp port ,and send the time to client only. but, i want the client in both the tcp client and udp client to print ...
-1
votes
3answers
92 views

using file descriptor from system call in C

hey I would like to open and read a file using system calls and print the data in it letter by letter I have the function system_call in an assembly file and I want to "save" to pointer to the file ...
0
votes
1answer
88 views

Why is kfifo.h so full of #define statements [duplicate]

kfifo.h is made up almost entirely of #define. Why is that? Why have they not declared the functions in the h file like its "normally" done. [edit] It seems like my question is easily interpreted ...
0
votes
4answers
79 views

how to find out when the code reads parent or child process and how do they communicate in C

I have a shell program where a fork is created and then used two if else statements to separate the parent and the child process. My sample program is here and i got a few questions while(true) { ...
0
votes
0answers
56 views

Linux timer expiry issue while using timer_settime

I set up a recurring Linux timer with timer_settime and signal handler. It works fine except for the first time. For example, if I set the timer to 10ms, for the very first time the signal handler ...
0
votes
1answer
81 views

Including ioctl codes in userspace program

Is there is a common practice for userspace programs to include ioctl codes used in a kernel module. mydev.h: #ifndef MYDEV_H #define MYDEV_H #define <linux/ioctl.h> #define MYDEV_IOC_MAGIC ...
3
votes
3answers
140 views

What's the point of a Linux character device driver if you can just use outb/inb from userspace? [closed]

I'm having a hard time understand when I should write a device driver instead of just sending opcodes directly to the hardware via outb from my userspace programs. I initially figured that I should ...
1
vote
1answer
89 views

how do I get the time spent by the linux kernel servicing interrupts

I want to track down jitter in a piece of code and I know there are many potential sources ( task switch, system calls, cache misses, moving task to another CPU, cpu throttling, etc ) and I know how ...
1
vote
2answers
262 views

Call a userspace function from within a Linux kernel module

I'm programming a simple Linux character device driver to output data to a piece of hardware via I/O ports. I have a function which performs floating point operations to calculate the correct output ...
1
vote
5answers
96 views

Does casting the ioctl argument break the strict aliasing rule?

I'm running a Linux 3.2 kernel with the following ioctl prototype: long ioctl(struct file *f, unsigned int cmd, unsigned long arg); I noticed that arg is always unsigned long regardless of the ...
2
votes
2answers
82 views

how to run while loop for some milisecond in linux kernel? [duplicate]

i need to do some polling in Linux kernel for continues some time so i need to design while loop that exits after some milliseconds interval. So how can i do that? I have though to use gettimeofday() ...
1
vote
1answer
42 views

Can FXSAVE be executed twice before an FXRSTOR?

While hacking the Linux kernel, I noticed that it would execute an FXSAVE instruction before performing FPU related tasks. I understand that the FXSAVE instruction will save the FPU state to a ...
3
votes
2answers
124 views

Measuring Time in Linux Kernel Space With Sub-Microsecond Precision

I am currently using the do_gettimeofday() function to measure time in the kernel, which gives me microsecond precision. Is there anything available that is more precise than this (maybe on the order ...
0
votes
1answer
137 views

Sleep in Linux Kernel Space

Can I use the msleep() function to sleep for a specified amount of time in kernel space? If so, which header files do I need to include? #include <linux/time.h> doesn't seem to be the right one. ...
2
votes
1answer
56 views

make .o files in separate folder in linux kernel compilation

see in linux kernel compilation if just do make make ARCH=xyz uImage then it will compile files as per your .conf file and create .o or .ko in same folder where your .c file is there. So is there ...
0
votes
3answers
126 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
76 views

Cannot send out packets by dev_queue_xmit()

I want to capture packets in the NF_IP_LOCAL_OUT hook, and modify them a little bit. After that, I use dev_queue_xmit() to send the packets. Unfortunately, the packets cannot be successfully sent out ...
2
votes
2answers
105 views

What are the meaning of the items in the “alignment trap” error message?

During my debugging, I got the following error message. Alignment trap: my_main (29858) PC=0x00170ad8 Instr=0xe5960008 Address=0x00f28daa FSR 0x0f3 I've looked around a bit and found a lot of ...

1 2 3 4 5 17