From: Andrew Morton Fix fastcall inconsistency noted by Michael Buesch. Cc: Ingo Molnar Cc: Michael Buesch Cc: Michael Kerrisk Cc: Ulrich Drepper Signed-off-by: Andrew Morton --- include/linux/file.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/file.h~o_cloexec-for-scm_rights-fix include/linux/file.h --- a/include/linux/file.h~o_cloexec-for-scm_rights-fix +++ a/include/linux/file.h @@ -73,7 +73,7 @@ extern struct file * FASTCALL(fget_light extern void FASTCALL(set_close_on_exec(unsigned int fd, int flag)); extern void put_filp(struct file *); extern int get_unused_fd(void); -extern int FASTCALL(get_unused_fd_flags(int flags)); +extern int get_unused_fd_flags(int flags); extern void FASTCALL(put_unused_fd(unsigned int fd)); struct kmem_cache; _