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-72-gf002382


From: Justus Winter
Subject: [SCM] Hurd branch, master, updated. v0.5-72-gf002382
Date: Thu, 28 Nov 2013 12:17:26 +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  f0023823ef3282bd3483e6a7aa19b0a0939a6ba4 (commit)
       via  2c9422595f41635e2f4f7ef1afb7eece9001feae (commit)
       via  6d1f5176f257ab9a9b47ae65b528c9ab79db5b31 (commit)
       via  460b6f2daff3c413de4312424d38cd50c481016f (commit)
       via  c62b1edd42d9522d6277d5ca648f2e4a4214341c (commit)
       via  4353f92301cd903a00831a8272d149c45bbb5b8c (commit)
       via  76a94131bf8823b3ad0192878ecef6b6ef2da004 (commit)
       via  31d394232eb8544154198ec3de7328ab1a6b82a6 (commit)
       via  78636c03a561d3a9a1b7c008dc390fe854196309 (commit)
       via  88be9e7481f167d139b4f3c981368b6071c61384 (commit)
      from  2ef89abb8cbafab865baa2399e2641879b495aea (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 f0023823ef3282bd3483e6a7aa19b0a0939a6ba4
Author: Justus Winter <address@hidden>
Date:   Wed Nov 27 10:38:08 2013 +0100

    proc: store the device master port in _hurd_device_master
    
    * proc/host.c (S_proc_getprivports): Adapt accordingly.
    * proc/main.c (main): Store the device master port in _hurd_device_master.
    * proc/proc.h (master_device_port): Remove unused variable.

commit 2c9422595f41635e2f4f7ef1afb7eece9001feae
Author: Justus Winter <address@hidden>
Date:   Tue Nov 26 17:33:05 2013 +0100

    proc: store the privileged host port in _hurd_host_priv
    
    Store the privileged host port in _hurd_host_priv like it is done in
    the root filesystem. This fixes the thread priority adjustment in the
    proc server. Prior to this fix, a warning message "unable to adjust
    libports thread priority" sometimes appeared early in the boot
    process.
    
    * proc/host.c (S_proc_getprivports): Adapt accordingly.
    (S_proc_register_version): Likewise.
    * proc/mgt.c (add_tasks): Likewise.
    * proc/msg.c (tickle_init): Likewise.
    * proc/main.c (main): Store the privileged host port in _hurd_host_priv.
    * proc/proc.h: Remove unused variable master_host_port.
    
    fixup_store_priv_port

commit 6d1f5176f257ab9a9b47ae65b528c9ab79db5b31
Author: Justus Winter <address@hidden>
Date:   Wed Nov 27 10:49:46 2013 +0100

    libports: improve error reporting in adjust_priority
    
    By using error instead of perror, the warning can be proprely
    attributed to the process.
    
    * libports/manage-multithread.c (adjust_priority): Use error instead
      of perror to print the warning.

commit 460b6f2daff3c413de4312424d38cd50c481016f
Author: Justus Winter <address@hidden>
Date:   Mon Nov 25 16:58:59 2013 +0100

    libdiskfs: improve error reporting in diskfs_start_disk_pager
    
    * libdiskfs/disk-pager.c (diskfs_start_disk_pager): Improve error reporting.

commit c62b1edd42d9522d6277d5ca648f2e4a4214341c
Author: Justus Winter <address@hidden>
Date:   Sat Nov 23 15:30:42 2013 +0100

    libports: improve error handling in ports_transfer_right
    
    * libports/transfer-right.c (ports_transfer_right): Improve error handling.

commit 4353f92301cd903a00831a8272d149c45bbb5b8c
Author: Justus Winter <address@hidden>
Date:   Sat Nov 23 15:27:31 2013 +0100

    libports: improve error handling in ports_reallocate_from_external
    
    * libports/reallocate-from-external.c (ports_reallocate_from_external):
      Improve error handling.

commit 76a94131bf8823b3ad0192878ecef6b6ef2da004
Author: Justus Winter <address@hidden>
Date:   Sat Nov 23 15:25:03 2013 +0100

    libports: improve error handling in ports_reallocate_port
    
    * libports/reallocate-port.c (ports_reallocate_port): Improve error
      handling.

commit 31d394232eb8544154198ec3de7328ab1a6b82a6
Author: Justus Winter <address@hidden>
Date:   Sun Nov 24 23:30:08 2013 +0100

    proc: update comments
    
    * proc/main.c (main): Update comment. The proc server is no longer PID 0.
    * proc/proc.h: Likewise.

commit 78636c03a561d3a9a1b7c008dc390fe854196309
Author: Justus Winter <address@hidden>
Date:   Mon Nov 25 13:05:01 2013 +0100

    init: fix port leak
    
    * init/init.c (S_startup_essential_task): Fix port leak.

commit 88be9e7481f167d139b4f3c981368b6071c61384
Author: Justus Winter <address@hidden>
Date:   Wed Nov 27 10:27:29 2013 +0100

    libshouldbeinlibc: fix minor port leak in maptime_map
    
    Deallocate the device port after creating the mapping. The mapping is
    independent of the device port.
    
    * libshouldbeinlibc/maptime.c (maptime_map): Deallocate device port.

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

Summary of changes:
 init/init.c                         |    6 ++++--
 libdiskfs/disk-pager.c              |    3 ++-
 libports/manage-multithread.c       |    6 ++----
 libports/reallocate-from-external.c |    3 ++-
 libports/reallocate-port.c          |    3 ++-
 libports/transfer-right.c           |    3 ++-
 libshouldbeinlibc/maptime.c         |    4 ++++
 proc/host.c                         |    6 +++---
 proc/main.c                         |    8 ++++----
 proc/mgt.c                          |    2 +-
 proc/msg.c                          |    2 +-
 proc/proc.h                         |    5 +----
 12 files changed, 28 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
Hurd



reply via email to

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