commit-hurd
[Top][All Lists]
Advanced

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

[SCM] GNU Mach branch, master, updated. 155d3ff9361676190ff4483b37a2f704


From: Guillem Jover
Subject: [SCM] GNU Mach branch, master, updated. 155d3ff9361676190ff4483b37a2f7048625cd1e
Date: Fri, 18 Dec 2009 10:58: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  155d3ff9361676190ff4483b37a2f7048625cd1e (commit)
       via  0e415b4ae44d610eafe484f6b9302b08a448accb (commit)
       via  40f8b441bb161cd09ff8210944e18995b2d2019f (commit)
       via  296a9380f5dde4514890d1409bd140db91f60adb (commit)
       via  11a8f8032a7ea0a926711894815650c05c660de1 (commit)
       via  0ae79e6cd9d4ab5d70ae399850bb804991b92c94 (commit)
       via  2cd448b2a65df4d81950f9d5bd2389add9d1b8da (commit)
       via  f0d2abf1a3aa06e6b53dba642d09fd9237624107 (commit)
       via  04152ecb45319bdfca49592cc1c88dc7f5a3ac5f (commit)
       via  8fdd03d725c84795ee646ff90e4b8e90bdab00f3 (commit)
      from  55dbc2b5d857d35262ad3116803dfb31b733d031 (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 155d3ff9361676190ff4483b37a2f7048625cd1e
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:30 2009 +0100

    Add missing casts
    
        * vm/vm_resident.c (vm_page_grab_contiguous_pages): Cast `prevmemp'
        assignement to vm_page_t.

commit 0e415b4ae44d610eafe484f6b9302b08a448accb
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:29 2009 +0100

    Add missing function prototypes
    
        * i386/i386/pcb.c (Load_context): New prototype.
        * i386/i386at/lpr.c (lprpr_addr): Likewise.

commit 40f8b441bb161cd09ff8210944e18995b2d2019f
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:28 2009 +0100

    Use `unsigned char *' for byte buffers
    
        * linux/src/drivers/net/apricot.c (struct i596_tbd): Change `data'
        member type to `unsigned char *'.
        (struct i596_rfd): Change `data' member type to `unsigned char'.
        (print_eth): Change argument type to `unsigned char'. Remove
        unneeded casts.
        (set_multicast_list): Change cast for print_eth to `unsigned char *'.

commit 296a9380f5dde4514890d1409bd140db91f60adb
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:27 2009 +0100

    Mark macro arguments as used
    
        * i386/intel/pmap.c [!NCPUS > 1] (INVALIDATE_TLB): Mark `pmap', `s'
        and `e' arguments as used.
        * i386/intel/pmap.h [!NCPUS > 1] (PMAP_ACTIVATE_KERNEL): Mark `my_cpu'
        argument as used.
        (PMAP_DEACTIVATE_KERNEL): Likewise.
        (PMAP_ACTIVATE_USER): Likewise. Mark `th' argument as used.
        (PMAP_DEACTIVATE_USER): Mark `thread' and `cpu' arguments as used.

commit 11a8f8032a7ea0a926711894815650c05c660de1
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:26 2009 +0100

    Missing `*' in assembler indirect lcall
    
        * linux/src/arch/i386/kernel/bios32.c (bios32_service): Add `*'
        in indirect lcall.
        (check_pcibios, pci_bios_find_class, pci_bios_find_device): Likewise.
        (pci_bios_read_config_byte, pci_bios_read_config_word): Likewise.
        (pci_bios_read_config_dword, pci_bios_write_config_byte): Likewise.
        (pci_bios_write_config_word, pci_bios_write_config_dword): Likewise.

commit 0ae79e6cd9d4ab5d70ae399850bb804991b92c94
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:25 2009 +0100

    Interrupt handlers do not return any value
    
        * i386/i386at/kd_mouse.c (kd_mouse_open): Change kdintr return type
        to `void'.
        (oldvect): Change return type to `void'.
        * linux/dev/arch/i386/kernel/irq.c (linux_timer_intr): Likewise.
        (intnull, prtnull, linux_intr, linux_bad_intr): Likewise.
        (old_clock_handler): Likewise.

commit 2cd448b2a65df4d81950f9d5bd2389add9d1b8da
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:24 2009 +0100

    Use selector definitions from Mach for Linux code
    
        * linux/src/include/asm-i386/segment.h [MACH]: Include <machine/gdt.h>
        and <machine/ldt.h>.
        [MACH && MACH_HYP] (KERNEL_CS, KERNEL_DS): Remove macros.
        [MACH && !MACH_HYP] (KERNEL_CS, KERNEL_DS): Likewise.
        [MACH] (USER_CS, USER_DS): Likewise.

commit f0d2abf1a3aa06e6b53dba642d09fd9237624107
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:23 2009 +0100

    Move linux/dev/include/asm-i386/segment.h to src tree
    
        * linux/dev/include/asm-i386/segment.h: Move to ...
        * linux/src/include/asm-i386/segment.h: ... here.

commit 04152ecb45319bdfca49592cc1c88dc7f5a3ac5f
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:22 2009 +0100

    Match function types with `struct tty' member functions
    
        * i386/i386at/com.c (comstart): Change return type to `void'.
        * i386/i386at/lpr.c (lprstop): Likewise.

commit 8fdd03d725c84795ee646ff90e4b8e90bdab00f3
Author: Guillem Jover <address@hidden>
Date:   Thu Dec 17 14:39:21 2009 +0100

    Use explicit type int when defining register variables
    
        * linux/src/drivers/scsi/aha1542.c (WAIT, WAITd): Define variables
        with explicit type `register int' and not just `register'.

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

Summary of changes:
 i386/i386/pcb.c                      |    1 +
 i386/i386at/com.c                    |   12 +-
 i386/i386at/kd_mouse.c               |    4 +-
 i386/i386at/lpr.c                    |   10 +-
 i386/intel/pmap.c                    |    7 +-
 i386/intel/pmap.h                    |    6 +
 linux/dev/arch/i386/kernel/irq.c     |   14 +-
 linux/dev/include/asm-i386/segment.h |  380 ----------------------------------
 linux/src/arch/i386/kernel/bios32.c  |   20 +-
 linux/src/drivers/net/apricot.c      |   16 +-
 linux/src/drivers/scsi/aha1542.c     |    8 +-
 linux/src/include/asm-i386/segment.h |  109 +++++++----
 vm/vm_resident.c                     |    4 +-
 13 files changed, 127 insertions(+), 464 deletions(-)
 delete mode 100644 linux/dev/include/asm-i386/segment.h


hooks/post-receive
-- 
GNU Mach




reply via email to

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