From 5a0ab7481d886d37fb06ffbfa03f66b916fb0cbf Mon Sep 17 00:00:00 2001 From: Dou Liyang Date: Tue, 28 Feb 2017 09:32:30 +0800 Subject: [PATCH] fix a typo s/consuider/consider --- Concepts/cpumask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Concepts/cpumask.md b/Concepts/cpumask.md index c484404..ea67bc3 100644 --- a/Concepts/cpumask.md +++ b/Concepts/cpumask.md @@ -19,7 +19,7 @@ set_cpu_present(cpu, true); set_cpu_possible(cpu, true); ``` -Before we will consiuder implementation of these functions, let's consider all of these masks. +Before we will consider implementation of these functions, let's consider all of these masks. The `cpu_possible` is a set of cpu ID's which can be plugged in anytime during the life of that system boot or in other words mask of possible CPUs contains maximum number of CPUs which are possible in the system. It will be equal to value of the `NR_CPUS` which is which is set statically via the `CONFIG_NR_CPUS` kernel configuration option.