tools/testing/selftests/ptrace/peeksiginfo.c: add PAGE_SIZE definition

On IBM powerpc where multiple page size value are supported, current
ppc64 and ppc64el distro don't define the PAGE_SIZE variable in
/usr/include as this is a dynamic value retrieved by the getpagesize()
or sysconf() defined in unistd.h.  The PAGE_SIZE variable sounds defined
when only one value is supported by the kernel.

As such, when the PAGE_SIZE definition doesn't exist system should
retrieve the dynamic value.

Signed-off-by: Thierry Fauck <thierry@linux.vnet.ibm.com>
Cc: Andrey Vagin <avagin@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Thierry Fauck 2014-08-08 14:22:46 -07:00 коммит произвёл Linus Torvalds
Родитель 89b3ac6301
Коммит 8b6aaf65d3
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,10 @@ static int sys_ptrace(int request, pid_t pid, void *addr, void *data)
#define TEST_SICODE_PRIV -1 #define TEST_SICODE_PRIV -1
#define TEST_SICODE_SHARE -2 #define TEST_SICODE_SHARE -2
#ifndef PAGE_SIZE
#define PAGE_SIZE sysconf(_SC_PAGESIZE)
#endif
#define err(fmt, ...) \ #define err(fmt, ...) \
fprintf(stderr, \ fprintf(stderr, \
"Error (%s:%d): " fmt, \ "Error (%s:%d): " fmt, \