Your message dated Wed, 10 Sep 2008 14:32:58 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#497528: fixed in linux-2.6 2.6.26-5 has caused the Debian Bug report #497528, regarding openvz: Multiple bridges crashing when second veth device configured in the container. to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 497528: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497528 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: linux-image-2.6.26-1-openvz-amd64 Version: 2.6.26-4 I'm trying to get openvz working in a somewhat complex networking environment, and hitting a hard lock-up when using multiple bridges. I attach /etc/network/interfaces from CT0, plus the CT100 config and a script used (manually at the moment) to bring up the bridges once the CT100 has been started. CT0 is networked to three separate subnets, called "main", "deploy" and "ilom" respectively. "deploy": this is physically plumbed into eth0. "main": this is physically plumbed into bond0 (eth1 and eth2). "ilom": this is physically plumbed into eth3. There are three bridge devices created (and assigned IP addresses) within CT0, named as above - see the attached interfaces for details. The only subtle thing here is that the "main" bridge is on a bonded interface. This all works, and the box boots and can see its attached networks. I can do the following: vzctl start 100 and the zone comes up. The zone itself only has its ethIlom configured and allocated a network address. Once the vzbridge script (attached) is run, the veth devices of the new CT100 are attached to their respective bridges. All good so far: I have visibility to the ILOM network from CT0 and from the VE. However, once I attempt to bring up ethDeploy within the VE, the host locks up hard: vzctl enter 100 ifconfig ethDeploy up [hard lockup] I've a requirement to multiply-connect these containers, so any help here would be appreciated. Certainly a hard lockup doesn't sound like the correct behaviour. Cheers, jan -- jan grant, ISYS, University of Bristol. http://www.bris.ac.uk/ Tel +44 (0)117 3317661 http://ioctl.org/jan/ ioctl(2): probably the coolest Unix system call in the world# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto deploy iface deploy inet static bridge_ports eth0 bridge_maxwait 8 address 172.16.4.10 netmask 255.255.255.0 network 172.16.4.0 broadcast 172.16.4.255 # gateway 172.16.4.128 metric 20 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 99.99.99.99 dns-search example.org up route add -net 224.0.0.0/4 dev deploy down route del -net 224.0.0.0/4 dev deploy #auto bond0 iface bond0 inet manual slaves eth1 eth2 auto main iface main inet static address 172.16.9.31 netmask 255.255.255.0 network 172.16.9.0 broadcast 172.16.9.255 gateway 172.16.9.250 metric 5 bridge_ports bond0 bridge_maxwait 8 pre-up /sbin/ifconfig bond0 up pre-up /sbin/ifenslave bond0 eth1 eth2 auto ilom iface ilom inet static address 10.0.0.38 netmask 255.255.255.0 network 10.0.0.0 broadcast 10.0.0.255 metric 20 bridge_ports eth3 bridge_maxwait 8#!/bin/sh # /etc/vz/scripts/vzbridge # a script to add virtual network interfaces (veth's) in a CT to a bridge on CT0 if [ -z "$VEID" ]; then VEID="$1" fi CTID=$VEID CONFIGFILE=/etc/vz/conf/$CTID.conf . $CONFIGFILE echo "$NETIF" | tr ';' '\n' | while read line do HOSTIF=$( echo "$line" | tr ',' '\n' | grep '^host_ifname=' | sed -e 's/^host_ifname=//' ) BRIDGE=$( echo "$line" | tr ',' '\n' | grep '^bridge=' | sed -e 's/^bridge=//' ) if [ -n "$HOSTIF" -a -n "$BRIDGE" ]; then echo "Adding interface $HOSTIF to bridge $BRIDGE on CT0 for CT$CTID" /sbin/ifconfig $HOSTIF 0 echo 1 > /proc/sys/net/ipv4/conf/$HOSTIF/proxy_arp echo 1 > /proc/sys/net/ipv4/conf/$HOSTIF/forwarding /usr/sbin/brctl addif $BRIDGE $HOSTIF fi done exit 0KMEMSIZE="14372700:14790164" LOCKEDPAGES="256:256" PRIVVMPAGES="65536:69632" SHMPAGES="21504:21504" NUMPROC="240:240" PHYSPAGES="0:9223372036854775807" VMGUARPAGES="33792:9223372036854775807" OOMGUARPAGES="26112:9223372036854775807" NUMTCPSOCK="360:360" NUMFLOCK="188:206" NUMPTY="16:16" NUMSIGINFO="256:256" TCPSNDBUF="1720320:2703360" TCPRCVBUF="1720320:2703360" OTHERSOCKBUF="1126080:2097152" DGRAMRCVBUF="262144:262144" NUMOTHERSOCK="360:360" NUMFILE="9312:9312" DCACHESIZE="3409920:3624960" NUMIPTENT="128:128" AVNUMPROC="180:180" CPUUNITS="1000" ONBOOT="no" ORIGIN_SAMPLE="vps.basic" DISKSPACE="10485760:11530240" DISKINODES="2000000:2200000" QUOTATIME="0" OSTEMPLATE=debian-4.0 NETIF="ifname=ethDeploy,mac=00:18:51:34:B3:C1,host_ifname=veth100.0,host_mac=00:18:51:13:2C:58,bridge=deploy;ifname=ethIlom,mac=00:18:51:B6:34:B4,host_ifname=veth100.3,bridge=ilom,host_mac=00:18:51:FD:E6:FF;ifname=ethMain,mac=00:18:51:26:A5:1F,host_ifname=veth100.1,host_mac=00:18:51:5B:81:87" # CONFIG_CUSTOMIZED="yes"
--- End Message ---
--- Begin Message ---Source: linux-2.6 Source-Version: 2.6.26-5 We believe that the bug you reported is fixed in the latest version of linux-2.6, which is due to be installed in the Debian FTP archive: linux-2.6_2.6.26-5.diff.gz to pool/main/l/linux-2.6/linux-2.6_2.6.26-5.diff.gz linux-2.6_2.6.26-5.dsc to pool/main/l/linux-2.6/linux-2.6_2.6.26-5.dsc linux-doc-2.6.26_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-5_all.deb linux-headers-2.6.26-1-all-powerpc_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-all_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-common-vserver_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-common_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-powerpc_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb linux-headers-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb linux-image-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb linux-image-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb linux-image-2.6.26-1-powerpc_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-5_powerpc.deb linux-image-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb linux-image-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb linux-libc-dev_2.6.26-5_powerpc.deb to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-5_powerpc.deb linux-manual-2.6.26_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-5_all.deb linux-patch-debian-2.6.26_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-5_all.deb linux-source-2.6.26_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-5_all.deb linux-support-2.6.26-1_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-5_all.deb linux-tree-2.6.26_2.6.26-5_all.deb to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-5_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Wed, 10 Sep 2008 12:55:16 +0200 Source: linux-2.6 Binary: linux-source-2.6.26 linux-doc-2.6.26 linux-manual-2.6.26 linux-patch-debian-2.6.26 linux-tree-2.6.26 linux-support-2.6.26-1 linux-libc-dev linux-headers-2.6.26-1-all linux-headers-2.6.26-1-all-alpha linux-headers-2.6.26-1-common linux-image-2.6.26-1-alpha-generic linux-headers-2.6.26-1-alpha-generic linux-image-2.6.26-1-alpha-smp linux-headers-2.6.26-1-alpha-smp linux-image-2.6.26-1-alpha-legacy linux-headers-2.6.26-1-alpha-legacy linux-headers-2.6.26-1-all-amd64 linux-image-2.6.26-1-amd64 linux-headers-2.6.26-1-amd64 linux-headers-2.6.26-1-common-openvz linux-image-2.6.26-1-openvz-amd64 linux-headers-2.6.26-1-openvz-amd64 linux-headers-2.6.26-1-common-vserver linux-image-2.6.26-1-vserver-amd64 linux-headers-2.6.26-1-vserver-amd64 linux-headers-2.6.26-1-all-arm linux-image-2.6.26-1-footbridge linux-headers-2.6.26-1-footbridge linux-image-2.6.26-1-iop32x linux-headers-2.6.26-1-iop32x linux-image-2.6.26-1-ixp4xx linux-headers-2.6.26-1-ixp4xx linux-image-2.6.26-1-orion5x linux-headers-2.6.26-1-orion5x linux-headers-2.6.26-1-all-armel linux-image-2.6.26-1-versatile linux-headers-2.6.26-1-versatile linux-headers-2.6.26-1-all-hppa linux-image-2.6.26-1-parisc linux-headers-2.6.26-1-parisc linux-image-2.6.26-1-parisc-smp linux-headers-2.6.26-1-parisc-smp linux-image-2.6.26-1-parisc64 linux-headers-2.6.26-1-parisc64 linux-image-2.6.26-1-parisc64-smp linux-headers-2.6.26-1-parisc64-smp linux-headers-2.6.26-1-all-i386 linux-image-2.6.26-1-486 linux-headers-2.6.26-1-486 linux-image-2.6.26-1-686 linux-headers-2.6.26-1-686 linux-image-2.6.26-1-686-bigmem linux-headers-2.6.26-1-686-bigmem linux-image-2.6.26-1-openvz-686 linux-headers-2.6.26-1-openvz-686 linux-image-2.6.26-1-vserver-686 linux-headers-2.6.26-1-vserver-686 linux-image-2.6.26-1-vserver-686-bigmem linux-headers-2.6.26-1-vserver-686-bigmem linux-headers-2.6.26-1-common-xen linux-image-2.6.26-1-xen-686 linux-modules-2.6.26-1-xen-686 linux-headers-2.6.26-1-xen-686 linux-headers-2.6.26-1-all-ia64 linux-image-2.6.26-1-itanium linux-headers-2.6.26-1-itanium linux-image-2.6.26-1-mckinley linux-headers-2.6.26-1-mckinley linux-image-2.6.26-1-vserver-itanium linux-headers-2.6.26-1-vserver-itanium linux-image-2.6.26-1-vserver-mckinley linux-headers-2.6.26-1-vserver-mckinley linux-headers-2.6.26-1-all-m68k linux-image-2.6.26-1-amiga linux-headers-2.6.26-1-amiga linux-image-2.6.26-1-atari linux-headers-2.6.26-1-atari linux-image-2.6.26-1-bvme6000 linux-headers-2.6.26-1-bvme6000 linux-image-2.6.26-1-mac linux-headers-2.6.26-1-mac linux-image-2.6.26-1-mvme147 linux-headers-2.6.26-1-mvme147 linux-image-2.6.26-1-mvme16x linux-headers-2.6.26-1-mvme16x linux-headers-2.6.26-1-all-mips linux-image-2.6.26-1-r4k-ip22 linux-headers-2.6.26-1-r4k-ip22 linux-image-2.6.26-1-r5k-ip32 linux-headers-2.6.26-1-r5k-ip32 linux-image-2.6.26-1-sb1-bcm91250a linux-headers-2.6.26-1-sb1-bcm91250a linux-image-2.6.26-1-sb1a-bcm91480b linux-headers-2.6.26-1-sb1a-bcm91480b linux-image-2.6.26-1-4kc-malta linux-headers-2.6.26-1-4kc-malta linux-image-2.6.26-1-5kc-malta linux-headers-2.6.26-1-5kc-malta linux-headers-2.6.26-1-all-mipsel linux-image-2.6.26-1-r5k-cobalt linux-headers-2.6.26-1-r5k-cobalt linux-headers-2.6.26-1-all-powerpc linux-image-2.6.26-1-powerpc linux-headers-2.6.26-1-powerpc linux-image-2.6.26-1-powerpc-smp linux-headers-2.6.26-1-powerpc-smp linux-image-2.6.26-1-powerpc64 linux-headers-2.6.26-1-powerpc64 linux-image-2.6.26-1-vserver-powerpc linux-headers-2.6.26-1-vserver-powerpc linux-image-2.6.26-1-vserver-powerpc64 linux-headers-2.6.26-1-vserver-powerpc64 linux-headers-2.6.26-1-all-s390 linux-image-2.6.26-1-s390 linux-headers-2.6.26-1-s390 linux-image-2.6.26-1-s390-tape linux-image-2.6.26-1-s390x linux-headers-2.6.26-1-s390x linux-image-2.6.26-1-vserver-s390x linux-headers-2.6.26-1-vserver-s390x linux-headers-2.6.26-1-all-sparc linux-image-2.6.26-1-sparc64 linux-headers-2.6.26-1-sparc64 linux-image-2.6.26-1-sparc64-smp linux-headers-2.6.26-1-sparc64-smp linux-image-2.6.26-1-vserver-sparc64 linux-headers-2.6.26-1-vserver-sparc64 Architecture: source all powerpc Version: 2.6.26-5 Distribution: unstable Urgency: low Maintainer: Debian Kernel Team <[email protected]> Changed-By: Bastian Blank <[EMAIL PROTECTED]> Description: linux-doc-2.6.26 - Linux kernel specific documentation for version 2.6.26 linux-headers-2.6.26-1-486 - Header files for Linux 2.6.26-1-486 linux-headers-2.6.26-1-4kc-malta - Header files for Linux 2.6.26-1-4kc-malta linux-headers-2.6.26-1-5kc-malta - Header files for Linux 2.6.26-1-5kc-malta linux-headers-2.6.26-1-686 - Header files for Linux 2.6.26-1-686 linux-headers-2.6.26-1-686-bigmem - Header files for Linux 2.6.26-1-686-bigmem linux-headers-2.6.26-1-all - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-alpha - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-amd64 - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-arm - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-armel - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-hppa - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-i386 - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-ia64 - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-m68k - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-mips - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-mipsel - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-powerpc - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-s390 - All header files for Linux 2.6.26 linux-headers-2.6.26-1-all-sparc - All header files for Linux 2.6.26 linux-headers-2.6.26-1-alpha-generic - Header files for Linux 2.6.26-1-alpha-generic linux-headers-2.6.26-1-alpha-legacy - Header files for Linux 2.6.26-1-alpha-legacy linux-headers-2.6.26-1-alpha-smp - Header files for Linux 2.6.26-1-alpha-smp linux-headers-2.6.26-1-amd64 - Header files for Linux 2.6.26-1-amd64 linux-headers-2.6.26-1-amiga - Header files for Linux 2.6.26-1-amiga linux-headers-2.6.26-1-atari - Header files for Linux 2.6.26-1-atari linux-headers-2.6.26-1-bvme6000 - Header files for Linux 2.6.26-1-bvme6000 linux-headers-2.6.26-1-common - Common header files for Linux 2.6.26-1 linux-headers-2.6.26-1-common-openvz - Common header files for Linux 2.6.26-1-openvz linux-headers-2.6.26-1-common-vserver - Common header files for Linux 2.6.26-1-vserver linux-headers-2.6.26-1-common-xen - Common header files for Linux 2.6.26-1-xen linux-headers-2.6.26-1-footbridge - Header files for Linux 2.6.26-1-footbridge linux-headers-2.6.26-1-iop32x - Header files for Linux 2.6.26-1-iop32x linux-headers-2.6.26-1-itanium - Header files for Linux 2.6.26-1-itanium linux-headers-2.6.26-1-ixp4xx - Header files for Linux 2.6.26-1-ixp4xx linux-headers-2.6.26-1-mac - Header files for Linux 2.6.26-1-mac linux-headers-2.6.26-1-mckinley - Header files for Linux 2.6.26-1-mckinley linux-headers-2.6.26-1-mvme147 - Header files for Linux 2.6.26-1-mvme147 linux-headers-2.6.26-1-mvme16x - Header files for Linux 2.6.26-1-mvme16x linux-headers-2.6.26-1-openvz-686 - Header files for Linux 2.6.26-1-openvz-686 linux-headers-2.6.26-1-openvz-amd64 - Header files for Linux 2.6.26-1-openvz-amd64 linux-headers-2.6.26-1-orion5x - Header files for Linux 2.6.26-1-orion5x linux-headers-2.6.26-1-parisc - Header files for Linux 2.6.26-1-parisc linux-headers-2.6.26-1-parisc-smp - Header files for Linux 2.6.26-1-parisc-smp linux-headers-2.6.26-1-parisc64 - Header files for Linux 2.6.26-1-parisc64 linux-headers-2.6.26-1-parisc64-smp - Header files for Linux 2.6.26-1-parisc64-smp linux-headers-2.6.26-1-powerpc - Header files for Linux 2.6.26-1-powerpc linux-headers-2.6.26-1-powerpc-smp - Header files for Linux 2.6.26-1-powerpc-smp linux-headers-2.6.26-1-powerpc64 - Header files for Linux 2.6.26-1-powerpc64 linux-headers-2.6.26-1-r4k-ip22 - Header files for Linux 2.6.26-1-r4k-ip22 linux-headers-2.6.26-1-r5k-cobalt - Header files for Linux 2.6.26-1-r5k-cobalt linux-headers-2.6.26-1-r5k-ip32 - Header files for Linux 2.6.26-1-r5k-ip32 linux-headers-2.6.26-1-s390 - Header files for Linux 2.6.26-1-s390 linux-headers-2.6.26-1-s390x - Header files for Linux 2.6.26-1-s390x linux-headers-2.6.26-1-sb1-bcm91250a - Header files for Linux 2.6.26-1-sb1-bcm91250a linux-headers-2.6.26-1-sb1a-bcm91480b - Header files for Linux 2.6.26-1-sb1a-bcm91480b linux-headers-2.6.26-1-sparc64 - Header files for Linux 2.6.26-1-sparc64 linux-headers-2.6.26-1-sparc64-smp - Header files for Linux 2.6.26-1-sparc64-smp linux-headers-2.6.26-1-versatile - Header files for Linux 2.6.26-1-versatile linux-headers-2.6.26-1-vserver-686 - Header files for Linux 2.6.26-1-vserver-686 linux-headers-2.6.26-1-vserver-686-bigmem - Header files for Linux 2.6.26-1-vserver-686-bigmem linux-headers-2.6.26-1-vserver-amd64 - Header files for Linux 2.6.26-1-vserver-amd64 linux-headers-2.6.26-1-vserver-itanium - Header files for Linux 2.6.26-1-vserver-itanium linux-headers-2.6.26-1-vserver-mckinley - Header files for Linux 2.6.26-1-vserver-mckinley linux-headers-2.6.26-1-vserver-powerpc - Header files for Linux 2.6.26-1-vserver-powerpc linux-headers-2.6.26-1-vserver-powerpc64 - Header files for Linux 2.6.26-1-vserver-powerpc64 linux-headers-2.6.26-1-vserver-s390x - Header files for Linux 2.6.26-1-vserver-s390x linux-headers-2.6.26-1-vserver-sparc64 - Header files for Linux 2.6.26-1-vserver-sparc64 linux-headers-2.6.26-1-xen-686 - Header files for Linux 2.6.26-1-xen-686 linux-image-2.6.26-1-486 - Linux 2.6.26 image on x86 linux-image-2.6.26-1-4kc-malta - Linux 2.6.26 image on MIPS Malta linux-image-2.6.26-1-5kc-malta - Linux 2.6.26 image on MIPS Malta (64-bit) linux-image-2.6.26-1-686 - Linux 2.6.26 image on PPro/Celeron/PII/PIII/P4 linux-image-2.6.26-1-686-bigmem - Linux 2.6.26 image on PPro/Celeron/PII/PIII/P4 linux-image-2.6.26-1-alpha-generic - Linux 2.6.26 image on Alpha linux-image-2.6.26-1-alpha-legacy - Linux 2.6.26 image on Alpha Legacy linux-image-2.6.26-1-alpha-smp - Linux 2.6.26 image on Alpha SMP linux-image-2.6.26-1-amd64 - Linux 2.6.26 image on AMD64 linux-image-2.6.26-1-amiga - Linux 2.6.26 image on Amiga linux-image-2.6.26-1-atari - Linux 2.6.26 image on Atari linux-image-2.6.26-1-bvme6000 - Linux 2.6.26 image on BVM BVME4000 and BVME6000 linux-image-2.6.26-1-footbridge - Linux 2.6.26 image on Footbridge linux-image-2.6.26-1-iop32x - Linux 2.6.26 image on IOP32x linux-image-2.6.26-1-itanium - Linux 2.6.26 image on Itanium linux-image-2.6.26-1-ixp4xx - Linux 2.6.26 image on IXP4xx linux-image-2.6.26-1-mac - Linux 2.6.26 image on Macintosh linux-image-2.6.26-1-mckinley - Linux 2.6.26 image on Itanium II linux-image-2.6.26-1-mvme147 - Linux 2.6.26 image on Motorola MVME147 linux-image-2.6.26-1-mvme16x - Linux 2.6.26 image on Motorola MVME162/6/7, MVME172/7 linux-image-2.6.26-1-openvz-686 - Linux 2.6.26 image on PPro/Celeron/PII/PIII/P4, OpenVZ support linux-image-2.6.26-1-openvz-amd64 - Linux 2.6.26 image on AMD64, OpenVZ support linux-image-2.6.26-1-orion5x - Linux 2.6.26 image on Orion linux-image-2.6.26-1-parisc - Linux 2.6.26 image on 32-bit PA-RISC linux-image-2.6.26-1-parisc-smp - Linux 2.6.26 image on multiprocessor 32-bit PA-RISC linux-image-2.6.26-1-parisc64 - Linux 2.6.26 image on 64-bit PA-RISC linux-image-2.6.26-1-parisc64-smp - Linux 2.6.26 image on multiprocessor 64-bit PA-RISC linux-image-2.6.26-1-powerpc - Linux 2.6.26 image on uniprocessor 32-bit PowerPC linux-image-2.6.26-1-powerpc-smp - Linux 2.6.26 image on multiprocessor 32-bit PowerPC linux-image-2.6.26-1-powerpc64 - Linux 2.6.26 image on 64-bit PowerPC linux-image-2.6.26-1-r4k-ip22 - Linux 2.6.26 image on SGI IP22 linux-image-2.6.26-1-r5k-cobalt - Linux 2.6.26 image on Cobalt linux-image-2.6.26-1-r5k-ip32 - Linux 2.6.26 image on SGI IP32 linux-image-2.6.26-1-s390 - Linux 2.6.26 image on IBM S/390 linux-image-2.6.26-1-s390-tape - Linux 2.6.26 image on IBM S/390, IPL from tape linux-image-2.6.26-1-s390x - Linux 2.6.26 image on IBM zSeries linux-image-2.6.26-1-sb1-bcm91250a - Linux 2.6.26 image on BCM91250A linux-image-2.6.26-1-sb1a-bcm91480b - Linux 2.6.26 image on BCM91480B linux-image-2.6.26-1-sparc64 - Linux 2.6.26 image on uniprocessor 64-bit UltraSPARC linux-image-2.6.26-1-sparc64-smp - Linux 2.6.26 image on multiprocessor 64-bit UltraSPARC linux-image-2.6.26-1-versatile - Linux 2.6.26 image on Versatile linux-image-2.6.26-1-vserver-686 - Linux 2.6.26 image on PPro/Celeron/PII/PIII/P4, Linux-VServer sup linux-image-2.6.26-1-vserver-686-bigmem - Linux 2.6.26 image on PPro/Celeron/PII/PIII/P4, Linux-VServer sup linux-image-2.6.26-1-vserver-amd64 - Linux 2.6.26 image on AMD64, Linux-VServer support linux-image-2.6.26-1-vserver-itanium - Linux 2.6.26 image on Itanium, Linux-VServer support linux-image-2.6.26-1-vserver-mckinley - Linux 2.6.26 image on Itanium II, Linux-VServer support linux-image-2.6.26-1-vserver-powerpc - Linux 2.6.26 image on uniprocessor 32-bit PowerPC, Linux-VServer linux-image-2.6.26-1-vserver-powerpc64 - Linux 2.6.26 image on 64-bit PowerPC, Linux-VServer support linux-image-2.6.26-1-vserver-s390x - Linux 2.6.26 image on IBM zSeries linux-image-2.6.26-1-vserver-sparc64 - Linux 2.6.26 image on uniprocessor 64-bit UltraSPARC, Linux-VServ linux-image-2.6.26-1-xen-686 - Linux 2.6.26 image on i686 linux-libc-dev - Linux support headers for userspace development linux-manual-2.6.26 - Linux kernel API manual pages for version 2.6.26 linux-modules-2.6.26-1-xen-686 - Linux 2.6.26 modules on i686 linux-patch-debian-2.6.26 - Debian patches to version 2.6.26 of the Linux kernel linux-source-2.6.26 - Linux kernel source for version 2.6.26 with Debian patches linux-support-2.6.26-1 - Support files for Linux 2.6.26 linux-tree-2.6.26 - Linux kernel source tree for building Debian kernel images Closes: 484432 496603 497528 497796 Changes: linux-2.6 (2.6.26-5) unstable; urgency=low . [ Martin Michlmayr ] * Backport power-off method for Kurobox Pro. * [arm/versatile] Really enable CONFIG_RTC_DRV_PL031 (closes: #484432). . [ Stephen R. Marenka ] * [m68k] Set CONFIG_LBD=n for atari, since it conflicts with nfblock. . [ Bastian Blank ] * Reenable SiS SATA support. (closes: #496603) * [amd64,i386] Disable new-style SiS PATA support. * Add stable release 2.6.26.4: - sata_mv: don't issue two DMA commands concurrently - KVM: MMU: Fix torn shadow pte - x86: work around MTRR mask setting, v2 - nfsd: fix buffer overrun decoding NFSv4 acl (CVE-2008-3915) - sunrpc: fix possible overrun on read of /proc/sys/sunrpc/transports (CVE-2008-3911) - r8169: balance pci_map / pci_unmap pair - tg3: Fix firmware event timeouts - crypto: authenc - Avoid using clobbered request pointer - sparc64: Fix cmdline_memory_size handling bugs. - sparc64: Fix overshoot in nid_range(). - ipsec: Fix deadlock in xfrm_state management. (closes: #497796) - sctp: fix random memory dereference with SCTP_HMAC_IDENT option. - sctp: correct bounds check in sctp_setsockopt_auth_key - sch_prio: Fix nla_parse_nested_compat() regression - sctp: add verification checks to SCTP_AUTH_KEY option - sctp: fix potential panics in the SCTP-AUTH API. - udp: Drop socket lock for encapsulated packets - pkt_sched: Fix actions referencing - pkt_sched: Fix return value corruption in HTB and TBF. - netns: Add network namespace argument to rt6_fill_node() and ipv6_dev_get_saddr() - ipv6: Fix OOPS, ip -f inet6 route get fec0::1, linux-2.6.26, ip6_route_output, rt6_fill_node+0x175 (CVE-2008-3686) - AX.25: Fix sysctl registration if !CONFIG_AX25_DAMA_SLAVE - mm: make setup_zone_migrate_reserve() aware of overlapping nodes - 8250: improve workaround for UARTs that don't re-assert THRE correctly - rtc_time_to_tm: fix signed/unsigned arithmetic - drivers/char/random.c: fix a race which can lead to a bogus BUG() - cifs: fix O_APPEND on directio mounts - atl1: disable TSO by default - forcedeth: fix checksum flag - bio: fix bio_copy_kern() handling of bio->bv_len - bio: fix __bio_copy_iov() handling of bio->bv_len - ALSA: oxygen: prevent muting of nonexistent AC97 controls - S390 dasd: fix data size for PSF/PRSSD command - x86: fix "kernel won't boot on a Cyrix MediaGXm (Geode)" - x86: work around MTRR mask setting - USB: cdc-acm: don't unlock acm->mutex on error path - binfmt_misc: fix false -ENOEXEC when coupled with other binary handlers - fbdefio: add set_page_dirty handler to deferred IO FB - eeepc-laptop: fix use after free - PCI: fix reference leak in pci_get_dev_by_id() - cramfs: fix named-pipe handling * Override ABI changes. * [hppa] Disable new-style RTC support. Override ABI changes. . [ maximilian attems ] * openvz: Add upstream fixes up to 24cebf40278cb071ff8b. (closes: #497528) Checksums-Sha1: a97dad8c3f6d1dca71e2784a95b37b271d635e60 5585 linux-2.6_2.6.26-5.dsc 9a02ccc9768fac0927a1ee62770400dc2d76ccf6 6421183 linux-2.6_2.6.26-5.diff.gz 52cae8fd89bf6ed5aea0fadbba2fe34e5189a7a5 4610878 linux-doc-2.6.26_2.6.26-5_all.deb c6abf1ac8e5dfa4f8e053c2830174a29a414feb2 1760216 linux-manual-2.6.26_2.6.26-5_all.deb 51cee93ad1303fd44e6141d3ad19d9bb94ad28b1 1214894 linux-patch-debian-2.6.26_2.6.26-5_all.deb 2eb6b80bc0c8e4e8bb04b221e0c21601cce683ee 48417916 linux-source-2.6.26_2.6.26-5_all.deb f6ccacd5f9ca0122b90aab66612b00d6e9b84cd1 110542 linux-support-2.6.26-1_2.6.26-5_all.deb 1380a1fac5de4f0e35b77dd17f0dba098b86bef4 95324 linux-tree-2.6.26_2.6.26-5_all.deb 0649d0888d68eb53373b5e7230d028964a83d910 22994464 linux-image-2.6.26-1-powerpc_2.6.26-5_powerpc.deb d9f4e3e19a8d9e75a0bafc078886132bb49661a8 348080 linux-headers-2.6.26-1-powerpc_2.6.26-5_powerpc.deb 314a33ff39f90a18872fbc1229f1a59c219bce76 23389446 linux-image-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb b36940408ab428ad35261708f1ea776d80ba8b5e 349432 linux-headers-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb 40cfba03e1922d029e4605951fce9427095cc3a6 23235940 linux-image-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb c37a4f127f0c41d51fce1c264c8fdbe83feb2d2f 355124 linux-headers-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb c3d87ec94f8b376f5392ec01c08b8b8b4c6d02dc 3764030 linux-headers-2.6.26-1-common_2.6.26-5_powerpc.deb 9ed28fe92046026c06e3e7cb297d8f4cd20d8afa 94940 linux-headers-2.6.26-1-all_2.6.26-5_powerpc.deb abfbcfda66c4d83ac3264a3dbf1e5ff7c7a466a6 94972 linux-headers-2.6.26-1-all-powerpc_2.6.26-5_powerpc.deb 911f7254195b5af413b330ac0894f499e0038839 731414 linux-libc-dev_2.6.26-5_powerpc.deb 25cdc8da250c59161f4591cc0e4954c362e3a318 23419376 linux-image-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb cf62dde3d45db1052fc189b7398463c4e2f650e0 349842 linux-headers-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb b8d950ce5618942e1206ef0252c29e07adabebe6 23288040 linux-image-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb ac3f53df8ddc8982906ea0602bab88202f6fdf3f 356912 linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb ca84567fc0c819c721467635151dfd47419536bc 3796552 linux-headers-2.6.26-1-common-vserver_2.6.26-5_powerpc.deb Checksums-Sha256: 4a7275ca76dd769cd020e81385a10ed9e0ea007831b6ff056d0a2a7d62499ae2 5585 linux-2.6_2.6.26-5.dsc 584f8515bd601e42b7985300c57ed92d58fb5c83c1bc1a1a5a57fbe95a025f1f 6421183 linux-2.6_2.6.26-5.diff.gz a40b74ecbfae47372c244373273fd813d30d6b8def03877994d80d22b4a86641 4610878 linux-doc-2.6.26_2.6.26-5_all.deb ff50eef300a12464cde8bc44cecb4194048dd0cc752d92cf064eae20aafacb78 1760216 linux-manual-2.6.26_2.6.26-5_all.deb 0cbfcadfefaacb5e45bafcb47990c55d4cf4da40999f1b3d5abc06c567e3f9ce 1214894 linux-patch-debian-2.6.26_2.6.26-5_all.deb fc37b486ccbb34d5014a3f3f2bfa30eedc91c82e17978af1046d6153e8e44a66 48417916 linux-source-2.6.26_2.6.26-5_all.deb 2617688d35c1904c2086da7aed4929c17b28cf1cbc3083bfe2f5629855085f93 110542 linux-support-2.6.26-1_2.6.26-5_all.deb a359997e2c7d8d79f3dde8852deabd549b4767462bd3349778616a0764364125 95324 linux-tree-2.6.26_2.6.26-5_all.deb 059c3ddffc5ef22c940ad1e72002c79542bc29af5ac13d4f5357dc707e69b432 22994464 linux-image-2.6.26-1-powerpc_2.6.26-5_powerpc.deb 8abf91bd8edeff59fd6cdd228148173a3ffe3cf499776b17c063237baa58ef3d 348080 linux-headers-2.6.26-1-powerpc_2.6.26-5_powerpc.deb 3b0373a57c701e3a596f7525bc6caa8503c496c0917896f8281cb269a72e23c5 23389446 linux-image-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb a84649d8c89d1c2131bade8944bb2308d1e446c67975e79550fcb141e16ec3dd 349432 linux-headers-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb 187ec0e243f1485be968a1a53404ef41a147cab17e3e3aaecf75ad9b9ec2c125 23235940 linux-image-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb 213fbe3fc5a0ebf2d9aa2f2709adf19d6778876333bbbfe3a08c53d1126e8924 355124 linux-headers-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb 0d022b01711372f2291c5da611c549b69f2f42d40e3adf62d35f1bcbe2a3a5b7 3764030 linux-headers-2.6.26-1-common_2.6.26-5_powerpc.deb 10c3220fe4a3a5cc6d55c86007e92f8ead2553e3aa25aa48231ace15172e6ed5 94940 linux-headers-2.6.26-1-all_2.6.26-5_powerpc.deb d8a07bca774b5962ac7aa270acd2fb1470561d63d90c02e962e91a06c057e836 94972 linux-headers-2.6.26-1-all-powerpc_2.6.26-5_powerpc.deb 9c2cead1a892423269986785dbfd2f687c617834f3542cf9d98de8095b95de48 731414 linux-libc-dev_2.6.26-5_powerpc.deb 1d028b8f4ec53d60c5e2baa17e64bba00ff934562b3978be970ba4ca81fbd365 23419376 linux-image-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb 7f63966801e95591b3c62d553b1e12399bee1caf528615a4e87bba82ee98b40c 349842 linux-headers-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb d5b42ece262d05b06058bcf6fda5a8a59ca75a60871798d994df65267dcbfb5f 23288040 linux-image-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb 6b1562ad2a164596bf794e2239b3ad693fb5e132a325d95ea814bf89fb5a40ac 356912 linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb 24d698d77622e8850d029cd86b0c645c42efd5a679d14bb4a21aedaae3f9d44a 3796552 linux-headers-2.6.26-1-common-vserver_2.6.26-5_powerpc.deb Files: a8b7a4330ef8650b0a2c0189e7a4041c 5585 devel optional linux-2.6_2.6.26-5.dsc 94f20d4ca0ae112d83e5c60e87c3e6d4 6421183 devel optional linux-2.6_2.6.26-5.diff.gz f2f84b0de3d5776eec4e2c8ab8721720 4610878 doc optional linux-doc-2.6.26_2.6.26-5_all.deb 18ef397410e85052434c17fd736ae33a 1760216 doc optional linux-manual-2.6.26_2.6.26-5_all.deb d5aeea808d845d3db4e24aaa25009683 1214894 devel optional linux-patch-debian-2.6.26_2.6.26-5_all.deb b92c700fad07a13a23499af428563d89 48417916 devel optional linux-source-2.6.26_2.6.26-5_all.deb 76fe6560e44e40f1a3889be402c9f261 110542 devel optional linux-support-2.6.26-1_2.6.26-5_all.deb 3c0e6240d2d4c95f25fb1b2b4c515eee 95324 devel optional linux-tree-2.6.26_2.6.26-5_all.deb 76cb5b1f3fbae481456a0d7ec0af637e 22994464 admin optional linux-image-2.6.26-1-powerpc_2.6.26-5_powerpc.deb 3cdc2dac567dd3af20c5d5e6a92e3d4d 348080 devel optional linux-headers-2.6.26-1-powerpc_2.6.26-5_powerpc.deb e841806dedf70e33abbf231b3a753f71 23389446 admin optional linux-image-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb 9266783f7c50434dc063801995c96f05 349432 devel optional linux-headers-2.6.26-1-powerpc-smp_2.6.26-5_powerpc.deb 7db612c684262c3be5c29b1ccc10f74e 23235940 admin optional linux-image-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb 70d72c03d1725b172efb933f6b8d3c70 355124 devel optional linux-headers-2.6.26-1-powerpc64_2.6.26-5_powerpc.deb a9b52c8479a3d793f773bebae828c80f 3764030 devel optional linux-headers-2.6.26-1-common_2.6.26-5_powerpc.deb d27a479ec154fa948379149a9d448c60 94940 devel optional linux-headers-2.6.26-1-all_2.6.26-5_powerpc.deb aa64936698450c7c2ef4de715cb051f1 94972 devel optional linux-headers-2.6.26-1-all-powerpc_2.6.26-5_powerpc.deb 630bebbd618cdf8ce4f0315f95691761 731414 devel optional linux-libc-dev_2.6.26-5_powerpc.deb d14ee569b535964923599830d72c56e9 23419376 admin optional linux-image-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb 65ec20137788808c46b0464d2c0fd607 349842 devel optional linux-headers-2.6.26-1-vserver-powerpc_2.6.26-5_powerpc.deb 2e5ba55fa8fb174ca940647c59856dde 23288040 admin optional linux-image-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb a0e2f3fc276f6ea20846c9a174f835f4 356912 devel optional linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-5_powerpc.deb 0b819df8008e709499f98af146d62573 3796552 devel optional linux-headers-2.6.26-1-common-vserver_2.6.26-5_powerpc.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkjH0TcACgkQxWtQqFixGB6togCfZ3H8UXRLwwhqfEvkEa4rWzNk 6MoAn1VF1qc0MrhbnOG34KsS7PnZk/QO =bXt/ -----END PGP SIGNATURE-----
--- End Message ---

