Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F105709373
D3259.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D3259.diff
View Options
Index: head/sys/compat/linux/linux_event.c
===================================================================
--- head/sys/compat/linux/linux_event.c
+++ head/sys/compat/linux/linux_event.c
@@ -205,7 +205,7 @@
{
int error;
- error = kern_kqueue(td, flags);
+ error = kern_kqueue(td, flags, NULL);
if (error)
return (error);
Index: head/sys/kern/kern_event.c
===================================================================
--- head/sys/kern/kern_event.c
+++ head/sys/kern/kern_event.c
@@ -738,11 +738,11 @@
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 @@
}
fdp = p->p_fd;
- error = falloc(td, &fp, &fd, flags);
+ error = falloc_caps(td, &fp, &fd, flags, fcaps);
if (error)
goto done2;
Index: head/sys/sys/syscallsubr.h
===================================================================
--- head/sys/sys/syscallsubr.h
+++ head/sys/sys/syscallsubr.h
@@ -126,7 +126,7 @@
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);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 20, 12:59 PM (20 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15530428
Default Alt Text
D3259.diff (1 KB)
Attached To
Mode
D3259: Allow the creation of polling descriptors (kqueues) on CloudABI.
Attached
Detach File
Event Timeline
Log In to Comment