commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] Hurd branch, master, updated. v0.5-81-gb8b92e2


From: Justus Winter
Subject: [SCM] Hurd branch, master, updated. v0.5-81-gb8b92e2
Date: Mon, 02 Dec 2013 16:35:16 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Hurd".

The branch, master has been updated
       via  b8b92e2455c2a9652e60a17dd38fc8dc031b77c3 (commit)
       via  9cec7a2482a68ca1ae41d65fc8b94584d5020c3f (commit)
       via  89c0598d4c1c414c7c567995fd1d0e569fee3d08 (commit)
       via  a148e931c6c6a7d2a5e602f188d67e199082ae0a (commit)
       via  e3c983ea9d62cdd0de86a8f4c4164c692252fb74 (commit)
       via  ceb716e88f2ade9d9abe116fe8cddf34844d71e7 (commit)
       via  bbf408117c40f2e02b9d3e23025c01b74f5bdc09 (commit)
      from  e5bb7f10e01224d75e55da6e545f779ac0fa73a3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b8b92e2455c2a9652e60a17dd38fc8dc031b77c3
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:48:17 2013 +0100

    pflocal: improve the demuxer functions
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    * pflocal/pflocal.c (pf_demuxer): Improve the demuxer function.
    * pflocal/sserver.c (sock_demuxer): Likewise.

commit 9cec7a2482a68ca1ae41d65fc8b94584d5020c3f
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:32:01 2013 +0100

    pfinet: improve the pfinet_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    * pfinet/main.c (pfinet_demuxer): Improve the demuxer function.

commit 89c0598d4c1c414c7c567995fd1d0e569fee3d08
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:29:04 2013 +0100

    proc: improve the message_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    * proc/main.c (message_demuxer): Improve the demuxer function.

commit a148e931c6c6a7d2a5e602f188d67e199082ae0a
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:22:25 2013 +0100

    exec: improve the exec_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    Furthermore, move the exec_startup_server_routine to the end of the
    chain, as the startup related functions are only needed at system
    bootstrap time.
    
    * exec/main.c (exec_demuxer): Improve the demuxer function.

commit e3c983ea9d62cdd0de86a8f4c4164c692252fb74
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:20:40 2013 +0100

    libtrivfs: improve the trivfs_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    * libtriv/demuxer.c (trivfs_demuxer): Improve the demuxer function.

commit ceb716e88f2ade9d9abe116fe8cddf34844d71e7
Author: Justus Winter <address@hidden>
Date:   Sat Nov 30 17:18:01 2013 +0100

    libnetfs: improve the netfs_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    * libnetfs/demuxer.c (netfs_demuxer): Improve the demuxer function.

commit bbf408117c40f2e02b9d3e23025c01b74f5bdc09
Author: Justus Winter <address@hidden>
Date:   Fri Nov 29 13:51:19 2013 +0100

    libdiskfs: improve the diskfs_demuxer function
    
    Handle multiple request types as recommended by the Mach Server
    Writer's Guide section 4, subsection "Handling Multiple Request
    Types".  This avoids initializing the reply message in every X_server
    function.  The reply message has already been properly initialized in
    libports, so there is no need to call mig_reply_setup.
    
    Furthermore, move diskfs_exec_startup_server_routine to the end of the
    chain, as the startup related functions are only needed at system
    bootstrap time in the root filesystem.
    
    * libdiskfs/demuxer.c (diskfs_demuxer): Improve the demuxer function.

-----------------------------------------------------------------------

Summary of changes:
 exec/main.c         |   21 ++++++++++++++-----
 libdiskfs/demuxer.c |   43 +++++++++++++++++++++++++----------------
 libnetfs/demuxer.c  |   31 +++++++++++++++++++----------
 libtrivfs/demuxer.c |   30 +++++++++++++++++++---------
 pfinet/main.c       |   52 ++++++++++++++++++++++++++++++++++----------------
 pflocal/pflocal.c   |   14 +++++++++++-
 pflocal/sserver.c   |   25 ++++++++++++++++-------
 proc/main.c         |   30 +++++++++++++++++-----------
 8 files changed, 163 insertions(+), 83 deletions(-)


hooks/post-receive
-- 
Hurd



reply via email to

[Prev in Thread] Current Thread [Next in Thread]