LGTM On Tue, Mar 22, 2016 at 12:52 PM Barret Rhoden <[email protected]> wrote:
> Here are a bunch of networking fixups, mostly helping with ssh. > > Barret > > > > The following changes since commit > 6789ef266313fc0429a74c890ef8d6624c75835b: > > Add git helper scripts and update Doc/Contributing (2016-03-16 13:40:10 > -0400) > > are available in the git repository at: > > [email protected]:brho/akaros.git net > > for you to fetch changes up to 729f449a6be6fe2cb0af927e4c407de80fa67ced: > > Add debugging info to ipchaninfo() (2016-03-22 15:47:38 -0400) > > ---------------------------------------------------------------- > View this online at: > https://github.com/brho/akaros/compare/6789ef266313...729f449a6be6 > > ---------------------------------------------------------------- > Barret Rhoden (7): > qio: Fire writeable taps immediately > qio: Fire read taps on actual edges > Add callbacks for fork() (XCC) > Use a fork callback in select() > Fix a bunch of Rock warnings (XCC) > Implement shutdown() (XCC) > Add debugging info to ipchaninfo() > > kern/include/ip.h | 7 +++ > kern/src/net/devip.c | 39 +++++++++++-- > kern/src/net/tcp.c | 22 +++++++ > kern/src/ns/qio.c | 51 ++++++++-------- > tests/select_server.c | 13 +++++ > .../glibc-2.19-akaros/sysdeps/akaros/Makefile | 2 + > .../glibc-2.19-akaros/sysdeps/akaros/Versions | 1 + > .../glibc-2.19-akaros/sysdeps/akaros/accept.c | 3 +- > .../glibc-2.19-akaros/sysdeps/akaros/bits/errno.h | 2 +- > .../glibc-2.19-akaros/sysdeps/akaros/fork.c | 14 ++++- > .../glibc-2.19-akaros/sysdeps/akaros/fork_cb.c | 20 +++++++ > .../glibc-2.19-akaros/sysdeps/akaros/init-first.c | 2 +- > .../sysdeps/akaros/plan9_sockets.c | 5 +- > .../sysdeps/akaros/plan9_sockets.h | 2 +- > .../glibc-2.19-akaros/sysdeps/akaros/sendto.c | 2 +- > .../glibc-2.19-akaros/sysdeps/akaros/shutdown.c | 68 > +++++++++++++++++----- > .../glibc-2.19-akaros/sysdeps/akaros/socket.c | 2 +- > .../glibc-2.19-akaros/sysdeps/akaros/sys/fork_cb.h | 33 +++++++++++ > user/iplib/select.c | 23 ++++++++ > 19 files changed, 259 insertions(+), 52 deletions(-) > create mode 100644 > tools/compilers/gcc-glibc/glibc-2.19-akaros/sysdeps/akaros/fork_cb.c > create mode 100644 > tools/compilers/gcc-glibc/glibc-2.19-akaros/sysdeps/akaros/sys/fork_cb.h > > -- > You received this message because you are subscribed to the Google Groups > "Akaros" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Akaros" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
