>From 8dc682c333e435df762d204722b79c439048bfd5 Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Sat, 29 Sep 2018 23:44:07 +0900 Subject: [PATCH 3/5] toolsoftrade: Fix typo DEFINE_PER_THREAD() -> DEFINE_PER_CPU() The kernel's primitive which provides an initializer should be DEFINE_PER_CPU(). Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- toolsoftrade/toolsoftrade.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolsoftrade/toolsoftrade.tex b/toolsoftrade/toolsoftrade.tex index d21bda0..9d80883 100644 --- a/toolsoftrade/toolsoftrade.tex +++ b/toolsoftrade/toolsoftrade.tex @@ -1740,7 +1740,7 @@ init_per_thread(name, v) The \co{DEFINE_PER_THREAD()} primitive defines a per-thread variable. Unfortunately, it is not possible to provide an initializer in the way -permitted by the Linux kernel's \co{DEFINE_PER_THREAD()} primitive, +permitted by the Linux kernel's \co{DEFINE_PER_CPU()} primitive, but there is an \co{init_per_thread()} primitive that permits easy runtime initialization. -- 2.7.4