You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(66) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(17) |
Nov
(1) |
Dec
(220) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(154) |
Feb
(167) |
Mar
(159) |
Apr
(172) |
May
(35) |
Jun
(58) |
Jul
(97) |
Aug
(285) |
Sep
(139) |
Oct
(252) |
Nov
(8) |
Dec
(3) |
2004 |
Jan
(13) |
Feb
(159) |
Mar
(136) |
Apr
(33) |
May
(50) |
Jun
(42) |
Jul
(140) |
Aug
(42) |
Sep
(199) |
Oct
(31) |
Nov
(55) |
Dec
|
2005 |
Jan
|
Feb
(12) |
Mar
(214) |
Apr
(119) |
May
(21) |
Jun
(2) |
Jul
(127) |
Aug
(10) |
Sep
(3) |
Oct
(24) |
Nov
(1) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
(45) |
May
(13) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(26) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(35) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Kenn H. <ke...@us...> - 2005-04-07 22:36:00
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22898/arch/vax/kernel Modified Files: setup.c Log Message: Implement halt-on-panic via a panic notifier. This returns panic.c to pristine Linus condition Index: setup.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/setup.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- setup.c 2 Sep 2004 22:38:46 -0000 1.16 +++ setup.c 7 Apr 2005 22:35:50 -0000 1.17 @@ -20,6 +20,7 @@ #include <linux/major.h> #include <linux/kdev_t.h> #include <linux/root_dev.h> +#include <linux/notifier.h> #include <asm/rpb.h> #include <asm/page.h> @@ -81,6 +82,18 @@ .show = show_cpuinfo, }; +static int vax_panic_notifier(struct notifier_block *this, + unsigned long event, void *ptr) +{ + machine_halt(); + return NOTIFY_DONE; +} + +static struct notifier_block vax_panic_block = { + .notifier_call = vax_panic_notifier, + .priority = INT_MIN /* may not return; must be done last */ +}; + void __init setup_arch(char **cmdline_p) { unsigned long zones_size[MAX_NR_ZONES] = { 0, 0, 0 }; @@ -89,6 +102,8 @@ unsigned long region_start; unsigned long region_len; + notifier_chain_register(&panic_notifier_list, &vax_panic_block); + /* * save the command line from the boot block, before it gets * stomped on. |
From: Kenn H. <ke...@us...> - 2005-04-07 22:36:00
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22898/kernel Modified Files: panic.c Log Message: Implement halt-on-panic via a panic notifier. This returns panic.c to pristine Linus condition Index: panic.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/kernel/panic.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- panic.c 21 Mar 2005 23:44:18 -0000 1.14 +++ panic.c 7 Apr 2005 22:35:50 -0000 1.15 @@ -111,9 +111,6 @@ #if defined(CONFIG_ARCH_S390) disabled_wait(caller); #endif -#ifdef CONFIG_VAX - machine_halt(); -#endif local_irq_enable(); for (i = 0;;) { i += panic_blink(i); |
From: Kenn H. <ke...@us...> - 2005-04-07 22:19:52
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12309/include/asm-vax Removed Files: vsa.h Log Message: Remove obsoleted VSBUS code. Nothing uses this anymore (except for one reference in the KA55 boot code which has bit-rotted --- vsa.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-07 22:19:52
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/vsbus In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12309/drivers/vsbus Removed Files: Makefile vsbus.c Log Message: Remove obsoleted VSBUS code. Nothing uses this anymore (except for one reference in the KA55 boot code which has bit-rotted --- vsbus.c DELETED --- --- Makefile DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-07 22:19:51
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12309/arch/vax/kernel Modified Files: cpu_ka55.c Log Message: Remove obsoleted VSBUS code. Nothing uses this anymore (except for one reference in the KA55 boot code which has bit-rotted Index: cpu_ka55.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/cpu_ka55.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- cpu_ka55.c 2 Oct 2004 11:42:46 -0000 1.12 +++ cpu_ka55.c 7 Apr 2005 22:19:42 -0000 1.13 @@ -14,7 +14,6 @@ #include <asm/mtpr.h> #include <asm/mv.h> #include <asm/vaxcpu.h> -#include <asm/vsa.h> #include <asm/clock.h> /* For clock_init routines */ static void ka55_prom_putchar(int c) @@ -52,9 +51,6 @@ static void ka55_init_devices(void) { -#ifdef CONFIG_VSBUS - vsbus_setup(); -#endif } struct vax_mv mv_ka55 = { @@ -70,3 +66,5 @@ #warning KA55 needs a struct cpumatch +#warning KA55 needs a platform_device_init function + |
From: Kenn H. <ke...@us...> - 2005-04-05 23:24:13
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16669 Removed Files: XXstdarg.h Log Message: This file is obsolete. I cannot find anything that references it --- XXstdarg.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 22:56:42
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sh In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7783 Added Files: io_generic.h Log Message: This file should have be re-added back in 2.6.3 --- NEW FILE: io_generic.h --- /* * include/asm-sh/io_generic.h * * Copyright 2000 Stuart Menefy (stu...@st...) * * May be copied or modified under the terms of the GNU General Public * License. See linux/COPYING for more information. * * Generic IO functions */ #ifndef _ASM_SH_IO_GENERIC_H #define _ASM_SH_IO_GENERIC_H extern unsigned long generic_io_base; extern unsigned char generic_inb(unsigned long port); extern unsigned short generic_inw(unsigned long port); extern unsigned int generic_inl(unsigned long port); extern void generic_outb(unsigned char value, unsigned long port); extern void generic_outw(unsigned short value, unsigned long port); extern void generic_outl(unsigned int value, unsigned long port); extern unsigned char generic_inb_p(unsigned long port); extern unsigned short generic_inw_p(unsigned long port); extern unsigned int generic_inl_p(unsigned long port); extern void generic_outb_p(unsigned char value, unsigned long port); extern void generic_outw_p(unsigned short value, unsigned long port); extern void generic_outl_p(unsigned int value, unsigned long port); extern void generic_insb(unsigned long port, void *addr, unsigned long count); extern void generic_insw(unsigned long port, void *addr, unsigned long count); extern void generic_insl(unsigned long port, void *addr, unsigned long count); extern void generic_outsb(unsigned long port, const void *addr, unsigned long count); extern void generic_outsw(unsigned long port, const void *addr, unsigned long count); extern void generic_outsl(unsigned long port, const void *addr, unsigned long count); extern unsigned char generic_readb(unsigned long addr); extern unsigned short generic_readw(unsigned long addr); extern unsigned int generic_readl(unsigned long addr); extern void generic_writeb(unsigned char b, unsigned long addr); extern void generic_writew(unsigned short b, unsigned long addr); extern void generic_writel(unsigned int b, unsigned long addr); extern void *generic_ioremap(unsigned long offset, unsigned long size); extern void generic_iounmap(void *addr); extern unsigned long generic_isa_port2addr(unsigned long offset); #endif /* _ASM_SH_IO_GENERIC_H */ |
From: Kenn H. <ke...@us...> - 2005-04-05 22:54:48
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7210/include/linux Modified Files: elf.h Log Message: Add definitions missed in previous merges of Linus sources Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- elf.h 27 Mar 2005 23:46:48 -0000 1.24 +++ elf.h 5 Apr 2005 22:54:39 -0000 1.25 @@ -91,7 +91,9 @@ #define EM_V850 87 /* NEC v850 */ -#define EM_H8_300 46 /* Hitachi H8/300,300H,H8S */ +#define EM_M32R 88 /* Renesas M32R */ + +#define EM_H8_300 46 /* Renesas H8/300,300H,H8S */ /* * This is an interim value that we will use until the committee comes @@ -102,6 +104,9 @@ /* Bogus old v850 magic number, used by old tools. */ #define EM_CYGNUS_V850 0x9080 +/* Bogus old m32r magic number, used by old tools. */ +#define EM_CYGNUS_M32R 0x9041 + /* * This is the old interim value for S/390 architecture */ |
From: Kenn H. <ke...@us...> - 2005-04-05 22:50:28
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5956/drivers Modified Files: Makefile Log Message: Remove a superfluous comment Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/Makefile,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- Makefile 28 Mar 2005 00:00:57 -0000 1.33 +++ Makefile 5 Apr 2005 22:50:13 -0000 1.34 @@ -64,5 +64,3 @@ obj-$(CONFIG_INFINIBAND) += infiniband/ obj-y += firmware/ obj-$(CONFIG_CRYPTO) += crypto/ - -# VAX-specific stuff |
From: Kenn H. <ke...@us...> - 2005-04-05 22:39:42
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1836/drivers/video Modified Files: fbmem.c Log Message: Remove a debugging printk() Index: fbmem.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/video/fbmem.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- fbmem.c 27 Mar 2005 23:46:47 -0000 1.11 +++ fbmem.c 5 Apr 2005 22:39:33 -0000 1.12 @@ -465,7 +465,6 @@ for (x = 0; x < num_online_cpus() * (fb_logo.logo->width + 8) && x <= info->var.xres-fb_logo.logo->width; x += (fb_logo.logo->width + 8)) { image.dx = x; - printk (KERN_INFO "Setting one more logo\n"); info->fbops->fb_imageblit(info, &image); } |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:42
|
Update of /cvsroot/linux-vax/kernel-2.5/sound/oss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/sound/oss Removed Files: 724hwmcode.h Hwmcode.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- Hwmcode.h DELETED --- --- 724hwmcode.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:42
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/scripts Removed Files: MAKEDEV.ide MAKEDEV.snd Log Message: Remove files that were removed by Linus, but missed in previous merges --- MAKEDEV.snd DELETED --- --- MAKEDEV.ide DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:36
|
Update of /cvsroot/linux-vax/kernel-2.5/include/net/irda In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/net/irda Removed Files: ali-ircc.h au1000_ircc.h irda-usb.h irport.h nsc-ircc.h smc-ircc.h toshoboe.h vlsi_ir.h w83977af.h w83977af_ir.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- toshoboe.h DELETED --- --- nsc-ircc.h DELETED --- --- w83977af_ir.h DELETED --- --- au1000_ircc.h DELETED --- --- ali-ircc.h DELETED --- --- vlsi_ir.h DELETED --- --- w83977af.h DELETED --- --- irda-usb.h DELETED --- --- irport.h DELETED --- --- smc-ircc.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:36
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux/sunrpc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/linux/sunrpc Removed Files: name_lookup.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- name_lookup.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:32
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/linux Removed Files: rmap-locking.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- rmap-locking.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:17
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips/sn In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-mips/sn Removed Files: intr_public.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- intr_public.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:16
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips/mach-au1x00 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-mips/mach-au1x00 Removed Files: au1000_pcmcia.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- au1000_pcmcia.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:16
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-mips Removed Files: mv64340_dep.h page-32.h page-64.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- mv64340_dep.h DELETED --- --- page-64.h DELETED --- --- page-32.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:15
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm/hardware In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-arm/hardware Removed Files: serial_amba.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- serial_amba.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:15
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/ntfs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/fs/ntfs Removed Files: time.c Log Message: Remove files that were removed by Linus, but missed in previous merges --- time.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:15
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-i386/mach-pc9800 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-i386/mach-pc9800 Removed Files: mach_resources.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- mach_resources.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:14
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/vfat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/fs/vfat Removed Files: vfatfs_syms.c Log Message: Remove files that were removed by Linus, but missed in previous merges --- vfatfs_syms.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:14
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-i386/mach-default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/include/asm-i386/mach-default Removed Files: mach_resources.h Log Message: Remove files that were removed by Linus, but missed in previous merges --- mach_resources.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:13
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/msdos In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/fs/msdos Removed Files: msdosfs_syms.c Log Message: Remove files that were removed by Linus, but missed in previous merges --- msdosfs_syms.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-04-05 21:32:12
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/hfs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13621/fs/hfs Removed Files: COPYING Log Message: Remove files that were removed by Linus, but missed in previous merges --- COPYING DELETED --- |