From e3837c7c05b33cf72a0784f2db8849be0b908591 Mon Sep 17 00:00:00 2001 From: 0xAX Date: Thu, 21 May 2015 22:34:26 +0600 Subject: [PATCH] Update cpumask.md --- Concepts/cpumask.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Concepts/cpumask.md b/Concepts/cpumask.md index 0b7cc1c..78b66e8 100644 --- a/Concepts/cpumask.md +++ b/Concepts/cpumask.md @@ -210,12 +210,12 @@ and many more. Besides that Linux kernel provides following API for the manipulating of `cpumask`: -* for_each_cpu - iterates over every cpu in a mask; -* for_each_cpu_not - iterates over every cpu in a complemented mask; -* cpumask_clear_cpu - clears a cpu in a cpumask; -* cpumask_test_cpu - tests a cpu in a mask; -* cpumask_setall - set all cpus in a mask; -* cpumask_size - returns size to allocate for a 'struct cpumask' in bytes; +* `for_each_cpu` - iterates over every cpu in a mask; +* `for_each_cpu_not` - iterates over every cpu in a complemented mask; +* `cpumask_clear_cpu` - clears a cpu in a cpumask; +* `cpumask_test_cpu` - tests a cpu in a mask; +* `cpumask_setall` - set all cpus in a mask; +* `cpumask_size` - returns size to allocate for a 'struct cpumask' in bytes; and many many more...