commit-hurd
[Top][All Lists]
Advanced

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

[SCM] GNU Mach branch, master, updated. b0b830433d9afbd8c5a7562ac5cebd6d


From: Samuel Thibault
Subject: [SCM] GNU Mach branch, master, updated. b0b830433d9afbd8c5a7562ac5cebd6db2eacaa6
Date: Tue, 30 Aug 2011 22:50:19 +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  b0b830433d9afbd8c5a7562ac5cebd6db2eacaa6 (commit)
       via  b580f5b65267608c9e634f1216b66de2a21549dc (commit)
       via  1e709eb6a8102937e90ba7cfdfc492be85ebdffc (commit)
       via  13e123efc65ee999a0eb754f7d14e78323792343 (commit)
       via  6cc4f7c68051431f309109c261667fcbec626fc1 (commit)
       via  39121f37ee129391fe17394ffdbf894c37f2c729 (commit)
       via  b266a845c84625535d082f79c5685cb37e28b2ee (commit)
       via  409e31b480c14b34ec57b08ba5afa1ce25a8e753 (commit)
       via  594ceb3c290e3fad3035a494b8451075bc913b40 (commit)
      from  2b4bff9914d57bff600ac70194b8b1aab3485bee (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 b0b830433d9afbd8c5a7562ac5cebd6db2eacaa6
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:42 2011 +0200

    Fix undefined operation on assigning self pre-incremented variable
    
    * linux/src/drivers/scsi/wd7000.c (mail_out): Add `1' instead of
    pre-incrementing self assigned variable.
    * linux/src/drivers/net/de4x5.c (de4x5_sw_reset, de4x5_queue_pkt, de4x5_rx)
    (de4x5_tx, de4x5_rx_ovfc, set_multicast_list, ping_media, mii_get_phy)
    (de4x5_ioctl): Likewise.
    * linux/src/drivers/net/depca.c (depca_rx, depca_tx, load_packet): Likewise.

commit b580f5b65267608c9e634f1216b66de2a21549dc
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:41 2011 +0200

    Honour type promotion on variable argument handling
    
    * linux/dev/lib/vsprintf.c (linux_vsprintf): Use `int' when retrieving
    a `short' through `va_arg'.

commit 1e709eb6a8102937e90ba7cfdfc492be85ebdffc
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:40 2011 +0200

    Correct MiG Mach types to fix compilation warnings
    
    * include/mach/mach_types.defs (thread_info_t): Change from array of
    natural_t to integer_t.
    (task_info_t): Likewise.
    (host_info_t): Likewise.
    (processor_info_t): Likewise.
    (processor_set_info_t): Likewise.

commit 13e123efc65ee999a0eb754f7d14e78323792343
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:39 2011 +0200

    Denote __exit symbols as used
    
    * linux/src/include/linux/init.h: Include <linux/compiler.h>.
    (__exitused): New macro.
    (__exit): Define to ` __exitused __cold notrace'.
    * linux/src/include/linux/kcomp.h (__exit): Remove.

commit 6cc4f7c68051431f309109c261667fcbec626fc1
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:38 2011 +0200

    Move <linux/init.h> from linux/pcmcia-cs to linux/src
    
    * linux/pcmcia-cs/include/linux/init.h: Move to ...
    * linux/src/include/linux/init.h: ... here.

commit 39121f37ee129391fe17394ffdbf894c37f2c729
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:37 2011 +0200

    Import Linux 3.1 compiler definitions
    
    * linux/src/include/linux/compiler.h: New file.
    * linux/src/include/linux/compiler-gcc.h: Likewise.
    * linux/src/include/linux/compiler-gcc3.h: Likewise.
    * linux/src/include/linux/compiler-gcc4.h: Likewise.
    * linux/dev/include/linux/kernel.h (barrier): Remove definition and
    include <linux/compiler.h> instead.

commit b266a845c84625535d082f79c5685cb37e28b2ee
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:36 2011 +0200

    Import Linux 3.1 ctype code
    
    * linux/src/include/linux/ctype.h: Update file.
    * linux/src/lib/ctype.c: Likewise.

commit 409e31b480c14b34ec57b08ba5afa1ce25a8e753
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:35 2011 +0200

    Remove unused and non-functional string specialization header
    
    * linux/src/include/asm-i386/string-486.h: Remove.

commit 594ceb3c290e3fad3035a494b8451075bc913b40
Author: Guillem Jover <address@hidden>
Date:   Tue Aug 30 03:09:34 2011 +0200

    Fix memcmp prototype
    
    * include/string.h (memcmp): Remove bogus `*' from return type.

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

Summary of changes:
 include/mach/mach_types.defs                  |   10 +-
 include/string.h                              |    2 +-
 linux/dev/include/linux/kernel.h              |    4 +-
 linux/dev/lib/vsprintf.c                      |    4 +-
 linux/src/drivers/net/de4x5.c                 |   20 +-
 linux/src/drivers/net/depca.c                 |    8 +-
 linux/src/drivers/scsi/wd7000.c               |    2 +-
 linux/src/include/asm-i386/string-486.h       |  702 -------------------------
 linux/src/include/linux/compiler-gcc.h        |  106 ++++
 linux/src/include/linux/compiler-gcc3.h       |   23 +
 linux/src/include/linux/compiler-gcc4.h       |   57 ++
 linux/src/include/linux/compiler.h            |  311 +++++++++++
 linux/src/include/linux/ctype.h               |   70 ++-
 linux/{pcmcia-cs => src}/include/linux/init.h |   10 +-
 linux/src/include/linux/kcomp.h               |    2 -
 linux/src/lib/ctype.c                         |   54 +-
 16 files changed, 607 insertions(+), 778 deletions(-)
 delete mode 100644 linux/src/include/asm-i386/string-486.h
 create mode 100644 linux/src/include/linux/compiler-gcc.h
 create mode 100644 linux/src/include/linux/compiler-gcc3.h
 create mode 100644 linux/src/include/linux/compiler-gcc4.h
 create mode 100644 linux/src/include/linux/compiler.h
 rename linux/{pcmcia-cs => src}/include/linux/init.h (68%)


hooks/post-receive
-- 
GNU Mach



reply via email to

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