commit-hurd
[Top][All Lists]
Advanced

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

[SCM] GNU Mach branch, master, updated. v1.4-322-gaf0c711


From: Samuel Thibault
Subject: [SCM] GNU Mach branch, master, updated. v1.4-322-gaf0c711
Date: Mon, 09 Dec 2013 23:56:23 +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 "GNU Mach".

The branch, master has been updated
       via  af0c711a68e0ca4b8aa4e3e25fdf1f2206ec0911 (commit)
       via  8ae2160beab7e58c60265648b21b3c1754fe4989 (commit)
       via  f66e92d3627d28ec7f62ec9b6a57f36373b7209c (commit)
       via  b060efcc7a81bcfc2fabcb242ab8f6312c3aa78f (commit)
       via  3d30d7626d6041a8899137e6f39e6a26cae1f888 (commit)
       via  be8f70ce365dbfff087478ef3d3d90765465bbf2 (commit)
       via  a2622ab4a8b8dcf7feaaf9c466169feb929bcf2e (commit)
       via  eaafcf0c76fe5a21f180c1a00a590e5f1d296ebc (commit)
       via  25140ed6e982b49329f202ba06ea2a488cd30f6b (commit)
       via  8a3e30669d914581c47554b2a0325cafee147712 (commit)
       via  8d613a9cf8065e729694116132ec7ce703dabf10 (commit)
       via  3eea18b7787b5efaadbee5d99a729a0f4c8dedb8 (commit)
       via  29ea7c6c7236c372ae0956651acc1bc25384b368 (commit)
       via  fe7b4a8bbfd41c90f16ab4b1bcd82babb811c7a7 (commit)
      from  e95d650716ec19e450baf1249d4d21025a8a289f (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 af0c711a68e0ca4b8aa4e3e25fdf1f2206ec0911
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:44 2013 +0100

    device/subrs.c: use io_req_t instead of struct buf
    
    Struct buf is not defined. Use io_req_t instead of it.
    
    * device/subrs.c (harderr) (bp): Change name to ior and use io_req_t as 
type instead of (struct buf *).
    (harderr) (minor): Use io_unit instead of b_dev.
    (harderr): Use io_recnum instead of b_blkno.
    (gateblk): Use io_req_t as return value instead of (struct buf *).
    (brelse) (bp): Change name to ior and use io_req_t as type instead of 
(struct buf *).
    (brelse) (ior): Remove variable.

commit 8ae2160beab7e58c60265648b21b3c1754fe4989
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:40 2013 +0100

    device/net_io.c: remove forward declarations
    
    * device/net_io.c (bpf_hash, net_do_filter, bpf_do_filter, hash_ent_remove, 
net_free_dead_infp, net_free_dead_entp, bpf_validate, bpf_eq, net_add_q_info, 
bpf_match): Remove forward declarations.
    * device/net_io.h (net_rcv_port, net_hash_entry, net_hash_header): Declare 
forward.
    (bpf_hash, net_do_filter, bpf_do_filter, hash_ent_remove, 
net_free_dead_infp, net_free_dead_entp, bpf_validate, bpf_eq, net_add_q_info, 
bpf_match): Add prototypes.

commit f66e92d3627d28ec7f62ec9b6a57f36373b7209c
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:34 2013 +0100

    device/dev_pager.c: remove forward declarations
    
    * device/dev_pager.c (device_pager_data_request_done, 
device_pager_data_write_done): Remove forward declarations.
    * device/dev_pager.h (device_pager_data_request_done, 
device_pager_data_write_done): Add prototypes.

commit b060efcc7a81bcfc2fabcb242ab8f6312c3aa78f
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:33 2013 +0100

    device/dev_pager.c: remove forward declaration
    
    * Makefrag.am: Include device/blkio.h.
    * device/blkio.h: New file.
    Add copyright.
    [_DEVICE_BLKIO_H_]: Add ifndef.
    (block_io_mmap): Add prototype.
    * device/dev_pager.c: Include device/blkio.h.
    (block_io_mmap): Remove forward declaration.

commit 3d30d7626d6041a8899137e6f39e6a26cae1f888
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:32 2013 +0100

    device/dev_pager.c (device_pager_data_request_done): remove unnecessary cast
    
    The argument to trunc_page() is already cast to vm_offset_t in the
    macro itself.
    
    * device/dev_pager.c (device_pager_data_request_done) (trunc_page) 
(io_data): Don't cast to vm_offset_t.

commit be8f70ce365dbfff087478ef3d3d90765465bbf2
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:29 2013 +0100

    device/dev_pager.c (device_pager_data_request): cast to (void *) instead to 
(char *)
    
    * device/dev_pager.c (device_pager_data_request) (vm_object_page_map) (ds): 
Cast to (void *) instead to (char *).

commit a2622ab4a8b8dcf7feaaf9c466169feb929bcf2e
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:28 2013 +0100

    device/dev_pager.c (device_pager_data_request): remove forward declaration
    
    * Makefrag.am: Include device/dev_pager.h.
    * device/dev_pager.c: Likewise.
    (device_map_page): Remove forward declaration.
    * device/dev_pager.h: New file.
    Add copyright.
    [_DEVICE_DEV_PAGER_H_]: Add ifndef.
    (device_map_page): Add prototype.

commit eaafcf0c76fe5a21f180c1a00a590e5f1d296ebc
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:27 2013 +0100

    device/cons.c: fix argument list
    
    * device/cons.c (romgetc, romputc): Fix argument list.

commit 25140ed6e982b49329f202ba06ea2a488cd30f6b
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:26 2013 +0100

    device/cirbuf.c (cb_free): use vm_size_t instead of an int
    
    This is more in line with the call to kfree() in cb_free().
    
    * device/cirbuf.c (cb_free) (size): Use vm_size_t instead of an int.

commit 8a3e30669d914581c47554b2a0325cafee147712
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:25 2013 +0100

    device/cirbuf.c (cb_alloc): use vm_size_t instead of an int
    
    This is more in line with the call to kalloc() in cb_alloc().
    
    * device/chario.c (tty_inq_size, tty_outq_size): Use unsigned int instead 
if an int.
    * device/cirbuf.c (cb_alloc) (buf_size): Use vm_size_t instead of an int.
    * device/cirbuf.h (cb_alloc) (buf_size): Likewise.

commit 8d613a9cf8065e729694116132ec7ce703dabf10
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:23 2013 +0100

    device/chario.c: trivial stylistic fix for consistency
    
    * device/chario.c: Trivial stylistic fix for consistency.

commit 3eea18b7787b5efaadbee5d99a729a0f4c8dedb8
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:18 2013 +0100

    i386/i386/db_interface.c: use vm_offset_t instead of an unsigned int
    
    This is more in line with how the function db_user_to_kernel_address() is
    called. In this way there is one cast less and several GCC warnings are
    silenced.
    
    * i386/i386/db_interface.c (db_set_hw_watchpoint) (kern_addr): Use 
vm_offset_t instead of an unsigned int.
    (db_user_to_kernel_address) (kaddr): Likewise.
    (db_user_to_kernel_address) (ptetokv): Don't cast return value.
    (db_read_bytes) (kern_addr): Use vm_offset_t instead of an unsigned int.
    (db_write_bytes_user_space) (kern_addr): Likewise.
    (db_task_name) (vaddr, kaddr): Likewise.
    * i386/i386/db_interface.h (db_user_to_kernel_address) (kaddr): Likewise.

commit 29ea7c6c7236c372ae0956651acc1bc25384b368
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:17 2013 +0100

    i386/i386at/kd_event.c (kbdsetstat): fix difference in signedness
    
    * i386/i386at/kd_event.c (X_kdb_enter_init, X_kdb_exit_init): Cast first 
arguments to (unsigned int *).

commit fe7b4a8bbfd41c90f16ab4b1bcd82babb811c7a7
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 9 23:57:16 2013 +0100

    i386: move prototypes to fix implicit declaration of function
    
    This fixes the implicit declarations in kern/machine.c and kern/debug.c.
    
    * i386/i386/model_dep.h (halt_cpu, halt_all_cpus): Add prototypes.
    * i386/i386at/model_dep.h (halt_cpu, halt_all_cpus): Remove prototypes.

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

Summary of changes:
 Makefrag.am                         |    2 +
 i386/i386at/mem.h => device/blkio.h |    8 ++--
 device/chario.c                     |   10 +++---
 device/cirbuf.c                     |    4 +-
 device/cirbuf.h                     |    2 +-
 device/cons.c                       |    4 +-
 device/dev_pager.c                  |   14 ++------
 ddb/db_mp.h => device/dev_pager.h   |   16 ++++-----
 device/net_io.c                     |   38 -----------------------
 device/net_io.h                     |   58 +++++++++++++++++++++++++++++++++++
 device/subrs.c                      |   18 +++++------
 i386/i386/db_interface.c            |   12 +++---
 i386/i386/db_interface.h            |    2 +-
 i386/i386/model_dep.h               |   10 ++++++
 i386/i386at/kd_event.c              |    4 +-
 i386/i386at/model_dep.h             |   10 ------
 16 files changed, 112 insertions(+), 100 deletions(-)
 copy i386/i386at/mem.h => device/blkio.h (86%)
 copy ddb/db_mp.h => device/dev_pager.h (74%)


hooks/post-receive
-- 
GNU Mach



reply via email to

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