linux-4.4.1/cpu_cache(global)(arm)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#y6e03f4d]
#backlinks
*説明 [#c0739aec]
-パス: [[linux-4.4.1/arch/arm/kernel/setup.c]]
-初期化処理: [[linux-4.4.1/setup_processor()(arm)]]
-FIXME: これは何?
--説明
**参考 [#mbaf3af4]
*実装 [#q0fc985a]
#ifdef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
struct cpu_cache_fns cpu_cache __read_mostly;
-
--[[linux-4.4.1/cpu_cache_fns]]
#endif
**シンボルエクスポート: arch/arm/mm/proc-syms.c [#pd962199]
#ifndef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
...
#else
EXPORT_SYMBOL(cpu_cache);
-
--[[linux-4.4.1/EXPORT_SYMBOL()]]
#endif
**初期化処理: arch/arm/kernel/setup.c [#r44159af]
static void __init setup_processor(void)
{
struct proc_info_list *list;
-
--[[linux-4.4.1/proc_info_list]]
...
#ifdef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
cpu_cache = *list->cache;
#endif
*コメント [#hd5c9a53]
終了行:
*参照元 [#y6e03f4d]
#backlinks
*説明 [#c0739aec]
-パス: [[linux-4.4.1/arch/arm/kernel/setup.c]]
-初期化処理: [[linux-4.4.1/setup_processor()(arm)]]
-FIXME: これは何?
--説明
**参考 [#mbaf3af4]
*実装 [#q0fc985a]
#ifdef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
struct cpu_cache_fns cpu_cache __read_mostly;
-
--[[linux-4.4.1/cpu_cache_fns]]
#endif
**シンボルエクスポート: arch/arm/mm/proc-syms.c [#pd962199]
#ifndef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
...
#else
EXPORT_SYMBOL(cpu_cache);
-
--[[linux-4.4.1/EXPORT_SYMBOL()]]
#endif
**初期化処理: arch/arm/kernel/setup.c [#r44159af]
static void __init setup_processor(void)
{
struct proc_info_list *list;
-
--[[linux-4.4.1/proc_info_list]]
...
#ifdef MULTI_CACHE
-
--[[linux-4.4.1/MULTI_CACHE]]
cpu_cache = *list->cache;
#endif
*コメント [#hd5c9a53]
ページ名: