Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

doc: fix a typo about irq affinity

smp_affinity holds bitmask and smp_affinity_list holds list. So we
should write a list to smp_affinity_list, instead of smp_affinity.

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Hu Tao and committed by
Jiri Kosina
884ad3f1 03ddcbc5

+2 -2
+2 -2
Documentation/IRQ-affinity.txt
··· 57 57 58 58 Here is an example of limiting that same irq (44) to cpus 1024 to 1031: 59 59 60 - [root@moon 44]# echo 1024-1031 > smp_affinity 61 - [root@moon 44]# cat smp_affinity 60 + [root@moon 44]# echo 1024-1031 > smp_affinity_list 61 + [root@moon 44]# cat smp_affinity_list 62 62 1024-1031 63 63 64 64 Note that to do this with a bitmask would require 32 bitmasks of zero