summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/compat/linux/linux_event.c2
-rw-r--r--sys/kern/kern_event.c6
-rw-r--r--sys/sys/syscallsubr.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_event.c b/sys/compat/linux/linux_event.c
index fcb5753..b1ceadf 100644
--- a/sys/compat/linux/linux_event.c
+++ b/sys/compat/linux/linux_event.c
@@ -205,7 +205,7 @@ epoll_create_common(struct thread *td, int flags)
{
int error;
- error = kern_kqueue(td, flags);
+ error = kern_kqueue(td, flags, NULL);
if (error)
return (error);
diff --git a/sys/kern/kern_event.c b/sys/kern/kern_event.c
index f8c6cf09..06cb763 100644
--- a/sys/kern/kern_event.c
+++ b/sys/kern/kern_event.c
@@ -738,11 +738,11 @@ int
sys_kqueue(struct thread *td, struct kqueue_args *uap)
{
- return (kern_kqueue(td, 0));
+ return (kern_kqueue(td, 0, NULL));
}
int
-kern_kqueue(struct thread *td, int flags)
+kern_kqueue(struct thread *td, int flags, struct filecaps *fcaps)
{
struct filedesc *fdp;
struct kqueue *kq;
@@ -760,7 +760,7 @@ kern_kqueue(struct thread *td, int flags)
}
fdp = p->p_fd;
- error = falloc(td, &fp, &fd, flags);
+ error = falloc_caps(td, &fp, &fd, flags, fcaps);
if (error)
goto done2;
diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h
index 579ac83..ce68ba8 100644
--- a/sys/sys/syscallsubr.h
+++ b/sys/sys/syscallsubr.h
@@ -126,7 +126,7 @@ int kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
int kern_kevent_fp(struct thread *td, struct file *fp, int nchanges,
int nevents, struct kevent_copyops *k_ops,
const struct timespec *timeout);
-int kern_kqueue(struct thread *td, int flags);
+int kern_kqueue(struct thread *td, int flags, struct filecaps *fcaps);
int kern_kldload(struct thread *td, const char *file, int *fileid);
int kern_kldstat(struct thread *td, int fileid, struct kld_file_stat *stat);
int kern_kldunload(struct thread *td, int fileid, int flags);
OpenPOWER on IntegriCloud