commit-hurd
[Top][All Lists]
Advanced

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

[SCM] Hurd branch, master, updated. v0.9-165-g8d4a84a


From: Samuel Thibault
Subject: [SCM] Hurd branch, master, updated. v0.9-165-g8d4a84a
Date: Sun, 3 Mar 2019 07:45:06 -0500 (EST)

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  8d4a84a44b85dd982f3130d004c29c8382f516ac (commit)
       via  835a1112dc5ca8d066fa1d0e2dfb979c19bf58be (commit)
       via  28050d6310c7bd0817e83aac8b4cb27b518f4267 (commit)
       via  efd8361ef4354dadf14172563f12e8e00d1b091a (commit)
       via  99a69fd8b6034214c0729e9a3a684bbe9d541eb0 (commit)
       via  33421955afb21c5e89a85f0b8f19c3644b18c8ae (commit)
      from  162db89eff70660963f416e862f62fa35d718593 (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 8d4a84a44b85dd982f3130d004c29c8382f516ac
Author: Samuel Thibault <address@hidden>
Date:   Sat Mar 2 15:39:43 2019 -0800

    shutdown: rename shutdown RPC to shutdown_shutdown
    
    For coherency with usage, and to avoid conflicting with shutdown(2)
    
    * hurd/shutdown.defs (shutdown): Rename to shutdown_shutdown.
    * shutdown/shutdown.c (S_shutdown): Rename to S_shutdown_shutdown.
    * startup/startup.c (do_shutdown): Call shutdown_shutdown instead of
    shutdown.

commit 835a1112dc5ca8d066fa1d0e2dfb979c19bf58be
Author: Samuel Thibault <address@hidden>
Date:   Sat Mar 2 15:38:06 2019 -0800

    shutdown: clean up debugging pieces
    
    * shutdown/acpi_shutdown.c (disappear_via_acpi): Call ioperm only on
    required ports, not all ports.
    * shutdown/shutdown.c (S_shutdown, main): Remove debugging messages,
    even if joyful :)

commit 28050d6310c7bd0817e83aac8b4cb27b518f4267
Author: Samuel Thibault <address@hidden>
Date:   Sat Mar 2 15:36:06 2019 -0800

    shutdown: fallback on Mach shutdown
    
    * startup/startup.c (reboot_mach): In case do_shutdown returns, fallback to
    Mach's host_reboot.

commit efd8361ef4354dadf14172563f12e8e00d1b091a
Author: Damien Zammit <address@hidden>
Date:   Sat Mar 2 15:33:51 2019 -0800

    Add to startup relevant shutdown rpc call
    
    * startup/Makefile (OBJS): Add shutdownUser.o.
    * startup/startup.c: Include <stdlib.h> and "shutdown_U.h".
    (_SERVERS_SHUTDOWN): New macro.
    (do_shutdown): New function.
    (reboot_mach): Call do_shutdown when flags contains RB_HALT.

commit 99a69fd8b6034214c0729e9a3a684bbe9d541eb0
Author: Damien Zammit <address@hidden>
Date:   Sat Mar 2 15:31:04 2019 -0800

    Add shutdown RPC && ACPI specific disappear routine
    
    * Makefile (prog-subdirs): Add shutdown.
    * hurd/hurd_types.defs (shutdown_t): New type.
    * hurd/hurd_types.h (shutdown_t): New type.
    * hurd/shutdown.defs: New file.
    * shutdown: New directory.

commit 33421955afb21c5e89a85f0b8f19c3644b18c8ae
Author: Damien Zammit <address@hidden>
Date:   Sat Mar 2 15:27:29 2019 -0800

    ACPI tables translator
    
    Exposes x86 ACPI tables as a netfs on a mount point
    
    * acpi: New directory.
    * Makefile (prog-subdirs): Add acpi.
    * hurd/hurd_types.h (FSTYPE_ACPI): New macro.

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

Summary of changes:
 Makefile                                 |   4 +-
 {pci-arbiter => acpi}/Makefile           |  26 ++-
 acpi/acpi.c                              | 290 +++++++++++++++++++++++++++++++
 acpi/acpi.h                              |  74 ++++++++
 acpi/acpifs.c                            | 265 ++++++++++++++++++++++++++++
 acpi/acpifs.h                            | 147 ++++++++++++++++
 acpi/func_files.c                        |  76 ++++++++
 {pci-arbiter => acpi}/func_files.h       |  29 ++--
 {pci-arbiter => acpi}/main.c             |  39 ++---
 {pci-arbiter => acpi}/ncache.c           |  56 +++---
 {pci-arbiter => acpi}/ncache.h           |   6 +-
 {pci-arbiter => acpi}/netfs_impl.c       | 223 ++++++++++--------------
 {pci-arbiter => acpi}/netfs_impl.h       |   8 +-
 acpi/options.c                           | 149 ++++++++++++++++
 acpi/options.h                           |  51 ++++++
 hurd/hurd_types.defs                     |  18 ++
 hurd/hurd_types.h                        |   2 +
 hurd/{crash_reply.defs => shutdown.defs} |  21 ++-
 {devnode => shutdown}/Makefile           |  12 +-
 shutdown/acpi_shutdown.c                 |  66 +++++++
 shutdown/acpi_shutdown.h                 |  18 ++
 shutdown/mig-mutate.h                    |   8 +
 shutdown/shutdown.c                      | 150 ++++++++++++++++
 startup/Makefile                         |   1 +
 startup/startup.c                        |  31 +++-
 25 files changed, 1523 insertions(+), 247 deletions(-)
 copy {pci-arbiter => acpi}/Makefile (51%)
 create mode 100644 acpi/acpi.c
 create mode 100644 acpi/acpi.h
 create mode 100644 acpi/acpifs.c
 create mode 100644 acpi/acpifs.h
 create mode 100644 acpi/func_files.c
 copy {pci-arbiter => acpi}/func_files.h (52%)
 copy {pci-arbiter => acpi}/main.c (69%)
 copy {pci-arbiter => acpi}/ncache.c (65%)
 copy {pci-arbiter => acpi}/ncache.h (79%)
 copy {pci-arbiter => acpi}/netfs_impl.c (74%)
 copy {pci-arbiter => acpi}/netfs_impl.h (82%)
 create mode 100644 acpi/options.c
 create mode 100644 acpi/options.h
 copy hurd/{crash_reply.defs => shutdown.defs} (67%)
 copy {devnode => shutdown}/Makefile (80%)
 create mode 100644 shutdown/acpi_shutdown.c
 create mode 100644 shutdown/acpi_shutdown.h
 create mode 100644 shutdown/mig-mutate.h
 create mode 100644 shutdown/shutdown.c


hooks/post-receive
-- 
Hurd



reply via email to

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