Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 108.53 KB | None | 0 0
  1. the shell sh file ish-git.sh
  2. >>>>
  3. sudo apt install git python python2
  4. sudo apt install python3 python3-pip
  5. pip3 install ninja
  6. pip3 install meson
  7. sudo apt install clang lld
  8. sudo apt install libsqlite3-dev
  9.  
  10.  
  11. git clone https://github.com/tbodt/ish.git
  12.  
  13. cd ish
  14. git submodule update --init
  15.  
  16. cd tools
  17. wget http://dl-cdn.alpinelinux.org/alpine/v3.11/releases/x86/alpine-minirootfs-3.11.3-x86.tar.gz
  18. ./fakefsify.py alpine-minirootfs-3.11.3-x86.tar.gz alpine
  19. cd ..
  20.  
  21. meson setup --wipe
  22. meson build
  23. cd build
  24. ninja
  25. cp -Rf ../tools/alpine alpine
  26. ./ish -f alpine /bin/login -f root
  27.  
  28. #correct /home/nick/ish/tools/staticdefine.sh: line 17: python: command not found
  29. #with python3
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.       |                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. ../tools/ptraceomatic.c:336:32: note: in expansion of macro ‘user_get’
  46.   336 |                         (void) user_get(args[5], len);
  47.       |                                ^~~~~~~~
  48. ../kernel/calls.h:24:29: warning: ignoring return value of ‘user_read’, declared with attribute warn_unused_result [-Wunused-result]
  49.    24 | #define user_get(addr, var) user_read(addr, &(var), sizeof(var))
  50.       |                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. ../tools/ptraceomatic.c:352:24: note: in expansion of macro ‘user_get’
  52.   352 |                 (void) user_get(regs.rcx, vecs);
  53.       |                        ^~~~~~~~
  54. ninja: build stopped: subcommand failed.
  55. ./ish-git.sh: 24: ./ish: not found
  56. nick@E7222:~$ sudo nano ish/tools/staticdefine.sh
  57. nick@E7222:~$ sudo ./ish-git.sh
  58. Reading package lists... Done
  59. Building dependency tree      
  60. Reading state information... Done
  61. Package python is not available, but is referred to by another package.
  62. This may mean that the package is missing, has been obsoleted, or
  63. is only available from another source
  64. However the following packages replace it:
  65.   python2-minimal:i386 python2:i386 python2-minimal python2 2to3
  66.  
  67. E: Package 'python' has no installation candidate
  68. Reading package lists... Done
  69. Building dependency tree      
  70. Reading state information... Done
  71. python3 is already the newest version (3.8.0-3ubuntu1).
  72. python3-pip is already the newest version (18.1-5ubuntu1).
  73. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  74. Requirement already satisfied: ninja in /usr/local/lib/python3.8/dist-packages (1.9.0.post1)
  75. Requirement already satisfied: meson in /usr/local/lib/python3.8/dist-packages (0.53.2)
  76. Reading package lists... Done
  77. Building dependency tree      
  78. Reading state information... Done
  79. clang is already the newest version (1:9.0-49).
  80. lld is already the newest version (1:9.0-49).
  81. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  82. Reading package lists... Done
  83. Building dependency tree      
  84. Reading state information... Done
  85. libsqlite3-dev is already the newest version (3.31.1-1ubuntu1).
  86. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  87. fatal: destination path 'ish' already exists and is not an empty directory.
  88. --2020-03-01 01:25:01--  http://dl-cdn.alpinelinux.org/alpine/v3.11/releases/x86/alpine-minirootfs-3.11.3-x86.tar.gz
  89. Resolving dl-cdn.alpinelinux.org (dl-cdn.alpinelinux.org)... 2a04:4e42:9::249, 151.101.36.249
  90. Connecting to dl-cdn.alpinelinux.org (dl-cdn.alpinelinux.org)|2a04:4e42:9::249|:80... connected.
  91. HTTP request sent, awaiting response... 200 OK
  92. Length: 2733921 (2,6M) [application/octet-stream]
  93. Saving to: ‘alpine-minirootfs-3.11.3-x86.tar.gz.1’
  94.  
  95. alpine-minirootfs-3 100%[===================>]   2,61M  7,25MB/s    in 0,4s    
  96.  
  97. 2020-03-01 01:25:01 (7,25 MB/s) - ‘alpine-minirootfs-3.11.3-x86.tar.gz.1’ saved [2733921/2733921]
  98.  
  99. Traceback (most recent call last):
  100.   File "./fakefsify.py", line 103, in <module>
  101.     db.executescript(SCHEMA)
  102. sqlite3.OperationalError: table meta already exists
  103.  
  104. ERROR: Must specify at least one directory name.
  105. Directory already configured.
  106.  
  107. Just run your build command (e.g. ninja) and Meson will regenerate as necessary.
  108. If ninja fails, run "ninja reconfigure" or "meson --reconfigure"
  109. to force Meson to regenerate.
  110.  
  111. If build failures persist, run "meson setup --wipe" to rebuild from scratch
  112. using the same options as passed when configuring the build.
  113. To change option values, run "meson configure" instead.
  114. [3/87] Compiling C object 'tools/f9d35d4@@vdso-transplant@exe/ptutil.c.o'.
  115. ../tools/ptutil.c:24:12: warning: ‘arch_prctl’ defined but not used [-Wunused-function]
  116.    24 | static int arch_prctl(int code, unsigned long arg) {
  117.       |            ^~~~~~~~~~
  118. [4/87] Compiling C object 'tools/f9d35...nsplant@exe/vdso-transplant-main.c.o'.
  119. ../tools/vdso-transplant-main.c: In function ‘main’:
  120. ../tools/vdso-transplant-main.c:19:14: warning: unused parameter ‘argc’ [-Wunused-parameter]
  121.    19 | int main(int argc, char *const argv[]) {
  122.       |          ~~~~^~~~
  123. [5/87] Generating offsets with a custom command.
  124. In file included from ../jit/offsets.c:4:
  125. ../emu/tlb.h:29:57: warning: ‘memory’ attribute directive ignored [-Wattributes]
  126.    29 | forceinline __no_instrument void *__tlb_read_ptr(struct tlb *tlb, addr_t addr) {
  127.       |                                                         ^~~
  128. ../emu/tlb.h:39:50: warning: ‘memory’ attribute directive ignored [-Wattributes]
  129.    39 | forceinline __no_instrument bool tlb_read(struct tlb *tlb, addr_t addr, void *out, unsigned size) {
  130.       |                                                  ^~~
  131. ../emu/tlb.h:49:58: warning: ‘memory’ attribute directive ignored [-Wattributes]
  132.    49 | forceinline __no_instrument void *__tlb_write_ptr(struct tlb *tlb, addr_t addr) {
  133.       |                                                          ^~~
  134. ../emu/tlb.h:60:51: warning: ‘memory’ attribute directive ignored [-Wattributes]
  135.    60 | forceinline __no_instrument bool tlb_write(struct tlb *tlb, addr_t addr, const void *value, unsigned size) {
  136.       |                                                   ^~~
  137. [14/87] Compiling C object 'ish@sta/kernel_calls.c.o'.
  138. ../kernel/calls.c:13:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  139.    13 |     [1]   = (syscall_t) sys_exit,
  140.       |             ^
  141. ../kernel/calls.c:14:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  142.    14 |     [2]   = (syscall_t) sys_fork,
  143.       |             ^
  144. ../kernel/calls.c:15:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  145.    15 |     [3]   = (syscall_t) sys_read,
  146.       |             ^
  147. ../kernel/calls.c:16:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  148.    16 |     [4]   = (syscall_t) sys_write,
  149.       |             ^
  150. ../kernel/calls.c:17:13: warning: cast between incompatible function types from ‘fd_t (*)(addr_t,  dword_t,  mode_t_){aka ‘int (*)(unsigned int,  unsigned int,  short unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  151.    17 |     [5]   = (syscall_t) sys_open,
  152.       |             ^
  153. ../kernel/calls.c:18:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t){aka ‘unsigned int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  154.    18 |     [6]   = (syscall_t) sys_close,
  155.       |             ^
  156. ../kernel/calls.c:19:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  157.    19 |     [7]   = (syscall_t) sys_waitpid,
  158.       |             ^
  159. ../kernel/calls.c:20:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  160.    20 |     [9]   = (syscall_t) sys_link,
  161.       |             ^
  162. ../kernel/calls.c:21:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  163.    21 |     [10]  = (syscall_t) sys_unlink,
  164.       |             ^
  165. ../kernel/calls.c:22:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  166.    22 |     [11]  = (syscall_t) sys_execve,
  167.       |             ^
  168. ../kernel/calls.c:23:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  169.    23 |     [12]  = (syscall_t) sys_chdir,
  170.       |             ^
  171. ../kernel/calls.c:24:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  172.    24 |     [13]  = (syscall_t) sys_time,
  173.       |             ^
  174. ../kernel/calls.c:25:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  mode_t_,  dev_t_){aka ‘unsigned int (*)(unsigned int,  short unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  175.    25 |     [14]  = (syscall_t) sys_mknod,
  176.       |             ^
  177. ../kernel/calls.c:26:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  178.    26 |     [15]  = (syscall_t) sys_chmod,
  179.       |             ^
  180. ../kernel/calls.c:27:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  181.    27 |     [19]  = (syscall_t) sys_lseek,
  182.       |             ^
  183. ../kernel/calls.c:28:13: warning: cast between incompatible function types from ‘pid_t_ (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  184.    28 |     [20]  = (syscall_t) sys_getpid,
  185.       |             ^
  186. ../kernel/calls.c:29:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t,  addr_t,  dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  187.    29 |     [21]  = (syscall_t) sys_mount,
  188.       |             ^
  189. ../kernel/calls.c:30:13: warning: cast between incompatible function types from ‘int_t (*)(uid_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  190.    30 |     [23]  = (syscall_t) sys_setuid,
  191.       |             ^
  192. ../kernel/calls.c:31:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  193.    31 |     [24]  = (syscall_t) sys_getuid,
  194.       |             ^
  195. ../kernel/calls.c:32:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  196.    32 |     [25]  = (syscall_t) sys_stime,
  197.       |             ^
  198. ../kernel/calls.c:33:13: warning: cast between incompatible function types from ‘uint_t (*)(uint_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  199.    33 |     [27]  = (syscall_t) sys_alarm,
  200.       |             ^
  201. ../kernel/calls.c:34:13: warning: cast between incompatible function types from ‘int_t (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  202.    34 |     [29]  = (syscall_t) sys_pause,
  203.       |             ^
  204. ../kernel/calls.c:35:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  205.    35 |     [30]  = (syscall_t) sys_utime,
  206.       |             ^
  207. ../kernel/calls.c:36:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  208.    36 |     [33]  = (syscall_t) sys_access,
  209.       |             ^
  210. ../kernel/calls.c:38:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  dword_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  211.    38 |     [37]  = (syscall_t) sys_kill,
  212.       |             ^
  213. ../kernel/calls.c:39:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  214.    39 |     [38]  = (syscall_t) sys_rename,
  215.       |             ^
  216. ../kernel/calls.c:40:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  mode_t_){aka ‘unsigned int (*)(unsigned int,  short unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  217.    40 |     [39]  = (syscall_t) sys_mkdir,
  218.       |             ^
  219. ../kernel/calls.c:41:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  220.    41 |     [40]  = (syscall_t) sys_rmdir,
  221.       |             ^
  222. ../kernel/calls.c:42:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t){aka ‘unsigned int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  223.    42 |     [41]  = (syscall_t) sys_dup,
  224.       |             ^
  225. ../kernel/calls.c:43:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  226.    43 |     [42]  = (syscall_t) sys_pipe,
  227.       |             ^
  228. ../kernel/calls.c:44:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  229.    44 |     [43]  = (syscall_t) sys_times,
  230.       |             ^
  231. ../kernel/calls.c:45:13: warning: cast between incompatible function types from ‘addr_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  232.    45 |     [45]  = (syscall_t) sys_brk,
  233.       |             ^
  234. ../kernel/calls.c:46:13: warning: cast between incompatible function types from ‘int_t (*)(uid_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  235.    46 |     [46]  = (syscall_t) sys_setgid,
  236.       |             ^
  237. ../kernel/calls.c:47:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  238.    47 |     [47]  = (syscall_t) sys_getgid,
  239.       |             ^
  240. ../kernel/calls.c:48:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  241.    48 |     [49]  = (syscall_t) sys_geteuid,
  242.       |             ^
  243. ../kernel/calls.c:49:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  244.    49 |     [50]  = (syscall_t) sys_getegid,
  245.       |             ^
  246. ../kernel/calls.c:50:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  247.    50 |     [52]  = (syscall_t) sys_umount2,
  248.       |             ^
  249. ../kernel/calls.c:51:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  250.    51 |     [54]  = (syscall_t) sys_ioctl,
  251.       |             ^
  252. ../kernel/calls.c:52:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  253.    52 |     [55]  = (syscall_t) sys_fcntl32,
  254.       |             ^
  255. ../kernel/calls.c:53:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  pid_t_){aka ‘unsigned int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  256.    53 |     [57]  = (syscall_t) sys_setpgid,
  257.       |             ^
  258. ../kernel/calls.c:54:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  259.    54 |     [60]  = (syscall_t) sys_umask,
  260.       |             ^
  261. ../kernel/calls.c:55:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  262.    55 |     [61]  = (syscall_t) sys_chroot,
  263.       |             ^
  264. ../kernel/calls.c:56:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  fd_t){aka ‘unsigned int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  265.    56 |     [63]  = (syscall_t) sys_dup2,
  266.       |             ^
  267. ../kernel/calls.c:57:13: warning: cast between incompatible function types from ‘pid_t_ (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  268.    57 |     [64]  = (syscall_t) sys_getppid,
  269.       |             ^
  270. ../kernel/calls.c:58:13: warning: cast between incompatible function types from ‘pid_t_ (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  271.    58 |     [65]  = (syscall_t) sys_getpgrp,
  272.       |             ^
  273. ../kernel/calls.c:59:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  274.    59 |     [66]  = (syscall_t) sys_setsid,
  275.       |             ^
  276. ../kernel/calls.c:60:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  277.    60 |     [74]  = (syscall_t) sys_sethostname,
  278.       |             ^
  279. ../kernel/calls.c:61:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  280.    61 |     [75]  = (syscall_t) sys_setrlimit32,
  281.       |             ^
  282. ../kernel/calls.c:62:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  283.    62 |     [76]  = (syscall_t) sys_old_getrlimit32,
  284.       |             ^
  285. ../kernel/calls.c:63:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  286.    63 |     [77]  = (syscall_t) sys_getrusage,
  287.       |             ^
  288. ../kernel/calls.c:64:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  289.    64 |     [78]  = (syscall_t) sys_gettimeofday,
  290.       |             ^
  291. ../kernel/calls.c:65:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  292.    65 |     [79]  = (syscall_t) sys_settimeofday,
  293.       |             ^
  294. ../kernel/calls.c:66:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  295.    66 |     [80]  = (syscall_t) sys_getgroups,
  296.       |             ^
  297. ../kernel/calls.c:67:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  298.    67 |     [81]  = (syscall_t) sys_setgroups,
  299.       |             ^
  300. ../kernel/calls.c:68:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  301.    68 |     [83]  = (syscall_t) sys_symlink,
  302.       |             ^
  303. ../kernel/calls.c:69:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  304.    69 |     [85]  = (syscall_t) sys_readlink,
  305.       |             ^
  306. ../kernel/calls.c:70:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  int_t,  int_t){aka ‘int (*)(int,  int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  307.    70 |     [88]  = (syscall_t) sys_reboot,
  308.       |             ^
  309. ../kernel/calls.c:71:13: warning: cast between incompatible function types from ‘addr_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  310.    71 |     [90]  = (syscall_t) sys_mmap,
  311.       |             ^
  312. ../kernel/calls.c:72:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  uint_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  313.    72 |     [91]  = (syscall_t) sys_munmap,
  314.       |             ^
  315. ../kernel/calls.c:73:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  316.    73 |     [94]  = (syscall_t) sys_fchmod,
  317.       |             ^
  318. ../kernel/calls.c:74:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  pid_t_){aka ‘int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  319.    74 |     [96]  = (syscall_t) sys_getpriority,
  320.       |             ^
  321. ../kernel/calls.c:75:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  pid_t_,  int_t){aka ‘int (*)(int,  int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  322.    75 |     [97]  = (syscall_t) sys_setpriority,
  323.       |             ^
  324. ../kernel/calls.c:76:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  325.    76 |     [99]  = (syscall_t) sys_statfs,
  326.       |             ^
  327. ../kernel/calls.c:77:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  328.    77 |     [100] = (syscall_t) sys_fstatfs,
  329.       |             ^
  330. ../kernel/calls.c:78:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  331.    78 |     [102] = (syscall_t) sys_socketcall,
  332.       |             ^
  333. ../kernel/calls.c:79:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  addr_t,  int_t){aka ‘int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  334.    79 |     [103] = (syscall_t) sys_syslog,
  335.       |             ^
  336. ../kernel/calls.c:80:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  337.    80 |     [104] = (syscall_t) sys_setitimer,
  338.       |             ^
  339. ../kernel/calls.c:81:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  addr_t,  dword_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  340.    81 |     [114] = (syscall_t) sys_wait4,
  341.       |             ^
  342. ../kernel/calls.c:82:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  343.    82 |     [116] = (syscall_t) sys_sysinfo,
  344.       |             ^
  345. ../kernel/calls.c:84:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t){aka ‘unsigned int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  346.    84 |     [118] = (syscall_t) sys_fsync,
  347.       |             ^
  348. ../kernel/calls.c:85:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  349.    85 |     [119] = (syscall_t) sys_sigreturn,
  350.       |             ^
  351. ../kernel/calls.c:86:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t,  addr_t,  addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  352.    86 |     [120] = (syscall_t) sys_clone,
  353.       |             ^
  354. ../kernel/calls.c:87:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  355.    87 |     [122] = (syscall_t) sys_uname,
  356.       |             ^
  357. ../kernel/calls.c:88:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  uint_t,  int_t){aka ‘int (*)(unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  358.    88 |     [125] = (syscall_t) sys_mprotect,
  359.       |             ^
  360. ../kernel/calls.c:89:13: warning: cast between incompatible function types from ‘pid_t_ (*)(pid_t_){aka ‘int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  361.    89 |     [132] = (syscall_t) sys_getpgid,
  362.       |             ^
  363. ../kernel/calls.c:90:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t){aka ‘unsigned int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  364.    90 |     [133] = (syscall_t) sys_fchdir,
  365.       |             ^
  366. ../kernel/calls.c:91:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  367.    91 |     [136] = (syscall_t) sys_personality,
  368.       |             ^
  369. ../kernel/calls.c:92:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  370.    92 |     [140] = (syscall_t) sys__llseek,
  371.       |             ^
  372. ../kernel/calls.c:93:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  373.    93 |     [141] = (syscall_t) sys_getdents,
  374.       |             ^
  375. ../kernel/calls.c:94:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  addr_t,  addr_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  376.    94 |     [142] = (syscall_t) sys_select,
  377.       |             ^
  378. ../kernel/calls.c:95:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  379.    95 |     [143] = (syscall_t) sys_flock,
  380.       |             ^
  381. ../kernel/calls.c:96:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  dword_t,  int_t){aka ‘int (*)(unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  382.    96 |     [144] = (syscall_t) sys_msync,
  383.       |             ^
  384. ../kernel/calls.c:97:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  385.    97 |     [145] = (syscall_t) sys_readv,
  386.       |             ^
  387. ../kernel/calls.c:98:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  388.    98 |     [146] = (syscall_t) sys_writev,
  389.       |             ^
  390. ../kernel/calls.c:99:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  391.    99 |     [147] = (syscall_t) sys_getsid,
  392.       |             ^
  393. ../kernel/calls.c:100:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t){aka ‘unsigned int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  394.   100 |     [148] = (syscall_t) sys_fsync, // fdatasync
  395.       |             ^
  396. ../kernel/calls.c:101:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  397.   101 |     [150] = (syscall_t) sys_mlock,
  398.       |             ^
  399. ../kernel/calls.c:102:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_,  addr_t){aka ‘int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  400.   102 |     [155] = (syscall_t) sys_sched_getparam,
  401.       |             ^
  402. ../kernel/calls.c:103:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_,  int_t,  addr_t){aka ‘int (*)(int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  403.   103 |     [156] = (syscall_t) sys_sched_setscheduler,
  404.       |             ^
  405. ../kernel/calls.c:104:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_){aka ‘int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  406.   104 |     [157] = (syscall_t) sys_sched_getscheduler,
  407.       |             ^
  408. ../kernel/calls.c:105:13: warning: cast between incompatible function types from ‘int_t (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  409.   105 |     [158] = (syscall_t) sys_sched_yield,
  410.       |             ^
  411. ../kernel/calls.c:106:13: warning: cast between incompatible function types from ‘int_t (*)(int_t){aka ‘int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  412.   106 |     [159] = (syscall_t) sys_sched_get_priority_max,
  413.       |             ^
  414. ../kernel/calls.c:107:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  415.   107 |     [162] = (syscall_t) sys_nanosleep,
  416.       |             ^
  417. ../kernel/calls.c:108:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  418.   108 |     [163] = (syscall_t) sys_mremap,
  419.       |             ^
  420. ../kernel/calls.c:109:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  int_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  421.   109 |     [168] = (syscall_t) sys_poll,
  422.       |             ^
  423. ../kernel/calls.c:110:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  uint_t,  uint_t,  uint_t,  uint_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  424.   110 |     [172] = (syscall_t) sys_prctl,
  425.       |             ^
  426. ../kernel/calls.c:111:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  427.   111 |     [173] = (syscall_t) sys_rt_sigreturn,
  428.       |             ^
  429. ../kernel/calls.c:112:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  430.   112 |     [174] = (syscall_t) sys_rt_sigaction,
  431.       |             ^
  432. ../kernel/calls.c:113:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  433.   113 |     [175] = (syscall_t) sys_rt_sigprocmask,
  434.       |             ^
  435. ../kernel/calls.c:114:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  436.   114 |     [176] = (syscall_t) sys_rt_sigpending,
  437.       |             ^
  438. ../kernel/calls.c:115:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  addr_t,  addr_t,  uint_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  439.   115 |     [177] = (syscall_t) sys_rt_sigtimedwait,
  440.       |             ^
  441. ../kernel/calls.c:116:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  uint_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  442.   116 |     [179] = (syscall_t) sys_rt_sigsuspend,
  443.       |             ^
  444. ../kernel/calls.c:117:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t,  off_t_){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  long int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  445.   117 |     [180] = (syscall_t) sys_pread,
  446.       |             ^
  447. ../kernel/calls.c:118:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t,  off_t_){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  long int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  448.   118 |     [181] = (syscall_t) sys_pwrite,
  449.       |             ^
  450. ../kernel/calls.c:119:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  451.   119 |     [183] = (syscall_t) sys_getcwd,
  452.       |             ^
  453. ../kernel/calls.c:120:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  454.   120 |     [184] = (syscall_t) sys_capget,
  455.       |             ^
  456. ../kernel/calls.c:121:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  457.   121 |     [185] = (syscall_t) sys_capset,
  458.       |             ^
  459. ../kernel/calls.c:122:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  460.   122 |     [186] = (syscall_t) sys_sigaltstack,
  461.       |             ^
  462. ../kernel/calls.c:123:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  463.   123 |     [187] = (syscall_t) sys_sendfile,
  464.       |             ^
  465. ../kernel/calls.c:124:13: warning: cast between incompatible function types from ‘dword_t (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  466.   124 |     [190] = (syscall_t) sys_vfork,
  467.       |             ^
  468. ../kernel/calls.c:125:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  469.   125 |     [191] = (syscall_t) sys_getrlimit32,
  470.       |             ^
  471. ../kernel/calls.c:127:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  472.   127 |     [193] = (syscall_t) sys_truncate64,
  473.       |             ^
  474. ../kernel/calls.c:128:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  475.   128 |     [194] = (syscall_t) sys_ftruncate64,
  476.       |             ^
  477. ../kernel/calls.c:129:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  478.   129 |     [195] = (syscall_t) sys_stat64,
  479.       |             ^
  480. ../kernel/calls.c:130:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  481.   130 |     [196] = (syscall_t) sys_lstat64,
  482.       |             ^
  483. ../kernel/calls.c:131:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  484.   131 |     [197] = (syscall_t) sys_fstat64,
  485.       |             ^
  486. ../kernel/calls.c:132:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  uid_t_,  uid_t_){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  487.   132 |     [198] = (syscall_t) sys_lchown,
  488.       |             ^
  489. ../kernel/calls.c:133:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  490.   133 |     [199] = (syscall_t) sys_getuid32,
  491.       |             ^
  492. ../kernel/calls.c:134:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  493.   134 |     [200] = (syscall_t) sys_getgid32,
  494.       |             ^
  495. ../kernel/calls.c:135:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  496.   135 |     [201] = (syscall_t) sys_geteuid32,
  497.       |             ^
  498. ../kernel/calls.c:136:13: warning: cast between incompatible function types from ‘uid_t_ (*)(void){aka ‘unsigned int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  499.   136 |     [202] = (syscall_t) sys_getegid32,
  500.       |             ^
  501. ../kernel/calls.c:137:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  502.   137 |     [205] = (syscall_t) sys_getgroups,
  503.       |             ^
  504. ../kernel/calls.c:138:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  505.   138 |     [206] = (syscall_t) sys_setgroups,
  506.       |             ^
  507. ../kernel/calls.c:139:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  508.   139 |     [207] = (syscall_t) sys_fchown32,
  509.       |             ^
  510. ../kernel/calls.c:140:13: warning: cast between incompatible function types from ‘dword_t (*)(uid_t_,  uid_t_,  uid_t_){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  511.   140 |     [208] = (syscall_t) sys_setresuid,
  512.       |             ^
  513. ../kernel/calls.c:141:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  addr_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  514.   141 |     [209] = (syscall_t) sys_getresuid,
  515.       |             ^
  516. ../kernel/calls.c:142:13: warning: cast between incompatible function types from ‘dword_t (*)(uid_t_,  uid_t_,  uid_t_){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  517.   142 |     [210] = (syscall_t) sys_setresgid,
  518.       |             ^
  519. ../kernel/calls.c:143:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  addr_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  520.   143 |     [211] = (syscall_t) sys_getresgid,
  521.       |             ^
  522. ../kernel/calls.c:144:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  uid_t_,  uid_t_){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  523.   144 |     [212] = (syscall_t) sys_chown32,
  524.       |             ^
  525. ../kernel/calls.c:145:13: warning: cast between incompatible function types from ‘int_t (*)(uid_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  526.   145 |     [213] = (syscall_t) sys_setuid,
  527.       |             ^
  528. ../kernel/calls.c:146:13: warning: cast between incompatible function types from ‘int_t (*)(uid_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  529.   146 |     [214] = (syscall_t) sys_setgid,
  530.       |             ^
  531. ../kernel/calls.c:147:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  532.   147 |     [219] = (syscall_t) sys_madvise,
  533.       |             ^
  534. ../kernel/calls.c:148:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  535.   148 |     [220] = (syscall_t) sys_getdents64,
  536.       |             ^
  537. ../kernel/calls.c:149:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  dword_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  538.   149 |     [221] = (syscall_t) sys_fcntl,
  539.       |             ^
  540. ../kernel/calls.c:150:13: warning: cast between incompatible function types from ‘pid_t_ (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  541.   150 |     [224] = (syscall_t) sys_gettid,
  542.       |             ^
  543. ../kernel/calls.c:152:21: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t,  addr_t,  dword_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  544.   152 |     [226 ... 237] = (syscall_t) sys_xattr_stub,
  545.       |                     ^
  546. ../kernel/calls.c:153:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  dword_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  547.   153 |     [238] = (syscall_t) sys_tkill,
  548.       |             ^
  549. ../kernel/calls.c:154:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  550.   154 |     [239] = (syscall_t) sys_sendfile64,
  551.       |             ^
  552. ../kernel/calls.c:156:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_,  dword_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  553.   156 |     [241] = (syscall_t) sys_sched_setaffinity,
  554.       |             ^
  555. ../kernel/calls.c:157:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_,  dword_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  556.   157 |     [242] = (syscall_t) sys_sched_getaffinity,
  557.       |             ^
  558. ../kernel/calls.c:158:13: warning: cast between incompatible function types from ‘int (*)(addr_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  559.   158 |     [243] = (syscall_t) sys_set_thread_area,
  560.       |             ^
  561. ../kernel/calls.c:160:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t){aka ‘unsigned int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  562.   160 |     [252] = (syscall_t) sys_exit_group,
  563.       |             ^
  564. ../kernel/calls.c:161:13: warning: cast between incompatible function types from ‘fd_t (*)(void){aka ‘int (*)(void)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  565.   161 |     [254] = (syscall_t) sys_epoll_create0,
  566.       |             ^
  567. ../kernel/calls.c:162:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  int_t,  fd_t,  addr_t){aka ‘int (*)(int,  int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  568.   162 |     [255] = (syscall_t) sys_epoll_ctl,
  569.       |             ^
  570. ../kernel/calls.c:163:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  int_t,  int_t){aka ‘int (*)(int,  unsigned int,  int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  571.   163 |     [256] = (syscall_t) sys_epoll_wait,
  572.       |             ^
  573. ../kernel/calls.c:164:13: warning: cast between incompatible function types from ‘int (*)(addr_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  574.   164 |     [258] = (syscall_t) sys_set_tid_address,
  575.       |             ^
  576. ../kernel/calls.c:165:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  577.   165 |     [264] = (syscall_t) sys_clock_settime,
  578.       |             ^
  579. ../kernel/calls.c:166:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  580.   166 |     [265] = (syscall_t) sys_clock_gettime,
  581.       |             ^
  582. ../kernel/calls.c:167:13: warning: cast between incompatible function types from ‘dword_t (*)(dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  583.   167 |     [266] = (syscall_t) sys_clock_getres,
  584.       |             ^
  585. ../kernel/calls.c:168:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  586.   168 |     [268] = (syscall_t) sys_statfs64,
  587.       |             ^
  588. ../kernel/calls.c:169:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  589.   169 |     [269] = (syscall_t) sys_fstatfs64,
  590.       |             ^
  591. ../kernel/calls.c:170:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  pid_t_,  dword_t){aka ‘unsigned int (*)(int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  592.   170 |     [270] = (syscall_t) sys_tgkill,
  593.       |             ^
  594. ../kernel/calls.c:171:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  595.   171 |     [271] = (syscall_t) sys_utimes,
  596.       |             ^
  597. ../kernel/calls.c:175:13: warning: cast between incompatible function types from ‘fd_t (*)(fd_t,  addr_t,  dword_t,  mode_t_){aka ‘int (*)(int,  unsigned int,  unsigned int,  short unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  598.   175 |     [295] = (syscall_t) sys_openat,
  599.       |             ^
  600. ../kernel/calls.c:176:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  mode_t_){aka ‘unsigned int (*)(int,  unsigned int,  short unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  601.   176 |     [296] = (syscall_t) sys_mkdirat,
  602.       |             ^
  603. ../kernel/calls.c:177:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  mode_t_,  dev_t_){aka ‘unsigned int (*)(int,  unsigned int,  short unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  604.   177 |     [297] = (syscall_t) sys_mknodat,
  605.       |             ^
  606. ../kernel/calls.c:178:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t,  dword_t,  int){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  607.   178 |     [298] = (syscall_t) sys_fchownat,
  608.       |             ^
  609. ../kernel/calls.c:179:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  610.   179 |     [300] = (syscall_t) sys_fstatat64,
  611.       |             ^
  612. ../kernel/calls.c:180:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  int_t){aka ‘unsigned int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  613.   180 |     [301] = (syscall_t) sys_unlinkat,
  614.       |             ^
  615. ../kernel/calls.c:181:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  fd_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  616.   181 |     [302] = (syscall_t) sys_renameat,
  617.       |             ^
  618. ../kernel/calls.c:182:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  fd_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  619.   182 |     [303] = (syscall_t) sys_linkat,
  620.       |             ^
  621. ../kernel/calls.c:183:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  fd_t,  addr_t){aka ‘unsigned int (*)(unsigned int,  int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  622.   183 |     [304] = (syscall_t) sys_symlinkat,
  623.       |             ^
  624. ../kernel/calls.c:184:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  625.   184 |     [305] = (syscall_t) sys_readlinkat,
  626.       |             ^
  627. ../kernel/calls.c:185:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  628.   185 |     [306] = (syscall_t) sys_fchmodat,
  629.       |             ^
  630. ../kernel/calls.c:186:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  mode_t_,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  short unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  631.   186 |     [307] = (syscall_t) sys_faccessat,
  632.       |             ^
  633. ../kernel/calls.c:188:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  634.   188 |     [309] = (syscall_t) sys_ppoll,
  635.       |             ^
  636. ../kernel/calls.c:189:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  637.   189 |     [311] = (syscall_t) sys_set_robust_list,
  638.       |             ^
  639. ../kernel/calls.c:190:13: warning: cast between incompatible function types from ‘int_t (*)(pid_t_,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  640.   190 |     [312] = (syscall_t) sys_get_robust_list,
  641.       |             ^
  642. ../kernel/calls.c:192:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  addr_t,  dword_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  643.   192 |     [320] = (syscall_t) sys_utimensat,
  644.       |             ^
  645. ../kernel/calls.c:193:13: warning: cast between incompatible function types from ‘fd_t (*)(int_t,  int_t){aka ‘int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  646.   193 |     [322] = (syscall_t) sys_timerfd_create,
  647.       |             ^
  648. ../kernel/calls.c:194:13: warning: cast between incompatible function types from ‘int_t (*)(uint_t){aka ‘int (*)(unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  649.   194 |     [323] = (syscall_t) sys_eventfd,
  650.       |             ^
  651. ../kernel/calls.c:196:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  int_t,  addr_t,  addr_t){aka ‘int (*)(int,  int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  652.   196 |     [325] = (syscall_t) sys_timerfd_settime,
  653.       |             ^
  654. ../kernel/calls.c:197:13: warning: cast between incompatible function types from ‘int_t (*)(uint_t,  int_t){aka ‘int (*)(unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  655.   197 |     [328] = (syscall_t) sys_eventfd2,
  656.       |             ^
  657. ../kernel/calls.c:198:13: warning: cast between incompatible function types from ‘fd_t (*)(int_t){aka ‘int (*)(int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  658.   198 |     [329] = (syscall_t) sys_epoll_create,
  659.       |             ^
  660. ../kernel/calls.c:199:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  fd_t,  int_t){aka ‘unsigned int (*)(int,  int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  661.   199 |     [330] = (syscall_t) sys_dup3,
  662.       |             ^
  663. ../kernel/calls.c:200:13: warning: cast between incompatible function types from ‘int_t (*)(addr_t,  int_t){aka ‘int (*)(unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  664.   200 |     [331] = (syscall_t) sys_pipe2,
  665.       |             ^
  666. ../kernel/calls.c:202:13: warning: cast between incompatible function types from ‘dword_t (*)(pid_t_,  dword_t,  addr_t,  addr_t){aka ‘unsigned int (*)(int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  667.   202 |     [340] = (syscall_t) sys_prlimit64,
  668.       |             ^
  669. ../kernel/calls.c:203:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t,  int_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  670.   203 |     [345] = (syscall_t) sys_sendmmsg,
  671.       |             ^
  672. ../kernel/calls.c:204:13: warning: cast between incompatible function types from ‘dword_t (*)(fd_t,  addr_t,  fd_t,  addr_t,  int_t){aka ‘unsigned int (*)(int,  unsigned int,  int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  673.   204 |     [353] = (syscall_t) sys_renameat2,
  674.       |             ^
  675. ../kernel/calls.c:205:13: warning: cast between incompatible function types from ‘dword_t (*)(addr_t,  dword_t,  dword_t){aka ‘unsigned int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  676.   205 |     [355] = (syscall_t) sys_getrandom,
  677.       |             ^
  678. ../kernel/calls.c:206:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  679.   206 |     [359] = (syscall_t) sys_socket,
  680.       |             ^
  681. ../kernel/calls.c:207:13: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  dword_t,  dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  682.   207 |     [360] = (syscall_t) sys_socketpair,
  683.       |             ^
  684. ../kernel/calls.c:208:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  685.   208 |     [361] = (syscall_t) sys_bind,
  686.       |             ^
  687. ../kernel/calls.c:209:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  688.   209 |     [362] = (syscall_t) sys_connect,
  689.       |             ^
  690. ../kernel/calls.c:210:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  int_t){aka ‘int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  691.   210 |     [363] = (syscall_t) sys_listen,
  692.       |             ^
  693. ../kernel/calls.c:211:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t,  dword_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  694.   211 |     [365] = (syscall_t) sys_getsockopt,
  695.       |             ^
  696. ../kernel/calls.c:212:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t,  dword_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  697.   212 |     [366] = (syscall_t) sys_setsockopt,
  698.       |             ^
  699. ../kernel/calls.c:213:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  700.   213 |     [367] = (syscall_t) sys_getsockname,
  701.       |             ^
  702. ../kernel/calls.c:214:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  703.   214 |     [368] = (syscall_t) sys_getpeername,
  704.       |             ^
  705. ../kernel/calls.c:216:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  int_t){aka ‘int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  706.   216 |     [370] = (syscall_t) sys_sendmsg,
  707.       |             ^
  708. ../kernel/calls.c:218:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  int_t){aka ‘int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  709.   218 |     [372] = (syscall_t) sys_recvmsg,
  710.       |             ^
  711. ../kernel/calls.c:219:13: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t){aka ‘int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  712.   219 |     [373] = (syscall_t) sys_shutdown,
  713.       |             ^
  714. ../kernel/calls.c:223:13: warning: cast between incompatible function types from ‘int_t (*)(int_t,  addr_t){aka ‘int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  715.   223 |     [384] = (syscall_t) sys_arch_prctl,
  716.       |             ^
  717. [30/87] Compiling C object 'ish@sta/kernel_signal.c.o'.
  718. ../kernel/signal.c: In function ‘setup_rt_sigframe’:
  719. ../kernel/signal.c:197:40: warning: taking address of packed member of ‘struct ucontext_’ may result in an unaligned pointer value [-Waddress-of-packed-member]
  720.   197 |     altstack_to_user(current->sighand, &frame->uc.stack);
  721.       |                                        ^~~~~~~~~~~~~~~~
  722. ../kernel/signal.c:198:22: warning: taking address of packed member of ‘struct ucontext_’ may result in an unaligned pointer value [-Waddress-of-packed-member]
  723.   198 |     setup_sigcontext(&frame->uc.mcontext, &current->cpu);
  724.       |                      ^~~~~~~~~~~~~~~~~~~
  725. ../kernel/signal.c: In function ‘sys_rt_sigreturn’:
  726. ../kernel/signal.c:360:24: warning: taking address of packed member of ‘struct ucontext_’ may result in an unaligned pointer value [-Waddress-of-packed-member]
  727.   360 |     restore_sigcontext(&frame.uc.mcontext, cpu);
  728.       |                        ^~~~~~~~~~~~~~~~~~
  729. ../kernel/signal.c: In function ‘receive_signal’:
  730. ../kernel/signal.c:288:12: warning: ignoring return value of ‘user_write’, declared with attribute warn_unused_result [-Wunused-result]
  731.   288 |     (void) user_write(sp, &frame, frame_size);
  732.       |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  733. In file included from ../kernel/signal.c:4:
  734. ../kernel/signal.c: In function ‘sys_rt_sigreturn’:
  735. ../kernel/calls.h:24:29: warning: ignoring return value of ‘user_read’, declared with attribute warn_unused_result [-Wunused-result]
  736.    24 | #define user_get(addr, var) user_read(addr, &(var), sizeof(var))
  737.       |                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  738. ../kernel/signal.c:359:12: note: in expansion of macro ‘user_get’
  739.   359 |     (void) user_get(cpu->esp - offsetof(struct rt_sigframe_, sig), frame);
  740.       |            ^~~~~~~~
  741. ../kernel/signal.c: In function ‘sys_sigreturn’:
  742. ../kernel/calls.h:24:29: warning: ignoring return value of ‘user_read’, declared with attribute warn_unused_result [-Wunused-result]
  743.    24 | #define user_get(addr, var) user_read(addr, &(var), sizeof(var))
  744.       |                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  745. ../kernel/signal.c:378:12: note: in expansion of macro ‘user_get’
  746.   378 |     (void) user_get(cpu->esp - offsetof(struct sigframe_, sc), frame);
  747.       |            ^~~~~~~~
  748. [46/87] Compiling C object 'ish@sta/fs_proc.c.o'.
  749. ../fs/proc.c: In function ‘proc_seek’:
  750. ../fs/proc.c:137:20: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
  751.   137 |     if (fd->offset < 0) {
  752.       |                    ^
  753. [57/87] Compiling C object 'ish@sta/fs_sock.c.o'.
  754. ../fs/sock.c:1160:6: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  755.  1160 |     {(syscall_t) sys_socket, 3},
  756.       |      ^
  757. ../fs/sock.c:1161:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  758.  1161 |     {(syscall_t) sys_bind, 3},
  759.       |      ^
  760. ../fs/sock.c:1162:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  761.  1162 |     {(syscall_t) sys_connect, 3},
  762.       |      ^
  763. ../fs/sock.c:1163:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  int_t){aka ‘int (*)(int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  764.  1163 |     {(syscall_t) sys_listen, 2},
  765.       |      ^
  766. ../fs/sock.c:1164:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  767.  1164 |     {(syscall_t) sys_accept, 3},
  768.       |      ^
  769. ../fs/sock.c:1165:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  770.  1165 |     {(syscall_t) sys_getsockname, 3},
  771.       |      ^
  772. ../fs/sock.c:1166:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  addr_t){aka ‘int (*)(int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  773.  1166 |     {(syscall_t) sys_getpeername, 3},
  774.       |      ^
  775. ../fs/sock.c:1167:6: warning: cast between incompatible function types from ‘int_t (*)(dword_t,  dword_t,  dword_t,  addr_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  776.  1167 |     {(syscall_t) sys_socketpair, 4},
  777.       |      ^
  778. ../fs/sock.c:1168:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  dword_t,  int_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  779.  1168 |     {(syscall_t) sys_send, 4}, // send
  780.       |      ^
  781. ../fs/sock.c:1169:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  dword_t,  int_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  782.  1169 |     {(syscall_t) sys_recv, 4}, // recv
  783.       |      ^
  784. ../fs/sock.c:1172:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t){aka ‘int (*)(int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  785.  1172 |     {(syscall_t) sys_shutdown, 2},
  786.       |      ^
  787. ../fs/sock.c:1173:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t,  dword_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  788.  1173 |     {(syscall_t) sys_setsockopt, 5},
  789.       |      ^
  790. ../fs/sock.c:1174:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  dword_t,  dword_t,  addr_t,  dword_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  791.  1174 |     {(syscall_t) sys_getsockopt, 5},
  792.       |      ^
  793. ../fs/sock.c:1175:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  int_t){aka ‘int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  794.  1175 |     {(syscall_t) sys_sendmsg, 3},
  795.       |      ^
  796. ../fs/sock.c:1176:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  int_t){aka ‘int (*)(int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  797.  1176 |     {(syscall_t) sys_recvmsg, 3},
  798.       |      ^
  799. ../fs/sock.c:1179:6: warning: cast between incompatible function types from ‘int_t (*)(fd_t,  addr_t,  uint_t,  int_t){aka ‘int (*)(int,  unsigned int,  unsigned int,  int)} to ‘int (*)(dword_t,  dword_t,  dword_t,  dword_t,  dword_t,  dword_t){aka ‘int (*)(unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int,  unsigned int)} [-Wcast-function-type]
  800.  1179 |     {(syscall_t) sys_sendmmsg, 4},
  801.       |      ^
  802. [58/87] Compiling C object 'ish@sta/fs_tty-real.c.o'.
  803. ../fs/tty-real.c: In function ‘real_tty_init’:
  804. ../fs/tty-real.c:108:44: warning: cast between incompatible function types from ‘void (*)(struct tty *)’ to ‘void * (*)(void *)[-Wcast-function-type]
  805.   108 |     if (pthread_create(&tty->thread, NULL, (void *(*)(void *)) real_tty_read_thread, tty) < 0)
  806.       |                                            ^
  807. [60/87] Compiling C object 'ish@sta/fs_tty.c.o'.
  808. ../fs/tty.c: In function ‘tty_ioctl’:
  809. ../fs/tty.c:707:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  810.   707 |             switch ((dword_t) arg) {
  811.       |                     ^
  812. ../fs/tty.c:722:34: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  813.   722 |             err = tiocsctty(tty, (dword_t) arg);
  814.       |                                  ^
  815. ../fs/tty.c: In function ‘tty_mode_ioctl’:
  816. ../fs/tty.c:669:13: warning: this statement may fall through [-Wimplicit-fallthrough=]
  817.   669 |             notify(&tty->consumed);
  818.       |             ^~~~~~~~~~~~~~~~~~~~~~
  819. ../fs/tty.c:670:9: note: here
  820.   670 |         case TCSETSW_:
  821.       |         ^~~~
  822. [61/87] Compiling C object 'ish@sta/fs_tmp.c.o'.
  823. ../fs/tmp.c: In function ‘tmpfs_umount’:
  824. ../fs/tmp.c:225:39: warning: unused parameter ‘mount[-Wunused-parameter]
  825.   225 | static int tmpfs_umount(struct mount *mount) {
  826.       |                         ~~~~~~~~~~~~~~^~~~~
  827. [68/87] Compiling C object 'ish@sta/emu_tlb.c.o'.
  828. In file included from ../emu/tlb.c:2:
  829. ../emu/tlb.h:29:57: warning: ‘memory’ attribute directive ignored [-Wattributes]
  830.    29 | forceinline __no_instrument void *__tlb_read_ptr(struct tlb *tlb, addr_t addr) {
  831.       |                                                         ^~~
  832. ../emu/tlb.h:39:50: warning: ‘memory’ attribute directive ignored [-Wattributes]
  833.    39 | forceinline __no_instrument bool tlb_read(struct tlb *tlb, addr_t addr, void *out, unsigned size) {
  834.       |                                                  ^~~
  835. ../emu/tlb.h:49:58: warning: ‘memory’ attribute directive ignored [-Wattributes]
  836.    49 | forceinline __no_instrument void *__tlb_write_ptr(struct tlb *tlb, addr_t addr) {
  837.       |                                                          ^~~
  838. ../emu/tlb.h:60:51: warning: ‘memory’ attribute directive ignored [-Wattributes]
  839.    60 | forceinline __no_instrument bool tlb_write(struct tlb *tlb, addr_t addr, const void *value, unsigned size) {
  840.       |                                                   ^~~
  841. ../emu/tlb.c:43:46: warning: ‘memory’ attribute directive ignored [-Wattributes]
  842.    43 | __no_instrument void *tlb_handle_miss(struct tlb *tlb, addr_t addr, int type) {
  843.       |                                              ^~~
  844. [80/87] Compiling C object 'ish@sta/jit_jit.c.o'.
  845. In file included from ../jit/gen.h:5,
  846.                  from ../jit/jit.c:4:
  847. ../emu/tlb.h:29:57: warning: ‘memory’ attribute directive ignored [-Wattributes]
  848.    29 | forceinline __no_instrument void *__tlb_read_ptr(struct tlb *tlb, addr_t addr) {
  849.       |                                                         ^~~
  850. ../emu/tlb.h:39:50: warning: ‘memory’ attribute directive ignored [-Wattributes]
  851.    39 | forceinline __no_instrument bool tlb_read(struct tlb *tlb, addr_t addr, void *out, unsigned size) {
  852.       |                                                  ^~~
  853. ../emu/tlb.h:49:58: warning: ‘memory’ attribute directive ignored [-Wattributes]
  854.    49 | forceinline __no_instrument void *__tlb_write_ptr(struct tlb *tlb, addr_t addr) {
  855.       |                                                          ^~~
  856. ../emu/tlb.h:60:51: warning: ‘memory’ attribute directive ignored [-Wattributes]
  857.    60 | forceinline __no_instrument bool tlb_write(struct tlb *tlb, addr_t addr, const void *value, unsigned size) {
  858.       |                                                   ^~~
  859. [84/87] Compiling C object 'ish@sta/jit_gen.c.o'.
  860. In file included from ../jit/gen.h:5,
  861.                  from ../jit/gen.c:2:
  862. ../emu/tlb.h:29:57: warning: ‘memory’ attribute directive ignored [-Wattributes]
  863.    29 | forceinline __no_instrument void *__tlb_read_ptr(struct tlb *tlb, addr_t addr) {
  864.       |                                                         ^~~
  865. ../emu/tlb.h:39:50: warning: ‘memory’ attribute directive ignored [-Wattributes]
  866.    39 | forceinline __no_instrument bool tlb_read(struct tlb *tlb, addr_t addr, void *out, unsigned size) {
  867.       |                                                  ^~~
  868. ../emu/tlb.h:49:58: warning: ‘memory’ attribute directive ignored [-Wattributes]
  869.    49 | forceinline __no_instrument void *__tlb_write_ptr(struct tlb *tlb, addr_t addr) {
  870.       |                                                          ^~~
  871. ../emu/tlb.h:60:51: warning: ‘memory’ attribute directive ignored [-Wattributes]
  872.    60 | forceinline __no_instrument bool tlb_write(struct tlb *tlb, addr_t addr, const void *value, unsigned size) {
  873.       |                                                   ^~~
  874. In file included from ../jit/gen.c:3:
  875. ../emu/modrm.h: In function ‘modrm_decode32’:
  876. ../emu/modrm.h:81:26: warning: comparison between ‘enum reg32’ and ‘enum <anonymous>[-Wenum-compare]
  877.    81 |         if (modrm->index != rm_none)
  878.       |                          ^~
  879. ../emu/decode.h: At top level:
  880. ../jit/gen.c:534:54: warning: ‘memory’ attribute directive ignored [-Wattributes]
  881.   534 | #define DECODER_ARGS struct gen_state *state, struct tlb *tlb
  882.       |                                                      ^~~
  883. ../emu/decode.h:20:57: note: in expansion of macro ‘DECODER_ARGS’
  884.    20 | __no_instrument DECODER_RET glue(DECODER_NAME, OP_SIZE)(DECODER_ARGS) {
  885.       |                                                         ^~~~~~~~~~~~
  886. ../jit/gen.c:534:54: warning: ‘memory’ attribute directive ignored [-Wattributes]
  887.   534 | #define DECODER_ARGS struct gen_state *state, struct tlb *tlb
  888.       |                                                      ^~~
  889. ../emu/decode.h:20:57: note: in expansion of macro ‘DECODER_ARGS’
  890.    20 | __no_instrument DECODER_RET glue(DECODER_NAME, OP_SIZE)(DECODER_ARGS) {
  891.       |                                                         ^~~~~~~~~~~~
  892. In file included from ../jit/gen.c:538:
  893. ../emu/decode.h: In function ‘gen_step32’:
  894. ../emu/decode.h:267:43: warning: this statement may fall through [-Wimplicit-fallthrough=]
  895.   267 |                 case 0xc7: READMODRM_MEM; switch (modrm.opcode) {
  896.       |                                           ^~~~~~
  897. ../emu/decode.h:274:17: note: here
  898.   274 |                 case 0xc8: TRACEI("bswap eax");
  899.       |                 ^~~~
  900. In file included from ../emu/modrm.h:6,
  901.                  from ../jit/gen.c:3:
  902. ../emu/cpu.h: In function ‘reg32_name’:
  903. ../emu/cpu.h:196:1: warning: control reaches end of non-void function [-Wreturn-type]
  904.   196 | }
  905.       | ^
  906. In file included from ../jit/gen.c:541:
  907. ../emu/decode.h: In function ‘gen_step16’:
  908. ../emu/decode.h:267:43: warning: this statement may fall through [-Wimplicit-fallthrough=]
  909.   267 |                 case 0xc7: READMODRM_MEM; switch (modrm.opcode) {
  910.       |                                           ^~~~~~
  911. ../emu/decode.h:293:17: note: here
  912.   293 |                 case 0xef: TRACEI("pxor xmm:modrm xmm");
  913.       |                 ^~~~
  914. In file included from ../jit/gen.c:5:
  915. At top level:
  916. ../emu/fpu.h:20:16: warning: ‘fpu_consts’ defined but not used [-Wunused-variable]
  917.    20 | static float80 fpu_consts[] = {
  918.       |                ^~~~~~~~~~
  919. [87/87] Linking target tools/ptraceomatic.
  920. Welcome to Alpine!
  921.  
  922. The Alpine Wiki contains a large amount of how-to guides and general
  923. information about administrating Alpine systems.
  924. See <http://wiki.alpinelinux.org/>.
  925.  
  926. You can setup the system with the command: setup-alpine
  927.  
  928. You may change this message by editing /etc/motd.
  929.  
  930. E7222:~#
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939. succes!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement