目前分類:Linux Kernel (3)

瀏覽方式: 標題列表 簡短摘要
安裝最新的 ubuntu 13.04
會有內建的ftp
但是 為啥用ipv6的位址 卻一直出現
ftp: connect: Invalid argument
?????

用ping6 位址也是一樣出現
connect: Invalid argument

但是用ping6 -I eth0 綁定interface (網卡)

jpsix 發表在 痞客邦 留言(1) 人氣()

http://kerneltrap.org/node/2067

這篇說的

最大的原因是C++ compiler不夠可靠

還有其他原因

自己看吧~XD


文章標籤

jpsix 發表在 痞客邦 留言(0) 人氣()

linux kernel中
memory可以分成3種類型的ZONE
1. ZONE_DMA: 有些Device需要用DMA (direct memory access) 用途的memory
2. ZONE_NORMAL: 一般memory
3. ZONE_HIGHMEM: high memory, 不是永久都會是kernel space address的那些memory

在linux kernel中allocate page or memory的function
1. struct page * alloc_pages(gfp_t gfp_mask, unsigned int order)
gfp_mask 待會再說 先感受一下page要怎樣allocate
要注意的是,這裡的order指的是 2^order (1 << order)

jpsix 發表在 痞客邦 留言(0) 人氣()