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]). This tag is not about other uses of the word "kernel" - for example, questions about CUDA kernels should use the [cuda] or [cuda-kernel] tags.

learn more… | top users | synonyms

173
votes
20answers
39k views

What are some resources for getting started in operating system development?

One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done). I'm having a ...
50
votes
2answers
1k views

Android Kernel Debugging

I have been experimenting with getting kgdb to work the Nexus One. I have pulled the kernel from android.git.kernel.org and enabled everything to do with KGDB including kgdbts testing using ...
40
votes
3answers
13k views

cscope or ctags why choose one over the other?

I primarily use vim / gvim as an editor and am looking at using a combination of lxr ( the Linux Cross Reference ) and either cscope or ctags for exploring the kernel source. However I haven't ever ...
36
votes
10answers
2k views

What kind of C is an operating system written in?

It makes sense that something like an operating system would be written in C. But how much of it, and what kind of C? I mean, in C, if you needed some heap memory, you would call malloc. But, does an ...
33
votes
6answers
2k views

What are good and bad things in the design of the Linux kernel?

I am not a master of the kernel code, but have some basic idea of its code structure. In this post we can discuss what are the good and bad things in the design of the kernel. Update: No, this is not ...
29
votes
6answers
3k views

Learning kernel hacking and embedded development at home?

I was always attracted to the world of kernel hacking and embedded systems. Has anyone got good tutorials (+easily available hardware) on starting to mess with such stuff? Something like kits for ...
21
votes
10answers
1k views

What parts of Linux kernel can I read for fun?

Programming isn't my main job, though I enjoy it and sometimes get paid for it. For many years now I've been hearing about Linux and my friends have shown to me many *nixes (or *nici?), though I stick ...
21
votes
5answers
10k views

What is __gxx_personality_v0 for?

This is a second-hand question from an OS development site, but it made me curious since I couldn't find a decent explanation anywhere. When compiling and linking a free-standing C++ program using ...
21
votes
9answers
2k views

When should I write a Linux kernel module?

Some people want to move code from user space to kernel space in Linux for some reason. A lot of times the reason seems to be that the code should have particularly high priority or simply "kernel ...
20
votes
4answers
2k views

Extending Functionality of Magic Mouse: Do I Need a kext?

I recently purchased a Magic Mouse. It is fantastic and full of potential. Unfortunately, it is seriously hindered by the software support. I want to fix that. I have done quite a lot of research and ...
18
votes
2answers
238 views

nested page-faulting of user-space address in Linux

I would like to know if it is functionally wrong to page-fault a user-space address when kernel is running fault-handler to bring in a user-page. OS is Linux 2.6.30 Assume that both user-addresses ...
18
votes
11answers
10k views

What IDE would be good for linux kernel driver development

I am using ubuntu 8.04.1 and i am trying to write a character driver in kernel mode. What would be a good ide, ideally with code completion, to do that ?
17
votes
3answers
12k views

What is the difference between vmalloc and kmalloc?

I've googled around and found most people advocating the use of kmalloc, as you're guaranteed to get contiguous physical blocks of memory. However, it also seems as though kmalloc can fail if a ...
16
votes
3answers
7k views

Linux Kernel: System call hooking example

I'm trying to write some simple test code as a demonstration of hooking the system call table. "sys_call_table" is no longer exported in 2.6, so I'm just grabbing the address from the System.map ...
15
votes
14answers
2k views

For kernel/OS is C still it?

I like operating systems and would eventually like to become a OS developer mostly working on kernels. In the future will C still be the language of choice and what else should I be trying to learn?
14
votes
2answers
1k views

How does the linux kernel manage less than 1GB physical memory?

I'm learning the linux kernel internals and while reading "Understanding Linux Kernel", quite a few memory related questions struck me. One of them is, how the Linux kernel handles the memory mapping ...
14
votes
11answers
1k views

What's the best way to get to know linux or BSD kernel internals?

I'd like to gain better knowledge of operating system internals. Process management, memory management, and stuff like that. I was thinking of learning by getting to know either linux or BSD kernel. ...
13
votes
2answers
192 views

What means the dot before variable name in struct?

looking at the linux kernel source, I found this: static struct tty_operations serial_ops = { .open = tiny_open, .close = tiny_close, .write = tiny_write, .write_room = tiny_write_room, ...
13
votes
2answers
223 views

Bad address when adding a system call

I have downloaded kernel 2.6.38-5 and want to add a system call. I did the following: I have added my system call to system call table; <src folder>/arc/x86/kernel/syscall_table_32.S .long ...
12
votes
6answers
615 views

Debugging an Operating System

I was going through some general stuff about operating systems and struck on a question. How will a developer debug when developing an operating system i.e. debug the OS itself? What tools are ...
12
votes
7answers
7k views

Linux Process States

In Linux, what happens to the state of a process when it needs to read blocks from a disk? Is it blocked? If so, how is another process chosen to execute?
12
votes
2answers
3k views

How do I programatically disable hardware prefetching?

I would like to programatically disable hardware prefetching. From Optimizing Application Performance on Intel® Core™ Microarchitecture Using Hardware-Implemented Prefetchers and How to Choose ...
12
votes
12answers
2k views

Overriding functionality with modules in Linux kernel

Without getting into the details of why, I'm looking for a clean (as possible) way to replace kernel functions and system calls from a loadable module. My initial idea was to write some code to ...
11
votes
3answers
363 views

Writing a hello world kernel

I am writing a kernel, so that i am starting with a hello world program in kernel. i have written a hello world kernel in c++ and it compiles successfully. But when i boot it, it does not show ...
11
votes
3answers
149 views

What is exactly happening when I spawn a new thread from .NET?

I want to understand what precisely is happening behind the scene when I spawn a new thread in .NET, something like here: Thread t = new Thread(DoWork); //I am not interested in DoWork per se ...
11
votes
1answer
242 views

Why is it “Bad” to Build Drivers with Visual Studio?

Microsoft Visual Studio's linker has a /DRIVER flag specifically for building drivers: Use the /DRIVER linker option to build a Windows NT kernel mode driver. However, Microsoft says: You ...
11
votes
1answer
243 views

What is a Sandbox

When anti-viruses run some application in a virtual environment called a "sandbox", how does this sandbox precisely work from the Windows kernel point of view? Is it hard to write such a sandbox?
11
votes
1answer
1k views

Android: Kernel Debugging with KGDB

I'm trying to do kernel debugging for my Nexus One, and have been following instructions from http://bootloader.wikidot.com/android:kgdb. I was wondering if someone has actually got this to work? And ...
11
votes
5answers
357 views

Operating system question

I recently asked myself: If a program, like Mozilla Firefox for example, is started - the control must be somehow given to it. But when the program crashes, why doesn't my whole system crash like in ...
11
votes
7answers
752 views

What does “do { … } while (0)” do exactly in kernel code? [closed]

Possible Duplicates: What’s the use of do while(0) when we define a macro? Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? C multi-line macro: ...
11
votes
4answers
775 views

Can I write Windows drivers with Delphi 2010?

I've always heard that Delphi can do almost anything C++ can do...except write Windows drivers. Is this correct, and if so, why is that? I recently read a blog post online that may indicate a ...
11
votes
10answers
831 views

What kind of loop is for (;;)?

Found in torvalds/linux-2.6.git -> kernel/mutex.c line 171 I have tried to find it on Google and such to no avail. What does for (;;) instruct?
11
votes
2answers
914 views

Reverse Engineering an Apple Kext - Reconstructing the Class

Greetings! I am currently attempting to extend the functionality of the Magic Mouse. To do this, I am hoping to write a kext that intercepts events from the multitouch driver, ...
11
votes
4answers
981 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 progress in Linux ...
11
votes
4answers
1k views

Learning Kernel Programming

I want to learn linux kernel programming. What would be the starting points for that ? What could be some of the simpler problems to target ? thanks in advance
11
votes
6answers
5k views

How does an Amazon EC2 instance select its kernel?

I have an Amazon EC2 instance using the Amazon-supplied Fedora 8 64-bit AMI, which I would like to upgrade to Fedora 10. I tried doing this by running "yum update" to upgrade the kernel and all ...
10
votes
1answer
263 views

Recursively disabling CONFIG dependencies on linux kernel builds

When configuring a Linux kernel, I normally start with my distribution's kernel config file. I often want to turn off some entries, but they are sometimes unchangeable because other CONFIG options ...
10
votes
1answer
361 views

Linux Kernel Programming Exercises? [closed]

I'm a college student who is trying to get a lot better at Linux kernel hacking. I took an OS course and am reading some books, and that's helpful to learn how the kernel works, but I really need to ...
10
votes
4answers
206 views

A database-backed operating system

Here where I work I am attending a series of lectures about database query optimizers. While the speaker was introducing databases, he made a very insightful comment about a kernel having basically to ...
10
votes
4answers
723 views

Job Requirements: What does “Kernel Developer” REALLY mean?

I couple of months ago I was jobhunting. Since my resume is still out there I'm getting an average to two phone calls and four e-mailed messsages per day inquiring if I'm still on the market. Most ...
10
votes
6answers
2k views

How does one submit a potential patch to the Linux kernel?

We have some software which relied on certain behavior from an another (very commonly used) application that has now changed, rendering our current implementation workable, but less than optimal. We ...
9
votes
1answer
364 views

How to write kernel space memory (physical address) to a file using O_DIRECT?

I want to write a physical memory to a file. The memory itself will not be touched again, thus I want to use O_DIRECT to gain the best write performance. My first idea was to open "/dev/mem" and mmap ...
9
votes
2answers
416 views

Designing a Kernel for a support vector machine (XOR)

The meat of my question is "how does one design a kernel function for a learning problem?" As a quick background, I'm reading books on support vector machines and kernel machines, and everywhere I ...
9
votes
11answers
754 views

How to crash my system programatically

If I could write a user program that would crash my OS (not my application), how would I do it? I was thinking somehow switch my usermode program to kernel mode and cause a memory corruption. Is it ...
9
votes
2answers
370 views

What are the first operations that the Linux Kernel executes on boot?

After the boot loader hands execution over to the kernel, what happens? I know assembler, so what are the first few instructions that a kernel must make? Or is there a C function that does this? ...
9
votes
2answers
1k views

How do I make GRUB automatically boot the kernel?

I am currently writing a kernel, and in an attempt to actually run it, I've decided to use GRUB. Currently, we have a script to attach GRUB's stage1, stage2, a pad file, and the actual kernel itself ...
9
votes
7answers
4k views

Other than malloc/free does a program need the OS to provide anything else?

I'm working on designing the kernel (which I'm going to actually call the "core" just to be different, but its basically the same) for an OS I'm working on. The specifics of the OS itself are ...
9
votes
3answers
2k views

What are some interesting, small Linux kernel projects to help learn the source?

What small projects would you suggest to a novice with the kernel, but someone who has plenty of systems and C experience? The aim is to develop a familiarity with the kernel source code, and a ...
8
votes
3answers
336 views

Implementation of system calls / traps within Linux kernel source

I'm currently learning about operating systems the use of traps to facilitate system calls within the Linux kernel. I've located the table of the traps in traps.c and the implementation of many of the ...
8
votes
1answer
273 views

vmsplice() and TCP

In the original vmsplice() implementation, it was suggested that if you had a user-land buffer 2x the maximum number of pages that could fit in a pipe, a successful vmsplice() on the second half of ...

1 2 3 4 5 22