Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Fix build error in Centos 8 4.18.0-408.el8.x86_64 #102

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion binder/binder.c
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,11 @@ static long task_close_fd(struct binder_proc *proc, unsigned int fd)
if (proc->files == NULL)
return -ESRCH;

#if defined(RHEL_RELEASE_CODE) && RHEL_RELEASE_CODE >= 2055
retval = close_fd(fd);
#else
retval = __close_fd(proc->files, fd);
#endif
/* can't restart close syscall because file table entry was cleared */
if (unlikely(retval == -ERESTARTSYS ||
retval == -ERESTARTNOINTR ||
Expand Down Expand Up @@ -3391,7 +3395,7 @@ static void binder_vma_close(struct vm_area_struct *vma)
binder_defer_work(proc, BINDER_DEFERRED_PUT_FILES);
}

#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0) || ( defined(RHEL_RELEASE_CODE) && RHEL_RELEASE_CODE >= 2055 )
static vm_fault_t binder_vm_fault(struct vm_fault *vmf)
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
static int binder_vm_fault(struct vm_fault *vmf)
Expand Down