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: Kenn H. <ke...@us...> - 2003-08-28 00:42:13
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/base In directory sc8-pr-cvs1:/tmp/cvs-serv16408/drivers/base Removed Files: hotplug.c intf.c Log Message: Merge with 2.5.69 --- hotplug.c DELETED --- --- intf.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-28 00:42:13
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/sparc64/oprofile In directory sc8-pr-cvs1:/tmp/cvs-serv16408/arch/sparc64/oprofile Removed Files: timer_int.c Log Message: Merge with 2.5.69 --- timer_int.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-28 00:42:13
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv16408/drivers/scsi Modified Files: Makefile Log Message: Merge with 2.5.69 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/scsi/Makefile,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- Makefile 26 Aug 2003 23:59:56 -0000 1.24 +++ Makefile 28 Aug 2003 00:42:08 -0000 1.25 @@ -88,6 +88,7 @@ obj-$(CONFIG_SCSI_MCA_53C9X) += NCR53C9x.o mca_53c9x.o obj-$(CONFIG_SCSI_IBMMCA) += ibmmca.o obj-$(CONFIG_SCSI_EATA) += eata.o +obj-$(CONFIG_SCSI_DC395x) += dc395x.o obj-$(CONFIG_SCSI_DC390T) += tmscsim.o obj-$(CONFIG_SCSI_AM53C974) += AM53C974.o obj-$(CONFIG_SCSI_MEGARAID) += megaraid.o |
From: Kenn H. <ke...@us...> - 2003-08-28 00:42:12
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ppc64/oprofile In directory sc8-pr-cvs1:/tmp/cvs-serv16408/arch/ppc64/oprofile Removed Files: timer_int.c Log Message: Merge with 2.5.69 --- timer_int.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-28 00:42:12
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/i386/oprofile In directory sc8-pr-cvs1:/tmp/cvs-serv16408/arch/i386/oprofile Removed Files: timer_int.c Log Message: Merge with 2.5.69 --- timer_int.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-28 00:12:46
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv10422/arch/vax Modified Files: vmlinux.lds.S Log Message: Merge with 2.5.68 Index: vmlinux.lds.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/vmlinux.lds.S,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- vmlinux.lds.S 24 Aug 2003 12:42:02 -0000 1.8 +++ vmlinux.lds.S 28 Aug 2003 00:12:39 -0000 1.9 @@ -69,7 +69,11 @@ /* will be freed after init */ . = ALIGN(4096); /* Init code and data */ __init_begin = .; - .init.text : { *(.init.text) } + .init.text : { + _sinittext = .; + *(.init.text) + _einittext = .; + } .init.data : { *(.init.data) } . = ALIGN(16); __setup_start = .; |
From: Kenn H. <ke...@us...> - 2003-08-28 00:12:34
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv10273/include/asm-vax Modified Files: bitops.h Log Message: 2.5.68 needs definitions for ext2_set/clear_bit_atomic Index: bitops.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/bitops.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- bitops.h 16 Feb 2003 00:23:21 -0000 1.9 +++ bitops.h 28 Aug 2003 00:12:31 -0000 1.10 @@ -467,7 +467,9 @@ #ifdef __KERNEL__ #define ext2_set_bit __test_and_set_bit +#define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a) #define ext2_clear_bit __test_and_clear_bit +#define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a) #define ext2_test_bit test_bit #define ext2_find_first_zero_bit find_first_zero_bit #define ext2_find_next_zero_bit find_next_zero_bit |
From: Kenn H. <ke...@us...> - 2003-08-28 00:09:56
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv9862/arch/vax Modified Files: 460.config Kconfig defconfig Log Message: Tidy up config a little bit. Use core arch-indep Kconfigs where possible. Index: 460.config =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/460.config,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- 460.config 18 May 2003 18:27:21 -0000 1.14 +++ 460.config 28 Aug 2003 00:09:53 -0000 1.15 @@ -3,25 +3,35 @@ # CONFIG_VAX=y CONFIG_MMU=y -CONFIG_SWAP=y CONFIG_UID16=y CONFIG_RWSEM_GENERIC_SPINLOCK=y # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set - -# -# General setup -# CONFIG_BINFMT_ELF=y CONFIG_ELF_KERNEL=y CONFIG_KCORE_ELF=y # CONFIG_PREEMPT is not set -CONFIG_NET=y + +# +# Code maturity level options +# +# CONFIG_EXPERIMENTAL is not set + +# +# General setup +# +CONFIG_SWAP=y CONFIG_SYSVIPC=y # CONFIG_BSD_PROCESS_ACCT is not set CONFIG_SYSCTL=y +CONFIG_LOG_BUF_SHIFT=14 + +# +# Loadable module support +# +# CONFIG_MODULES is not set # -# Bus support +# VAX Bus support # # CONFIG_QBUS is not set CONFIG_VSBUS=y @@ -36,14 +46,19 @@ # CONFIG_BLK_DEV_RAM is not set # +# Networking support +# +CONFIG_NET=y + +# # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_NETLINK_DEV=y # CONFIG_NETFILTER is not set -# CONFIG_FILTER is not set CONFIG_UNIX=y +# CONFIG_NET_KEY is not set CONFIG_INET=y # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set @@ -55,6 +70,10 @@ # CONFIG_NET_IPGRE is not set # CONFIG_INET_ECN is not set # CONFIG_SYN_COOKIES is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_XFRM_USER is not set # CONFIG_VLAN_8021Q is not set # CONFIG_LLC is not set # CONFIG_DECNET is not set @@ -66,68 +85,111 @@ # CONFIG_NET_SCHED is not set # -# SCSI support +# Network testing # -# CONFIG_SCSI is not set +# CONFIG_NET_PKTGEN is not set +CONFIG_NETDEVICES=y +# CONFIG_DUMMY is not set +# CONFIG_BONDING is not set +# CONFIG_EQUALIZER is not set +# CONFIG_TUN is not set # -# Network device support +# Ethernet (10 or 100Mbit) # -CONFIG_NETDEVICES=y -# CONFIG_DUMMY is not set +# CONFIG_NET_ETHERNET is not set + +# +# Ethernet (1000 Mbit) +# +# CONFIG_PPP is not set # CONFIG_SLIP is not set -CONFIG_PPP=y # -# CCP compressors for PPP are only built as modules. +# Wireless LAN (non-hamradio) +# +# CONFIG_NET_RADIO is not set + +# +# Token Ring devices (depends on LLC=y) +# + +# +# Wan interfaces +# +# CONFIG_WAN is not set + +# +# VAX Network device support # CONFIG_VAX_LANCE=y # CONFIG_VAX_SGEC is not set # +# SCSI support +# +# CONFIG_SCSI is not set + +# # File systems # -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_REISERFS_FS is not set +CONFIG_EXT2_FS=y +# CONFIG_EXT2_FS_XATTR is not set # CONFIG_EXT3_FS is not set # CONFIG_JBD is not set -# CONFIG_FAT_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_TMPFS is not set -CONFIG_RAMFS=y -# CONFIG_ISO9660_FS is not set +# CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set # CONFIG_MINIX_FS is not set -# CONFIG_VXFS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_AUTOFS4_FS is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +# CONFIG_FAT_FS is not set # CONFIG_NTFS_FS is not set -# CONFIG_HPFS_FS is not set + +# +# Pseudo filesystems +# CONFIG_PROC_FS=y CONFIG_DEVPTS_FS=y +CONFIG_TMPFS=y +CONFIG_RAMFS=y + +# +# Miscellaneous filesystems +# +# CONFIG_CRAMFS is not set +# CONFIG_VXFS_FS is not set +# CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set -# CONFIG_ROMFS_FS is not set -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set # CONFIG_SYSV_FS is not set -# CONFIG_UDF_FS is not set # CONFIG_UFS_FS is not set -# CONFIG_XFS_FS is not set # # Network File Systems # -# CONFIG_CODA_FS is not set CONFIG_NFS_FS=y # CONFIG_NFS_V3 is not set -CONFIG_ROOT_NFS=y # CONFIG_NFSD is not set -CONFIG_SUNRPC=y +CONFIG_ROOT_NFS=y CONFIG_LOCKD=y # CONFIG_EXPORTFS is not set -# CONFIG_CIFS is not set +CONFIG_SUNRPC=y # CONFIG_SMB_FS is not set +# CONFIG_CIFS is not set # CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set # # Partition Types @@ -144,6 +206,7 @@ # CONFIG_SOLARIS_X86_PARTITION is not set # CONFIG_UNIXWARE_DISKLABEL is not set # CONFIG_LDM_PARTITION is not set +# CONFIG_NEC98_PARTITION is not set # CONFIG_SGI_PARTITION is not set CONFIG_ULTRIX_PARTITION=y # CONFIG_SUN_PARTITION is not set @@ -171,7 +234,7 @@ # # Security options # -CONFIG_SECURITY_CAPABILITIES=y +# CONFIG_SECURITY is not set # # Cryptographic options Index: Kconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Kconfig,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Kconfig 24 Aug 2003 12:40:12 -0000 1.4 +++ Kconfig 28 Aug 2003 00:09:53 -0000 1.5 @@ -45,14 +45,9 @@ bool "Preemptible kernel (currently broken)" default n -config NET - bool "Networking support" - default y - - source "init/Kconfig" -menu "Bus support" +menu "VAX Bus support" config QBUS bool "Support for Q-bus" @@ -71,110 +66,51 @@ source "drivers/block/Kconfig" -if NET source "net/Kconfig" -endif - - -menu "SCSI support" - -config SCSI - bool "SCSI support" - default n - -if SCSI - -comment "SCSI support type (disk, tape, CDROM)" - -config BLK_DEV_SD - bool "SCSI disk support" - default y - -config CHR_DEV_ST - bool "SCSI tape support" - default y -config BLK_DEV_SR - bool "SCSI CDROM support" - default y - -config CHR_DEV_SG - bool "SCSI generic device support" - default y - -comment "Some SCSI devices (e.g. CD jukebox) support multiple LUNs" +if NETDEVICES +menu "VAX Network device support" -config SCSI_MULTI_LUN - bool "Probe all LUNs on each SCSI device" +config VAX_LANCE + bool "LANCE ethernet controller support" default n -config SCSI_CONSTANTS - bool "Verbose SCSI error reporting" - default y - -comment "SCSI low-level drivers" - -config SCSI_VAX_5380 - bool "NCR53C80 Scsi Driver (used in VAXstation/MicroVAX 3100 family)" +config VAX_SGEC + bool "SGEC ethernet controller support (EXPERIMENTAL)" default n -config SCSI_VAX_53C94 - bool "NCR53C94 Scsi Driver (used in VAXstation 4000 family) (NOT WORKING)" +config DELQA + bool "DELQA/DEQNA Q-bus ethernet controller support" + depends QBUS default n -endif - endmenu +endif -if NET -menu "Network device support" - -config NETDEVICES - bool "Network device support" - -if NETDEVICES -config DUMMY - bool "Dummy net driver support" - default n - -config SLIP - bool "SLIP (serial line) support" - default n -config SLIP_COMPRESSED - bool " CSLIP compressed headers" - depends SLIP - default y +menu "SCSI support" -config SLIP_SMART - bool " Keepalive and linefill" - depends SLIP +config SCSI + bool "SCSI support" default n -config PPP - bool "PPP (point-to-point) support" - default n +if SCSI -comment "CCP compressors for PPP are only built as modules." - depends PPP +source "drivers/scsi/Kconfig" -config VAX_LANCE - bool "LANCE ethernet controller support" - default n +comment "VAX SCSI low-level drivers" -config VAX_SGEC - bool "SGEC ethernet controller support (EXPERIMENTAL)" +config SCSI_VAX_5380 + bool "NCR53C80 Scsi Driver (used in VAXstation/MicroVAX 3100 family)" default n -config DELQA - bool "DELQA/DEQNA Q-bus ethernet controller support" - depends QBUS +config SCSI_VAX_53C94 + bool "NCR53C94 Scsi Driver (used in VAXstation 4000 family) (NOT WORKING)" default n endif endmenu -endif source "fs/Kconfig" Index: defconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/defconfig,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- defconfig 18 May 2003 18:27:21 -0000 1.10 +++ defconfig 28 Aug 2003 00:09:53 -0000 1.11 @@ -3,25 +3,35 @@ # CONFIG_VAX=y CONFIG_MMU=y -CONFIG_SWAP=y CONFIG_UID16=y CONFIG_RWSEM_GENERIC_SPINLOCK=y # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set - -# -# General setup -# CONFIG_BINFMT_ELF=y CONFIG_ELF_KERNEL=y CONFIG_KCORE_ELF=y # CONFIG_PREEMPT is not set -CONFIG_NET=y + +# +# Code maturity level options +# +# CONFIG_EXPERIMENTAL is not set + +# +# General setup +# +CONFIG_SWAP=y CONFIG_SYSVIPC=y # CONFIG_BSD_PROCESS_ACCT is not set CONFIG_SYSCTL=y +CONFIG_LOG_BUF_SHIFT=14 + +# +# Loadable module support +# +# CONFIG_MODULES is not set # -# Bus support +# VAX Bus support # # CONFIG_QBUS is not set CONFIG_VSBUS=y @@ -36,14 +46,19 @@ # CONFIG_BLK_DEV_RAM is not set # +# Networking support +# +CONFIG_NET=y + +# # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_NETLINK_DEV=y # CONFIG_NETFILTER is not set -# CONFIG_FILTER is not set CONFIG_UNIX=y +# CONFIG_NET_KEY is not set CONFIG_INET=y # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set @@ -55,6 +70,10 @@ # CONFIG_NET_IPGRE is not set # CONFIG_INET_ECN is not set # CONFIG_SYN_COOKIES is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_XFRM_USER is not set # CONFIG_VLAN_8021Q is not set # CONFIG_LLC is not set # CONFIG_DECNET is not set @@ -66,68 +85,111 @@ # CONFIG_NET_SCHED is not set # -# SCSI support +# Network testing # -# CONFIG_SCSI is not set +# CONFIG_NET_PKTGEN is not set +CONFIG_NETDEVICES=y +# CONFIG_DUMMY is not set +# CONFIG_BONDING is not set +# CONFIG_EQUALIZER is not set +# CONFIG_TUN is not set # -# Network device support +# Ethernet (10 or 100Mbit) # -CONFIG_NETDEVICES=y -# CONFIG_DUMMY is not set +# CONFIG_NET_ETHERNET is not set + +# +# Ethernet (1000 Mbit) +# +# CONFIG_PPP is not set # CONFIG_SLIP is not set -CONFIG_PPP=y # -# CCP compressors for PPP are only built as modules. +# Wireless LAN (non-hamradio) +# +# CONFIG_NET_RADIO is not set + +# +# Token Ring devices (depends on LLC=y) +# + +# +# Wan interfaces +# +# CONFIG_WAN is not set + +# +# VAX Network device support # CONFIG_VAX_LANCE=y # CONFIG_VAX_SGEC is not set # +# SCSI support +# +# CONFIG_SCSI is not set + +# # File systems # -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_REISERFS_FS is not set +CONFIG_EXT2_FS=y +# CONFIG_EXT2_FS_XATTR is not set # CONFIG_EXT3_FS is not set # CONFIG_JBD is not set -# CONFIG_FAT_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_TMPFS is not set -CONFIG_RAMFS=y -# CONFIG_ISO9660_FS is not set +# CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set # CONFIG_MINIX_FS is not set -# CONFIG_VXFS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_AUTOFS4_FS is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +# CONFIG_FAT_FS is not set # CONFIG_NTFS_FS is not set -# CONFIG_HPFS_FS is not set + +# +# Pseudo filesystems +# CONFIG_PROC_FS=y CONFIG_DEVPTS_FS=y +CONFIG_TMPFS=y +CONFIG_RAMFS=y + +# +# Miscellaneous filesystems +# +# CONFIG_CRAMFS is not set +# CONFIG_VXFS_FS is not set +# CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set -# CONFIG_ROMFS_FS is not set -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set # CONFIG_SYSV_FS is not set -# CONFIG_UDF_FS is not set # CONFIG_UFS_FS is not set -# CONFIG_XFS_FS is not set # # Network File Systems # -# CONFIG_CODA_FS is not set CONFIG_NFS_FS=y # CONFIG_NFS_V3 is not set -CONFIG_ROOT_NFS=y # CONFIG_NFSD is not set -CONFIG_SUNRPC=y +CONFIG_ROOT_NFS=y CONFIG_LOCKD=y # CONFIG_EXPORTFS is not set -# CONFIG_CIFS is not set +CONFIG_SUNRPC=y # CONFIG_SMB_FS is not set +# CONFIG_CIFS is not set # CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set # # Partition Types @@ -144,6 +206,7 @@ # CONFIG_SOLARIS_X86_PARTITION is not set # CONFIG_UNIXWARE_DISKLABEL is not set # CONFIG_LDM_PARTITION is not set +# CONFIG_NEC98_PARTITION is not set # CONFIG_SGI_PARTITION is not set CONFIG_ULTRIX_PARTITION=y # CONFIG_SUN_PARTITION is not set @@ -171,7 +234,7 @@ # # Security options # -CONFIG_SECURITY_CAPABILITIES=y +# CONFIG_SECURITY is not set # # Cryptographic options |
From: Kenn H. <ke...@us...> - 2003-08-27 23:48:00
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv5627 Modified Files: Makefile Log Message: Merge with 2.5.68 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.75 retrieving revision 1.76 diff -u -r1.75 -r1.76 --- Makefile 26 Aug 2003 23:59:55 -0000 1.75 +++ Makefile 27 Aug 2003 23:47:19 -0000 1.76 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 67 +SUBLEVEL = 68 EXTRAVERSION = # *DOCUMENTATION* @@ -342,17 +342,9 @@ echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd endef -ifdef CONFIG_SMP -# Final awk script makes sure per-cpu vars are in per-cpu section, as -# old gcc (eg egcs 2.92.11) ignores section attribute if uninitialized. - -check_per_cpu = $(AWK) -f $(srctree)/scripts/per-cpu-check.awk < System.map -endif - define rule_vmlinux $(rule_vmlinux__) $(NM) $@ | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map - $(check_per_cpu) endef LDFLAGS_vmlinux += -T arch/$(ARCH)/vmlinux.lds.s |
From: Kenn H. <ke...@us...> - 2003-08-27 23:48:00
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/ia64/sn In directory sc8-pr-cvs1:/tmp/cvs-serv5627/arch/ia64/sn Added Files: Makefile Log Message: Merge with 2.5.68 |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:29
|
Update of /cvsroot/linux-vax/kernel-2.5/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5627/scripts Removed Files: per-cpu-check.awk Log Message: Merge with 2.5.68 --- per-cpu-check.awk DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:29
|
Update of /cvsroot/linux-vax/kernel-2.5/sound/pci/rme9652 In directory sc8-pr-cvs1:/tmp/cvs-serv5627/sound/pci/rme9652 Removed Files: digiface_firmware.dat multiface_firmware.dat Log Message: Merge with 2.5.68 --- digiface_firmware.dat DELETED --- --- multiface_firmware.dat DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:29
|
Update of /cvsroot/linux-vax/kernel-2.5/sound/core In directory sc8-pr-cvs1:/tmp/cvs-serv5627/sound/core Removed Files: memory_wrapper.c Log Message: Merge with 2.5.68 --- memory_wrapper.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:29
|
Update of /cvsroot/linux-vax/kernel-2.5/lib In directory sc8-pr-cvs1:/tmp/cvs-serv5627/lib Modified Files: radix-tree.c Log Message: Merge with 2.5.68 Index: radix-tree.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/lib/radix-tree.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- radix-tree.c 19 Aug 2003 19:30:15 -0000 1.2 +++ radix-tree.c 27 Aug 2003 23:47:23 -0000 1.3 @@ -349,15 +349,18 @@ * @index: index key * * Remove the item at @index from the radix tree rooted at @root. + * + * Returns the address of the deleted item, or NULL if it was not present. */ -int radix_tree_delete(struct radix_tree_root *root, unsigned long index) +void *radix_tree_delete(struct radix_tree_root *root, unsigned long index) { struct radix_tree_path path[RADIX_TREE_MAX_PATH], *pathp = path; unsigned int height, shift; + void *ret = NULL; height = root->height; if (index > radix_tree_maxindex(height)) - return -ENOENT; + goto out; shift = (height-1) * RADIX_TREE_MAP_SHIFT; pathp->node = NULL; @@ -365,7 +368,7 @@ while (height > 0) { if (*pathp->slot == NULL) - return -ENOENT; + goto out; pathp[1].node = *pathp[0].slot; pathp[1].slot = (struct radix_tree_node **) @@ -375,8 +378,9 @@ height--; } - if (*pathp[0].slot == NULL) - return -ENOENT; + ret = *pathp[0].slot; + if (ret == NULL) + goto out; *pathp[0].slot = NULL; while (pathp[0].node && --pathp[0].node->count == 0) { @@ -387,8 +391,8 @@ if (root->rnode == NULL) root->height = 0; /* Empty tree, we can reset the height */ - - return 0; +out: + return ret; } EXPORT_SYMBOL(radix_tree_delete); |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:28
|
Update of /cvsroot/linux-vax/kernel-2.5/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv5627/kernel Modified Files: panic.c Log Message: Merge with 2.5.68 Index: panic.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/kernel/panic.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- panic.c 21 Jul 2003 23:52:05 -0000 1.7 +++ panic.c 27 Aug 2003 23:47:23 -0000 1.8 @@ -20,6 +20,8 @@ asmlinkage void sys_sync(void); /* it's really int */ int panic_timeout; +int panic_on_oops; +int tainted; struct notifier_block *panic_notifier_list; @@ -28,7 +30,6 @@ panic_timeout = simple_strtoul(str, NULL, 0); return 1; } - __setup("panic=", panic_setup); /** @@ -51,7 +52,7 @@ bust_spinlocks(1); va_start(args, fmt); - vsprintf(buf, fmt, args); + vsnprintf(buf, sizeof(buf), fmt, args); va_end(args); printk(KERN_EMERG "Kernel panic: %s\n",buf); if (in_interrupt()) @@ -126,5 +127,3 @@ snprintf(buf, sizeof(buf), "Not tainted"); return(buf); } - -int tainted = 0; |
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-s390x In directory sc8-pr-cvs1:/tmp/cvs-serv5627/include/asm-s390x Removed Files: a.out.h atomic.h bitops.h bug.h bugs.h byteorder.h cache.h cacheflush.h ccwdev.h ccwgroup.h checksum.h cio.h compat.h cpcmd.h current.h dasd.h debug.h delay.h div64.h dma-mapping.h dma.h ebcdic.h elf.h errno.h fcntl.h gdb-stub.h hardirq.h idals.h init.h io.h ioctl.h ioctls.h ipc.h ipcbuf.h irq.h kmap_types.h linkage.h lowcore.h mman.h mmu.h mmu_context.h module.h msgbuf.h namei.h page.h param.h pci.h percpu.h pgalloc.h pgtable.h poll.h posix_types.h processor.h ptrace.h qdio.h queue.h resource.h rmap.h rwsem.h s390_ext.h scatterlist.h segment.h semaphore.h sembuf.h setup.h shmbuf.h shmparam.h sigcontext.h siginfo.h signal.h sigp.h smp.h socket.h sockios.h spinlock.h stat.h statfs.h string.h suspend.h system.h tape390.h termbits.h termios.h thread_info.h timex.h tlb.h tlbflush.h todclk.h topology.h types.h uaccess.h ucontext.h unaligned.h unistd.h user.h vtoc.h xor.h Log Message: Merge with 2.5.68 --- a.out.h DELETED --- --- atomic.h DELETED --- --- bitops.h DELETED --- --- bug.h DELETED --- --- bugs.h DELETED --- --- byteorder.h DELETED --- --- cache.h DELETED --- --- cacheflush.h DELETED --- --- ccwdev.h DELETED --- --- ccwgroup.h DELETED --- --- checksum.h DELETED --- --- cio.h DELETED --- --- compat.h DELETED --- --- cpcmd.h DELETED --- --- current.h DELETED --- --- dasd.h DELETED --- --- debug.h DELETED --- --- delay.h DELETED --- --- div64.h DELETED --- --- dma-mapping.h DELETED --- --- dma.h DELETED --- --- ebcdic.h DELETED --- --- elf.h DELETED --- --- errno.h DELETED --- --- fcntl.h DELETED --- --- gdb-stub.h DELETED --- --- hardirq.h DELETED --- --- idals.h DELETED --- --- init.h DELETED --- --- io.h DELETED --- --- ioctl.h DELETED --- --- ioctls.h DELETED --- --- ipc.h DELETED --- --- ipcbuf.h DELETED --- --- irq.h DELETED --- --- kmap_types.h DELETED --- --- linkage.h DELETED --- --- lowcore.h DELETED --- --- mman.h DELETED --- --- mmu.h DELETED --- --- mmu_context.h DELETED --- --- module.h DELETED --- --- msgbuf.h DELETED --- --- namei.h DELETED --- --- page.h DELETED --- --- param.h DELETED --- --- pci.h DELETED --- --- percpu.h DELETED --- --- pgalloc.h DELETED --- --- pgtable.h DELETED --- --- poll.h DELETED --- --- posix_types.h DELETED --- --- processor.h DELETED --- --- ptrace.h DELETED --- --- qdio.h DELETED --- --- queue.h DELETED --- --- resource.h DELETED --- --- rmap.h DELETED --- --- rwsem.h DELETED --- --- s390_ext.h DELETED --- --- scatterlist.h DELETED --- --- segment.h DELETED --- --- semaphore.h DELETED --- --- sembuf.h DELETED --- --- setup.h DELETED --- --- shmbuf.h DELETED --- --- shmparam.h DELETED --- --- sigcontext.h DELETED --- --- siginfo.h DELETED --- --- signal.h DELETED --- --- sigp.h DELETED --- --- smp.h DELETED --- --- socket.h DELETED --- --- sockios.h DELETED --- --- spinlock.h DELETED --- --- stat.h DELETED --- --- statfs.h DELETED --- --- string.h DELETED --- --- suspend.h DELETED --- --- system.h DELETED --- --- tape390.h DELETED --- --- termbits.h DELETED --- --- termios.h DELETED --- --- thread_info.h DELETED --- --- timex.h DELETED --- --- tlb.h DELETED --- --- tlbflush.h DELETED --- --- todclk.h DELETED --- --- topology.h DELETED --- --- types.h DELETED --- --- uaccess.h DELETED --- --- ucontext.h DELETED --- --- unaligned.h DELETED --- --- unistd.h DELETED --- --- user.h DELETED --- --- vtoc.h DELETED --- --- xor.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ia64 In directory sc8-pr-cvs1:/tmp/cvs-serv5627/include/asm-ia64 Added Files: acpi-ext.h Log Message: Merge with 2.5.68 |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv5627/include/linux Removed Files: compatmac.h Log Message: Merge with 2.5.68 --- compatmac.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm/arch-iop310 In directory sc8-pr-cvs1:/tmp/cvs-serv5627/include/asm-arm/arch-iop310 Removed Files: dma.h hardware.h ide.h io.h iop310.h iq80310.h irqs.h memory.h param.h pmon.h serial.h system.h time.h timex.h uncompress.h vmalloc.h Log Message: Merge with 2.5.68 --- dma.h DELETED --- --- hardware.h DELETED --- --- ide.h DELETED --- --- io.h DELETED --- --- iop310.h DELETED --- --- iq80310.h DELETED --- --- irqs.h DELETED --- --- memory.h DELETED --- --- param.h DELETED --- --- pmon.h DELETED --- --- serial.h DELETED --- --- system.h DELETED --- --- time.h DELETED --- --- timex.h DELETED --- --- uncompress.h DELETED --- --- vmalloc.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:27
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-s390 In directory sc8-pr-cvs1:/tmp/cvs-serv5627/include/asm-s390 Removed Files: gdb-stub.h Log Message: Merge with 2.5.68 --- gdb-stub.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:26
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/media/dvb/frontends In directory sc8-pr-cvs1:/tmp/cvs-serv5627/drivers/media/dvb/frontends Removed Files: alps_bsru6.c Log Message: Merge with 2.5.68 --- alps_bsru6.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:26
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/media/dvb/av7110 In directory sc8-pr-cvs1:/tmp/cvs-serv5627/drivers/media/dvb/av7110 Removed Files: Kconfig Makefile av7110.c av7110.h av7110_firm.h av7110_ir.c saa7146.c saa7146_core.c saa7146_core.h saa7146_defs.h saa7146_v4l.c saa7146_v4l.h Log Message: Merge with 2.5.68 --- Kconfig DELETED --- --- Makefile DELETED --- --- av7110.c DELETED --- --- av7110.h DELETED --- --- av7110_firm.h DELETED --- --- av7110_ir.c DELETED --- --- saa7146.c DELETED --- --- saa7146_core.c DELETED --- --- saa7146_core.h DELETED --- --- saa7146_defs.h DELETED --- --- saa7146_v4l.c DELETED --- --- saa7146_v4l.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:26
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/xfs/support In directory sc8-pr-cvs1:/tmp/cvs-serv5627/fs/xfs/support Removed Files: atomic.h Log Message: Merge with 2.5.68 --- atomic.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:26
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/media/dvb/dvb-core In directory sc8-pr-cvs1:/tmp/cvs-serv5627/drivers/media/dvb/dvb-core Removed Files: compat.h Log Message: Merge with 2.5.68 --- compat.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-27 23:47:25
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char/agp In directory sc8-pr-cvs1:/tmp/cvs-serv5627/drivers/char/agp Removed Files: i7x05-agp.c Log Message: Merge with 2.5.68 --- i7x05-agp.c DELETED --- |