linux-2.6.33/slob_new_pages()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#wc80792f]
#backlinks
*説明 [#va349f15]
-パス: [[linux-2.6.33/mm/slob.c]]
-FIXME: これは何?
--説明
**引数 [#pd5f7f05]
-gfp_t gfp
--
--[[linux-2.6.33/gfp_t]]
-int order
--
-int node
--
**返り値 [#t5602186]
-void *
--
**参考 [#v158128d]
*実装 [#lc453784]
static void *slob_new_pages(gfp_t gfp, int order, int no...
{
void *page;
#ifdef CONFIG_NUMA
-
--[[linux-2.6.33/CONFIG_NUMA]]
if (node != -1)
page = alloc_pages_exact_node(node, gfp, order);
-
--[[linux-2.6.33/alloc_pages_exact_node()]]
else
#endif
page = alloc_pages(gfp, order);
-
--[[linux-2.6.33/alloc_pages()]]
if (!page)
return NULL;
return page_address(page);
-
--[[linux-2.6.33/page_address()]]
}
*コメント [#je9818a4]
終了行:
*参照元 [#wc80792f]
#backlinks
*説明 [#va349f15]
-パス: [[linux-2.6.33/mm/slob.c]]
-FIXME: これは何?
--説明
**引数 [#pd5f7f05]
-gfp_t gfp
--
--[[linux-2.6.33/gfp_t]]
-int order
--
-int node
--
**返り値 [#t5602186]
-void *
--
**参考 [#v158128d]
*実装 [#lc453784]
static void *slob_new_pages(gfp_t gfp, int order, int no...
{
void *page;
#ifdef CONFIG_NUMA
-
--[[linux-2.6.33/CONFIG_NUMA]]
if (node != -1)
page = alloc_pages_exact_node(node, gfp, order);
-
--[[linux-2.6.33/alloc_pages_exact_node()]]
else
#endif
page = alloc_pages(gfp, order);
-
--[[linux-2.6.33/alloc_pages()]]
if (!page)
return NULL;
return page_address(page);
-
--[[linux-2.6.33/page_address()]]
}
*コメント [#je9818a4]
ページ名: