프로그래밍
http://kernelnewbies.org/Linux_2_6_22

관심있게 볼만한 변경사항들

1. SLUB allocator
 보다 효율적인 메모리 관리를 위한 slab allocator. 아직 기본으로 enable 되어 있지는 않다.
 mm/slub.c 참조.

2. utimensat()
 nano-second까지 지원하는 stat

3. file descriptor를 통한 event notification.
 signalfd(), timerfd().
 제약사항이 많은 signal handler 함수를 등록하는 대신에 fd 를 얻고, poll() 또는 epoll_wait() 하면 되겠다.