Linux Kernel - Slab Allocator Question

Posted by Drex on Stack Overflow See other posts from Stack Overflow or by Drex
Published on 2010-04-24T03:13:56Z Indexed on 2010/04/24 3:23 UTC
Read the original article Hit count: 273

I am playing around with the kernel and am looking at the kmem_cache files_cachep belonging to fork.c. It detects the sizeof(files_struct). My question is this:

I have altered files_struct and added a rb_root (red/black tree root) using the built-in functionality in linux/rbtree.h. I can properly insert values into this tree. However, at some point, a segfault occurs and GDB backtraces the following information:

(gdb) backtrace

0 0x08066ad7 in page_ok (page=) at arch/um/os-Linux/sys-i386/task_size.c:31

1 0x08066bdf in os_get_top_address () at arch/um/os-Linux/sys-i386/task_size.c:100

2 0x0804a216 in linux_main (argc=1, argv=0xbfb05f14) at arch/um/kernel/um_arch.c:277

3 0x0804acdc in main (argc=1, argv=0xbfb05f14, envp=0xbfb05f1c) at arch/um/os-Linux/main.c:150

I have spent many hours trying to figure out why there is a segfault given that the red/black tree inserts properly. I'm thinking it's a memory allocation issue with new processes made by fork() of a parent process. Could this be the case and could it have something to do with kmem_cache files_cachep?

© Stack Overflow or respective owner

Related posts about kernel

Related posts about linux-kernel