diff options
| author | Bryan Wu <cooloney@kernel.org> | 2008-03-06 18:04:58 -0500 |
|---|---|---|
| committer | Bryan Wu <cooloney@kernel.org> | 2008-03-06 18:04:58 -0500 |
| commit | 2f775dbaa541d6bc0cccf20aab95f7a0930ef7e9 (patch) | |
| tree | f5c1f3954eee4da70169973f5f3002f3ba2bbec2 | |
| parent | 29e8c3c304b62f31b799565c9ee85d42bd163f80 (diff) | |
[Blackfin] arch: to kill syscalls missing warning by adding new timerfd syscalls
Signed-off-by: Bryan Wu <cooloney@kernel.org>
| -rw-r--r-- | arch/blackfin/mach-common/entry.S | 5 | ||||
| -rw-r--r-- | include/asm-blackfin/unistd.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index 2cbb7a0bc38e..cee54cebbc65 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
| @@ -1369,7 +1369,7 @@ ENTRY(_sys_call_table) | |||
| 1369 | .long _sys_epoll_pwait | 1369 | .long _sys_epoll_pwait |
| 1370 | .long _sys_utimensat | 1370 | .long _sys_utimensat |
| 1371 | .long _sys_signalfd | 1371 | .long _sys_signalfd |
| 1372 | .long _sys_ni_syscall | 1372 | .long _sys_timerfd_create |
| 1373 | .long _sys_eventfd /* 350 */ | 1373 | .long _sys_eventfd /* 350 */ |
| 1374 | .long _sys_pread64 | 1374 | .long _sys_pread64 |
| 1375 | .long _sys_pwrite64 | 1375 | .long _sys_pwrite64 |
| @@ -1378,6 +1378,9 @@ ENTRY(_sys_call_table) | |||
| 1378 | .long _sys_get_robust_list /* 355 */ | 1378 | .long _sys_get_robust_list /* 355 */ |
| 1379 | .long _sys_fallocate | 1379 | .long _sys_fallocate |
| 1380 | .long _sys_semtimedop | 1380 | .long _sys_semtimedop |
| 1381 | .long _sys_timerfd_settime | ||
| 1382 | .long _sys_timerfd_gettime | ||
| 1383 | |||
| 1381 | .rept NR_syscalls-(.-_sys_call_table)/4 | 1384 | .rept NR_syscalls-(.-_sys_call_table)/4 |
| 1382 | .long _sys_ni_syscall | 1385 | .long _sys_ni_syscall |
| 1383 | .endr | 1386 | .endr |
diff --git a/include/asm-blackfin/unistd.h b/include/asm-blackfin/unistd.h index e98167358d26..c18a399f6e3e 100644 --- a/include/asm-blackfin/unistd.h +++ b/include/asm-blackfin/unistd.h | |||
| @@ -361,7 +361,7 @@ | |||
| 361 | #define __NR_epoll_pwait 346 | 361 | #define __NR_epoll_pwait 346 |
| 362 | #define __NR_utimensat 347 | 362 | #define __NR_utimensat 347 |
| 363 | #define __NR_signalfd 348 | 363 | #define __NR_signalfd 348 |
| 364 | #define __NR_timerfd 349 | 364 | #define __NR_timerfd_create 349 |
| 365 | #define __NR_eventfd 350 | 365 | #define __NR_eventfd 350 |
| 366 | #define __NR_pread64 351 | 366 | #define __NR_pread64 351 |
| 367 | #define __NR_pwrite64 352 | 367 | #define __NR_pwrite64 352 |
| @@ -370,8 +370,10 @@ | |||
| 370 | #define __NR_get_robust_list 355 | 370 | #define __NR_get_robust_list 355 |
| 371 | #define __NR_fallocate 356 | 371 | #define __NR_fallocate 356 |
| 372 | #define __NR_semtimedop 357 | 372 | #define __NR_semtimedop 357 |
| 373 | #define __NR_timerfd_settime 358 | ||
| 374 | #define __NR_timerfd_gettime 359 | ||
| 373 | 375 | ||
| 374 | #define __NR_syscall 358 | 376 | #define __NR_syscall 360 |
| 375 | #define NR_syscalls __NR_syscall | 377 | #define NR_syscalls __NR_syscall |
| 376 | 378 | ||
| 377 | /* Old optional stuff no one actually uses */ | 379 | /* Old optional stuff no one actually uses */ |
