svn commit: r316301 - stable/11/sys/compat/linux
Dmitry Chagin
dchagin at FreeBSD.org
Thu Mar 30 20:13:49 UTC 2017
Author: dchagin
Date: Thu Mar 30 20:13:47 2017
New Revision: 316301
URL: https://svnweb.freebsd.org/changeset/base/316301
Log:
MFC r314403:
Linux epoll return ENOENT error in case when op is EPOLL_CTL_MOD or
EPOLL_CTL_DEL, and fd is not registered with this epoll instance.
Modified:
stable/11/sys/compat/linux/linux_event.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/compat/linux/linux_event.c
==============================================================================
--- stable/11/sys/compat/linux/linux_event.c Thu Mar 30 20:12:23 2017 (r316300)
+++ stable/11/sys/compat/linux/linux_event.c Thu Mar 30 20:13:47 2017 (r316301)
@@ -483,11 +483,6 @@ linux_epoll_ctl(struct thread *td, struc
switch (args->op) {
case LINUX_EPOLL_CTL_MOD:
- /*
- * We don't memorize which events were set for this FD
- * on this level, so just delete all we could have set:
- * EVFILT_READ and EVFILT_WRITE, ignoring any errors
- */
error = epoll_delete_all_events(td, epfp, args->fd);
if (error != 0)
goto leave0;
@@ -644,19 +639,11 @@ epoll_delete_event(struct thread *td, st
struct kevent_copyops k_ops = { &ciargs,
NULL,
epoll_kev_copyin};
- int error;
ciargs.changelist = &kev;
EV_SET(&kev, fd, filter, EV_DELETE | EV_DISABLE, 0, 0, 0);
- error = kern_kevent_fp(td, epfp, 1, 0, &k_ops, NULL);
-
- /*
- * here we ignore ENONT, because we don't keep track of events here
- */
- if (error == ENOENT)
- error = 0;
- return (error);
+ return (kern_kevent_fp(td, epfp, 1, 0, &k_ops, NULL));
}
static int
@@ -667,8 +654,8 @@ epoll_delete_all_events(struct thread *t
error1 = epoll_delete_event(td, epfp, fd, EVFILT_READ);
error2 = epoll_delete_event(td, epfp, fd, EVFILT_WRITE);
- /* report any errors we got */
- return (error1 == 0 ? error2 : error1);
+ /* return 0 if at least one result positive */
+ return (error1 == 0 ? 0 : error2);
}
static int
More information about the svn-src-stable
mailing list