Once EPOLL_CTL_DISABLE get merged into mainline I'll bring "enabled" field back. Plain check for rdllink is not enough here and should be extended, thus to not confuse the readers drop it for a while. Signed-off-by: Cyrill Gorcunov CC: Pavel Emelyanov CC: Oleg Nesterov CC: Andrey Vagin CC: Al Viro CC: Alexey Dobriyan CC: Andrew Morton CC: James Bottomley CC: "Aneesh Kumar K.V" CC: Alexey Dobriyan CC: Matthew Helsley CC: "J. Bruce Fields" CC: "Aneesh Kumar K.V" CC: Tvrtko Ursulin --- fs/eventpoll.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Index: linux-2.6.git/fs/eventpoll.c =================================================================== --- linux-2.6.git.orig/fs/eventpoll.c +++ linux-2.6.git/fs/eventpoll.c @@ -796,10 +796,9 @@ static int ep_show_fdinfo(struct seq_fil for (rbp = rb_first(&ep->rbr); rbp; rbp = rb_next(rbp)) { struct epitem *epi = rb_entry(rbp, struct epitem, rbn); - ret = seq_printf(m, "tfd: %8d events: %8x data: %16llx enabled: %d\n", + ret = seq_printf(m, "tfd: %8d events: %8x data: %16llx\n", epi->ffd.fd, epi->event.events, - (long long)epi->event.data, - ep_is_linked(&epi->rdllink)); + (long long)epi->event.data); if (ret) break; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/