diff mbox series

[01/22] uapi linux/coda.h: use __kernel_pid_t for userspace

Message ID 63050d69e3797d86e69dc25e460a58f466e70b01.1553098575.git.jaharkes@cs.cmu.edu (mailing list archive)
State New, archived
Headers show
Series Coda updates for linux-5.1 | expand

Commit Message

Jan Harkes March 20, 2019, 4:45 p.m. UTC
From: Mikko Rapeli <mikko.rapeli@iki.fi>

Part of a patch by Mikko Rapeli, as Arnd Bergman commented on
the original patch.

   pid_t might differ between libc and the kernel, so the kernel interface
   has to use types that the kernel defines.

Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Signed-off-by: Jan Harkes <jaharkes@cs.cmu.edu>
---
 include/uapi/linux/coda.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/include/uapi/linux/coda.h b/include/uapi/linux/coda.h
index 695fade33c64..ed8cb263e482 100644
--- a/include/uapi/linux/coda.h
+++ b/include/uapi/linux/coda.h
@@ -295,8 +295,8 @@  struct coda_statfs {
 struct coda_in_hdr {
     u_int32_t opcode;
     u_int32_t unique;	    /* Keep multiple outstanding msgs distinct */
-    pid_t pid;
-    pid_t pgid;
+    __kernel_pid_t pid;
+    __kernel_pid_t pgid;
     vuid_t uid;
 };