commit-hurd
[Top][All Lists]
Advanced

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

[SCM] GNU Mach branch, mplaneta/libbraunr/master, updated. b9527c673c15b


From: Richard Braun
Subject: [SCM] GNU Mach branch, mplaneta/libbraunr/master, updated. b9527c673c15b77d03e1728b3f011270c1ac3801
Date: Mon, 14 Nov 2011 21:14:21 +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, mplaneta/libbraunr/master has been updated
       via  b9527c673c15b77d03e1728b3f011270c1ac3801 (commit)
      from  50d073c5ef0feb1676606d0068abf626e8297cd7 (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 b9527c673c15b77d03e1728b3f011270c1ac3801
Author: Richard Braun <address@hidden>
Date:   Mon Nov 14 20:43:11 2011 +0000

    The One Big Commit.
    
    Mostly cleanups (about names and indentation). The kernel map entry
    allocator has been simplified, removing the previous hack which relied
    on map entry merging (resulting in a possible deadlock if locks are
    reenabled). VM initialization procedures have been simplified too, not
    to rely on the availability of the kernel allocator, but rather to use
    statically allocated structures (for slab caches, kernel map and submaps
    and a few other kernel objects). The slab allocator code now disables
    the CPU pool layer if building a UP kernel (which is always the case
    currently). Several arbitrary limits have been removed, even if they
    were not all previously enforced.

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

Summary of changes:
 Makefrag.am                                      |   10 +-
 configfrag.ac                                    |    4 +-
 ddb/db_watch.c                                   |    2 +-
 device/dev_lookup.c                              |   15 +-
 device/dev_pager.c                               |   23 +-
 device/ds_routines.c                             |   43 +-
 device/io_req.h                                  |    3 +-
 device/net_io.c                                  |   24 +-
 i386/configfrag.ac                               |    4 +-
 i386/i386/fpu.c                                  |   28 +-
 i386/i386/io_perm.c                              |    6 +-
 i386/i386/kttd_interface.c                       |    2 +-
 i386/i386/machine_task.c                         |   15 +-
 i386/i386/pcb.c                                  |   12 +-
 i386/i386/task.h                                 |    4 +-
 i386/i386/vm_param.h                             |    6 +-
 i386/intel/pmap.c                                |   18 +-
 i386/intel/pmap.h                                |    1 -
 include/mach/profil.h                            |    5 +-
 include/mach_debug/mach_debug.defs               |    2 +-
 include/mach_debug/mach_debug_types.defs         |    5 +-
 include/mach_debug/mach_debug_types.h            |    2 +-
 include/mach_debug/{cache_info.h => slab_info.h} |   10 +-
 ipc/ipc_entry.c                                  |    4 +-
 ipc/ipc_entry.h                                  |    8 +-
 ipc/ipc_hash.c                                   |    7 +-
 ipc/ipc_init.c                                   |   34 +-
 ipc/ipc_init.h                                   |    8 -
 ipc/ipc_marequest.c                              |   25 +-
 ipc/ipc_object.c                                 |    3 +-
 ipc/ipc_object.h                                 |    8 +-
 ipc/ipc_space.c                                  |    4 +-
 ipc/ipc_space.h                                  |    7 +-
 kern/act.c                                       |   15 +-
 kern/km.c                                        | 1577 ----------------------
 kern/list.c                                      |  135 --
 kern/list.h                                      |  127 +-
 kern/mach_clock.c                                |    3 +-
 kern/mach_param.h                                |   67 -
 kern/macros.h                                    |   63 -
 kern/priority.c                                  |    1 -
 kern/processor.c                                 |   13 +-
 kern/profile.c                                   |    9 +-
 kern/rbtree.c                                    |   33 +-
 kern/rbtree.h                                    |   62 +-
 kern/rbtree_i.h                                  |   27 +-
 kern/slab.c                                      | 1561 +++++++++++++++++++++
 kern/{km.h => slab.h}                            |  181 ++--
 kern/startup.c                                   |    1 -
 kern/task.c                                      |   57 +-
 kern/task.h                                      |    2 -
 kern/thread.c                                    |   13 +-
 linux/dev/glue/kmem.c                            |    5 +-
 linux/dev/init/main.c                            |    2 +-
 linux/src/drivers/net/8390.h                     |    1 -
 vm/memory_object_proxy.c                         |   18 +-
 vm/vm_external.c                                 |   40 +-
 vm/vm_fault.c                                    |   14 +-
 vm/vm_init.c                                     |    8 +-
 vm/vm_kern.c                                     |   53 +-
 vm/vm_kern.h                                     |    8 +-
 vm/vm_map.c                                      |  176 ++--
 vm/vm_map.h                                      |   12 +-
 vm/vm_object.c                                   |   52 +-
 vm/vm_object.h                                   |    3 +-
 vm/vm_page.h                                     |    1 -
 vm/vm_pageout.c                                  |    7 +-
 vm/vm_resident.c                                 |   17 +-
 xen/block.c                                      |    6 +-
 xen/grant.c                                      |    2 +-
 xen/net.c                                        |   20 +-
 71 files changed, 2159 insertions(+), 2585 deletions(-)
 rename include/mach_debug/{cache_info.h => slab_info.h} (91%)
 delete mode 100644 kern/km.c
 delete mode 100644 kern/list.c
 delete mode 100644 kern/mach_param.h
 delete mode 100644 kern/macros.h
 create mode 100644 kern/slab.c
 rename kern/{km.h => slab.h} (50%)


hooks/post-receive
-- 
GNU Mach



reply via email to

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