commit-hurd
[Top][All Lists]
Advanced

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

[SCM] GNU Mach branch, master, updated. 4ae07e7e07cf77f1b7ce06bebf1057bf


From: Samuel Thibault
Subject: [SCM] GNU Mach branch, master, updated. 4ae07e7e07cf77f1b7ce06bebf1057bfe4a16c54
Date: Fri, 09 Mar 2012 00:18:28 +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  4ae07e7e07cf77f1b7ce06bebf1057bfe4a16c54 (commit)
      from  dfb4a89ba3bee1c4c000f8e6b54fb92ed25fb2b7 (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 4ae07e7e07cf77f1b7ce06bebf1057bfe4a16c54
Author: Samuel Thibault <address@hidden>
Date:   Fri Mar 9 01:04:52 2012 +0100

    Use unsigned long for addresses and sizes
    
    TODO: remonter formats
    
    * i386/include/mach/i386/vm_types.h (vm_offset_t): Define to unsigned long.
    (signed32_t): Define to signed int.
    (unsigned32_t): Define to unsigned int.
    * i386/include/mach/sa/stdarg.h (__va_size): Use sizeof(unsigned long)-1
    instead of 3.
    * include/mach/port.h (mach_port_t): Define to vm_offset_t instead of
    natural_t.
    * include/sys/types.h (size_t): Define to unsigned long instead of
    natural_t.
    * linux/src/include/asm-i386/posix_types.h (__kernel_size_t): Define to
    unsigned long.
    (__kernel_ssize_t): Define to long.
    * linux/src/include/linux/stddef.h (size_t): Define to unsigned long.
    
    * device/dev_pager.c (dev_pager_hash): Cast port to vm_offset_t insted of
    natural_t.
    (device_pager_data_request): Fix format.
    
    * device/ds_routines.c (ds_no_senders): Fix format.
    * i386/i386/io_map.c (io_map): Likewise.
    * i386/i386at/autoconf.c (take_dev_irq): Likewise.
    * i386/i386at/com.c (comattach): Likewise.
    * i386/i386at/lpr.c (lprattach): Likewise.
    * i386/i386at/model_dep.c (mem_size_init, mem_size_init, c_boot_entry):
    Likewise.
    * i386/intel/pmap.c (pmap_enter): Likewise.
    * ipc/ipc_notify.c (ipc_notify_port_deleted, ipc_notify_msg_accepted,
    ipc_notify_dead_name): Likewise.
    * ipc/mach_port.c (mach_port_destroy, mach_port_deallocate): Likewise.
    * kern/ipc_kobject.c (ipc_kobject_destroy): Likewise.
    * kern/slab.c (kalloc_init): Likewise.
    * vm/vm_fault.c (vm_fault_page): Likewise.
    * vm/vm_map.c (vm_map_pmap_enter): Likewise.
    * xen/block.c (device_read): Likewise.
    
    * device/net_io.c (bpf_match): Take unsigned long * instead of unsigned int
    *.
    (bpf_do_filter): Make mem unsigned long instead of long.
    * i386/i386/ktss.c (ktss_init): Cast pointer to unsigned long instead of
    unsigned.
    * i386/i386/pcb.c (stack_attach, switch_ktss): Cast pointers to long 
instead of
    int.
    * i386/i386/trap.c (dump_ss): Likewise.
    * ipc/ipc_hash.c (IH_LOCAL_HASH): Cast object to vm_offset_t.
    * ipc/mach_msg.c (mach_msg_receive, mach_msg_receive_continue): Cast kmsg to
    vm_offset_t instead of natural_t.
    * kern/pc_sample.c (take_pc_sample): Cast to vm_offset_t instead of
    natural_t.
    * kern/boot_script.c (sym, arg): Set type of `val' field to long instead of 
int.
    (create_task, builtin_symbols, boot_script_parse_line,
    boot_script_define_function): Cast to long instead of int.
    * kern/bootstrap.c (bootstrap_create): Likewise.
    * kern/sched_prim.c (decl_simple_lock_data): Likewise.
    * kern/printf.c (vsnprintf): Set size type to size_t.
    * kern/printf.h (vsnprintf): Likewise.
    * vm/vm_map.h (kentry_data_size): Fix type to vm_size_t.
    * vm/vm_object.c (vm_object_pmap_protect_by_page): Fix size parameter type
    to vm_size_t.

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

Summary of changes:
 device/dev_pager.c                       |    4 ++--
 device/ds_routines.c                     |    2 +-
 device/net_io.c                          |    6 +++---
 i386/i386/io_map.c                       |    2 +-
 i386/i386/ktss.c                         |    2 +-
 i386/i386/pcb.c                          |   12 ++++++------
 i386/i386/trap.c                         |    4 ++--
 i386/i386at/autoconf.c                   |    2 +-
 i386/i386at/com.c                        |    2 +-
 i386/i386at/lpr.c                        |    2 +-
 i386/i386at/model_dep.c                  |    6 +++---
 i386/include/mach/i386/vm_types.h        |    6 +++---
 i386/include/mach/sa/stdarg.h            |    2 +-
 i386/intel/pmap.c                        |    2 +-
 include/mach/port.h                      |    2 +-
 include/sys/types.h                      |    2 +-
 ipc/ipc_hash.c                           |    2 +-
 ipc/ipc_notify.c                         |    6 +++---
 ipc/mach_msg.c                           |    4 ++--
 ipc/mach_port.c                          |    4 ++--
 kern/boot_script.c                       |   21 +++++++++++----------
 kern/bootstrap.c                         |   12 ++++++------
 kern/ipc_kobject.c                       |    2 +-
 kern/pc_sample.c                         |    2 +-
 kern/printf.c                            |    2 +-
 kern/printf.h                            |    2 +-
 kern/sched_prim.c                        |    2 +-
 kern/slab.c                              |    2 +-
 linux/src/include/asm-i386/posix_types.h |    4 ++--
 linux/src/include/linux/stddef.h         |    2 +-
 vm/vm_fault.c                            |    2 +-
 vm/vm_map.c                              |    2 +-
 vm/vm_map.h                              |    2 +-
 vm/vm_object.c                           |    2 +-
 xen/block.c                              |    2 +-
 35 files changed, 68 insertions(+), 67 deletions(-)


hooks/post-receive
-- 
GNU Mach



reply via email to

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