Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- kafka
- commit
- lruvec
- Linux
- proc
- blk-mq
- buddy_system
- mm_struct
- Network
- Kernel
- page
- kmalloc
- vm_area_struct
- 카프카
- slub
- BLOCK
- memory
- strex
- slab
- Apache
- pmap
- fastpath
- slowpath
- Android
- vmalloc
- multiqueue
- devicedriver
- spinlock
- NDK
- allocator
Archives
- Today
- Total
목록pmap (1)
Art of Pr0gr4m
[Linux Kernel 5] Process Memory Viewer HOL
이번 포스트에서는 메모리 학습의 마무리로 메모리 뷰어 모듈 제작 실습을 진행한다. /proc//maps 을 읽으면 다음과 같이 프로세스의 메모리 매핑 정보를 볼 수 있다. 필드별로 할당 주소, 권한(모드), offset, 디바이스 ID, inode, 매핑 대상 or 타입을 보여준다. 이와 유사하게 인자로 전달받은 pid (인자가 없다면 1번 프로세스)의 메모리 사이즈 및 매핑 정보를 출력하는 예제를 작성한다. 1. 프로세스 메모리 뷰어 예제 소스 #include #include #include #include #include #include #include #include #ifndef find_task_by_pid #define find_task_by_pid(nr)pid_task(find_vpid(nr..
IT/Linux Kernel
2020. 5. 17. 19:59