Commit e1b43bd5 authored by Tony Luck's avatar Tony Luck

[IA64] Fix example error injection program

Progam accessed using /sys/devices/system/node/node0/cpu%d/err_inject/
This path only exists for CONFIG_NUMA=y systems.  Better to use
/sys/devices/system/cpu/cpu%d/err_inject/ which is available on all
systems.
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 1138b7e2
...@@ -111,7 +111,7 @@ err_injection_tool.c: ...@@ -111,7 +111,7 @@ err_injection_tool.c:
#define ERR_DATA_BUFFER_SIZE 3 // Three 8-byte. #define ERR_DATA_BUFFER_SIZE 3 // Three 8-byte.
#define PARA_FIELD_NUM 5 #define PARA_FIELD_NUM 5
#define MASK_SIZE (NR_CPUS/64) #define MASK_SIZE (NR_CPUS/64)
#define PATH_FORMAT "/sys/devices/system/node/node0/cpu%d/err_inject/" #define PATH_FORMAT "/sys/devices/system/cpu/cpu%d/err_inject/"
int sched_setaffinity(pid_t pid, unsigned int len, unsigned long *mask); int sched_setaffinity(pid_t pid, unsigned int len, unsigned long *mask);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment