commit-hurd
[Top][All Lists]
Advanced

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

[gnumach] branch upstream updated (527984f -> f1e52f8)


From: Samuel Thibault
Subject: [gnumach] branch upstream updated (527984f -> f1e52f8)
Date: Fri, 11 Mar 2016 23:22:35 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch upstream
in repository gnumach.

      from  527984f   Imported Upstream version 1.6+git20160114
       new  f1e52f8   Imported Upstream version 1.6+git20160311

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                          | 530 ++++++++++++
 Makefile.in                                        |  85 +-
 Makefrag.am                                        |   9 +-
 build-aux/compile                                  |   2 +-
 build-aux/config.guess                             |  47 +-
 build-aux/config.sub                               |  36 +-
 build-aux/depcomp                                  |   2 +-
 build-aux/install-sh                               | 373 ++++-----
 build-aux/mdate-sh                                 |   8 +-
 build-aux/missing                                  |   2 +-
 build-aux/test-driver                              |  15 +-
 configure                                          |  20 +-
 device/dev_lookup.c                                |   2 +-
 device/dev_pager.c                                 |   4 +-
 device/ds_routines.c                               |   4 +-
 device/net_io.c                                    |   4 +-
 doc/mach.info                                      | 242 +++---
 doc/mach.info-1                                    |  18 +-
 doc/mach.info-2                                    |   6 +-
 doc/mach.texi                                      |   5 +-
 doc/stamp-vti                                      |   8 +-
 doc/version.texi                                   |   8 +-
 i386/Makefrag.am                                   |   4 +
 i386/i386/cpu.h                                    | 110 +++
 i386/i386/db_trace.c                               |   4 +-
 i386/i386/fpu.c                                    |  51 +-
 i386/i386/fpu.h                                    |   1 +
 i386/i386/locore.S                                 |  14 +-
 i386/i386/machine_task.c                           |   2 +-
 i386/i386/pcb.c                                    |   9 +-
 i386/i386/pcb.h                                    |   2 +-
 i386/i386/thread.h                                 |   1 +
 i386/i386/vm_param.h                               |  53 +-
 i386/i386at/biosmem.c                              | 910 +++++++++++++++++++++
 i386/i386at/biosmem.h                              |  88 ++
 i386/i386at/elf.h                                  |  61 ++
 i386/i386at/kd_mouse.c                             |   2 +
 i386/i386at/model_dep.c                            | 307 +------
 i386/i386at/model_dep.h                            |   9 +
 i386/include/mach/i386/multiboot.h                 | 105 +++
 i386/include/mach/i386/vm_types.h                  |   9 +
 i386/intel/pmap.c                                  |   4 +-
 include/mach/mach.defs                             |  41 +
 include/mach_debug/slab_info.h                     |   6 -
 ipc/ipc_init.c                                     |   8 +-
 ipc/ipc_marequest.c                                |   2 +-
 ipc/ipc_object.c                                   |   3 +-
 kern/act.c                                         |   2 +-
 kern/bootstrap.c                                   |  16 +-
 kern/cpu_number.h                                  |   2 +
 ipc/notify.defs => kern/exc.defs                   |   8 +-
 kern/log2.h                                        |  50 ++
 kern/processor.c                                   |   2 +-
 kern/rdxtree.c                                     |   2 +-
 kern/sched_prim.c                                  |   3 +
 kern/slab.c                                        | 354 ++++----
 kern/slab.h                                        |  33 +-
 kern/startup.c                                     |   2 +-
 kern/task.c                                        |   2 +-
 kern/thread.c                                      |  27 +-
 linux/dev/drivers/block/ahci.c                     |  47 +-
 linux/dev/glue/glue.h                              |   4 +-
 linux/dev/glue/kmem.c                              |   6 +-
 linux/dev/include/linux/blk.h                      |   1 +
 linux/dev/init/main.c                              | 143 +---
 linux/pcmcia-cs/glue/ds.c                          |   6 -
 linux/src/arch/i386/kernel/bios32.c                |   2 +
 linux/src/drivers/block/ide.c                      |  11 +-
 .../linux/{compiler-gcc5.h => compiler-gcc6.h}     |   2 +-
 version.m4                                         |   2 +-
 vm/memory_object_proxy.c                           |   2 +-
 vm/pmap.h                                          |  15 +-
 vm/vm_external.c                                   |  10 +-
 vm/vm_external.h                                   |   5 +
 vm/vm_fault.c                                      |   6 +-
 vm/vm_init.c                                       |   1 +
 vm/vm_map.c                                        |  64 +-
 vm/vm_map.h                                        |   3 -
 vm/vm_object.c                                     | 237 +++---
 vm/vm_object.h                                     |  10 +-
 vm/vm_page.c                                       | 782 ++++++++++++++++++
 vm/vm_page.h                                       | 251 +++++-
 vm/vm_pageout.c                                    |  27 +-
 vm/vm_resident.c                                   | 593 ++++----------
 vm/vm_user.c                                       |   2 +-
 85 files changed, 4179 insertions(+), 1792 deletions(-)
 create mode 100644 i386/i386/cpu.h
 create mode 100644 i386/i386at/biosmem.c
 create mode 100644 i386/i386at/biosmem.h
 create mode 100644 i386/i386at/elf.h
 copy ipc/notify.defs => kern/exc.defs (75%)
 create mode 100644 kern/log2.h
 copy linux/src/include/linux/{compiler-gcc5.h => compiler-gcc6.h} (97%)
 create mode 100644 vm/vm_page.c

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/gnumach.git



reply via email to

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