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-03-27 23:47:03
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12986/include/linux Modified Files: elf.h Log Message: Merge with 2.6.11 Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- elf.h 2 Sep 2004 19:51:19 -0000 1.23 +++ elf.h 27 Mar 2005 23:46:48 -0000 1.24 @@ -36,8 +36,9 @@ #define PT_NOTE 4 #define PT_SHLIB 5 #define PT_PHDR 6 -#define PT_LOOS 0x60000000 -#define PT_HIOS 0x6fffffff +#define PT_TLS 7 /* Thread local storage segment */ +#define PT_LOOS 0x60000000 /* OS-specific */ +#define PT_HIOS 0x6fffffff /* OS-specific */ #define PT_LOPROC 0x70000000 #define PT_HIPROC 0x7fffffff #define PT_GNU_EH_FRAME 0x6474e550 @@ -106,6 +107,8 @@ */ #define EM_S390_OLD 0xA390 +#define EM_FRV 0x5441 /* Fujitsu FR-V */ + /* This is the info that is needed to parse the dynamic section of the file */ #define DT_NULL 0 #define DT_NEEDED 1 |
From: Kenn H. <ke...@us...> - 2005-03-27 23:47:03
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/block In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12986/drivers/block Modified Files: scsi_ioctl.c Log Message: Merge with 2.6.11 Index: scsi_ioctl.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/block/scsi_ioctl.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- scsi_ioctl.c 21 Mar 2005 23:44:08 -0000 1.3 +++ scsi_ioctl.c 27 Mar 2005 23:46:46 -0000 1.4 @@ -199,7 +199,7 @@ return 0; } - if (!(type & CMD_WARNED)) { + if (!type) { cmd_type[cmd[0]] = CMD_WARNED; printk(KERN_WARNING "scsi: unknown opcode 0x%02x\n", cmd[0]); } @@ -339,7 +339,8 @@ struct gendisk *bd_disk, Scsi_Ioctl_Command __user *sic) { struct request *rq; - int err, in_len, out_len, bytes, opcode, cmdlen; + int err; + unsigned int in_len, out_len, bytes, opcode, cmdlen; char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE]; /* @@ -356,7 +357,7 @@ bytes = max(in_len, out_len); if (bytes) { - buffer = kmalloc(bytes, q->bounce_gfp | GFP_USER); + buffer = kmalloc(bytes, q->bounce_gfp | GFP_USER| __GFP_NOWARN); if (!buffer) return -ENOMEM; |
From: Kenn H. <ke...@us...> - 2005-03-27 23:47:03
|
Update of /cvsroot/linux-vax/kernel-2.5/fs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12986/fs Modified Files: Makefile Kconfig Log Message: Merge with 2.6.11 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/fs/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 21 Mar 2005 23:44:17 -0000 1.4 +++ Makefile 27 Mar 2005 23:46:47 -0000 1.5 @@ -25,6 +25,7 @@ obj-y += binfmt_script.o obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o +obj-$(CONFIG_BINFMT_ELF_FDPIC) += binfmt_elf_fdpic.o obj-$(CONFIG_BINFMT_SOM) += binfmt_som.o obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o @@ -56,7 +57,6 @@ obj-$(CONFIG_CODA_FS) += coda/ obj-$(CONFIG_MINIX_FS) += minix/ obj-$(CONFIG_FAT_FS) += fat/ -obj-$(CONFIG_UMSDOS_FS) += umsdos/ obj-$(CONFIG_MSDOS_FS) += msdos/ obj-$(CONFIG_VFAT_FS) += vfat/ obj-$(CONFIG_BFS_FS) += bfs/ @@ -95,3 +95,4 @@ obj-$(CONFIG_ODS2_FS) += ods2/ obj-$(CONFIG_HOSTFS) += hostfs/ obj-$(CONFIG_HPPFS) += hppfs/ +obj-$(CONFIG_DEBUG_FS) += debugfs/ Index: Kconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/fs/Kconfig,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Kconfig 21 Mar 2005 23:44:14 -0000 1.4 +++ Kconfig 27 Mar 2005 23:46:48 -0000 1.5 @@ -250,7 +250,7 @@ select NLS help This is a port of IBM's Journaled Filesystem . More information is - available in the file Documentation/filesystems/jfs.txt. + available in the file <file:Documentation/filesystems/jfs.txt>. If you do not intend to use the JFS filesystem, say N. @@ -266,6 +266,18 @@ If you don't know what Access Control Lists are, say N +config JFS_SECURITY + bool "JFS Security Labels" + depends on JFS_FS + help + Security labels support alternative access control models + implemented by security modules like SELinux. This option + enables an extended attribute handler for file security + labels in the jfs filesystem. + + If you are not using a security module that requires using + extended attributes for file security labels, say N. + config JFS_DEBUG bool "JFS debugging" depends on JFS_FS @@ -292,82 +304,7 @@ depends on EXT2_FS_POSIX_ACL || EXT3_FS_POSIX_ACL || JFS_POSIX_ACL || REISERFS_FS_POSIX_ACL || NFSD_V4 default y -config XFS_FS - tristate "XFS filesystem support" - help - XFS is a high performance journaling filesystem which originated - on the SGI IRIX platform. It is completely multi-threaded, can - support large files and large filesystems, extended attributes, - variable block sizes, is extent based, and makes extensive use of - Btrees (directories, extents, free space) to aid both performance - and scalability. - - Refer to the documentation at <http://oss.sgi.com/projects/xfs/> - for complete details. This implementation is on-disk compatible - with the IRIX version of XFS. - - To compile this file system support as a module, choose M here: the - module will be called xfs. Be aware, however, that if the file - system of your root partition is compiled as a module, you'll need - to use an initial ramdisk (initrd) to boot. - -config XFS_RT - bool "Realtime support (EXPERIMENTAL)" - depends on XFS_FS && EXPERIMENTAL - help - If you say Y here you will be able to mount and use XFS filesystems - which contain a realtime subvolume. The realtime subvolume is a - separate area of disk space where only file data is stored. The - realtime subvolume is designed to provide very deterministic - data rates suitable for media streaming applications. - - See the xfs man page in section 5 for a bit more information. - - This feature is unsupported at this time, is not yet fully - functional, and may cause serious problems. - - If unsure, say N. - -config XFS_QUOTA - bool "Quota support" - depends on XFS_FS - help - If you say Y here, you will be able to set limits for disk usage on - a per user and/or a per group basis under XFS. XFS considers quota - information as filesystem metadata and uses journaling to provide a - higher level guarantee of consistency. The on-disk data format for - quota is also compatible with the IRIX version of XFS, allowing a - filesystem to be migrated between Linux and IRIX without any need - for conversion. - - If unsure, say N. More comprehensive documentation can be found in - README.quota in the xfsprogs package. XFS quota can be used either - with or without the generic quota support enabled (CONFIG_QUOTA) - - they are completely independent subsystems. - -config XFS_SECURITY - bool "Security Label support" - depends on XFS_FS - help - Security labels support alternative access control models - implemented by security modules like SELinux. This option - enables an extended attribute namespace for inode security - labels in the XFS filesystem. - - If you are not using a security module that requires using - extended attributes for inode security labels, say N. - -config XFS_POSIX_ACL - bool "POSIX ACL support" - depends on XFS_FS - help - POSIX Access Control Lists (ACLs) support permissions for users and - groups beyond the owner/group/world scheme. - - To learn more about Access Control Lists, visit the POSIX ACLs for - Linux website <http://acl.bestbits.at/>. - - If you don't know what Access Control Lists are, say N. +source "fs/xfs/Kconfig" config MINIX_FS tristate "Minix fs support" @@ -566,9 +503,8 @@ tristate select NLS help - If you want to use one of the FAT-based file systems (the MS-DOS, - VFAT (Windows 95) and UMSDOS (used to run Linux on top of an - ordinary DOS partition) file systems), then you must say Y or M here + If you want to use one of the FAT-based file systems (the MS-DOS and + VFAT (Windows 95) file systems), then you must say Y or M here to include FAT support. You will then be able to mount partitions or diskettes with FAT-based file systems and transparently access the files on them, i.e. MSDOS files will look and behave just like all @@ -600,9 +536,6 @@ fat. Note that if you compile the FAT support as a module, you cannot compile any of the FAT-based file systems into the kernel -- they will have to be modules as well. - The file system of your root partition (the one containing the - directory /) cannot be a module, so don't say M here if you intend - to use UMSDOS as your root file system. config MSDOS_FS tristate "MSDOS fs support" @@ -619,10 +552,6 @@ transparent, i.e. the MSDOS files look and behave just like all other Unix files. - If you want to use UMSDOS, the Unix-like file system on top of a - DOS file system, which allows you to run Linux from within a DOS - partition without repartitioning, you'll have to say Y or M here. - If you have Windows 95 or Windows NT installed on your MSDOS partitions, you should use the VFAT file system (say Y to "VFAT fs support" below), or you will not be able to see the long filenames @@ -642,11 +571,6 @@ used by Windows 95, Windows 98, Windows NT 4.0, and the Unix programs from the mtools package. - You cannot use the VFAT file system for your Linux root partition - (the one containing the directory /); use UMSDOS instead if you - want to run Linux from within a DOS partition (i.e. say Y to - "Unix like fs on top of std MSDOS fs", below). - The VFAT support enlarges your kernel by about 10 KB and it only works if you said Y to the "DOS FAT fs support" above. Please read the file <file:Documentation/filesystems/vfat.txt> for details. If @@ -677,35 +601,6 @@ If unsure, you shouldn't set "utf8" here. See <file:Documentation/filesystems/vfat.txt> for more information. -config UMSDOS_FS -#dep_tristate ' UMSDOS: Unix-like file system on top of standard MSDOS fs' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS -# UMSDOS is temprory broken - bool - help - Say Y here if you want to run Linux from within an existing DOS - partition of your hard drive. The advantage of this is that you can - get away without repartitioning your hard drive (which often implies - backing everything up and restoring afterwards) and hence you're - able to quickly try out Linux or show it to your friends; the - disadvantage is that Linux becomes susceptible to DOS viruses and - that UMSDOS is somewhat slower than ext2fs. Another use of UMSDOS - is to write files with long unix filenames to MSDOS floppies; it - also allows Unix-style soft-links and owner/permissions of files on - MSDOS floppies. You will need a program called umssync in order to - make use of UMSDOS; read - <file:Documentation/filesystems/umsdos.txt>. - - To get utilities for initializing/checking UMSDOS file system, or - latest patches and/or information, visit the UMSDOS home page at - <http://www.voyager.hr/~mnalis/umsdos/>. - - This option enlarges your kernel by about 28 KB and it only works if - you said Y to both "DOS FAT fs support" and "MSDOS fs support" - above. To compile this as a module, choose M here: the module will be - called umsdos. Note that the file system of your root partition - (the one containing the directory /) cannot be a module, so saying M - could be dangerous. If unsure, say N. - config NTFS_FS tristate "NTFS file system support" select NLS @@ -1057,10 +952,10 @@ help The BeOS File System (BeFS) is the native file system of Be, Inc's BeOS. Notable features include support for arbitrary attributes - on files and directories, and database-like indices on selected + on files and directories, and database-like indeces on selected attributes. (Also note that this driver doesn't make those features available at this time). It is a 64 bit filesystem, so it supports - extreemly large volumes and files. + extremly large volumes and files. If you use this filesystem, you should also say Y to at least one of the NLS (native language support) options below. @@ -1179,6 +1074,15 @@ Say 'N' unless you have NAND flash. +config JFFS2_FS_NOR_ECC + bool "JFFS2 support for ECC'd NOR flash (EXPERIMENTAL)" + depends on JFFS2_FS && EXPERIMENTAL + default n + help + This enables the experimental support for NOR flash with transparent + ECC for JFFS2. This type of flash chip is not common, however it is + available from ST Microelectronics. + config JFFS2_COMPRESSION_OPTIONS bool "Advanced compression options for JFFS2" depends on JFFS2_FS @@ -1201,7 +1105,7 @@ help Zlib is designed to be a free, general-purpose, legally unencumbered, lossless data-compression library for use on virtually any computer - hardware and operating system. See http://www.gzip.org/zlib/ for + hardware and operating system. See <http://www.gzip.org/zlib/> for further information. Say 'Y' if unsure. @@ -1226,7 +1130,7 @@ depends on JFFS2_FS help You can set here the default compression mode of JFFS2 from - the avaiable compression modes. Don't touch if unsure. + the available compression modes. Don't touch if unsure. config JFFS2_CMODE_NONE bool "no compression" @@ -1317,7 +1221,7 @@ config QNX4FS_RW bool "QNX4FS write support (DANGEROUS)" - depends on QNX4FS_FS && EXPERIMENTAL + depends on QNX4FS_FS && EXPERIMENTAL && BROKEN help Say Y if you want to test write support for QNX4 file systems. @@ -1505,6 +1409,7 @@ depends on INET select LOCKD select SUNRPC + select EXPORTFS help If you want your Linux box to act as an NFS *server*, so that other computers on your local network which support NFS can access certain @@ -1578,7 +1483,6 @@ config EXPORTFS tristate - default NFSD config SUNRPC tristate @@ -1811,7 +1715,7 @@ If you say Y here, you will get an experimental Andrew File System driver. It currently only supports unsecured read-only AFS access. - See Documentation/filesystems/afs.txt for more intormation. + See <file:Documentation/filesystems/afs.txt> for more intormation. If unsure, say N. |
From: Kenn H. <ke...@us...> - 2005-03-27 23:47:03
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12986/drivers/scsi Modified Files: Makefile Log Message: Merge with 2.6.11 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/Makefile,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- Makefile 21 Mar 2005 23:33:32 -0000 1.39 +++ Makefile 27 Mar 2005 23:46:47 -0000 1.40 @@ -28,7 +28,7 @@ # -------------------------- obj-$(CONFIG_SCSI_SPI_ATTRS) += scsi_transport_spi.o obj-$(CONFIG_SCSI_FC_ATTRS) += scsi_transport_fc.o - +obj-$(CONFIG_SCSI_ISCSI_ATTRS) += scsi_transport_iscsi.o obj-$(CONFIG_SCSI_AMIGA7XX) += amiga7xx.o 53c7xx.o obj-$(CONFIG_A3000_SCSI) += a3000.o wd33c93.o @@ -130,6 +130,7 @@ obj-$(CONFIG_SCSI_SATA_SVW) += libata.o sata_svw.o obj-$(CONFIG_SCSI_ATA_PIIX) += libata.o ata_piix.o obj-$(CONFIG_SCSI_SATA_PROMISE) += libata.o sata_promise.o +obj-$(CONFIG_SCSI_SATA_QSTOR) += libata.o sata_qstor.o obj-$(CONFIG_SCSI_SATA_SIL) += libata.o sata_sil.o obj-$(CONFIG_SCSI_SATA_VIA) += libata.o sata_via.o obj-$(CONFIG_SCSI_SATA_VITESSE) += libata.o sata_vsc.o @@ -148,7 +149,7 @@ scsi_mod-y += scsi.o hosts.o scsi_ioctl.o constants.o \ scsicam.o scsi_error.o scsi_lib.o \ - scsi_scan.o scsi_syms.o scsi_sysfs.o \ + scsi_scan.o scsi_sysfs.o \ scsi_devinfo.o scsi_mod-$(CONFIG_SYSCTL) += scsi_sysctl.o scsi_mod-$(CONFIG_SCSI_PROC_FS) += scsi_proc.o |
From: Kenn H. <ke...@us...> - 2005-03-27 23:47:03
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12986/scripts Modified Files: Makefile.build Log Message: Merge with 2.6.11 Index: Makefile.build =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/scripts/Makefile.build,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- Makefile.build 21 Mar 2005 23:44:18 -0000 1.22 +++ Makefile.build 27 Mar 2005 23:46:48 -0000 1.23 @@ -83,7 +83,6 @@ # Linus' kernel sanity checking tool ifneq ($(KBUILD_CHECKSRC),0) - CHECKFLAGS += -I$(shell $(CC) -print-file-name=include) ifeq ($(KBUILD_CHECKSRC),2) quiet_cmd_force_checksrc = CHECK $< cmd_force_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $< ; |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:27
|
Update of /cvsroot/linux-vax/kernel-2.5/sound/core/seq/oss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/sound/core/seq/oss Removed Files: seq_oss_misc.c Log Message: Merge with 2.6.11 --- seq_oss_misc.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:27
|
Update of /cvsroot/linux-vax/kernel-2.5/sound/oss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/sound/oss Removed Files: cs4232.h Log Message: Merge with 2.6.11 --- cs4232.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:27
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/scripts Removed Files: README.Menuconfig Log Message: Merge with 2.6.11 --- README.Menuconfig DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:27
|
Update of /cvsroot/linux-vax/kernel-2.5/net/xfrm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/net/xfrm Removed Files: xfrm_export.c Log Message: Merge with 2.6.11 --- xfrm_export.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:26
|
Update of /cvsroot/linux-vax/kernel-2.5/net/sunrpc/auth_gss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/net/sunrpc/auth_gss Removed Files: gss_pseudoflavors.c sunrpcgss_syms.c Log Message: Merge with 2.6.11 --- gss_pseudoflavors.c DELETED --- --- sunrpcgss_syms.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:25
|
Update of /cvsroot/linux-vax/kernel-2.5/net/sunrpc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/net/sunrpc Removed Files: svcauth_des.c Log Message: Merge with 2.6.11 --- svcauth_des.c DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/net/ipv4/netfilter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/net/ipv4/netfilter Removed Files: ip_fw_compat.c ip_fw_compat.h ip_fw_compat_masq.c ip_fw_compat_redir.c ipchains_core.c ipfwadm_core.c Log Message: Merge with 2.6.11 --- ip_fw_compat_redir.c DELETED --- --- ip_fw_compat.h DELETED --- --- ipfwadm_core.c DELETED --- --- ip_fw_compat.c DELETED --- --- ipchains_core.c DELETED --- --- ip_fw_compat_masq.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/sound In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/sound Removed Files: soundmem.h Log Message: Merge with 2.6.11 --- soundmem.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux/netfilter_ipv4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/linux/netfilter_ipv4 Removed Files: compat_firewall.h ipchains_core.h ipfwadm_core.h Log Message: Merge with 2.6.11 --- ipfwadm_core.h DELETED --- --- ipchains_core.h DELETED --- --- compat_firewall.h DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/linux Removed Files: affs_fs_i.h affs_fs_sb.h blk.h msdos_fs_i.h msdos_fs_sb.h umsdos_fs.h umsdos_fs.p umsdos_fs_i.h Log Message: Merge with 2.6.11 --- umsdos_fs.p DELETED --- --- umsdos_fs_i.h DELETED --- --- affs_fs_i.h DELETED --- --- msdos_fs_sb.h DELETED --- --- umsdos_fs.h DELETED --- --- affs_fs_sb.h DELETED --- --- msdos_fs_i.h DELETED --- --- blk.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:23
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc64/iSeries In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-ppc64/iSeries Removed Files: ItLpPaca.h iSeries_VpdInfo.h Log Message: Merge with 2.6.11 --- ItLpPaca.h DELETED --- --- iSeries_VpdInfo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:22
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-parisc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-parisc Removed Files: bootdata.h Log Message: Merge with 2.6.11 --- bootdata.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:22
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-mips Removed Files: ng1.h ng1hw.h Log Message: Merge with 2.6.11 --- ng1hw.h DELETED --- --- ng1.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:22
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips/it8172 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-mips/it8172 Removed Files: it8172_lpc.h Log Message: Merge with 2.6.11 --- it8172_lpc.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:21
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68knommu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-m68knommu Removed Files: keyboard.h nap.h Log Message: Merge with 2.6.11 --- nap.h DELETED --- --- keyboard.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:21
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ia64/sn In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-ia64/sn Removed Files: router.h Log Message: Merge with 2.6.11 --- router.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:21
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm26 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-arm26 Removed Files: calls.h ian_char.h Log Message: Merge with 2.6.11 --- calls.h DELETED --- --- ian_char.h DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:21
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68k In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/include/asm-m68k Removed Files: adb_mouse.h atari_SCCserial.h Log Message: Merge with 2.6.11 --- atari_SCCserial.h DELETED --- --- adb_mouse.h DELETED --- |
Update of /cvsroot/linux-vax/kernel-2.5/fs/umsdos In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/fs/umsdos Removed Files: Makefile README-WIP.txt dir.c emd.c inode.c ioctl.c mangle.c namei.c rdir.c specs Log Message: Merge with 2.6.11 --- README-WIP.txt DELETED --- --- mangle.c DELETED --- --- namei.c DELETED --- --- ioctl.c DELETED --- --- Makefile DELETED --- --- inode.c DELETED --- --- rdir.c DELETED --- --- specs DELETED --- --- emd.c DELETED --- --- dir.c DELETED --- |
From: Kenn H. <ke...@us...> - 2005-03-27 18:52:20
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/jfs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/fs/jfs Removed Files: jfs_defragfs.h Log Message: Merge with 2.6.11 --- jfs_defragfs.h DELETED --- |