sys_parisc32.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * sys_parisc32.c: Conversion between 32bit and 64bit native syscalls.
  4. *
  5. * Copyright (C) 2000-2001 Hewlett Packard Company
  6. * Copyright (C) 2000 John Marvin
  7. * Copyright (C) 2001 Matthew Wilcox
  8. * Copyright (C) 2014 Helge Deller <[email protected]>
  9. *
  10. * These routines maintain argument size conversion between 32bit and 64bit
  11. * environment. Based heavily on sys_ia32.c and sys_sparc32.c.
  12. */
  13. #include <linux/compat.h>
  14. #include <linux/kernel.h>
  15. #include <linux/syscalls.h>
  16. asmlinkage long sys32_unimplemented(int r26, int r25, int r24, int r23,
  17. int r22, int r21, int r20)
  18. {
  19. printk(KERN_ERR "%s(%d): Unimplemented 32 on 64 syscall #%d!\n",
  20. current->comm, current->pid, r20);
  21. return -ENOSYS;
  22. }
  23. asmlinkage long sys32_fanotify_mark(compat_int_t fanotify_fd, compat_uint_t flags,
  24. compat_uint_t mask0, compat_uint_t mask1, compat_int_t dfd,
  25. const char __user * pathname)
  26. {
  27. return sys_fanotify_mark(fanotify_fd, flags,
  28. ((__u64)mask1 << 32) | mask0,
  29. dfd, pathname);
  30. }