X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Fpoll.c;h=3266bdb2f5c737baecde62870445f90597895cfe;hb=7ec5b8e06b2fd5fa98b1fcde1158c286d2d429d8;hp=1564444bc88db780499c03a8aefa58cd08fc76c0;hpb=318f717e34e4735e5397bee24dbbee69205be82b;p=ccan diff --git a/ccan/io/poll.c b/ccan/io/poll.c index 1564444b..3266bdb2 100644 --- a/ccan/io/poll.c +++ b/ccan/io/poll.c @@ -8,14 +8,14 @@ #include #include #include -#include #include #include static size_t num_fds = 0, max_fds = 0, num_waiting = 0; static struct pollfd *pollfds = NULL; static struct fd **fds = NULL; -static struct io_conn *closing = NULL, *always = NULL; +static LIST_HEAD(closing); +static LIST_HEAD(always); static bool add_fd(struct fd *fd, short events) { @@ -78,6 +78,12 @@ static void del_fd(struct fd *fd) } num_fds--; fd->backend_info = -1; + + /* Closing a local socket doesn't wake poll() because other end + * has them open. See 2.6. When should I use shutdown()? + * in http://www.faqs.org/faqs/unix-faq/socket/ */ + shutdown(fd->fd, SHUT_RDWR); + close(fd->fd); } @@ -90,31 +96,21 @@ bool add_listener(struct io_listener *l) void remove_from_always(struct io_conn *conn) { - struct io_conn **p = &always; - - while (*p != conn) - p = &(*p)->list; - - *p = conn->list; + list_del_init(&conn->always); } void backend_new_closing(struct io_conn *conn) { - /* Already on always list? Remove it. */ - if (conn->list) - remove_from_always(conn); - - conn->list = closing; - closing = conn; + /* In case it's on always list, remove it. */ + list_del_init(&conn->always); + list_add_tail(&closing, &conn->closing); } void backend_new_always(struct io_conn *conn) { - /* May already be in always list (other plan), or closing. */ - if (!conn->list) { - conn->list = always; - always = conn; - } + /* In case it's already in always list. */ + list_del(&conn->always); + list_add_tail(&always, &conn->always); } void backend_new_plan(struct io_conn *conn) @@ -151,12 +147,12 @@ void backend_wake(const void *wait) c = (void *)fds[i]; if (c->plan[IO_IN].status == IO_WAITING - && c->plan[IO_IN].u1.const_vp == wait) - io_do_wakeup(c, &c->plan[IO_IN]); + && c->plan[IO_IN].arg.u1.const_vp == wait) + io_do_wakeup(c, IO_IN); if (c->plan[IO_OUT].status == IO_WAITING - && c->plan[IO_OUT].u1.const_vp == wait) - io_do_wakeup(c, &c->plan[IO_OUT]); + && c->plan[IO_OUT].arg.u1.const_vp == wait) + io_do_wakeup(c, IO_OUT); } } @@ -170,7 +166,7 @@ static void del_conn(struct io_conn *conn) del_fd(&conn->fd); if (conn->finish) { /* Saved by io_close */ - errno = conn->plan[IO_IN].u1.s; + errno = conn->plan[IO_IN].arg.u1.s; conn->finish(conn, conn->finish_arg); } tal_free(conn); @@ -196,14 +192,12 @@ static void accept_conn(struct io_listener *l) static bool close_conns(void) { bool ret = false; + struct io_conn *conn; - while (closing) { - struct io_conn *conn = closing; - + while ((conn = list_pop(&closing, struct io_conn, closing)) != NULL) { assert(conn->plan[IO_IN].status == IO_CLOSING); assert(conn->plan[IO_OUT].status == IO_CLOSING); - closing = closing->list; del_conn(conn); ret = true; } @@ -213,16 +207,14 @@ static bool close_conns(void) static bool handle_always(void) { bool ret = false; + struct io_conn *conn; - while (always) { - struct io_conn *conn = always; - + while ((conn = list_pop(&always, struct io_conn, always)) != NULL) { assert(conn->plan[IO_IN].status == IO_ALWAYS || conn->plan[IO_OUT].status == IO_ALWAYS); - /* Remove from list, and mark it so it knows that. */ - always = always->list; - conn->list = NULL; + /* Re-initialize, for next time. */ + list_node_init(&conn->always); io_do_always(conn); ret = true; }