From 6f1033653f6d84deb343eeed80538a7bfd8202df Mon Sep 17 00:00:00 2001 From: Helge Deller Date: Tue, 6 Nov 2018 22:39:59 +0100 Subject: [PATCH] syscall.2: parisc needs care with syscall parameters On parisc one needs to take care of the 32-bit calling conventions with 64-bit syscall parameters on a 32-bit kernel. So on parisc we suffer from the same issues like ARM, PowerPC and Xtensa. Signed-off-by: Helge Deller Signed-off-by: Michael Kerrisk --- man2/syscall.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/syscall.2 b/man2/syscall.2 index a35a90f2e..3f4d64c0f 100644 --- a/man2/syscall.2 +++ b/man2/syscall.2 @@ -129,7 +129,7 @@ Care also must be taken so that the split follows endian conventions (according to the C ABI for the platform). .PP Similar issues can occur on MIPS with the O32 ABI, -on PowerPC with the 32-bit ABI, and on Xtensa. +on PowerPC and parisc with the 32-bit ABI, and on Xtensa. .\" Mike Frysinger: this issue ends up forcing MIPS .\" O32 to take 7 arguments to syscall() .PP