本來想看完pagefault的處理的,不過實驗室有事情了,只能先把這一半放上來了。
頁面的分配與回收使用了一個叫做buddy allocator的機制,kernelnewbies上的解釋
The memory allocation scheme used in the kernel. A vector of lists of free pages is kept, ordered by the size of the chunk (in powers of two). When a chunk is allocated, it is removed from the relevant list. When a chunk is freed back to the free pages pool, it is placed in the relevant list, starting from the top. If it is physically contiguous with a present chunk, they are merged and placed in the list above (i.e. where the chunks are twice the size), and this operation percolates up the vector. As regions are merged whenever possible, this design helps to reduce memory fragmentation.
首先在zone_struct{} 中保存了一個free_area_t數組,這個數組記錄了各種大小的空閑內存塊的信息。
include/linux/mmzone.h:














































free_area_struct {}








頁面分配時,找到適合大小的free_area_struct{},然后從free_list中找有沒有空閑的內存塊,如果沒有就找更大的free_area_struct{},因為大小都是2^n,很容易把大塊內存拆開,一塊分配給請求,剩下的保存到對應大小的隊列中。
頁面回收時主要的問題是如何解決過多的內存碎片。當頁面塊被釋放時,先檢查是否有相同大小的相鄰空閑塊存在,如果有的話就結合起來(遞歸過程)。