You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
(9) |
Apr
(27) |
May
(5) |
Jun
(8) |
Jul
(50) |
Aug
(286) |
Sep
(2) |
Oct
(43) |
Nov
(4) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(79) |
Feb
(102) |
Mar
(29) |
Apr
(2) |
May
(22) |
Jun
(41) |
Jul
(11) |
Aug
(28) |
Sep
(58) |
Oct
(4) |
Nov
(18) |
Dec
(8) |
2002 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
(478) |
May
(469) |
Jun
(78) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(47) |
Nov
(5) |
Dec
(227) |
2003 |
Jan
(155) |
Feb
(188) |
Mar
(160) |
Apr
(172) |
May
(41) |
Jun
(205) |
Jul
(104) |
Aug
(289) |
Sep
(31) |
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Uns L. <uns...@us...> - 2003-07-31 19:31:53
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv21918 Modified Files: pgtable.h Log Message: Add io_remap_page_range #define. Uh, I think this is right. Some archs have this #define, others have a real io_remap_page_range. I think a real io_remap_page_range is only necessary where there is an I/O address space that doesn't line up with the physical address space. Index: pgtable.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm/pgtable.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- pgtable.h 10 Jun 2003 01:14:27 -0000 1.17 +++ pgtable.h 31 Jul 2003 19:31:50 -0000 1.18 @@ -188,6 +188,8 @@ #define PageSkip(page) (0) #define kern_addr_valid(addr) (1) +#define io_remap_page_range remap_page_range + /* * No page table caches to initialise */ |
From: Uns L. <uns...@us...> - 2003-07-31 19:18:59
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv19819 Modified Files: config.in Log Message: Enable CONFIG_VT and framebuffer options Index: config.in =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/config.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- config.in 12 Feb 2003 02:37:32 -0000 1.16 +++ config.in 31 Jul 2003 19:18:57 -0000 1.17 @@ -154,10 +154,11 @@ comment 'VAX Character devices' # Virtual terminals not supported yet -# bool 'Virtual terminal' CONFIG_VT -define_bool CONFIG_VT n +bool 'Virtual terminal' CONFIG_VT +#define_bool CONFIG_VT n if [ "$CONFIG_VT" = "y" ]; then bool 'Support for console on virtual terminal' CONFIG_VT_CONSOLE + source drivers/video/Config.in fi tristate 'Standard/generic (dumb) serial support' CONFIG_SERIAL if [ "$CONFIG_SERIAL" = "y" ]; then |
From: Uns L. <uns...@us...> - 2003-07-29 21:59:28
|
Update of /cvsroot/linux-vax/kernel-2.4/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv31853 Modified Files: sc26c94.c Log Message: Fixed sc26c94_write_io. Before, it could only set bits, not clear them. Index: sc26c94.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/char/sc26c94.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- sc26c94.c 3 Jun 2002 02:52:42 -0000 1.4 +++ sc26c94.c 29 Jul 2003 18:21:01 -0000 1.5 @@ -233,16 +233,21 @@ { int opr_reg = (channum < SC26C94_PORT_C) ? SC26C94_REG_OPRab : SC26C94_REG_OPRcd; int opr; + u8 mask; unsigned long flags; - val = val ? 0 : io_bits[ionum & 3]; + mask = io_bits[ionum & 3]; if((channum & 1) != 0) - val <<= 2; + mask <<= 2; + + val = val ? 0 : mask; save_flags(flags); cli(); opr = quart->readreg(quart, opr_reg); - quart->writereg(quart, opr_reg, opr | val); + opr &= ~mask; + opr |= val; + quart->writereg(quart, opr_reg, opr); restore_flags(flags); } |
From: Kenn H. <ke...@us...> - 2003-07-22 01:28:02
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv17886/arch/vax Modified Files: Kconfig Log Message: Use arch-independent init/Kconfig Index: Kconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Kconfig,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Kconfig 18 May 2003 18:21:54 -0000 1.2 +++ Kconfig 22 Jul 2003 01:28:00 -0000 1.3 @@ -33,8 +33,6 @@ bool default n -menu "General setup" - config BINFMT_ELF bool default y @@ -55,20 +53,8 @@ bool "Networking support" default y -config SYSVIPC - bool "System V IPC" - default y - -config BSD_PROCESS_ACCT - bool "BSD Process Accounting" - default y - -config SYSCTL - bool "Sysctl support" - default y - -endmenu +source "init/Kconfig" menu "Bus support" |
From: Kenn H. <ke...@us...> - 2003-07-22 01:27:31
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv17796/include/asm-vax Modified Files: system.h Log Message: Need definition of smp_read_barrier_depends() Index: system.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/system.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- system.h 9 Jul 2003 23:10:17 -0000 1.13 +++ system.h 22 Jul 2003 01:27:28 -0000 1.14 @@ -69,6 +69,7 @@ #define rmb() mb() #define wmb() mb() #define read_barrier_depends() mb() +#define smp_read_barrier_depends() mb() #define set_mb(var, value) do { var = value; mb(); } while (0) #define set_wmb(var, value) do { var = value; wmb(); } while (0) |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:12
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv3612/kernel Modified Files: panic.c Log Message: Merge with 2.5.55 Index: panic.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/kernel/panic.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- panic.c 10 Feb 2003 02:05:12 -0000 1.6 +++ panic.c 21 Jul 2003 23:52:05 -0000 1.7 @@ -106,7 +106,7 @@ /** * print_tainted - return a string to represent the kernel taint state. * - * 'P' - Proprietory module has been loaded. + * 'P' - Proprietary module has been loaded. * 'F' - Module has been forcibly loaded. * 'S' - SMP with CPUs not designed for SMP. * @@ -118,7 +118,7 @@ static char buf[20]; if (tainted) { snprintf(buf, sizeof(buf), "Tainted: %c%c%c", - tainted & TAINT_PROPRIETORY_MODULE ? 'P' : 'G', + tainted & TAINT_PROPRIETARY_MODULE ? 'P' : 'G', tainted & TAINT_FORCED_MODULE ? 'F' : ' ', tainted & TAINT_UNSAFE_SMP ? 'S' : ' '); } |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:11
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv3612/drivers/scsi Modified Files: Makefile Log Message: Merge with 2.5.55 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/Makefile,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- Makefile 16 Jul 2003 22:59:25 -0000 1.19 +++ Makefile 21 Jul 2003 23:52:05 -0000 1.20 @@ -84,6 +84,7 @@ obj-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2/ obj-$(CONFIG_SCSI_SYM53C8XX) += sym53c8xx.o obj-$(CONFIG_SCSI_NCR53C8XX) += ncr53c8xx.o +obj-$(CONFIG_SCSI_ZALON) += zalon7xx.o obj-$(CONFIG_SCSI_EATA_DMA) += eata_dma.o obj-$(CONFIG_SCSI_EATA_PIO) += eata_pio.o obj-$(CONFIG_SCSI_7000FASST) += wd7000.o @@ -141,6 +142,7 @@ sr_mod-objs := sr.o sr_ioctl.o sr_vendor.o initio-objs := ini9100u.o i91uscsi.o a100u2w-objs := inia100.o i60uscsi.o +zalon7xx-objs := zalon.o ncr53c8xx.o cpqfc-objs := cpqfcTSinit.o cpqfcTScontrol.o cpqfcTSi2c.o \ cpqfcTSworker.o cpqfcTStrigger.o |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-i386 In directory sc8-pr-cvs1:/tmp/cvs-serv3612/include/asm-i386 Removed Files: smpboot.h Log Message: Merge with 2.5.55 --- smpboot.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:11
|
Update of /cvsroot/linux-vax/kernel-2.5/init In directory sc8-pr-cvs1:/tmp/cvs-serv3612/init Modified Files: do_mounts.c Log Message: Merge with 2.5.55 Index: do_mounts.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/init/do_mounts.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- do_mounts.c 7 Jul 2003 23:48:09 -0000 1.5 +++ do_mounts.c 21 Jul 2003 23:52:05 -0000 1.6 @@ -13,6 +13,7 @@ #include <linux/suspend.h> #include <linux/root_dev.h> #include <linux/mount.h> +#include <linux/dirent.h> #include <linux/security.h> #include <linux/nfs_fs.h> @@ -324,22 +325,32 @@ #endif #ifdef CONFIG_DEVFS_FS + +/* + * If the dir will fit in *buf, return its length. If it won't fit, return + * zero. Return -ve on error. + */ static int __init do_read_dir(int fd, void *buf, int len) { long bytes, n; char *p = buf; lseek(fd, 0, 0); - for (bytes = 0, p = buf; bytes < len; bytes += n, p+=n) { - n = sys_getdents64(fd, p, len - bytes); + for (bytes = 0; bytes < len; bytes += n) { + n = sys_getdents64(fd, p + bytes, len - bytes); if (n < 0) - return -1; + return n; if (n == 0) return bytes; } return 0; } +/* + * Try to read all of a directory. Returns the contents at *p, which + * is kmalloced memory. Returns the number of bytes read at *len. Returns + * NULL on error. + */ static void * __init read_dir(char *path, int *len) { int size; @@ -349,7 +360,7 @@ if (fd < 0) return NULL; - for (size = 1<<9; size < (1<<18); size <<= 1) { + for (size = 1 << 9; size <= (1 << MAX_ORDER); size <<= 1) { void *p = kmalloc(size, GFP_KERNEL); int n; if (!p) @@ -361,6 +372,8 @@ return p; } kfree(p); + if (n == -EINVAL) + continue; /* Try a larger buffer */ if (n < 0) break; } @@ -368,14 +381,6 @@ return NULL; } #endif - -struct linux_dirent64 { - u64 d_ino; - s64 d_off; - unsigned short d_reclen; - unsigned char d_type; - char d_name[0]; -}; static int __init find_in_devfs(char *path, dev_t dev) { |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv3612/include/linux Modified Files: elf.h Log Message: Merge with 2.5.55 Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- elf.h 16 Jul 2003 22:27:39 -0000 1.9 +++ elf.h 21 Jul 2003 23:52:05 -0000 1.10 @@ -161,6 +161,9 @@ #define ELF32_ST_BIND(x) ((x) >> 4) #define ELF32_ST_TYPE(x) (((unsigned int) x) & 0xf) +#define ELF64_ST_BIND(x) ((x) >> 4) +#define ELF64_ST_TYPE(x) (((unsigned int) x) & 0xf) + /* Symbolic values for the entries in the auxiliary table put on the initial stack */ #define AT_NULL 0 /* end of vector */ @@ -364,22 +367,30 @@ #define R_ALPHA_SREL16 9 /* PC relative 16 bit */ #define R_ALPHA_SREL32 10 /* PC relative 32 bit */ #define R_ALPHA_SREL64 11 /* PC relative 64 bit */ -#define R_ALPHA_OP_PUSH 12 /* OP stack push */ -#define R_ALPHA_OP_STORE 13 /* OP stack pop and store */ -#define R_ALPHA_OP_PSUB 14 /* OP stack subtract */ -#define R_ALPHA_OP_PRSHIFT 15 /* OP stack right shift */ -#define R_ALPHA_GPVALUE 16 -#define R_ALPHA_GPRELHIGH 17 -#define R_ALPHA_GPRELLOW 18 -#define R_ALPHA_IMMED_GP_16 19 -#define R_ALPHA_IMMED_GP_HI32 20 -#define R_ALPHA_IMMED_SCN_HI32 21 -#define R_ALPHA_IMMED_BR_HI32 22 -#define R_ALPHA_IMMED_LO32 23 +#define R_ALPHA_GPRELHIGH 17 /* GP relative 32 bit, high 16 bits */ +#define R_ALPHA_GPRELLOW 18 /* GP relative 32 bit, low 16 bits */ +#define R_ALPHA_GPREL16 19 /* GP relative 16 bit */ #define R_ALPHA_COPY 24 /* Copy symbol at runtime */ #define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */ #define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */ #define R_ALPHA_RELATIVE 27 /* Adjust by program base */ +#define R_ALPHA_BRSGP 28 +#define R_ALPHA_TLSGD 29 +#define R_ALPHA_TLS_LDM 30 +#define R_ALPHA_DTPMOD64 31 +#define R_ALPHA_GOTDTPREL 32 +#define R_ALPHA_DTPREL64 33 +#define R_ALPHA_DTPRELHI 34 +#define R_ALPHA_DTPRELLO 35 +#define R_ALPHA_DTPREL16 36 +#define R_ALPHA_GOTTPREL 37 +#define R_ALPHA_TPREL64 38 +#define R_ALPHA_TPRELHI 39 +#define R_ALPHA_TPRELLO 40 +#define R_ALPHA_TPREL16 41 + +#define SHF_ALPHA_GPREL 0x10000000 + /* PowerPC relocations defined by the ABIs */ #define R_PPC_NONE 0 |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:08
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv3612 Modified Files: Makefile Log Message: Merge with 2.5.55 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.62 retrieving revision 1.63 diff -u -r1.62 -r1.63 --- Makefile 16 Jul 2003 22:59:25 -0000 1.62 +++ Makefile 21 Jul 2003 23:52:05 -0000 1.63 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 54 +SUBLEVEL = 55 EXTRAVERSION = # *DOCUMENTATION* |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:08
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc64/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv3612/arch/ppc64/kernel Removed Files: xics.h Log Message: Merge with 2.5.55 --- xics.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:52:08
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/net In directory sc8-pr-cvs1:/tmp/cvs-serv3612/drivers/net Modified Files: Makefile Log Message: Merge with 2.5.55 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/net/Makefile,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- Makefile 9 Jul 2003 23:56:58 -0000 1.21 +++ Makefile 21 Jul 2003 23:52:05 -0000 1.22 @@ -185,6 +185,7 @@ obj-$(CONFIG_TUN) += tun.o obj-$(CONFIG_DL2K) += dl2k.o obj-$(CONFIG_R8169) += r8169.o +obj-$(CONFIG_AMD8111_ETH) += amd8111e.o # non-drivers/net drivers who want mii lib obj-$(CONFIG_PCMCIA_SMC91C92) += mii.o |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:06
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char/ftape/lowlevel In directory sc8-pr-cvs1:/tmp/cvs-serv3146/drivers/char/ftape/lowlevel Removed Files: ftape_syms.h Log Message: Merge with 2.5.55 --- ftape_syms.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:06
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char/ftape/zftape In directory sc8-pr-cvs1:/tmp/cvs-serv3146/drivers/char/ftape/zftape Removed Files: zftape_syms.h Log Message: Merge with 2.5.55 --- zftape_syms.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:05
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/platforms/4xx In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/platforms/4xx Removed Files: ibm_ocp.h Log Message: Merge with 2.5.55 --- ibm_ocp.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:05
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/kernel Removed Files: iSeries_asm.h iSeries_head.S iSeries_idle.c iSeries_misc.S ppc6xx_idle.c Log Message: Merge with 2.5.55 --- iSeries_asm.h DELETED --- --- iSeries_head.S DELETED --- --- iSeries_idle.c DELETED --- --- iSeries_misc.S DELETED --- --- ppc6xx_idle.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:04
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/mm In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/mm Removed Files: iSeries_hashtable.c iSeries_mmu.c Log Message: Merge with 2.5.55 --- iSeries_hashtable.c DELETED --- --- iSeries_mmu.c DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc/iSeries In directory sc8-pr-cvs1:/tmp/cvs-serv3146/include/asm-ppc/iSeries Removed Files: HvCall.h HvCallCfg.h HvCallEvent.h HvCallHpt.h HvCallPci.h HvCallSc.h HvCallSm.h HvCallXm.h HvLpConfig.h HvLpEvent.h HvReleaseData.h HvTypes.h IoHriMainStore.h IoHriProcessorVpd.h ItIplParmsReal.h ItLpNaca.h ItLpPaca.h ItLpQueue.h ItLpRegSave.h ItSpCommArea.h ItVpdAreas.h LparData.h LparMap.h Naca.h Paca.h XmPciLpEvent.h iSeries_FlightRecorder.h iSeries_VpdInfo.h iSeries_dma.h iSeries_fixup.h iSeries_io.h iSeries_irq.h iSeries_pci.h iSeries_proc.h mf.h mf_proc.h pmc_proc.h veth-proc.h Log Message: Merge with 2.5.55 --- HvCall.h DELETED --- --- HvCallCfg.h DELETED --- --- HvCallEvent.h DELETED --- --- HvCallHpt.h DELETED --- --- HvCallPci.h DELETED --- --- HvCallSc.h DELETED --- --- HvCallSm.h DELETED --- --- HvCallXm.h DELETED --- --- HvLpConfig.h DELETED --- --- HvLpEvent.h DELETED --- --- HvReleaseData.h DELETED --- --- HvTypes.h DELETED --- --- IoHriMainStore.h DELETED --- --- IoHriProcessorVpd.h DELETED --- --- ItIplParmsReal.h DELETED --- --- ItLpNaca.h DELETED --- --- ItLpPaca.h DELETED --- --- ItLpQueue.h DELETED --- --- ItLpRegSave.h DELETED --- --- ItSpCommArea.h DELETED --- --- ItVpdAreas.h DELETED --- --- LparData.h DELETED --- --- LparMap.h DELETED --- --- Naca.h DELETED --- --- Paca.h DELETED --- --- XmPciLpEvent.h DELETED --- --- iSeries_FlightRecorder.h DELETED --- --- iSeries_VpdInfo.h DELETED --- --- iSeries_dma.h DELETED --- --- iSeries_fixup.h DELETED --- --- iSeries_io.h DELETED --- --- iSeries_irq.h DELETED --- --- iSeries_pci.h DELETED --- --- iSeries_proc.h DELETED --- --- mf.h DELETED --- --- mf_proc.h DELETED --- --- pmc_proc.h DELETED --- --- veth-proc.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:04
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/syslib In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/syslib Removed Files: ppc405_dma.c Log Message: Merge with 2.5.55 --- ppc405_dma.c DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/iSeries In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/iSeries Removed Files: HvCall.c HvLpConfig.c HvLpEvent.c ItLpQueue.c LparData.c Makefile XmPciLpEvent.c createReleaseData iSeries_FlightRecorder.c iSeries_IoMmTable.c iSeries_IoMmTable.h iSeries_VpdInfo.c iSeries_fixup.c iSeries_irq.c iSeries_ksyms.c iSeries_pci.c iSeries_pci.h iSeries_pci_proc.c iSeries_proc.c iSeries_reset_device.c mf.c mf_proc.c pmc_proc.c rtc.c Log Message: Merge with 2.5.55 --- HvCall.c DELETED --- --- HvLpConfig.c DELETED --- --- HvLpEvent.c DELETED --- --- ItLpQueue.c DELETED --- --- LparData.c DELETED --- --- Makefile DELETED --- --- XmPciLpEvent.c DELETED --- --- createReleaseData DELETED --- --- iSeries_FlightRecorder.c DELETED --- --- iSeries_IoMmTable.c DELETED --- --- iSeries_IoMmTable.h DELETED --- --- iSeries_VpdInfo.c DELETED --- --- iSeries_fixup.c DELETED --- --- iSeries_irq.c DELETED --- --- iSeries_ksyms.c DELETED --- --- iSeries_pci.c DELETED --- --- iSeries_pci.h DELETED --- --- iSeries_pci_proc.c DELETED --- --- iSeries_proc.c DELETED --- --- iSeries_reset_device.c DELETED --- --- mf.c DELETED --- --- mf_proc.c DELETED --- --- pmc_proc.c DELETED --- --- rtc.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:03
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/boot/common In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/boot/common Removed Files: ofcommon.c Log Message: Merge with 2.5.55 --- ofcommon.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:03
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/platforms In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/platforms Removed Files: iSeries_dma.c iSeries_pic.c iSeries_setup.c iSeries_setup.h iSeries_smp.c iSeries_time.c oak.h oak_setup.c oak_setup.h Log Message: Merge with 2.5.55 --- iSeries_dma.c DELETED --- --- iSeries_pic.c DELETED --- --- iSeries_setup.c DELETED --- --- iSeries_setup.h DELETED --- --- iSeries_smp.c DELETED --- --- iSeries_time.c DELETED --- --- oak.h DELETED --- --- oak_setup.c DELETED --- --- oak_setup.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:03
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/boot/prep In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/boot/prep Removed Files: of1275.c of1275.h Log Message: Merge with 2.5.55 --- of1275.c DELETED --- --- of1275.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-07-21 23:50:03
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc/configs In directory sc8-pr-cvs1:/tmp/cvs-serv3146/arch/ppc/configs Removed Files: iSeries_defconfig Log Message: Merge with 2.5.55 --- iSeries_defconfig DELETED --- |