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: Jan-Benedict G. <jb...@us...> - 2005-07-31 15:02:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20768/include/asm-vax Modified Files: system.h Log Message: - Fix some whitespace; though, more fixes are needed. Index: system.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/system.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- system.h 31 Jul 2005 14:55:37 -0000 1.17 +++ system.h 31 Jul 2005 15:02:35 -0000 1.18 @@ -19,14 +19,14 @@ */ /* FIXME: these are wrong */ -#define KERNEL_START (PAGE_OFFSET+0x300000) -#define SWAPPER_PGD (PAGE_OFFSET+0x300000) -#define INIT_STACK (PAGE_OFFSET+0x302000) -#define EMPTY_PGT (PAGE_OFFSET+0x304000) -#define EMPTY_PGE (PAGE_OFFSET+0x308000) -#define ZERO_PGE (PAGE_OFFSET+0x30A000) +#define KERNEL_START (PAGE_OFFSET + 0x300000) +#define SWAPPER_PGD (PAGE_OFFSET + 0x300000) +#define INIT_STACK (PAGE_OFFSET + 0x302000) +#define EMPTY_PGT (PAGE_OFFSET + 0x304000) +#define EMPTY_PGE (PAGE_OFFSET + 0x308000) +#define ZERO_PGE (PAGE_OFFSET + 0x30A000) -#define START_ADDR (PAGE_OFFSET+0x310000) +#define START_ADDR (PAGE_OFFSET + 0x310000) #define arch_align_stack(x) (x) @@ -82,16 +82,19 @@ #define setipl(ipl) __mtpr(ipl, PR_IPL) /* SMP: non atomic alert */ -#define swpipl(ipl) \ -({ \ - register unsigned long __r0; \ - __asm__ __volatile__( \ - "mfpr $0x12, %0\n" \ - "mtpr %1, $0x12 #swpipl" \ - :"=&r" (__r0) \ - :"r" (ipl) \ - : "r10", "memory"); \ - __r0; \ +/* FIXME: Use PR_IPL instead of 0x12 */ +#define swpipl(ipl) \ +({ \ + register unsigned long __r0; \ + \ + __asm__ __volatile__( \ + " mfpr $0x12, %0 \n" \ + " mtpr %1, $0x12 #swpipl \n" \ + : "=&r" (__r0) \ + : "r" (ipl) \ + : "r10", "memory"); \ + \ + __r0; \ }) #define local_save_flags(flags) ((flags) = getipl()) @@ -99,11 +102,11 @@ #define local_irq_restore(flags) setipl(flags) #define local_irq_disable() setipl(31) -#define irqs_disabled() (__psl.ipl == 31) - +#define irqs_disabled() (__psl.ipl == 31) + /* If we're handling an interrupt (i.e. the IS bit is set in the PSL and we're on the interrupt stack), then we must not enable - interrupts by dropping IPL all the way to 0. If we do, and + interrupts by dropping IPL all the way to 0. If we do, and another interrupt comes in, then this second interrupt will be handled normally, but will REI to a PSL with IS set and an IPL of 0, which REI doesn't like at all. @@ -122,7 +125,7 @@ } #ifdef __SMP__ -#error SMP not supported +# error "SMP not supported" #endif /* __SMP__ */ #define nop() __asm__ __volatile__ ("nop") @@ -135,7 +138,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) { - unsigned int fred; + unsigned int fred; switch (size) { case 1: @@ -155,8 +158,8 @@ case 4: __asm__("movl %2,%0\n\t" "movl %1,%2" - : "=&r" (fred) - : "r" (x), "m" (*__xg(ptr)) + : "=&r" (fred) + : "r" (x), "m" (*__xg(ptr)) : "memory"); break; } |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 14:55:45
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19365/include/asm-vax Modified Files: system.h Log Message: - #define arch_align_stack(). This isn't yet a version that allows stack randomization. Index: system.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/system.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- system.h 1 Mar 2004 11:07:50 -0000 1.16 +++ system.h 31 Jul 2005 14:55:37 -0000 1.17 @@ -28,9 +28,9 @@ #define START_ADDR (PAGE_OFFSET+0x310000) -#ifndef __ASSEMBLY__ - +#define arch_align_stack(x) (x) +#ifndef __ASSEMBLY__ struct task_struct; /* one of the stranger aspects of C forward declarations.. */ /* This macro wrapper around switch_to() means that the compiler |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 14:31:35
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14601/arch/vax/kernel Modified Files: init_task.c Log Message: - MQ_BYTES_MAX is needed for setting resource limits. Though, this should be included by generic code... Index: init_task.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/init_task.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- init_task.c 25 Apr 2005 13:11:56 -0000 1.9 +++ init_task.c 31 Jul 2005 14:31:26 -0000 1.10 @@ -2,6 +2,7 @@ #include <linux/sched.h> #include <linux/init.h> #include <linux/init_task.h> +#include <linux/mqueue.h> #include <asm/uaccess.h> #include <asm/pgtable.h> |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 13:22:28
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1857/include/asm-vax Modified Files: hardirq.h Log Message: - PREEMPT_BITS is now in generic code, too. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- hardirq.h 31 Jul 2005 13:16:35 -0000 1.13 +++ hardirq.h 31 Jul 2005 13:22:20 -0000 1.14 @@ -29,7 +29,6 @@ * - bit 31 is the PREEMPT_ACTIVE flag */ -#define PREEMPT_BITS 8 #define HARDIRQ_BITS 15 /* |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 13:16:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv990/include/asm-vax Modified Files: hardirq.h Log Message: - SOFTIRQ_BITS no longer needed in arch-specific header file. - Put #error message into quotes. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- hardirq.h 31 Jul 2005 13:02:36 -0000 1.12 +++ hardirq.h 31 Jul 2005 13:16:35 -0000 1.13 @@ -30,7 +30,6 @@ */ #define PREEMPT_BITS 8 -#define SOFTIRQ_BITS 8 #define HARDIRQ_BITS 15 /* @@ -39,7 +38,7 @@ * on a single CPU: */ #if (1 << HARDIRQ_BITS) < NR_IRQS -# error HARDIRQ_BITS is too low! +# error "HARDIRQ_BITS is too low!" #endif #endif /* _ASM_VAX_HARDIRQ_H */ |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 13:02:45
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31413/include/asm-vax Modified Files: hardirq.h Log Message: - Zap PREEMPT_SHIFT, too. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- hardirq.h 31 Jul 2005 13:00:02 -0000 1.11 +++ hardirq.h 31 Jul 2005 13:02:36 -0000 1.12 @@ -33,9 +33,6 @@ #define SOFTIRQ_BITS 8 #define HARDIRQ_BITS 15 -#define PREEMPT_SHIFT 0 - - /* * The hardirq mask has to be large enough to have space * for potentially all IRQ sources in the system nesting |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 13:00:12
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30827/include/asm-vax Modified Files: hardirq.h Log Message: - SOFTIRQ_SHIFT no longer needed: it's already in generic code. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- hardirq.h 31 Jul 2005 12:51:46 -0000 1.10 +++ hardirq.h 31 Jul 2005 13:00:02 -0000 1.11 @@ -34,7 +34,6 @@ #define HARDIRQ_BITS 15 #define PREEMPT_SHIFT 0 -#define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS) /* |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 12:51:56
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29794/include/asm-vax Modified Files: hardirq.h Log Message: - HARDIRQ_SHIFT isn't needed in arch-private header files; it's already in the linux version. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- hardirq.h 28 Mar 2005 01:06:24 -0000 1.9 +++ hardirq.h 31 Jul 2005 12:51:46 -0000 1.10 @@ -35,7 +35,6 @@ #define PREEMPT_SHIFT 0 #define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS) -#define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS) /* |
From: Jan-Benedict G. <jb...@us...> - 2005-07-31 12:43:19
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28695/include/asm-vax Modified Files: thread_info.h Log Message: - Remove whitespace Index: thread_info.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/thread_info.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- thread_info.h 28 Mar 2005 16:27:50 -0000 1.6 +++ thread_info.h 31 Jul 2005 12:43:08 -0000 1.7 @@ -32,7 +32,7 @@ int preempt_count; /* 0 => preemptable, <0 => BUG */ mm_segment_t addr_limit; /* thread address space: - 0-0x7FFFFFFF for user-thead + 0-0x7FFFFFFF for user-thead 0-0xFFFFFFFF for kernel-thread */ struct restart_block restart_block; |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:29
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/scsi Modified Files: NCR5380.c Removed Files: qlogicfc.h qlogicisp.h scsi_obsolete.h Log Message: Merge with 2.6.12 --- qlogicfc.h DELETED --- --- scsi_obsolete.h DELETED --- --- qlogicisp.h DELETED --- Index: NCR5380.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/NCR5380.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- NCR5380.c 21 Mar 2005 23:37:10 -0000 1.8 +++ NCR5380.c 24 Jul 2005 21:43:50 -0000 1.9 @@ -28,11 +28,11 @@ /* * $Log$ - * Revision 1.8 2005/03/21 23:37:10 kenn - * Merge with 2.6.10 + * Revision 1.9 2005/07/24 21:43:50 kenn + * Merge with 2.6.12 * - * Revision 1.1.1.22 2005/03/21 20:23:56 kenn - * Import of pristine Linus 2.6.10 tree + * Revision 1.1.1.23 2005/07/24 20:16:12 kenn + * Import of pristine Linus 2.6.12 tree * * Revision 1.10 1998/9/2 Alan Cox @@ -92,6 +92,7 @@ * 5. Test linked command handling code after Eric is ready with * the high level code. */ +#include <scsi/scsi_dbg.h> #if (NDEBUG & NDEBUG_LISTS) #define LIST(x,y) {printk("LINE:%d Adding %p to %p\n", __LINE__, (void*)(x), (void*)(y)); if ((x)==(y)) udelay(5); } @@ -2379,7 +2380,7 @@ * 3..length+1 arguments * * Start the extended message buffer with the EXTENDED_MESSAGE - * byte, since print_msg() wants the whole thing. + * byte, since scsi_print_msg() wants the whole thing. */ extended_msg[0] = EXTENDED_MESSAGE; /* Accept first byte by clearing ACK */ @@ -2426,7 +2427,7 @@ default: if (!tmp) { printk("scsi%d: rejecting message ", instance->host_no); - print_msg(extended_msg); + scsi_print_msg(extended_msg); printk("\n"); } else if (tmp != EXTENDED_MESSAGE) printk("scsi%d: rejecting unknown message %02x from target %d, lun %d\n", instance->host_no, tmp, cmd->device->id, cmd->device->lun); @@ -2560,7 +2561,7 @@ if (!(msg[0] & 0x80)) { printk(KERN_ERR "scsi%d : expecting IDENTIFY message, got ", instance->host_no); - print_msg(msg); + scsi_print_msg(msg); abort = 1; } else { /* Accept message by clearing ACK */ @@ -2685,7 +2686,7 @@ Scsi_Cmnd *tmp, **prev; printk(KERN_WARNING "scsi%d : aborting command\n", instance->host_no); - print_Scsi_Cmnd(cmd); + scsi_print_command(cmd); NCR5380_print_status(instance); |
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/char Modified Files: keyboard.c Removed Files: console_macros.h digi_bios.h digi_fep.h fep.h hp600_keyb.c pcxx.c pcxx.h tpqic02.c Log Message: Merge with 2.6.12 Index: keyboard.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/keyboard.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- keyboard.c 28 Mar 2005 00:01:01 -0000 1.4 +++ keyboard.c 24 Jul 2005 21:43:48 -0000 1.5 @@ -141,7 +141,7 @@ /* Simple translation table for the SysRq keys */ #ifdef CONFIG_MAGIC_SYSRQ -unsigned char kbd_sysrq_xlate[KEY_MAX] = +unsigned char kbd_sysrq_xlate[KEY_MAX + 1] = "\000\0331234567890-=\177\t" /* 0x00 - 0x0f */ "qwertyuiop[]\r\000as" /* 0x10 - 0x1f */ "dfghjkl;'`\000\\zxcv" /* 0x20 - 0x2f */ @@ -173,7 +173,7 @@ if (!dev) return -ENODEV; - if (scancode < 0 || scancode >= dev->keycodemax) + if (scancode >= dev->keycodemax) return -EINVAL; return INPUT_KEYCODE(dev, scancode); @@ -183,7 +183,7 @@ { struct list_head * node; struct input_dev *dev = NULL; - int i, oldkey; + unsigned int i, oldkey; list_for_each(node,&kbd_handler.h_list) { struct input_handle *handle = to_handle_h(node); @@ -196,7 +196,9 @@ if (!dev) return -ENODEV; - if (scancode < 0 || scancode >= dev->keycodemax) + if (scancode >= dev->keycodemax) + return -EINVAL; + if (keycode > KEY_MAX) return -EINVAL; if (keycode < 0 || keycode > KEY_MAX) return -EINVAL; @@ -355,7 +357,7 @@ */ void compute_shiftstate(void) { - int i, j, k, sym, val; + unsigned int i, j, k, sym, val; shift_state = 0; memset(shift_down, 0, sizeof(shift_down)); @@ -396,7 +398,7 @@ static unsigned char handle_diacr(struct vc_data *vc, unsigned char ch) { int d = diacr; - int i; + unsigned int i; diacr = 0; @@ -536,12 +538,12 @@ static void fn_scroll_forw(struct vc_data *vc, struct pt_regs *regs) { - scrollfront(0); + scrollfront(vc, 0); } static void fn_scroll_back(struct vc_data *vc, struct pt_regs *regs) { - scrollback(0); + scrollback(vc, 0); } static void fn_show_mem(struct vc_data *vc, struct pt_regs *regs) @@ -581,7 +583,7 @@ */ if (tty) do_SAK(tty); - reset_vc(fg_console); + reset_vc(vc); } static void fn_null(struct vc_data *vc, struct pt_regs *regs) @@ -932,7 +934,7 @@ defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_SPARC32) ||\ defined(CONFIG_SPARC64) || defined(CONFIG_PARISC) || defined(CONFIG_SUPERH) ||\ defined(CONFIG_VAX) ||\ - (defined(CONFIG_ARM) && defined(CONFIG_KEYBOARD_ATKBD) && !defined(CONFIG_RPC)) + (defined(CONFIG_ARM) && defined(CONFIG_KEYBOARD_ATKBD) && !defined(CONFIG_ARCH_RPC)) #define HW_RAW(dev) (test_bit(EV_MSC, dev->evbit) && test_bit(MSC_RAW, dev->mscbit) &&\ ((dev)->id.bustype == BUS_I8042) && ((dev)->id.vendor == 0x0001) && ((dev)->id.product == 0x0001)) @@ -1025,7 +1027,8 @@ put_queue(vc, data); } -void kbd_keycode(unsigned int keycode, int down, int hw_raw, struct pt_regs *regs) +static void kbd_keycode(unsigned int keycode, int down, + int hw_raw, struct pt_regs *regs) { struct vc_data *vc = vc_cons[fg_console].d; unsigned short keysym, *key_map; --- pcxx.h DELETED --- --- tpqic02.c DELETED --- --- pcxx.c DELETED --- --- hp600_keyb.c DELETED --- --- digi_bios.h DELETED --- --- digi_fep.h DELETED --- --- fep.h DELETED --- --- console_macros.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:10
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video/savage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/video/savage Removed Files: savagefb.c Log Message: Merge with 2.6.12 --- savagefb.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:10
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video/logo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/video/logo Modified Files: Kconfig logo.c Log Message: Merge with 2.6.12 Index: Kconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/video/logo/Kconfig,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Kconfig 28 Mar 2005 00:01:02 -0000 1.3 +++ Kconfig 24 Jul 2005 21:43:57 -0000 1.4 @@ -25,7 +25,7 @@ config LOGO_DEC_CLUT224 bool "224-color Digital Equipment Corporation Linux logo" - depends on LOGO && (MACH_DECSTATION || VAX) + depends on LOGO && (MACH_DECSTATION || ALPHA || VAX) default y config LOGO_MAC_CLUT224 @@ -45,7 +45,7 @@ config LOGO_SUN_CLUT224 bool "224-color Sun Linux logo" - depends on LOGO && (SPARC || SPARC64) + depends on LOGO && (SPARC32 || SPARC64) default y config LOGO_SUPERH_MONO Index: logo.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/video/logo/logo.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- logo.c 2 Sep 2004 19:51:19 -0000 1.4 +++ logo.c 24 Jul 2005 21:43:57 -0000 1.5 @@ -12,6 +12,7 @@ #include <linux/config.h> #include <linux/linux_logo.h> #include <linux/stddef.h> +#include <linux/module.h> #ifdef CONFIG_M68K #include <asm/setup.h> @@ -66,9 +67,10 @@ logo = &logo_linux_clut224; #endif #ifdef CONFIG_LOGO_DEC_CLUT224 - /* DEC Linux logo on DECstations and VAXstations */ -#ifdef CONFIG_DECSTATION + /* DEC Linux logo on MIPS/MIPS64 or ALPHA */ +#ifndef CONFIG_ALPHA if (mips_machgroup == MACH_GROUP_DEC) +#endif logo = &logo_dec_clut224; #endif #ifdef CONFIG_VAX @@ -102,4 +104,4 @@ } return logo; } - +EXPORT_SYMBOL_GPL(fb_find_logo); |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:09
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video/intelfb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/video/intelfb Removed Files: intelfbdrv.h Log Message: Merge with 2.6.12 --- intelfbdrv.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:09
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/scripts Removed Files: makeman split-man Log Message: Merge with 2.6.12 --- split-man DELETED --- --- makeman DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:00
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi/sym53c8xx_2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/scsi/sym53c8xx_2 Removed Files: sym_conf.h sym_misc.c Log Message: Merge with 2.6.12 --- sym_conf.h DELETED --- --- sym_misc.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:44:00
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi/qla2xxx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/scsi/qla2xxx Removed Files: qla_listops.h Log Message: Merge with 2.6.12 --- qla_listops.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:43:59
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char/agp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26174/drivers/char/agp Removed Files: intel-mch-agp.c Log Message: Merge with 2.6.12 --- intel-mch-agp.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:36
|
Update of /cvsroot/linux-vax/kernel-2.5/net/netlink In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/net/netlink Removed Files: netlink_dev.c Log Message: Merge with 2.6.12 --- netlink_dev.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:34
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/usb/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/drivers/usb/image Removed Files: hpusbscsi.c hpusbscsi.h Log Message: Merge with 2.6.12 --- hpusbscsi.h DELETED --- --- hpusbscsi.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:34
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/block/paride In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/drivers/block/paride Removed Files: setup.h Log Message: Merge with 2.6.12 --- setup.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:33
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/cdrom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/drivers/cdrom Removed Files: mcd.c mcd.h Log Message: Merge with 2.6.12 --- mcd.c DELETED --- --- mcd.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:33
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/mtd/maps In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/drivers/mtd/maps Removed Files: chestnut.c ich2rom.c Log Message: Merge with 2.6.12 --- chestnut.c DELETED --- --- ich2rom.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:32
|
Update of /cvsroot/linux-vax/kernel-2.5/net/ipv6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/net/ipv6 Removed Files: README Log Message: Merge with 2.6.12 --- README DELETED --- |
From: Kenn H. <ke...@us...> - 2005-07-24 21:38:13
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/cpufreq In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25307/drivers/cpufreq Removed Files: proc_intf.c Log Message: Merge with 2.6.12 --- proc_intf.c DELETED --- |