kernel-xen-base-2.6.31.14-0.2.1>t  DH`pL猸/=„N~8P )E/>>{Yd!VZ=4Lm0ÇN53նDrr92_Ez27Oqwjl[v11 $5e}e)s=?d " @  "    *g + -04 40667(8 (8;88D9W:m=> ?@F#G8HIPXY\0]^B3bcdxe}flzCkernel-xen-base2.6.31.140.2.1The Xen Kernel - base modulesThe Linux kernel for Xen paravirtualization. This kernel can be used both as the domain0 ("xen0") and as an unprivileged ("xenU") kernel. This package contains only the base modules, required in all installs. Source Timestamp: 2010-10-07 19:06:53 +0200 GIT Revision: 8f2a513feb000db348b3b9c7367a7069658150cc GIT Branch: openSUSE-11.2Lbuild37ŌopenSUSE 11.2openSUSEGPLv2http://bugs.opensuse.orgSystem/Kernelhttp://www.kernel.org/linuxx86_64# see bug #259303 # this script runs when the kernel gets updated with YaST # YaST calls rpm always with -U # -U replaces all packages with the new one # rpm removes the files from the old packages after the postinstall script ran # this will double the required space below /boot # remove the files from the old packages to make room for the new initrd # rpm may complain about low disk space if /boot/vmlinux does not fit if [ 1 = 1 -a "$YAST_IS_RUNNING" != "" ]; then mydf="$( POSIXLY_CORRECT=1 df -P /boot/ | awk '/^(\/|-[[:blank:]])/{ print $4}' )" if test "$mydf" != "" ; then echo "Free diskspace below /boot: $mydf blocks" # echo "512 byte blocks: $(( 2 * 1024 * 20 ))" if test "$mydf" -lt "40960" ; then echo "make room for new kernel 'xen' because there are less than 20MB available." # disabled because it breaks patch rpms #rm -fv /boot/vmlinuz-*-xen rm -fv /boot/initrd-*-xen fi fi fi # It must be possible to install different kernel.rpm packages in parallel. # But in this post install script, the /boot/vmlinux symlink is replaced. # On powerpc, the different kernels are for different board/firmware types # They are not compatible. wrong_boardtype() { echo "This kernel-xen.x86_64.rpm is for $1, it will not boot on this system." echo "The /boot/vmlinux symlink will not be created or updated." exit 0 } if [ -f /proc/cpuinfo ]; then case "xen-x86_64" in vanilla-ppc64|default-ppc64|ps3-ppc64|ppc64-ppc64|kdump-ppc64|ps3-ppc|ppc64-ppc|kdump-ppc) if [ -d /proc/iSeries -o ! -d /proc/ppc64 ]; then wrong_boardtype "OpenFirmware based 64bit machines" fi ;; vanilla-ppc|default-ppc) if [ -d /proc/ppc64 -o -d /proc/iSeries ]; then wrong_boardtype "32bit systems" fi ;; *) ;; esac fi suffix= case xen in kdump|ps3|xen*|vanilla) suffix=-xen ;; esac for x in /boot/vmlinuz /boot/initrd; do rm -f $x$suffix ln -s ${x##*/}-2.6.31.14-0.2-xen $x$suffix done # Add symlinks of compatible modules to /lib/modules/$krel/weak-updates/, # run depmod and mkinitrd wm2=/usr/lib/module-init-tools/weak-modules2 if [ -x $wm2 ]; then if [ 1 = 1 ]; then /bin/bash -${-/e/} $wm2 --add-kernel 2.6.31.14-0.2-xen else nvr=kernel-xen-base-2.6.31.14-0.2.1 rpm -ql $nvr | /bin/bash -${-/e/} $wm2 --add-kernel-modules 2.6.31.14-0.2-xen fi else echo "$wm does not exist, please run depmod and mkinitrd manually" >&2 fi message_install_bl () { echo "You may need to setup and install the boot loader using the" echo "available bootloader for your platform (e.g. grub, lilo, zipl, ...)." } run_bootloader () { if [ -f /etc/sysconfig/bootloader ] && [ -f /boot/grub/menu.lst -o \ -f /etc/lilo.conf -o \ -f /etc/elilo.conf -o \ -f /etc/zipl.conf ] then return 0 else return 1 fi } if [ -f /etc/fstab -a ! -e /.buildenv ] ; then # only run the bootloader if the usual bootloader configuration # files are there -- this is different on every architecture initrd=initrd-2.6.31.14-0.2-xen if [ -e /boot/$initrd -o ! -e /lib/modules/2.6.31.14-0.2-xen ] && \ run_bootloader ; then [ -e /boot/$initrd ] || initrd= if [ -x /usr/lib/bootloader/bootloader_entry ]; then /usr/lib/bootloader/bootloader_entry \ add \ xen \ 2.6.31.14-0.2-xen \ vmlinuz-2.6.31.14-0.2-xen \ $initrd else message_install_bl fi fi else message_install_bl fi # vim: set sts=4 sw=4 ts=8 noet: if [ 1 = 0 ]; then nvr=kernel-xen-base-2.6.31.14-0.2.1 rpm -ql $nvr | grep '\.ko$' > /var/run/rpm-$nvr-modules fi wm2=/usr/lib/module-init-tools/weak-modules2 nvr=kernel-xen-base-2.6.31.14-0.2.1 if [ -e /boot/System.map-2.6.31.14-0.2-xen ]; then # the same package was reinstalled or just rebuilt, otherwise the files # would have been deleted by now # do not remove anything in this case (bnc#533766) rm -f /var/run/rpm-$nvr-modules exit 0 fi if [ 1 = 0 ]; then if [ -x $wm2 ]; then /bin/bash -${-/e/} $wm2 --remove-kernel-modules 2.6.31.14-0.2-xen < /var/run/rpm-$nvr-modules fi rm -f /var/run/rpm-$nvr-modules exit 0 fi # Remove symlinks from /lib/modules/$krel/weak-updates/. if [ -x $wm2 ]; then /bin/bash -${-/e/} $wm2 --remove-kernel 2.6.31.14-0.2-xen fi # remove fstab check once perl-Bootloader can cope with it if [ -f /etc/fstab ]; then if [ -x /usr/lib/bootloader/bootloader_entry ]; then /usr/lib/bootloader/bootloader_entry \ remove \ xen \ 2.6.31.14-0.2-xen \ vmlinuz-2.6.31.14-0.2-xen \ initrd-2.6.31.14-0.2-xen fi fi pi 3 a0.@@ %ijX8  w/ &^RF@2mvp~oj nz=666 m|b55 l\,30:\00*\}XV 8x P:`Ps~ t }˚TZJ=6 HAA큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤AAAA큤A큤A큤A큤A큤A큤A큤AA큤A큤AA큤A큤AA큤A큤AL}LsLoLzLsLސL܀LsLqL.L.L.L.L.L.LqL.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L/L/L.L.L.L.L.L.L.L.L.L.L.L/L/L/L/L/L/L.L.L.L.LqL.L.L.L.L.L.L.L.L.L.L.L.L.L/L/L/L.L.L.L/L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L/L/L/L/L/L/L/L.L.L.L.LjL%L L߃L}LߊL߇LߋLߋLߔLߔLLL{L6LHLLLLLLLLLLLLL LLLLL$LL L#L#LjLjLޑLjLjLjLޑLjLjLHLHLHLHLHa56bd60458132f120062080be8e329ca10c48fe02747a41a33c637d1fb9bd8f1d41d8cd98f00b204e9800998ecf8427eb2d1236c286a3c0704224fe4105eca492d8069f85911c1bd7994597966949d48c7b9376d7b35415b60d0a0e430bf8b7dfb28eb3f9fee1eb50dd7b362d27ae35af5038f7bc0229fb763283323733ed124f5d7bb785a623be84334b521dc09dc36be140f047d8aea1f6cdf1cd6a2fa335629220e3d5cd4b7fd3d4ea0f4afc73aa929220e3d5cd4b7fd3d4ea0f4afc73aa9a6e49029ed9993cf8e0f34061a9c9231757fc400f7775656c57347f8288799a1a1b794a219f991163c11dcf2dd480c71dfb2723d1d6b47bc5ae72f03390cd475cc7aaf2dd39e5bb17a63d298f765aea59158f1b596959cfd43cd1a462ee6f77c8b484965891472fe46def21153e4099d93597d4673160a31b53329b74655166119b51b5f9ac129fa028f4f6a080b588984ad1245605f5605dff9c35a54349bfa4276778b53bfc05483f3079187f2dc3171dc9a5547a743055358b3c5af7bb0d2064309527ab5c6f73f17f99f6b07e47151e99ef0d234ea1b455b0555336f7379bee381e5d148bd073184a5cadfb6c314159923927e490b44f798e538bf862ce528b5f92e5a859c3dda84091a91df33c83febb91dd31c3e0275fbd38e1aadd0d67ce777b480c8b6b9f546516326ae533098c08ceb933b5e3957fa817deac311a86d632d31e0a08fc257e54f3555c2b747f9e4b2fb2540ca121461911569de4f5fe5aaf5c9692069c15c1f62c4157e1a28a114afe93293e00d4e24189323efc1e316aff74fcc61b89d90719bc29c501d90b12a55869a1e706b750df8f59a7eff2735256959e37301b3b8a0033a74167e81c754371f93e28d9be45eabec82938d254bc8be4a30037ec7e50e672456ffa56409cd1af4eb240e2350589a1911118aa9c69fc5b1dee86506d2009d3e53f417811c4c4310e1da58314748db4af9e0c6d509cd1af4eb240e2350589a1911118aa9426eb6a6c32e5ad63949e14996883bc73757454da1c15d7a30974b7cf947402436590334c375c1241a5cc23dbfcfa3c3b3c93bc665b5155248845050830861b99474d9ea3c154bb43f4c1f3090472922e6b03b9719ba4552a577cb8657e2ef8d34b7a202a1d4e0e9bd5aab52575ca4526396faf0ae8759e1e970a5983ffade19ca3f38284dee9f0cabcc1a2e9d00f8ec956e0d646b1b406ec4a32eac39dccb82581bfe4e76362798c124ffb4bd227235aa1e15136f6873c3620da97cd7cd6e5521eb86cd5ae5a5a798768eea58c072057eedc9d391d172e0227b5363e1cbe92d8ebf4c924cd60d2d6c75aae28ed2364b7eedc9d391d172e0227b5363e1cbe92db00b84656006726ca92ae22a9425ebdf9979ddf2e948aaef7efab9a7f3d1c861eb1d8691cfae0fd1d9cc7dfbb00109d0885e615305edaacf1f3f5feaf1c83310fd11e09e8e61694353f12b3de376292ab8e1cf61ae0a0eea2b47bd8d81e1c0457f5922c77552f490d3262779aa4ab3931bd4c2f47f292ec7f40186ea56ed6a7b1afe29d6fd1b3d71c3fb6932e6f93ee00366ccff4f095090ad2f5d20bc2c649aa1b68e7e91d24dd998e1eac1dd875b6cd21ffad81d06f5832b5d0064377dc3d25b18490d336ed268f6c8e04b3004ca53a9cd5cab2f849d8d4ad71b56fe49fa7f887d8a58db70054088aeff6300c25ccb2f52603fe75a93d26a135b5e42e2e45a377e6389909af5d7f1c61cc5a48a44b4a60df23da7e83dc7212ae850d24d2de20156d78c0216858a1b78b7a24580cf32e2d7e5b7796cf8592027fd2753fee048db714a86614cc6bbfffbfdd835ad1a2c2b8b97a10d86c93c264d3b03279b74b70fac98178c379f3031efd9d6ad276beca0b51a40f992deeb6211857cd37899af838626c841a94cc68fa5f1a55571e17fc0a8e9b4cfce8c63dbf5cfb562023305ae9a2bdc79a6e1646bdfb52d06789aea09c14d9f6677d8aed729f728da39b4bf6a9dbc60e3a9416c8aea3550495faf4d96fbc9b252fb8e9937c09d781ecde6ee0dc9b2a0f1dcfa5ed88c73eb2f3f861532e88f32fce2613dcdff801eb330504b81f412827d7f5d64d7095cb59ceec55b3fc040ba937c7bd75db7362ea41c7dd33f83f5d5a28e5bf0150c2c611dc798ac21c6157337548e55e63035836cb8162b3cb8d89200c1e4aba67a15cd5565e6b00364ed2f894658106e5b31022946ea8e2232ab6fc65cd94f42f4d10f6085f6869211b4663a3ffe6f1e1dc3e44bea6dc7fb5456c9e36fc4eaa314c7cdf076bc6dfde2e7ef1798b9ac13a3bf2b310f8cbe9f6e87be5e6e076b549de2dad2592ae19307353dd810de256ccac7c21865c8e78aa9747fd0f7b860a4719b67aaa4d36fc53e5697195bf5a7f100b3b1b0b0f879a50c22de984bdcd6981c63bfb85cf03fd9a56109e6e544dd18baf5937b72c906d6187874d28aef340c29d5447df24c5488a7dac6e5552caf32bd2eace1578ee60e8fd6541d945f8d801df7c347b4e74dfa2356de10a54d6dc78d0b2dfcda895ainitrd-xenvmlinuz-xen@@@@@@@@@@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootkernel-xen-2.6.31.14-0.2.1.nosrc.rpmkernel-basekernel-xen-basekernel-xen-base(x86-64)      rpmlib(VersionedDependencies)coreutilsawkmodule-init-toolsperl-Bootloadermkinitrd/bin/sh/bin/sh/bin/sh/bin/shrpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)rpmlib(PayloadIsLzma)3.0.3-14.0.4-14.0-13.0.4-14.4.6-14.7.1L@L@LA@LLLLX@LX@LX@LX@LX@LLLLL@L@L@L@L@L@L~@@L~@@L~@@L~@@L|L|L|L|L|LmLe3La?@La?@La?@La?@LV@LN@L>@L3L#HL#HL#HL#HL#HL#HL!@LK@KKK@K@KK @K @K޺K#@KEKKKKKKKKK"@K"@KKKK@KKP@KP@K[K[Kg@KrKrKrKrK@K@KKKK@KKKKO@KO@KO@KKKK@K @KKKKKf@Kf@Kf@Kf@KqK~}@K{@K{@KzKzKuBKuBKuBKs@Ks@KrKqN@KqN@KqN@KjKie@K`*K`*K^@K^@K^@K]K]K]KZKZKY@KY@KXAKXAKXAKUKUKUKTM@KPXKO@KO@KO@KO@KO@KMKMKLd@KLd@KG@KG@KEKEKEKEKEKC)K9@K,@K,@K,@K+nK(K'z@K'z@K'z@K'z@K'z@K&(K&(K&(K&(K"4@K?K?K?K?K@KKKK@K@KVK@K@KK@KmK @K @K @K y@KK3@KKK@K@K>JJ@JJ@JJJJJJJ@JUJUJ@J@JJJJ@J@J@JlJ@JJJJJ@JJJ2@JJ@J@JJI@Jݦ@Jݦ@Jݦ@Jս@Jս@JkJkJkJ@J@JJ@J@J@J@J@J@J@J@J@J@ĴĴJ1@J1@J1@JJJJ@J@JęJęJH@JH@JJ J@JjJjJJJ$J$J@JJJ0@J0@J;J;J@J@J@J@JG@JG@JG@JJJJ@J@J@JJ^@J^@J^@J J J J@J@J#J@J@JJJJ@J@J@J@J:J:J@J@JJF@JF@JF@JJ@J@JQJQJ@J@JJJ]@J]@J]@J J J J|@J|@J|@J|@J|@JzJzJyt@Jyt@Jyt@Jyt@Jyt@Jyt@Jx"Jx"Jx"Jv@Jv@Jv@Jv@JrJp9Jn@Jn@Jn@Jn@JmJmJmJmJmJmJlE@Ji@Ji@JhPJhPJhPJf@Jf@Jf@Jf@JeJeJeJeJd\@Jd\@Jd\@Jd\@Ja@Ja@Ja@Ja@J`gJ`gJ`gJ`gJ_@J_@J_@J_@J_@J_@J]J]J]J]J\s@J[!J[!J[!JS8JS8JQ@JMJMJMJI@JI@JI@JHJHJD@JB@JB@JB@J@J@J@J@J@J<@J<@J<@J<@J<@J<@J;}J;}J2C@J/@J/@J.NJ.NJ.NJ,@J)J'@J'@J'@J#J@J@J|J+@J+@JJJJ@J6J@JJJJJ@J@J@J@J@J@JMJ Y@J J J @J @J@J@J@J{J{J*@J*@J*@J*@J*@J*@J*@I@I@I@III@I@IIIIIIX@IX@IX@IX@IX@IcIcI@I4I4I4I4I4I4I@IܑI@@I@@IIIIII؝@I@I@I@I@I@I@I@I@I@I@IԨIԨIԨIԨIԨIIIIIIIIIIIIIIIIIIIIIIIд@Iд@Iд@In@I@IÅ@I@III?@I@I@I@I@I@IIIII@I@I@I@I@Im@Im@Im@I@I@I2I2II@I@I@I@I@I@III@I@IU@I@I`III&@I&@I&@I1I1I1I1I1I@I@I@I@I@I@I@I=@I=@I=@IIII@I@I@IHIHIHIHIHIHIHIHIHI~@I~@I~@I~@I}I}I}I}I}I}I}I}I}I}I}I}I}I}I}I}I|T@I|T@I|T@I{I{I{I{I{Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Iy@Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Ix_Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@Iw@IuIuIuIuIuIuIuItk@Itk@Itk@Itk@Iq@IpvIpvIpvIpvIpvIpvIpvIo%@Io%@Io%@Io%@Io%@Io%@ImImImImImImImImImImImImIl@Il@Il@Il@Il@Ik0Ik0Ik0Ik0Ik0Ik0Ik0Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@Ig<@IeIeIeIeIeIeIeIeIeIeIeIeIeIeIeIeIeId@Id@Id@Id@Id@Id@Id@Id@Id@Id@IcGIcGIcGIcGIa@Ia@Ia@Ia@Ia@Ia@I[^I[^IZ @IO@IO@IL@IL@IKIKIKIKIKIJ;@IJ;@IJ;@IJ;@IJ;@IJ;@IJ;@IHIHIHIHIHIG@IG@IG@IG@IG@IG@IFFIFFIFFID@IBR@IBR@IBR@IBR@IBR@IBR@IBR@IBR@IBR@IBR@IBR@IAIAIAIAI?@I?@I?@I?@I?@I?@I?@I?@I>]I>]I>]I>]I>]I>]I>]I= @I= @I= @I= @I= @I= @I= @I= @I= @I= @I= @I:i@I:i@I:i@I9I9I9I9I9I9I9I9I9I9I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I7@I6tI6tI6tI6tI6tI6tI6tI6tI6tI6tI6tI6tI5#@I5#@I5#@I5#@I5#@I5#@I5#@I5#@I5#@I3I3I3I3I1.I1.I1.I1.I/@I/@I/@I/@I/@I/@I.I.I.I.I.I.I.I.I.I-:@I-:@I-:@I+I+I+I+I+I*@I*@I*@I*@I*@I*@I*@I)EI'@I'@I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I&I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I%Q@I#I#I#I#I#I#I#I#I#I#I#I#I#I"@I"@I"@I"@I"@I"@I"@I"@I"@I"@I"@I"@I!\I!\I!\IIIIh@Ih@Ih@Ih@Ih@Ih@Ih@Ih@Ih@Ih@IIIIIIIIII@I@I@I@I@I@IsIsIsIsIsIsIsI"@I"@I"@I"@I"@I"@I"@II@I@I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I-I@I@I@I@I@I@I@I@I@I@I@I@I@IIIIIIIIIIIIIIIIIIII9@I9@I9@I9@I9@I9@I9@I9@I9@I9@I9@IIIIIIIIIII @I @I @I @I @I @I DI @I @I @I @I @I @I @I @I I I I IP@IP@IP@IP@IP@IP@IP@IP@IP@IP@IIIIIIIIIIIIII@I@I@I[I[I[I @I @I @IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIg@Ig@Ig@Ig@Ig@Ig@Ig@Ig@Ig@Ig@HHHHHHH@H@H@H@H@HrHrHrHrHrHrHrHrHrHrHrHHH~@H~@H~@H~@H~@H,H,H,H,H,H,H@H@H@H@H@H@HHHHHHHHHHHHHHHHHHHH8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@H8@HCHCHCHCHCH@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@HHHHHHHHHHHHHHHHHHHHHHHHO@HO@HO@HO@HO@HO@HHH@H@H@H @H @H @H @H @H @H @H @H @HHHHHHf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HHHHHHHHHH@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@HqHqHqHqH @H @H @H @HHHHHHHHHHHHHHH}@H}@H+H@H@H@H׈H׈H׈H׈HӔ@HӔ@HBHBHBH@H@H@HϟHN@HN@HN@HN@HN@HN@HYHYHYHYHYH@H@H@H@H@H@H@H@H@H@H@HǶHǶHǶHǶHǶHǶHǶHǶHǶHǶHǶHǶHe@He@HH@H@H@HHHH|@H|@H|@H|@H|@H|@H*H*H@H@H@HHH@H@H@HHHHHHHHHH@HHHHd@Hd@HoHoHoHoHoH@H@H@H@H@H@H@H@H5@H5@H5@H5@HH@H@H@H@H@H@H@H@H@H@H@H@H@HHHHHH@H@H@H@HnHnHnHH4@H4@H4@H4@H4@H{?H{?H{?H{?H{?HwK@HuHuHuHt@Ht@Ht@Ht@Ht@Ht@Hr@HkmHkmHkmHd@HcHcHcHcHb3@Hb3@Hb3@Hb3@H_@H_@HXHRa@HRa@HRa@HRa@HQHQHQHQHQHO@HO@HO@HO@HO@HM@HM@HM@HM@HM@HM@HJx@HI&HG@HFHFHFHFHE2@HE2@HCHCHCHCHCHA=H>H>H>H>H=I@H=I@H:@H:@H9TH8@H6H6H5`@H5`@H5`@H5`@H5`@H4H4H4H2@H2@H2@H1kH1kH1kH1kH1kH1kH1kH1kH1kH0@H0@H0@H0@H0@H.H-w@H-w@H-w@H-w@H-w@H-w@H-w@H,%H,%H,%H*@H*@H*@H)H)H)H(1@H%@H$ias_obj on irda_bind() failure (CVE-2010-2954 bnc#636112).- patches.fixes/xfs-clean-up-inconsistent-variable-naming-in-xfs_swap_extent: xfs: clean up inconsistent variable naming in xfs_swap_extent (CVE-2010-2226 bnc#615141). - patches.fixes/xfs-prevent-swapext-from-operating-on-write-only-files: xfs: prevent swapext from operating on write-only files (bnc#615141 CVE-2010-2226).- patches.fixes/jfs-don-t-allow-os2-xattr-namespace-overlap-with-others: jfs: don't allow os2 xattr namespace overlap with others (CVE-2010-2946 bnc#633585).- patches.fixes/can-add-limit-for-nframes-and-clean-up-signed-unsigned-variables: can: add limit for nframes and clean up signed/unsigned variables (bnc#633581 CVE-2010-2959).- patches.fixes/net-sched-fix-some-kernel-memory-leaks: net sched: fix some kernel memory leaks (CVE-2010-2942 bnc#632309).- patches.fixes/ext4-consolidate-in_range-definitions: ext4: consolidate in_range() definitions (CVE-2010-3015 bnc#631801).- patches.fixes/ecryptfs-bugfix-for-error-related-to-ecryptfs_hash_buckets: ecryptfs: Bugfix for error related to ecryptfs_hash_buckets (bnc#619850 CVE-2010-2492).- patches.fixes/cifs-fix-a-kernel-bug-with-remote-os-2-server-try-3: cifs: Fix a kernel BUG with remote OS/2 server (try #3) (CVE-2010-2248 bnc#618156). - patches.fixes/cifs-fix-kernel-bug-with-os2-server.patch: Delete.- patches.fixes/drm-stop-information-leak-of-old-kernel-stack: drm: stop information leak of old kernel stack (bnc#628604 CVE-2010-2803).- patches.fixes/ethtool-fix-potential-kernel-buffer-overflow-in-ethtool_grxclsrlall: ethtool: Fix potential kernel buffer overflow in ETHTOOL_GRXCLSRLALL (CVE-2010-2478 bnc#618157). - patches.fixes/ethtool-fix-potential-user-buffer-overflow-for-ethtool_-g-s-rxfh: ethtool: Fix potential user buffer overflow for ETHTOOL_{G, S}RXFH (CVE-2010-2478 bnc#618157).3 patches from 2.6.32.17: - patches.kernel.org/hwmon-coretemp-properly-label-the-sensors.patch: hwmon: (coretemp) Properly label the sensors. - patches.kernel.org/hwmon-k8temp-bypass-core-swapping-on-single-core-processors.patch: hwmon: (k8temp) Bypass core swapping on single-core processors. - patches.kernel.org/v4l-fusionhdtv-use-quick-reads-for-i2c-ir-device-probing.patch: V4L/DVB: FusionHDTV: Use quick reads for I2C IR device probing.- README.BRANCH: Updated to remove the HEAD reference.- patches.fixes/cifs-fix-a-malicious-redirect-problem-in-the-dns-lookup-code: CIFS: Fix a malicious redirect problem in the DNS lookup code (bnc#627447 CVE-2010-2524).- patches.fixes/gfs2-rename-causes-kernel-oops: GFS2: rename causes kernel Oops (bnc#627386 CVE-2010-2798).- patches.fixes/btrfs-fix-checks-in-btrfs_ioc_clone_range: Btrfs: fix checks in BTRFS_IOC_CLONE_RANGE (CVE-2010-2537 CVE-2010-2538 bnc#624587).- patches.fixes/nfsd4-bug-in-read_buf: nfsd4: bug in read_buf (bnc#620372 CVE-2010-2521).- rpm/kernel-source.spec.in: Package log.sh in the source rpm.- Update to 2.6.31.14 - bug fixes - obsoletes: - patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv- patches.drivers/e1000e-dont-inadvertently-re-set-INTX_DISABLE.patch: e1000e: don't inadvertently re-set INTX_DISABLE (bnc#610362).- patches.kernel.org/hwmon-ltc4245-01-read-only-one-gpio-pin.patch: hwmon: (ltc4245) Read only one GPIO pin.- patches.fixes/thinkpad-acpi-lock-down-video-output-state-access: thinkpad-acpi: lock down video output state access (bnc#616614).- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only files (bnc#612457 CVE-2010-2066).- patches.fixes/l2tp-fix-oops-in-pppol2tp_xmit: l2tp: Fix oops in pppol2tp_xmit (bnc#616612).- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: Btrfs: should add a permission check for setfacl (CVE-2010-2071 bnc#614054).- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 CVE-2010-1641).- patches.kernel.org/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: (it87) Fix in7 on IT8720F (bnc#612910).- patches.fixes/nfs-truncate-oops.fix: NFS: Fix an Oops when truncating a file (bnc#612213).- patches.fixes/ext4-fix-optional-arg-mount-options: ext4: Fix optional-arg mount options (bnc#611760).- patches.xen/1012-x86_64-kern_addr_valid.patch: xen/x86-64: kern_addr_valid() must not walk page tables mapping hypervisor space (bnc#591371). - patches.xen/1013-blktap-teardown.patch: xen/blktap: fix cleanup after unclean application exit (bnc#589788). - Update other Xen patches (bnc#583867, bnc#584554, bnc#601328).- patches.kernel.org/i2c-fix-probing-of-fsc-hwmon-chips.patch: i2c: Fix probing of FSC hardware monitoring chips (bko#15634).- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI on VIA K8M800 (bnc#599508).- patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove: hvc_console: Fix race between hvc_close and hvc_remove (bnc#585385). - patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove2: hvc_console: Fix race between hvc_close and hvc_remove (bnc#585385).- patches.fixes/btrfs-check-for-read-permission-on-src-file-in-the-clone-ioctl: Btrfs: check for read permission on src file in the clone ioctl (bnc#606743).- patches.fixes/keys-find_keyring_by_name-can-gain-access-to-a-freed-keyring: KEYS: find_keyring_by_name() can gain access to a freed keyring (bnc#599955 CVE-2010-1437).- patches.fixes/powernow-k8-fix-frequency-reporting: powernow-k8: Fix frequency reporting (bnc#602209).- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd (as nfs server uses) on create (bnc#593940).- patches.fixes/novfs-truncate-EIO-fix.patch: novfs: ftruncate call returns EIO as it causes two open calls (bnc#596031).- patches.kernel.org/hwmon-sht15-01-fix-sht15_calc_temp-interpolation-function.patch: hwmon: (sht15) Fix sht15_calc_temp interpolation function. - patches.kernel.org/hwmon-sht15-02-handle-CONFIG_REGULATOR_n.patch: hwmon: (sht15) Properly handle the case CONFIG_REGULATOR=n.- patches.fixes/tty-release_one_tty-forgets-to-put-pids: tty: release_one_tty() forgets to put pids (bnc#596462).- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove dcache count restricting code (bnc#576026). - patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an oops in novfs scope-finding code (bnc#588579).- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local (bnc#569071). - patches.fixes/novfs-fix-debug-message.patch: novfs: fix debug message. - patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when looking up inode (bnc#486997). - patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs reports incorrect file size (bnc#426536). - patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of OO documents on NSS Volumes (bnc#508259).- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: fix locking around blk_abort_request() (bnc#585927).- patches.fixes/input-add-hp-compaq-2710p-to-noloop-table.patch: Input: add HP Compaq 2710p to 'noloop' table (bnc#465707).- patches.fixes/loop-update-mtime.patch: loop: Update mtime when writing using aops (bnc#590738).- patches.fixes/unsupported-empty-barriers.patch: block: silently error unsupported empty barriers too (bnc#575697).- patches.xen/xen3-patch-2.6.31.12-13: Linux 2.6.31.13. - patches.xen/xen3-use-totalram_pages: Delete.- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 CVE-2010-1146).- patches.fixes/drm-i915-add-hangcheck-timer: drm/i915: Add hangcheck timer (bnc#556837 bnc#557201). - patches.fixes/drm-i915-check-whether-chip-is-wedged-in-i915_wait_request: drm/i915: Check whether chip is wedged in i915_wait_request() (bnc#556837 bnc#557201). - patches.fixes/drm-i915-hookup-chip-reset-in-error-handler: drm/i915: Hookup chip reset in error handler (bnc#556837 bnc#557201). - patches.fixes/drm-i915-implement-gpu-reset-on-i965: drm/i915: Implement GPU reset on i965 (bnc#556837 bnc#557201). - patches.fixes/drm-i915-make-dev_priv-mm-wedged-an-atomic_t: drm/i915: Make dev_priv->mm.wedged an atomic_t (bnc#556837 bnc#557201). - patches.fixes/drm-i915-make-i915_seqno_passed-non-static: drm/i915: make i915_seqno_passed non-static (bnc#556837 bnc#557201). - patches.fixes/drm-i915-pad-ringbuffer-with-noops-before-wrapping: drm/i915: Pad ringbuffer with NOOPs before wrapping (bnc#556837 bnc#557201). - patches.fixes/drm-i915-refactor-save-restore-code: drm/i915: Refactor save/restore code (bnc#556837 bnc#557201).- update to 2.6.31.13: - security fixes - bugfixes - obsoletes: - patches.drivers/alsa-usb-07-avoid-oops-at-disconnect - patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined - patches.fixes/alsa-hda-intel-avoid-divide-by-zero-crash - patches.fixes/ath5k-Fix-eeprom-checksum.patch - patches.fixes/cifs-fix-unicode-readdir-length-calculation - patches.fixes/clockevent-don-t-remove-broadcast-device-when-cpu-is-dead - patches.fixes/connector-delete-buggy-notification-code - patches.fixes/dnotify-ignore-FS_EVENT_ON_CHILD.diff - patches.fixes/drm-r128-add-test-for-initialisation-to-all-ioctls-that-require-it - patches.fixes/fix-lookup_follow-on-automount-symlinks - patches.fixes/fix-potential-crash-with-sys_move_pages - patches.fixes/futex-handle-user-space-corruption-gracefully - patches.fixes/futex_lock_pi-key-refcnt-fix - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard - patches.fixes/inotify-fix-coalesce-duplicate-events-into-a-single.diff - patches.fixes/kvm-x86-emulator-limit-instructions-to-15-bytes.patch - patches.fixes/nfs-fix-nfs_fscache_release_page.patch - patches.fixes/use-totalram_pages - patches.kernel.org/ecryptfs-initialize-private-persistent-file-before-dereferencing-pointer.patch - patches.kernel.org/ecryptfs-use-after-free.patch - patches.kernel.org/edac-i5000_edac-critical-fix-panic-out-of-bounds.patch - patches.kernel.org/fnctl-f_modown-should-call-write_lock_irqsave-restore.patch - patches.kernel.org/hwmon-adt7462-wrong-ADT7462_VOLT_COUNT.patch - patches.kernel.org/hwmon-fschmd-fix-memleak.patch - patches.kernel.org/hwmon-lm78-request-io-ports-individually.patch - patches.kernel.org/hwmon-w83781d-request-io-ports-individually.patch - patches.kernel.org/i2c-do-not-use-device-name-after-device_unregister.patch - patches.kernel.org/i2c-pca-dont-use-interruptible.patch - patches.kernel.org/i2c-tiny-usb-fix-on-big-endian.patch - patches.kernel.org/inotify-do-not-reuse-watch-descriptors.patch - patches.kernel.org/inotify-only-warn-once-for-inotify-problems.patch - patches.kernel.org/input-alps-add-interleaved-protocol-support-dell-e6x00-series.patch - patches.kernel.org/ipc-ns-fix-memory-leak-idr.patch - patches.kernel.org/megaraid_sas-remove-sysfs-poll_mode_io-world-writeable-permissions.patch - patches.kernel.org/nozomi-quick-fix-for-the-close-close-bug.patch - patches.kernel.org/page-allocator-update-nr_free_pages-only-when-necessary.patch - patches.kernel.org/partitions-read-whole-sector-with-efi-gpt-header.patch - patches.kernel.org/partitions-use-sector-size-for-efi-gpt.patch - patches.kernel.org/reiserfs-truncate-blocks-not-used-by-a-write.patch - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch - patches.kernel.org/serial-8250_pnp-use-wildcard-for-serial-wacom-tablets.patch - patches.kernel.org/sfc-fix-dma-mapping-cleanup-in-case-of-an-error-in-tso.patch - patches.kernel.org/tty-fix-race-in-tty_fasync.patch - patches.kernel.org/usb-add-missing-delay-during-remote-wakeup.patch - patches.kernel.org/usb-add-speed-values-for-usb-3.0-and-wireless-controllers.patch - patches.kernel.org/usb-don-t-use-gfp_kernel-while-we-cannot-reset-a-storage-device.patch - patches.kernel.org/usb-ehci-fix-handling-of-unusual-interrupt-intervals.patch - patches.kernel.org/usb-ehci-uhci-fix-race-between-root-hub-suspend-and-port-resume.patch - patches.kernel.org/usb-fix-bitmask-merge-error.patch - patches.kernel.org/usb-fix-usbstorage-for-2770-915d-delivers-no-fat.patch - patches.kernel.org/usb-serial-fix-memory-leak-in-generic-driver.patch - patches.kernel.org/usb-usbfs-only-copy-the-actual-data-received - patches.kernel.org/usb-usbfs-properly-clean-up-the-as-structure-on-error-paths - patches.kernel.org/uvcvideo-Add-a-module-parameter-to-set.patch - patches.kernel.org/v4l-dvb-af9015-add-new-usb-id-for-kworld-plustv-dual-dvb-t-stick-dvb-t-399u.patch - patches.kernel.org/vmalloc-remove-bug_on-due-to-racy-counting-of-vm_lazy_free.patch - patches.kernel.org/x86-apic-use-physical-mode-for-ibm-summit-platforms.patch - patches.kernel.org/x86-pci-pat-return-einval-for-pci-mmap-wc-request-for-pat_enabled.patch- patches.fixes/cifs-fix-kernel-bug-with-os2-server.patch: cifs: Fix a kernel BUG with remote OS/2 server (bnc#571494).- patches.drivers/r8169-offical-fix-for-CVE-2009-4537-overlength-frame.patch: r8169: offical fix for CVE-2009-4537 (overlength frame DMAs) (bnc#567376, CVE-2009-4537).- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops on SG_IO (bnc#573244).- patches.fixes/iwlwifi-reorder-device-setup.patch: iwlwifi: reorder device setup (bnc#586711).- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in gyration_event() (bnc#589329).- patches.fixes/iwlwifi-remove-ieee80211_get_tx_rate.patch: iwlwifi: remove incorrect uses of ieee80211_get_tx_rate to prevent TX stall (bnc#567860).- patches.fixes/mandatory-lock-test: 9p/ocfs2/gfs2: allow file unlock on 'mandatory locking' file (bnc#589280).- patches.fixes/ext4-calculate-metadata-requirements-more-accurately: ext4: Calculate metadata requirements more accurately (bnc#587265). - patches.fixes/ext4-convert-bug_on-checks-to-use-ext4_error-instead: ext4: Convert BUG_ON checks to use ext4_error() instead. - patches.fixes/ext4-explicitly-remove-inode-from-orphan-list-after-failed-direct-io: ext4: explicitly remove inode from orphan list after failed direct io. - patches.fixes/ext4-fix-accounting-of-reserved-metadata-blocks: ext4: Fix accounting of reserved metadata blocks (bnc#587265). - patches.fixes/ext4-fix-extent-sanity-checking-code-with-aggressive_test: ext4: fix extent sanity checking code with AGGRESSIVE_TEST. - patches.fixes/ext4-fix-potential-quota-deadlock: ext4: Fix potential quota deadlock. - patches.fixes/ext4-handle-edquot-error-on-write: ext4: Handle - EDQUOT error on write. - patches.fixes/ext4-move-__func__-into-a-macro-for-ext4_warning-ext4_error: ext4: move __func__ into a macro for ext4_warning, ext4_error. - patches.fixes/ext4-patch-up-how-we-claim-metadata-blocks-for-quota-purposes: ext4: Patch up how we claim metadata blocks for quota purposes (bnc#587265). - patches.fixes/ext4-replace-bug-with-return-eio-in-ext4_ext_get_blocks: ext4: replace BUG() with return -EIO in ext4_ext_get_blocks. - patches.fixes/ext4-return-correct-wbc-nr_to_write-in-ext4_da_writepages: ext4: return correct wbc.nr_to_write in ext4_da_writepages.- patches.fixes/ext4-calculate-metadata-requirements-more-accurately: ext4: Calculate metadata requirements more accurately. - patches.fixes/ext4-convert-bug_on-checks-to-use-ext4_error-instead: ext4: Convert BUG_ON checks to use ext4_error() instead. - patches.fixes/ext4-explicitly-remove-inode-from-orphan-list-after-failed-direct-io: ext4: explicitly remove inode from orphan list after failed direct io. - patches.fixes/ext4-fix-accounting-of-reserved-metadata-blocks: ext4: Fix accounting of reserved metadata blocks. - patches.fixes/ext4-fix-extent-sanity-checking-code-with-aggressive_test: ext4: fix extent sanity checking code with AGGRESSIVE_TEST. - patches.fixes/ext4-fix-potential-quota-deadlock: ext4: Fix potential quota deadlock. - patches.fixes/ext4-handle-edquot-error-on-write: ext4: Handle - EDQUOT error on write. - patches.fixes/ext4-move-__func__-into-a-macro-for-ext4_warning-ext4_error: ext4: move __func__ into a macro for ext4_warning, ext4_error. - patches.fixes/ext4-patch-up-how-we-claim-metadata-blocks-for-quota-purposes: ext4: Patch up how we claim metadata blocks for quota purposes. - patches.fixes/ext4-replace-bug-with-return-eio-in-ext4_ext_get_blocks: ext4: replace BUG() with return -EIO in ext4_ext_get_blocks. - patches.fixes/ext4-return-correct-wbc-nr_to_write-in-ext4_da_writepages: ext4: return correct wbc.nr_to_write in ext4_da_writepages.- patches.drivers/asus-laptop-use-KEY_F13-to-map-Disable-Touchpad-event.patch: asus-laptop: use KEY_F13 to map "Disable Touchpad" event (bnc#567867).- ext4 fixes (bnc#587265): - patches.fixes/ext4-calculate-metadata-requirements-more-accurately: ext4: Calculate metadata requirements more accurately. - patches.fixes/ext4-convert-bug_on-checks-to-use-ext4_error-instead: ext4: Convert BUG_ON checks to use ext4_error() instead. - patches.fixes/ext4-explicitly-remove-inode-from-orphan-list-after-failed-direct-io: ext4: explicitly remove inode from orphan list after failed direct io. - patches.fixes/ext4-fix-accounting-of-reserved-metadata-blocks: ext4: Fix accounting of reserved metadata blocks. - patches.fixes/ext4-fix-extent-sanity-checking-code-with-aggressive_test: ext4: fix extent sanity checking code with AGGRESSIVE_TEST. - patches.fixes/ext4-fix-potential-quota-deadlock: ext4: Fix potential quota deadlock. - patches.fixes/ext4-handle-edquot-error-on-write: ext4: Handle - EDQUOT error on write. - patches.fixes/ext4-move-__func__-into-a-macro-for-ext4_warning-ext4_error: ext4: move __func__ into a macro for ext4_warning, ext4_error. - patches.fixes/ext4-patch-up-how-we-claim-metadata-blocks-for-quota-purposes: ext4: Patch up how we claim metadata blocks for quota purposes. - patches.fixes/ext4-replace-bug-with-return-eio-in-ext4_ext_get_blocks: ext4: replace BUG() with return -EIO in ext4_ext_get_blocks. - patches.fixes/ext4-return-correct-wbc-nr_to_write-in-ext4_da_writepages: ext4: return correct wbc.nr_to_write in ext4_da_writepages.- ext4 fixes (bnc#587265): - patches.fixes/ext4-calculate-metadata-requirements-more-accurately: ext4: Calculate metadata requirements more accurately. - patches.fixes/ext4-convert-bug_on-checks-to-use-ext4_error-instead: ext4: Convert BUG_ON checks to use ext4_error() instead. - patches.fixes/ext4-explicitly-remove-inode-from-orphan-list-after-failed-direct-io: ext4: explicitly remove inode from orphan list after failed direct io. - patches.fixes/ext4-fix-accounting-of-reserved-metadata-blocks: ext4: Fix accounting of reserved metadata blocks. - patches.fixes/ext4-fix-extent-sanity-checking-code-with-aggressive_test: ext4: fix extent sanity checking code with AGGRESSIVE_TEST. - patches.fixes/ext4-fix-potential-quota-deadlock: ext4: Fix potential quota deadlock. - patches.fixes/ext4-handle-edquot-error-on-write: ext4: Handle - EDQUOT error on write. - patches.fixes/ext4-move-__func__-into-a-macro-for-ext4_warning-ext4_error: ext4: move __func__ into a macro for ext4_warning, ext4_error. - patches.fixes/ext4-patch-up-how-we-claim-metadata-blocks-for-quota-purposes: ext4: Patch up how we claim metadata blocks for quota purposes. - patches.fixes/ext4-replace-bug-with-return-eio-in-ext4_ext_get_blocks: ext4: replace BUG() with return -EIO in ext4_ext_get_blocks. - patches.fixes/ext4-return-correct-wbc-nr_to_write-in-ext4_da_writepages: ext4: return correct wbc.nr_to_write in ext4_da_writepages.- patches.kabi/revert-ext4-convert-to-generic-reserved-quota-s-space-management: ext4: Convert to generic reserved quota's space management.- patches.kernel.org/i2c-i801-no-block-buffer-for-i2c-block-write.patch: i2c-i801: Don't use the block buffer for I2C block writes. - patches.kernel.org/macintosh-ams-rework-exit-code.patch: hwmon: (ams) Fix device removal sequence. - patches.kernel.org/macintosh-therm_adt746x-fix-sysfs-files-lifetime.patch: macintosh/therm_adt746x: Fix sysfs attributes lifetime. - patches.kernel.org/v4l-bttv-move-i2c-ir-init.patch: bttv: Move I2C IR initialization.- patches.fixes/gre-fix-netns-vs-proto-registration-ordering: gre: fix netns vs proto registration ordering (bnc#580799). - patches.fixes/tunnels-fix-netns-vs-proto-registration-ordering: tunnels: fix netns vs proto registration ordering (bnc#580799).- patches.fixes/xfs-non-blobking-inode-locking-io-completion: Fix uninitialized variable. Refresh.- patches.fixes/sky2-88E8059-support: sky2: 88E8059 support (bnc#544760 bnc#578708). - patches.fixes/sky2-add-register-definitions: sky2: add register definitions for new chips (bnc#544760). - patches.fixes/sky2-optima-fix-pci-cfg: net: Add missing TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). - patches.fixes/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 Optima TCP offload setup (bnc#544760).- patches.fixes/ipg-remove-device-claimed-by-dl2k-from-pci-id-table: ipg: Remove device claimed by dl2k from pci id table (bnc#579219).- patches.fixes/dm-raid45-fix-region-hash-double-free: Fix region hash double free when context_alloc fails (bnc#565962). - patches.fixes/dm-raid45_exit_destroy_cache: Free recovery stripes before destroying cache and do not destroy dirty log twice (bnc#565962).- patches.fixes/xfs-non-blobking-inode-locking-io-completion: xfs: Non-blocking inode locking in IO completion (bnc#568319). - patches.suse/xfs-end-io-cleanup: xfs: cleanup data end I/O handlers. Makes it easier to apply the above patch (bnc#568319).- rpm/find-provides: Kill firmware(...) provides, nobody uses them.- rpm/find-provides: Do not provide anything for kernel-vanilla- rt2860/rt3090 fix rollup: - patches.staging/add-rt3090-wireless-driver: Staging: add rt3090 wireless driver. - patches.staging/correct-use-of-and: Staging: Correct use of ! and &. - patches.staging/fix-assorted-typos-in-rt2860: Staging: fix assorted typos [in rt2860]. - patches.staging/more-sched-h-fixes: staging: more sched.h fixes. - patches.staging/remove-no-longer-needed-rt3070-driver: Staging: remove no longer needed rt3070 driver. - patches.staging/remove-no-longer-needed-rt3090-driver: Staging: remove no longer needed rt3090 driver. - patches.staging/rt-2860-2870-3070-sta-remove-unused-crc-code: Staging: rt{2860,2870,3070}sta: Remove unused CRC code. - patches.staging/rt-don-t-confuse-user-of-rt3070-driver-with-rt2870-strings: Staging: rt*: don't confuse user of rt3070 driver with rt2870 strings. - patches.staging/rt-fix-wait_queue_head_t-declaration-on-stack: Staging: rt*: fix wait_queue_head_t declaration on stack. - patches.staging/rt2860-add-new-device-ids: Staging: rt2860: add new device ids. - patches.staging/rt2860-add-rt3090-chipset-support: Staging: rt2860: add RT3090 chipset support. - patches.staging/rt2860-convert-remaining-non-symbolic-return-values-in-ndo_start_xmit-functions: rt2860: convert remaining non-symbolic return values in ndo_start_xmit() functions. - patches.staging/rt2860-fix-possible-null-dereferences: Staging: rt2860: fix possible NULL dereferences. - patches.staging/rt2860-fix-test-in-rt_ioctl_siwfrag: Staging: rt2860: Fix test in rt_ioctl_siwfrag(). - patches.staging/rt2860-includecheck-fix-rt_linux-h: Staging: rt2860: includecheck fix: rt_linux.h. - patches.staging/rt2860-reduce-superfluous-exclamation-marks: Staging: rt2860: reduce superfluous exclamation marks. - patches.staging/rt2860-remove-dependency-on-wireless_ext-version: Staging: rt2860: remove dependency on WIRELESS_EXT version. - patches.staging/rt2860-remove-remainders-of-etc-reading-stuff: Staging: rt2860: remove remainders of /etc reading stuff. - patches.staging/rt2860-remove-superfluous-newlines: Staging: rt2860: remove superfluous newlines. - patches.staging/rt2860-rt2870-rt3070-rt3090-fix-compiler-warning-on-x86_64: Staging: rt2860/rt2870/rt3070/rt3090: fix compiler warning on x86_64. - patches.staging/rt2860-use-skb_set_tail_pointer: rt2860: use skb_set_tail_pointer (bnc#540589). - patches.staging/rt28670-remove-unused-md4-h: Staging: rt28[67]0: remove unused md4.h. - patches.staging/rt2870-add-antenna-diversity-support: Staging: rt2870: add Antenna Diversity support. - patches.staging/rt2870-add-efuse-support: Staging: rt2870: add eFuse support. - patches.staging/rt2870-add-frtusb_bulk_out_data_normal_5-quirk: Staging: rt2870: add fRTUSB_BULK_OUT_DATA_NORMAL_5 quirk. - patches.staging/rt2870-duplicated-code-is-executed-twice-in-asicevaluaterxant: Staging: rt2870: duplicated code is executed twice in AsicEvaluateRxAnt(). - patches.staging/rt2870-new-usb-id-for-belkin-n-f5d8055: Staging: rt2870: new USB ID for Belkin N+ F5D8055. - patches.staging/rt2870-remove-old-firmware: Staging: rt2870: remove old firmware. - patches.staging/rt2870-remove-show_adhoc_entry_info-support: Staging: rt2870: remove SHOW_ADHOC_ENTRY_INFO support. - patches.staging/rt2870-use-internal-command-for-asicupdateprotect: Staging: rt2870: use internal command for AsicUpdateProtect(). - patches.staging/rt2870sta-interface-names: Staging: rt2870sta interface names. - patches.staging/rt28x0-add-proper-selection-of-wireless_ext-and-wext_priv: Staging: rt28x0: Add proper selection of WIRELESS_EXT and WEXT_PRIV. - patches.staging/rt28x0-add-siocgiwname-support-to-rt_ioctl_giwscan: Staging: rt28x0: add SIOCGIWNAME support to rt_ioctl_giwscan(). - patches.staging/rt28x0-asicswitchchannel-fix: Staging: rt28x0: AsicSwitchChannel() fix. - patches.staging/rt28x0-bsstablesetentry-fix: Staging: rt28x0: BssTableSetEntry() fix. - patches.staging/rt28x0-fix-bacapability-policy-handling: Staging: rt28x0 fix BACapability policy handling. - patches.staging/rt28x0-fix-bpp_r66-register-handling: Staging: rt28x0: fix BPP_R66 register handling. - patches.staging/rt28x0-fix-comments-in-c-files: Staging: rt28x0: fix comments in *.c files. - patches.staging/rt28x0-fix-comments-in-chip-mac_pci-h: Staging: rt28x0: fix comments in chip/mac_pci.h. - patches.staging/rt28x0-fix-comments-in-common-c-files: Staging: rt28x0: fix comments in common/*.c files. - patches.staging/rt28x0-fix-comments-in-h-files: Staging: rt28x0: fix comments in *.h files. - patches.staging/rt28x0-fix-comments-in-sta-c-files: Staging: rt28x0: fix comments in sta/*.c files. - patches.staging/rt28x0-fix-fop_status_doze-flag-handling: Staging: rt28x0: fix fOP_STATUS_DOZE flag handling. - patches.staging/rt28x0-fix-gtk-length-check-in-parsekeydata: Staging: rt28x0: fix GTK length check in ParseKeyData(). - patches.staging/rt28x0-fix-some-build-warnings: Staging: rt28x0: fix some build warnings. - patches.staging/rt28x0-linkup-fixes: Staging: rt28x0: LinkUp() fixes. - patches.staging/rt28x0-mlmeassocreqaction-fixes-for-wpa_supplicant-support: Staging: rt28x0: MlmeAssocReqAction() fixes for wpa_supplicant support. - patches.staging/rt28x0-mlmecheckpsmchange-fix: Staging: rt28x0: MlmeCheckPsmChange() fix. - patches.staging/rt28x0-mlmeselecttxratetable-fix: Staging: rt28x0: MlmeSelectTxRateTable() fix. - patches.staging/rt28x0-remove-__line__-instances: Staging: rt28x0: remove __LINE__ instances. - patches.staging/rt28x0-remove-dead-code: Staging: rt28x0: remove dead code. - patches.staging/rt28x0-remove-dead-code-from-rtmp_phy-h: Staging: rt28x0: remove dead code from rtmp_phy.h. - patches.staging/rt28x0-remove-no-longer-needed-common-cmm_data_2860-c: Staging: rt28x0: remove no longer needed common/cmm_data_2860.c. - patches.staging/rt28x0-remove-optional-cmm-profile-parameters: Staging: rt28x0: remove optional cmm profile parameters. - patches.staging/rt28x0-remove-optional-loading-of-eeprom-from-file-in-efuse-mode: Staging: rt28x0: remove optional loading of EEPROM from file in eFuse mode. - patches.staging/rt28x0-remove-private-rtpriv_ioctl_gsitesurvey-ioctl: Staging: rt28x0: remove private RTPRIV_IOCTL_GSITESURVEY ioctl. - patches.staging/rt28x0-remove-private-rtpriv_ioctl_set-ioctl: Staging: rt28x0: remove private RTPRIV_IOCTL_SET ioctl. - patches.staging/rt28x0-remove-private-wext-handlers: Staging: rt28x0: remove private WEXT handlers. - patches.staging/rt28x0-remove-support-for-private-driver-parameters: Staging: rt28x0: remove support for private driver parameters. - patches.staging/rt28x0-remove-typedefs-part-one: Staging: rt28x0: remove typedefs (part one). - patches.staging/rt28x0-remove-typedefs-part-three: Staging: rt28x0: remove typedefs (part three). - patches.staging/rt28x0-remove-typedefs-part-two: Staging: rt28x0: remove typedefs (part two). - patches.staging/rt28x0-remove-unused-code-from-common-dfs-c: Staging: rt28x0: remove unused code from common/dfs.c. - patches.staging/rt28x0-remove-unused-code-from-common-ee_efuse-c: Staging: rt28x0: remove unused code from common/ee_efuse-c. - patches.staging/rt28x0-remove-unused-eewrite-methods: Staging: rt28x0: remove unused ->eewrite methods. - patches.staging/rt28x0-remove-unused-sha256-code: Staging: rt28x0: remove unused SHA256 code. - patches.staging/rt28x0-rt_ioctl_siwencode-fixes: Staging: rt28x0: rt_ioctl_siwencode() fixes. - patches.staging/rt28x0-run-c-files-through-lindent: Staging: rt28x0: run *.c files through Lindent. - patches.staging/rt28x0-run-common-c-files-through-lindent: Staging: rt28x0: run common/*.c files through Lindent. - patches.staging/rt28x0-run-h-files-through-lindent: Staging: rt28x0: run *.h files through Lindent. - patches.staging/rt28x0-run-sta-c-files-through-lindent: Staging: rt28x0: run sta/*.c files through Lindent. - patches.staging/rt28x0-updates-from-vendor-s-v2-1-0-0-drivers: Staging: rt28x0: updates from vendor's V2.1.0.0 drivers. - patches.staging/rt3070-add-remaining-rt2870-device-ids: Staging: rt3070: add remaining rt2870 device ids. - patches.staging/rt3070-add-support-for-linksys-wusb54gc-eu-v3: Staging: rt3070: add support for Linksys WUSB54GC-EU v3. - patches.staging/rt3070-asicsetslottime-fix: Staging: rt3070: AsicSetSlotTime() fix. - patches.staging/rt3070-fix-build-warnings: Staging: rt3070: fix build warnings. - patches.staging/rt3070-fix-pid-checking-in-rtusbenqueuecmdfromndis: Staging: rt3070: fix PID checking in RTUSBEnqueueCmdFromNdis(). - patches.staging/rt3070-kill-timerqthr-thread-first-in-rt28xxthreadterminate: Staging: rt3070: kill TimerQThr thread first in RT28xxThreadTerminate(). - patches.staging/rt3070-remove-needless-efuse_tag-register-read: Staging: rt3070: remove needless EFUSE_TAG register read. - patches.staging/rt3070-remove-unused-miniportdatammrequest: Staging: rt3070: remove unused MiniportDataMMRequest(). - patches.staging/rt3070-remove-unused-rt_cmd_set_-internal-commands: Staging: rt3070: remove unused RT_CMD_SET_* internal commands. - patches.staging/rt3070-update-allowed-channels-list-for-japan: Staging: rt3070: update allowed channels list for Japan. - patches.staging/rt3070-wep-fixes: Staging: rt3070: WEP fixes. - patches.staging/rt3090-add-device-id-1462-891a: Staging: rt3090: add device id 1462:891a. - patches.staging/rt3090-disable-has_antenna_diversity_support-option: Staging: rt3090: disable HAS_ANTENNA_DIVERSITY_SUPPORT option. - patches.staging/rt3090-disable-has_ate-option: Staging: rt3090: disable HAS_ATE option. - patches.staging/rt3090-enable-native_wpa_supplicant_support-option: Staging: rt3090: enable NATIVE_WPA_SUPPLICANT_SUPPORT option. - patches.staging/rt3090-port-changes-in-wpa_mix_pair_cipher-to-rt3090: Staging: rt3090: port changes in WPA_MIX_PAIR_CIPHER to rt3090. - patches.staging/rt3090-remove-possible-conflict-with-rt2860: Staging: rt3090: remove possible conflict with rt2860. - patches.staging/rt3090-remove-private-debugging-ioctls: Staging: rt3090: remove private debugging ioctls. - patches.staging/rt3090-remove-private-ioctls: Staging: rt3090: remove private ioctls. - patches.staging/rt3090-rename-device-from-rax-to-wlanx: Staging: rt3090: rename device from raX to wlanX. - patches.staging/rtxx70-merge-rt3070-with-rt2870: Staging: rtxx70: merge rt3070 with rt2870. - patches.staging/rtxx70-unify-nicinitrt30xxrfregisters: Staging: rtxx70: unify NICInitRT30xxRFRegisters(). - patches.staging/rtxxx0-debug-messages-fixes: Staging: rtxxx0: debug messages fixes. - patches.staging/rtxxx0-kill-pid-macros: Staging: rtxxx0: kill PID macros. - patches.staging/rtxxx0-kill-rt8270_usb_devices-macro: Staging: rtxxx0: kill RT8270_USB_DEVICES() macro. - patches.staging/rtxxx0-pid-checking-fixes: Staging: rtxxx0: PID checking fixes. - patches.staging/rtxxx0-remove-dead-dbg_diagnose-code: Staging: rtxxx0: remove dead DBG_DIAGNOSE code. - patches.staging/rtxxx0-remove-dead-platform-specific-code: Staging: rtxxx0: remove dead platform specific code. - patches.staging/rtxxx0-remove-dead-virtual-adapter-support: Staging: rtxxx0: remove dead virtual adapter support. - patches.staging/rtxxx0-remove-private-debugging-ioctls: Staging: rtxxx0: remove private debugging ioctls. - patches.staging/rtxxx0-remove-private-ioctls: Staging: rtxxx0: remove private ioctls. - patches.staging/rtxxx0-remove-superfluous-function-prototypes: Staging: rtxxx0: remove superfluous function prototypes. - patches.staging/rtxxx0-remove-superfluous-rt30xx-ifdefs: Staging: rtxxx0: remove superfluous RT30xx ifdefs. - patches.staging/rtxxx0-remove-support-for-older-wireless-extensions: Staging: rtxxx0: remove support for older wireless extensions. - patches.staging/rtxxx0-remove-unused-code: Staging: rtxxx0: remove unused code. - patches.staging/rtxxx0-remove-unused-defines: Staging: rtxxx0: remove unused defines. - patches.staging/rtxxx0-remove-unused-link_list-h: Staging: rtxxx0: remove unused link_list.h. - patches.staging/rtxxx0-unify-asicevaluaterxant: Staging: rtxxx0: unify AsicEvaluateRxAnt(). - patches.staging/rtxxx0-unify-different-rt30xx-read-write-rfregister-flavors: Staging: rtxxx0: unify different RT30xx{Read,Write}RFRegister() flavors. - patches.staging/rtxxx0-unify-mlmecheckpsmchange: Staging: rtxxx0: unify MlmeCheckPsmChange(). - patches.staging/rtxxx0-unify-rt-usb-mp-filtercalibration: Staging: rtxxx0: unify RT{USB,MP}FilterCalibration(). - patches.staging/rtxxxx-remove-unused-asicantenna-select-setting: Staging: rtxxxx: remove unused AsicAntenna{Select,Setting}(). - patches.staging/rtxxxx-rtmpgetralinkauthmodestr-fixes: Staging: rtxxxx: RTMPGetRalinkAuthModeStr() fixes. - patches.staging/rtxxxx-unify-asicrxantevaltimeout: Staging: rtxxxx: unify AsicRxAntEvalTimeout(). - patches.staging/rtxxxx-unify-asicswitchchannel: Staging: rtxxxx: unify AsicSwitchChannel(). - patches.staging/trivial-fix-typo-to-to-in-multiple-files: trivial: fix typo "to to" in [rt2860]. - patches.drivers/rt2860-use-skb_set_tail_pointer: Delete.- kabi/severities: Restore drivers/platform/x86/sony-laptop needed by some kmps.- rpm/kabi.pl: Add support for : patterns in kabi/severities.- patches.drivers/block-aoe-end-barrier-bios-with-EOPNOTSUPP: aoe: end barrier bios with EOPNOTSUPP (bnc#581271).- kabi/severities: Restore some symbols found in buildservice kmps.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Added support for patches.staging.- patches.fixes/dvb-core-fix-dos-bug-in-ule-decapsulation-code-that-can-be-triggered-by-an-invalid: dvb-core: Fix DoS bug in ULE decapsulation code that can be triggered by an invalid... (bnc#584320).- patches.fixes/fix-lookup_follow-on-automount-symlinks: fix LOOKUP_FOLLOW on automount "symlinks" (bnc#582552).- patches.kernel.org/uvcvideo-Add-a-module-parameter-to-set.patch: V4L/DVB (13155): uvcvideo: Add a module parameter to set the streaming control timeout (bnc#555747).- rpm/find-provides: Do not provide anything in the -base package (bnc#582907).- kabi/severities: Exclude more symbols. - rpm/find-provides: Remove drivers/staging hack.- patches.kernel.org/hwmon-adt7462-wrong-ADT7462_VOLT_COUNT.patch: hwmon: (adt7462) Wrong ADT7462_VOLT_COUNT. - patches.kernel.org/hwmon-fschmd-fix-memleak.patch: hwmon: (fschmd) Fix a memleak on multiple opens of /dev/watchdog. - patches.kernel.org/hwmon-lm78-request-io-ports-individually.patch: hwmon: (lm78) Request I/O ports individually for probing. - patches.kernel.org/hwmon-w83781d-request-io-ports-individually.patch: hwmon: (w83781d) Request I/O ports individually for probing.- patches.kernel.org/i2c-do-not-use-device-name-after-device_unregister.patch: i2c: Do not use device name after device_unregister. - patches.kernel.org/i2c-pca-dont-use-interruptible.patch: i2c/pca: Don't use *_interruptible. - patches.kernel.org/i2c-tiny-usb-fix-on-big-endian.patch: i2c-tiny-usb: Fix on big-endian systems.- kabi/severities: Exclude sound/oss.- kabi/severities: Exclude kvm, ipw2x00 and iwlwifi exports.- rpm/find-provides: add mechanism to filter out "private" exports (defined in kabi/severities).- rpm/built-in-where, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/list-exported-symbols: Revive the built-in-where script for finer-grained kabi checking.- patches.fixes/alsa-hda-intel-avoid-divide-by-zero-crash: ALSA: hda-intel: Avoid divide by zero crash (bnc#581718).- patches.fixes/cifs-fix-unicode-readdir-length-calculation: cifs: fix length calculation for converted unicode readdir names (bnc#577747).- patches.kernel.org/usb-usbfs-only-copy-the-actual-data-received: USB: usbfs: only copy the actual data received (bnc#579989). - patches.kernel.org/usb-usbfs-properly-clean-up-the-as-structure-on-error-paths: USB: usbfs: properly clean up the as structure on error paths (bnc#579989).- patches.fixes/nfs-fix-nfs_fscache_release_page.patch: NFS: Fix a bug in nfs_fscache_release_page() (bnc#579076).- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate other architectures properly (bnc#574654)- Update Xen patches to 2.6.31.12. - patches.xen/983-blkfront-forced-detach.patch: blkfront: fixes for 'xm block-detach ... --force' (bnc#570314). - patches.xen/986-blkback-flush-on-connect.patch: blkback: Flush blkback data when connecting (bnc#474773, bnc#510449, bnc#561078). - patches.xen/989-balloon-hvm-bias.patch: balloon: fix balloon driver accounting for HVM-with-PoD case (bnc#566634). - Refresh other Xen patches.- patches.fixes/ath5k-Fix-eeprom-checksum.patch: ath5k: Fix eeprom checksum check for custom sized eeproms (bnc#578550).- patches.fixes/futex-handle-user-space-corruption-gracefully: futex: Handle user space corruption gracefully (bnc#579439 CVE-2010-0622). - patches.fixes/futex_lock_pi-key-refcnt-fix: futex_lock_pi() key refcnt fix (bnc#579439 CVE-2010-0623).- Update config files. Enable p4_clockmod for i386 desktop While this is broken by design it allows to remove clocking limits from the vendor on e.g. eeepc 701- move vfs-get_sb_single-do-not-pass-options-twice to show the dependancy on the devtmpfs patches.- patches.fixes/vfs-get_sb_single-do-not-pass-options-twice: vfs: get_sb_single() - do not pass options twice (bnc#578064).- patches.fixes/clockevent-don-t-remove-broadcast-device-when-cpu-is-dead: clockevent: Don't remove broadcast device when cpu is dead (bnc#578222).- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: apparmor: check for network in interrupt and work around (bnc#492961, bln#350789).- patches.fixes/fix-potential-crash-with-sys_move_pages: Fix potential crash with sys_move_pages (bnc#577753 CVE-2010-0415).- patches.fixes/connector-delete-buggy-notification-code: connector: Delete buggy notification code. (bnc#576927 CVE-2010-0410).- patches.fixes/kvm-x86-emulator-limit-instructions-to-15-bytes.patch: KVM: x86 emulator: limit instructions to 15 bytes (bnc#558269 CVE-2009-4031).- rpm/kernel-binary.spec.in: automatically install a matching - devel package if kernel-source is installed.- patches.drivers/alsa-usb-07-avoid-oops-at-disconnect: ALSA: usb-audio - Avoid Oops after disconnect (bnc#565027).- Upstream patch: - patches.kernel.org/fnctl-f_modown-should-call-write_lock_irqsave-restore.patch: fnctl: f_modown should call write_lock_irqsave/restore.- patches.suse/driver-core-fix-devtmpfs-crash-on-s390.patch: driver-core: fix devtmpfs crash on s390.- patches.kernel.org/ipc-ns-fix-memory-leak-idr.patch: ipc ns: fix memory leak (idr).- patches.kernel.org/alsa-ice1724-patch-for-suspend-resume-for-esi-juli.patch: Delete.- More upstream patches: - patches.kernel.org/alsa-ice1724-patch-for-suspend-resume-for-esi-juli.patch: ALSA: ice1724 - Patch for suspend/resume for ESI Juli@. - patches.kernel.org/input-alps-add-interleaved-protocol-support-dell-e6x00-series.patch: Input: ALPS - add interleaved protocol support (Dell E6x00 series). - patches.kernel.org/partitions-read-whole-sector-with-efi-gpt-header.patch: partitions: read whole sector with EFI GPT header. - patches.kernel.org/partitions-use-sector-size-for-efi-gpt.patch: partitions: use sector size for EFI GPT. - patches.kernel.org/sfc-fix-dma-mapping-cleanup-in-case-of-an-error-in-tso.patch: sfc: Fix DMA mapping cleanup in case of an error in TSO. - patches.kernel.org/v4l-dvb-af9015-add-new-usb-id-for-kworld-plustv-dual-dvb-t-stick-dvb-t-399u.patch: V4L/DVB: af9015: add new USB ID for KWorld PlusTV Dual DVB-T Stick (DVB-T 399U). - patches.suse/driver-core-devtmpfs-set-root-directory-mode-to-0755.patch: Driver-Core: devtmpfs - set root directory mode to 0755.- patches.drivers/alsa-hda-cx5051-lenovo-mute-fix: ALSA: hda - Change headphone pin control with master volume on cx5051 (bnc#573050).- patches.drivers/alsa-hda-cx5051-toshiba-quirk: ALSA: hda - Add support for Toshiba Satellite M300 (bnc#492233,bnc#565904).- kabi/severities: ignore changes in drivers/misc/enclosure.- Another upstream patch: - patches.kernel.org/vmalloc-remove-bug_on-due-to-racy-counting-of-vm_lazy_free.patch: vmalloc: remove BUG_ON due to racy counting of VM_LAZY_FREE.- More upstream patches: - patches.kernel.org/usb-fix-usbstorage-for-2770-915d-delivers-no-fat.patch: USB: fix usbstorage for 2770:915d delivers no FAT (bnc#552353). - patches.kernel.org/x86-pci-pat-return-einval-for-pci-mmap-wc-request-for-pat_enabled.patch: x86/PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled.- Another upstream patch: - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: SCSI: enclosure: fix oops while iterating enclosure_status array.- More upstream patches: - patches.kernel.org/ecryptfs-initialize-private-persistent-file-before-dereferencing-pointer.patch: ecryptfs: initialize private persistent file before dereferencing pointer. - patches.kernel.org/ecryptfs-use-after-free.patch: ecryptfs: use after free. - patches.kernel.org/nozomi-quick-fix-for-the-close-close-bug.patch: nozomi: quick fix for the close/close bug. - patches.kernel.org/serial-8250_pnp-use-wildcard-for-serial-wacom-tablets.patch: serial: 8250_pnp: use wildcard for serial Wacom tablets. - patches.kernel.org/tty-fix-race-in-tty_fasync.patch: tty: fix race in tty_fasync. - patches.kernel.org/usb-add-missing-delay-during-remote-wakeup.patch: USB: add missing delay during remote wakeup. - patches.kernel.org/usb-add-speed-values-for-usb-3.0-and-wireless-controllers.patch: USB: add speed values for USB 3.0 and wireless controllers. - patches.kernel.org/usb-don-t-use-gfp_kernel-while-we-cannot-reset-a-storage-device.patch: USB: Don't use GFP_KERNEL while we cannot reset a storage device. - patches.kernel.org/usb-ehci-fix-handling-of-unusual-interrupt-intervals.patch: USB: EHCI: fix handling of unusual interrupt intervals. - patches.kernel.org/usb-ehci-uhci-fix-race-between-root-hub-suspend-and-port-resume.patch: USB: EHCI & UHCI: fix race between root-hub suspend and port resume. - patches.kernel.org/usb-fix-bitmask-merge-error.patch: USB: fix bitmask merge error. - patches.kernel.org/usb-serial-fix-memory-leak-in-generic-driver.patch: usb: serial: fix memory leak in generic driver.- Another upstream patch: - patches.kernel.org/reiserfs-truncate-blocks-not-used-by-a-write.patch: reiserfs: truncate blocks not used by a write.- Bunch of upstream patches that apply to the .31 kernel: - patches.kernel.org/edac-i5000_edac-critical-fix-panic-out-of-bounds.patch: edac: i5000_edac critical fix panic out of bounds. - patches.kernel.org/inotify-do-not-reuse-watch-descriptors.patch: inotify: do not reuse watch descriptors. - patches.kernel.org/inotify-only-warn-once-for-inotify-problems.patch: inotify: only warn once for inotify problems. - patches.kernel.org/megaraid_sas-remove-sysfs-poll_mode_io-world-writeable-permissions.patch: megaraid_sas: remove sysfs poll_mode_io world writeable permissions (bnc#557180 CVE-2009-3939). - patches.kernel.org/page-allocator-update-nr_free_pages-only-when-necessary.patch: page allocator: update NR_FREE_PAGES only when necessary. - patches.kernel.org/x86-apic-use-physical-mode-for-ibm-summit-platforms.patch: x86, apic: use physical mode for IBM summit platforms. - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: Delete.- patches.drivers/rt2860-use-skb_set_tail_pointer: Remove skb->head assignments that were causing oops (bnc#540589)- patch refresh for fuzz- Update to 2.6.31.12: - security fixes - bug fixes - obsoletes: - patches.fixes/netfilter-ebtables-enforce-cap_net_admin - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 - patches.kabi/revert-quota-fix-dquot_transfer-for-filesystems-different-from-ext4.patch: revert: quota: Fix dquot_transfer for filesystems different from ext4.- Disabled loading ACPI tables from initramfs again.- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: HID: add device IDs for new model of Apple Wireless Keyboard (bnc#568231).- patches.suse/add-initramfs-file_read_write: Build fix- patches.fixes/netfilter-ebtables-enforce-cap_net_admin: netfilter: ebtables: enforce CAP_NET_ADMIN (bnc#570606 CVE-2010-0007).- patches.drivers/alsa-hda-alc861-capture-fix: ALSA: hda - Fix missing capture mixer for ALC861/660 codecs (bnc#567340).- patches.suse/add-initramfs-file_read_write: initramfs: add initramfs_{read,write} (bnc#568120). - Re-enabled loading ACPI tables from initramfs- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board chips (bnc#537016).- Disabled loading ACPI tables from initramfs; It is causing scheduling while atomic warnings on boot (bnc#568120, others)- patches.drivers/e1000-enhance-frame-fragment-detection.patch: Avoid atomic op by introducing discarding flag instead - patches.drivers/e1000e-enhance-frame-fragment-detection.patch: Avoid atomic op by introducing discarding flag instead- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: kernel/signal.c: fix kernel information leak with print-fatal-signals=1 (bnc#569902).- patches.drivers/alsa-hda-alc861vd-capture-fix: ALSA: hda - Fix ALC861-VD capture source mixer (bnc#568305).- kabi/severities: ignore changes to builtin md symbols (maybe we should revive the built-in-where script so that the drivers/md/* rule matches).- patches.kabi/revert-quota-decouple-fs-reserved-space-from-quota-reservation: revert: KABI: revert "quota: decouple fs reserved space from quota reservation."- Update to 2.6.31.11 - fixes build error in 2.6.31.10 - obsoletes: - patches.rpmify/build_fix_for_2.6.31.10_stable_patch.patch- Moved patches.fixes/build_fix_for_2.6.31.10_stable_patch.patch to patches.rpmify so it applies on -vanilla as well.- patches.fixes/build_fix_for_2.6.31.10_stable_patch.patch: Revert "rt2x00: Disable powersaving for rt61pci and rt2800pci." (none). Introduced with 2.6.31.10 stable patch and breaks the build.- Update reference module symbol versions.- Update to 2.6.31.10 - security fixes - lots of bugfixes - obsoletes: - patches.fixes/udf-vat-detection-fix- patches.drivers/e1000-enhance-frame-fragment-detection.patch: e1000: enhance frame fragment detection (bnc#567376, CVE-2009-4536). - patches.drivers/e1000e-enhance-frame-fragment-detection.patch: e1000e: enhance frame fragment detection (bnc#567376, CVE-2009-4538).- patches.fixes/ath9k-fix-RFKILL-bugs.patch: ath9k: Fix RFKILL bugs (bnc#551356).- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: scsi_debug: scale virtual_gb with sector_size properly (bnc#535939).- kabi/severities: Added md to the exception list.- Update to 2.6.31.9 - security fixes - bugfixes - obsoletes: - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero - patches.fixes/i915-panel-restore-fix-2.patch - patches.fixes/revert-isdn-isdn_ppp-use-skb-list-facilities-instead-of-home-grown-implementation- patches.drivers/alsa-hda-alc88x-missing-capsrc_nids: ALSA: hda - Fix missing capsrc_nids for ALC88x (bnc#564940). - patches.drivers/alsa-hda-fix-maxdata-obook4-quirk: ALSA: hda - Fix quirk for Maxdata obook4-1 (bnc#564940).- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is not defined.- Re-add patches.fixes/scsi-skip-nonscsi-device-for-dma- patches.kabi/kabi-guard-pcmcia_socket-resume_status: KABI: guard pcmcia_socket->resume_status.- patches.kabi/revert-scsi-scsi_lib_dma-fix-bug-with-dma-maps-on-nested-scsi-objects: revert: scsi_lib_dma: fix bug with dma maps on nested scsi objects.- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: firewire: ohci: handle receive packets with a data length of zero (bnc#564712 CVE-2009-4138).- patches.xen/945-MSI-disable-check.patch: Don't call msi_unmap_pirq() if did not enable msi. - patches.xen/958-fbfront-resume.patch: Only start one xenfb kthread. - patches.xen/959-netback-delayed-copy-cleanup.patch: Fixes for delayed copy of tx network packets. - Refresh other Xen patches (bnc#551695 bnc#553690 bnc#559047 bnc#554427). - patches.xen/xen3-x86_fix_ioremap.patch: x86: Fix error return sequence in __ioremap_caller() (bnc#559680).- Update to 2.6.31.8 - security fixes - bugfixes - obsoletes: - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext - patches.fixes/ext4-return-exchanged-blocks-count-to-user-space-in-failure - patches.fixes/scsi-skip-nonscsi-device-for-dma- kabi/severities: Mark changes in kvm, saa7134 and the nf_conntrack_tcp_update symbol as harmless.- rpm/kabi.pl: Do not print harmless kabi changes by default.- patches.fixes/revert-isdn-isdn_ppp-use-skb-list-facilities-instead-of-home-grown-implementation: Revert "isdn: isdn_ppp: Use SKB list facilities instead of home-grown implementation." (bko#14594 bnc#541736).- kabi/severities: Ignore changes in iwlcore, these are used only by the two iwlwifi drivers.- refresh patch fuzz due to 2.6.31.7 import.- Update to 2.6.31.7 - lots of bugfixes - security fixes - obsoletes: - patches.drivers/alsa-midi-03-disable-active-sensing-on-close-by-def - patches.drivers/sky2-no-link-at-probe.patch - patches.fixes/ipv4-additional-update-of-dev_net-dev-to-struct-net-in-ip_fragment.c-null-ptr-oops.patch - patches.fixes/isdn-hfc_usb-fix-buf-overflow.patch - patches.fixes/mac80211-fix-remote-DoS.patch - patches.fixes/mac80211-fix-spurious-delba-handling.patch - patches.fixes/scsi-gdth-negative-offset-fix.patch- patches.drivers/alsa-hda-alc888-exclude-unusable-adcs: ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235).- patches.fixes/sunrpc-tcp-reconnect: reset TCP connect timeout on successful connection. (bnc#498708, bnc#557760).- Update config files: remove CONFIG_USB_SN9C102=m (bnc#543704, bko#12180)- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 CVE-2009-4131). - patches.fixes/ext4-return-exchanged-blocks-count-to-user-space-in-failure: ext4: Return exchanged blocks count to user space in failure (bnc#561018 CVE-2009-4131).- patches.fixes/ipv4-additional-update-of-dev_net-dev-to-struct-net-in-ip_fragment.c-null-ptr-oops.patch: ipv4: additional update of dev_net(dev) to struct *net in ip_fragment.c, NULL ptr OOPS (CVE-2009-1298).- patches.drivers/v4l-dvb-cx88-add-support-for-winfast-dtv2000h-rev.-j.patch: V4L/DVB (12439): cx88: add support for WinFast DTV2000H rev. J (bnc#533677).- patches.fixes/udf-vat-detection-fix: udf: Try harder when looking for VAT inode (bnc#559132).- patches.arch/x86_fix_ioremap.patch: x86: Fix error return sequence in __ioremap_caller() (bnc#559680).- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix remote DoS (bnc#558267).- patches.suse/init-move-populate_rootfs-back-to-start_kernel: init: move populate_rootfs back to start_kernel (bnc#533555). - patches.suse/acpi-generic-initramfs-table-override-support: ACPI: generic initramfs table override support (bnc#533555).- patches.drivers/alsa-hda-cx5047-test-mode-fix: ALSA: hda - Fix Cxt5047 test mode (bnc#559062). - patches.drivers/alsa-hda-fsc-amilo-pi1505-fix: ALSA: hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). - patches.drivers/alsa-hda-hp-dv3-position-fix-quirk: ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). - patches.drivers/alsa-hda-msi-wind-u115-fix: ALSA: hda - Add a position_fix quirk for MSI Wind U115.- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 CVE-2009-3939).- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release md->map_lock before set_disk_ro (bnc#556899 bnc#479784).- patches.fixes/mac80211-fix-spurious-delba-handling.patch: mac80211: fix spurious delBA handling (bnc#558267, CVE-2009-4026, CVE-2009-4027).- patches.fixes/isdn-hfc_usb-fix-buf-overflow.patch: isdn: hfc_usb: Fix read buffer overflow (bnc#557683).- patches.fixes/scsi-gdth-negative-offset-fix.patch: gdth: Prevent negative offsets in ioctl CVE-2009-3080 (bnc#557668).- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: netfilter: Remove pointless CONFIG_NF_CT_ACCT warning (bnc#552033 (and others)).- patches.fixes/i915-panel-restore-fix-2.patch: fix suspend/resume on X40.- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: enclosure: fix oops while iterating enclosure_status array (bnc#540997).- patches.drivers/asus_set_max_brightness.patch: asus-laptop: set maximum led brightness (bnc#537081).- patches.fixes/kvm-activate-virt-on-demand.patch: Activate Virtualization On Demand (bnc#556568). - patches.fixes/kvm-ioapic.patch: Ignore apic polarity (bnc#556564). - patches.fixes/kvm-macos.patch: Implement some missing intercepts so osx doesn't blow up (bnc#556564).- patches.suse/kbuild-icecream-workaround: Delete.- Split apparmor.diff out into separate patches to align more closely with the upstream AppArmor 2.4 repo. - patches.apparmor/apparmor-allow-truncation-of-deleted-files: AppArmor: Allow truncation of deleted files. - patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: AppArmor: Fix cap audit_caching preemption disabling. - patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: AppArmor: Fix leak when profile transition table fails unpack. - patches.apparmor/apparmor-fix-oops-after-profile-removal: AppArmor: Fix oops after profile removal. - patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: AppArmor: Fix Oops when in apparmor_bprm_set_creds. - patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: AppArmor: Fix refcounting bug causing leak of creds and oops. - patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: AppArmor: Fully close race condition for deleted paths. - patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: AppArmor: fix failure to audit change_hat correctly. - patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: AppArmor: Fix file auditing when quiet is used. - patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: AppArmor: Fix mediation of created paths that look like "deleted" paths. - patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: AppArmor: Fix oops when auditing the addition of profile namespace. - patches.apparmor/apparmor-fix-profile-namespace-removal: AppArmor: Fix profile namespace removal.. - patches.apparmor/apparmor-missing-put_cpu_var: AppArmor: Add missing put_cpu_var in aa_audit_caps. - patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing unlock to next_profile. - patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: AppArmor: Policy load and replacement can fail to alloc mem.- Moved previous two patches to correct locations in series.conf- patches.fixes/dnotify-ignore-FS_EVENT_ON_CHILD.diff: dnotify: ignore FS_EVENT_ON_CHILD (bnc#546491). - patches.fixes/inotify-fix-coalesce-duplicate-events-into-a-single.diff: inotify: fix coalesce duplicate events into a single event in special case (bnc#546491).- patches.drivers/rt2870-updates: rt2870: Cumulative updates (bnc#540589).- patches.drivers/rt2860-updates: rt2860: Cumulative updates (bnc#540589). - patches.drivers/rt2860-use-skb_set_tail_pointer: rt2860: use skb_set_tail_pointer (bnc#540589).- kabi/severities: allow changes in drivers/pcmcia and drivers/ssb. - patches.kabi/Revert-PM-yenta-Split-resume-into-early-and-late-parts-rev.-4: Delete.- patches.kabi/Revert-PM-yenta-Split-resume-into-early-and-late-parts-rev.-4, patches.kabi/Revert-dm-snapshot-use-unsigned-integer-chunk-size: Remove bogus Patch-mainline headers.- patches.xen/xen3-patch-2.6.31.5-6: Linux 2.6.31.6. - patches.xen/941-xenbus-transaction-mutex.patch: xenbus: do not hold transaction_mutex when returning to userspace - Refresh a few other Xen patches.- Work around kabi changes: - kabi/severities: ignore drivers/char/generic_serial (marged as BROKEN upstream). - patches.kabi/Revert-PM-yenta-Split-resume-into-early-and-late-parts-rev.-4: Revert "PM / yenta: Split resume into early and late parts (rev. 4)". - patches.kabi/Revert-dm-snapshot-use-unsigned-integer-chunk-size: Revert "dm snapshot: use unsigned integer chunk size".- disable patches.drivers/alsa-hda-reboot-notify to keep kABI- Update to 2.6.31.6 - security fixes - lots of bug fixes - obsoletes: - patches.arch/x86_amd_fix_erratum_63.patch - patches.arch/x86_amd_iommu_uninit_fix.patch - patches.arch/x86_mce_therm_suppress_msgs.patch - patches.fixes/security-key-refcnt.patch- patches.kabi/add-task_struct-dummy: KABI: add a dummy member to task_struct.- Import 11.2 kabi files.- patches.drivers/alsa-hda-hp-dc5750-quirk-fix: ALSA: hda - Avoid quirk for HP dc5750 (bnc#552154). - patches.drivers/alsa-hda-reboot-notify: ALSA: hda - Add reboot notifier to each codec (bnc#544779). - patches.drivers/alsa-hda-sony-vaio-vgn-fw170j-quirk: ALSA: hda: Use model=auto quirk for Sony VAIO VGN-FW170J using ALC262. - patches.drivers/alsa-hda-stac-shutup-at-free: ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779).- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable NCQ on Aspire 3810t (bnc#522790).- patches.xen/xen-vmalloc_32: guarantee 32-bit (bus-)addressability of vmalloc_32() output (bnc#548010, bnc#552492).- rpm/kernel-binary.spec.in: fix last change.- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} symlinks to the -devel package (bnc#548728).- rpm/kernel-binary.spec.in: obsolete kvm-kmp.- config.conf: remove kernel-ps3-devel from kernel-syms (does not exist).- patches.xen/xen-blkfront-cdrom: Refresh (bnc#551664). - patches.xen/xen3-patch-2.6.25: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh (bnc#550787, bnc#551664).- rpm/kernel-binary.spec.in: delete stray text.- patches.drivers/alsa-hda-hp-bseries-mute-led-fix: ALSA: hda - Enable GPIO control for mute LED on HP systems (bnc#547357,bnc#523487).- patches.drivers/alsa-hda-dell-mini9-quirk: ALSA: hda: Use quirk mask for Dell Inspiron Mini9/Vostro A90 using ALC268. - patches.drivers/alsa-hda-nvidia-new-id: ALSA: hda_intel: Add the Linux device ID for NVIDIA HDA controller. - patches.drivers/alsa-hda-realtek-hp-pin-check: ALSA: hda - Don't check invalid HP pin.- patches.drivers/sky2-no-link-at-probe.patch: sky2: assume no link at probe (bnc#539010).- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp.- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp.- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not just the foo-kmp virtual dependency (bnc#472410).Not necessary because compat_ptrace_request handles this case. - patches.fixes/ptrace-getsiginfo: Delete.Killing zombies: Remove code that was rejected (upstream and in SLE11) but somehow survived in the master branch. - patches.arch/x86-self-ptrace.patch: Delete. - patches.suse/self-ptrace.patch: Delete.- Update config files.- patches.arch/x86_amd_iommu_uninit_fix.patch: x86/amd-iommu: Un__init function required on shutdown (No bug, got that from the IOMMU maintainer marked as important). - patches.drivers/msi_wmi.patch: X86 drivers: Introduce msi-wmi driver (bnc#543407).- patches.fixes/security-key-refcnt.patch: KEYS: get_instantiation_keyring() should inc the keyring refcount in all cases (bnc#549030 CVE-2009-3624).- Update to 2.6.31.5 - loads of bugfixes - security fixes - obsoletes: - patches.fixes/futex-detect-mismatched-requeue-targets - patches.fixes/futex-fix-wakeup-race- Update Xen patches to 2.6.31.4. Fix Xen KMP build.- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: Cleanup and make boot splash work with KMS (bnc#544645).- supported.conf: add drivers/md/raid6_pq- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: Workaround for erratum 63 (bnc#548274).- patches.arch/x86_mce_therm_suppress_msgs.patch: X86: Suppress hundreds of Intel thermal MCE messages on high temps (bnc#533556).- patches.fixes/drm-r128-add-test-for-initialisation-to-all-ioctls-that-require-it: drm/r128: Add test for initialisation to all ioctls that require it (bnc#548071 CVE-2009-3620).- patches.drivers/alsa-hda-alc662-capture-fix: ALSA: hda - Fix capture source checks for ALC662/663 codecs (bnc#546918).- Update to 2.6.31.4 - security fixes - bugfixes - obsoletes: - patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix- patches.drivers/alsa-hda-nvidia-hdmi-full-fmts: Refresh. Enable all formats/rates as default.- patches.drivers/alsa-hda-nvidia-hdmi-full-fmts: ALSA: hda - Add full rates/formats support for Nvidia HDMI. - patches.drivers/alsa-hda-realtek-overflow-fix: ALSA: hda - Fix overflow of spec->init_verbs in patch_realtek.c. - patches.drivers/alsa-hda-stac9228-dell-fix: ALSA: hda - Fix volume-knob setup for Dell laptops with STAC9228 (bnc#545013). - patches.drivers/alsa-hda-stac9228-fsc-fix: Refresh.- Update config files. - patches.drivers/samsung-laptop-driver.patch: Samsung laptop driver.- patches.arch/amd_magny_cour_topology_fix.patch: x86: Fix CPU llc_shared_map information for AMD Magny-Cours (bnc#545615). - patches.arch/amd_magny_cour_topology_fix_1.patch: x86, sched: Workaround broken sched domain creation for AMD Magny-Cours (bnc#545615). - patches.arch/amd_magny_cour_topology_fix_2.patch: x86, mcheck: Use correct cpumask for shared bank4 (bnc#545615). - patches.arch/amd_magny_cour_topology_fix_3.patch: x86, cacheinfo: Fixup L3 cache information for AMD multi-node processors (bnc#545615).- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: fix up register usage. - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch: fix up register usage (bnc#545206).- patches.drivers/alsa-hda-stac9228-fsc-fix: ALSA: hda - Fix mute sound with STAC9227/9228 codecs (bnc#546006).- Update config files. - disable CONFIG_STAGING for ia64, ppc, ppc64, and s390x- patches.fixes/futex-add-memory-barrier-commentary: futex: Add memory barrier commentary to futex_wait_queue_me().- patches.fixes/futex-fix-wakeup-race: futex: Fix wakeup race by setting TASK_INTERRUPTIBLE before queue_me().- patches.fixes/futex-correct-futex_q-woken-state-commentary: futex: Correct futex_q woken state commentary.- patches.fixes/futex-make-function-kernel-doc-commentary-consistent: futex: Make function kernel-doc commentary consistent.- patches.fixes/futex-correct-queue_me-and-unqueue_me-commentary: futex: Correct queue_me and unqueue_me commentary.- patches.fixes/futex-correct-futex_wait_requeue_pi-commentary_2: futex: Correct futex_wait_requeue_pi() commentary.- patches.fixes/futex-detect-mismatched-requeue-targets: futex: Detect mismatched requeue targets.- patches.fixes/futex-correct-futex_wait_requeue_pi-commentary: futex: Correct futex_wait_requeue_pi() commentary.- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. - major tty bugfix- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - Fix yet another auto-mic bug in ALC268 (bnc#544899).- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, "iostat reports wrong service time and utilization", introduced by this patch (bnc#544926).- patches.suse/x86-mark_rodata_rw.patch: Delete. - patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. - both of these were not being used anyway.- Update Xen patches to 2.6.31.2.- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - Add a workaround for ASUS A7K (bnc#494309).- refresh patch fuzz due to 2.6.31.2 import.- Update to Linux 2.6.31.2: - bugfixes, lots of them. - security fixes- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - Fix invalid initializations for ALC861 auto mode (bnc#544161).- Update config files. - patches.drivers/add-via-chrome9-drm-support.patch: Delete. The code never got upstream and looks incorrect.- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: ctxfi: Swapped SURROUND-SIDE mute. - patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - Added quirk to enable sound on Toshiba NB200. - patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 fixes for HD-audio.- Update Xen patches to 2.6.31.1 and c/s 934.- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361).- Update to 2.6.31.1 - lots of bugfixes - security fixes- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp.- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch with +trenn (bnc#542767)- Update config files. Build pci-stub driver into the kernel so that built in pci drivers can be blocked from attaching to devices.- rpm/kernel-module-subpackage: when building against Linus' kernels (2.6.x), append a .0 to the kernel version embedded in the KMP version, to ensure that such KMP is older than a KMP built against a subsequent stable kernel (2.6.x.y, y > 0).- Update config files.- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to 2.6.31 (bnc#533555).- rpm/postun.sh: do not remove the bootloader entry if the kernel version didn't change (bnc#533766).- rpm/postun.sh: remove dead code.- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). - patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table revision (bnc#503038). - patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038).- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport from 2.6.32-rc1.- Update Xen patches to 2.6.31 final.Backport attach inhibition for builtin pci drivers from 2.6.32-rc. - patches.drivers/pci-separate-out-pci_add_dynid: pci: separate out pci_add_dynid(). - patches.drivers/pci_stub-add-ids-parameter: pci-stub: add pci_stub.ids parameter.Backport patches from 2.6.32-rc to ease ossp testing. - Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. - patches.drivers/implement-register_chrdev: chrdev: implement __register_chrdev(). - patches.drivers/sound-make-oss-device-number-claiming-optional: sound: make OSS device number claiming optional and schedule its removal. - patches.drivers/sound-request-char-major-aliases-for-oss-devices: sound: request char-major-* module aliases for missing OSS devices.- patches.suse/novfs-client-module: Update header todo list with locking nits (semaphore used as mutex / completion)- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor (bnc#538849)- patches.suse/crasher-26.diff: Add capability to also trigger a kernel warning.- patches.suse/block-seperate-rw-inflight-stats: Seperate read and write statistics of in_flight requests (fate#306525).- patch fuzz removal now that 2.6.31 is the base.- Update config files. CONFIG_MOUSE_PS2_ELANTECH=y CONFIG_MOUSE_PS2_TOUCHKIT=y (bnc#525607)- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek issues, add another Nvidia HDMI device id- Updated to 2.6.31-final.- refresh patches for fuzz due to upstream changes- Update to 2.6.31-rc9 - obsoletes: - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: scsi_dh: Provide set_params interface in emc device handler (bnc#521607). - patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). - patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).- rpm/kernel-source.spec.in: delete obsolete macro.- rpm/kernel-binary.spec.in: require minimum versions of module-init-tools and perl-Bootloader, the %post script is no longer compatible with ancient versions.- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the previous <= 2.6.30-1 didn't catch some cases obviously (bnc#533766).- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923).- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, - rpm/kernel-source.spec.in: Use a simple script to check kabi by comparing Module.symvers files (similar to the old SLES9 one). - rpm/built-in-where: Delete. - rpm/symsets.pl: Delete. - kabi/commonsyms: Delete. - kabi/usedsyms: Delete.- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: kbuild: rebuild fix for Makefile.modbuiltin.- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: Delete, it was wrong.- Update Xen config files.- Update Xen patches to 2.6.31-rc8 and c/s 931. - patches.fixes/use-totalram_pages: use totalram_pages in favor of num_physpages for sizing boot time allocations (bnc#509753). - patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage for shared vcpu_info structure.- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for IDT92HD73* codecs- patches.apparmor/apparmor.diff: Update to latest git.- patches.arch/add_support_for_hpet_msi_intr_remap.patch: intr-remap: generic support for remapping HPET MSIs (bnc#532758). - patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: x86: arch specific support for remapping HPET MSIs (bnc#532758).- rpm/package-descriptions: fix description of the x86_64 kernel-desktop package (bnc#535457).- Update to 2.6.31-rc8. - Eliminated 1 patch.- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: ALSA: hda - Add missing mux check for VT1708 (bnc#534904). - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - Fix MacBookPro 3,1/4,1 quirk with ALC889A. - patches.drivers/alsa-hda-2.6.32-pre: Refresh.- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch patches.drivers/alsa-hda-2.6.32-pre- Update config files. - patches.drivers/samsung-backlight-driver.patch: Delete.- scripts/run_oldconfig.sh: Consistently use $prefix.- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 (bnc#530752).- Update to 2.6.31-rc7. - Eliminated 3 patches.- Update config files: Enable CONFIG_PROC_EVENTS.- rpm/post.sh: Do not call /sbin/module_upgrade, the rename happened before SLES10.- rpm/module-renames: Delete, we don't need to care about modules renamed before SLES10. Also, current mkinitrd gets the list of storage drivers based on pci ids.- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package can't be installed on SLE10 as is, so why not make it more adventurous.- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements from the -extra subpackage which doesn't exist on openSUSE anymore.- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes (to be merged) - patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. - patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh.- Update config files (modularize crypto again). - supported.conf: Add resulting modules as supported.- Update Xen patches to 2.6.31-rc6 and c/s 928.- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - Fix invalid capture mixers with some ALC268 models.- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: USB: storage: increase the bcd range in Sony's bad device table. (bnc#466554).- patches.drivers/samsung-backlight-driver.patch: Change the range from 0-255 to 0-7 to make it easier for HAL to handle the device without a need for custom scripts.- Updated to 2.6.31-rc6.- patches.drivers/samsung-backlight-driver.patch: added N120 support and some other devices that were integrated into the driver from upstream.- supported.conf: set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided separately in the ocfs2 KMP package- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / clean up IDT92HD83xxx codec parser (bnc#531533).- Update config files. - patches.drivers/samsung-backlight-driver.patch: Samsung backlight driver (bnc#527533, bnc#531297).- rpm/kernel-binary.spec.in: add some hints how to set the %jobs macro (bnc#530535).- rpm/modversions: for overriden functions, keep the keyword in - -pack.- Updated to 2.6.31-rc5-git9. - Eliminated 7 patches.- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add quirks for some HP laptops (bnc#527284). - patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic support - patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - Enable line-out detection only with speakers (bnc#520975).- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files also to the main package. That way, kernel-$flavor-base is not needed in normal setups (fate#307154).- rpm/find-provides: no rpm provides for drivers/staging. It's higly unlikely that any KMP would require them and they just take up space in the rpm metadata.- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add a white-list for MSI option (bnc#529971).- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: ALSA: hda - Don't override ADC definitions for ALC codecs (bnc#529467). - patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: ALSA: hda - Add auto-mic support for Realtek codecs.- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc for the -rt variant.- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to patches.rpmify to fix vanilla ppc builds.- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - Add missing vmaster initialization for ALC269 (bnc#527361).- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh.- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong update_funcs() call.- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing DRV_NAME definitions for fsl/* drivers (to fix PPC builds)- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: wmi: Fix kernel panic when stack protection enabled. (bnc#529177). - supported.conf: Update HD-audio modules- make config/s390/vanilla a symlink again.- rpm/kernel-binary.spec.in: do not manually extract vmlinux debuginfo on ppc(64), rpm does it itself.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources.- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It doesn't wake up the display on certain hardware.- rpm/kernel-binary.spec.in: do not split the -extra subpackage on openSUSE (bnc#528097).- Updated to 2.6.31-rc5-git3. - Eliminated 4 patches.- kernel-source.changes: remove old (pre 2008) messages, and move 2008 to kernel-source.changes.old. No need to spam email addresses that are no longer with the company for failed kernel builds.- patches.drivers/staging-rtl8192su-fix-build-error.patch: Staging: rtl8192su: fix build error.- patches.suse/supported-flag-enterprise: Make the supported flag configurable at build time (bnc#528097).- Update config files. disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds- Update config files. disable CONFIG_DRM_RADEON_KMS as per bnc#527910- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for comparing pgprot_t.- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates - Update config files: enable CONFIG_SND_HDA_CIRRUS=y- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes ppc build failures.- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port- Updated to 2.6.31-rc5. - Eliminated 11 patches.- Update config files to enable CONFIG_DLM_DEBUG.- Update Xen patches to 2.6.31-rc4 and c/s 916. - patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: Delete. - patches.xen/xen3-panic-on-io-nmi.diff: Delete. - config.conf: Re-enable Xen. - Update config files.- Update config files: revert to CONFIG_SND=m and enabled again CONFIG_SND_DEBUG=y- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc.- Update config files: disable CONFIG_FB_UDL on ia64.- config.conf: Remove duplicate i386/desktop entry.- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244).- patches.drivers/alsa-pcm-*: ALSA PCM fixes - Fix/enhancement patches backported from ALSA tree * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: ALSA: Add new TLV types for dBwith min/max (for usb). * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). * patches.drivers/alsa-hda-*: More HD-audio fixes * patches.drivers/alsa-ice-*: ICE17xx fixes * patches.drivers/alsa-midi-*: MIDI fixes * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes - Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, patches.drivers/alsa-ca0106-capture-bufsize-fix, patches.drivers/alsa-ctxfi - Update config files.- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop config-subst from the package.- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo subpackage with vmlinux.debug to fix build with new rpm. This works for ix86 and x86_64, other archs might need further fixes.- patches.rpmify/rtl8192su-build-fix: more ia64 fixes- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes.- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes.- config.conf: Re-enabled trace flavor.- Update config files: Disabled optimize for size on i386 and x86_64 across all flavors.- Update to 2.6.31-rc4.- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, make %symbols a variable and only use it for selecting patches. Also drop the RT symbol as there are not rt patches currently.- Change the s390(x) config layout so that each arch has its own subdirectory, as it is done for other archs. s390/vanilla is a symlink to s390x/vanilla.- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common macros to kernel-spec-macros.- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - Fix the max capture buffer size (bnc#521890).- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support (FATE#306935). - Update config files.These are mainline: - patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: Delete. - patches.drivers/cpufreq_add_idle_microaccounting_6.patch: Delete. - patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. - patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: Delete. - patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: Delete. - patches.drivers/cpufreq_parameterize_down_differential_4.patch: Delete.These are mainline: - patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: Delete. - patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete.- rpm/kernel-binary.spec.in: remove double-slash from include2/asm symlink.- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from the kernel-syms package. These flavor are often excluded in KMPs, so excluding them from kernel-syms reduces useless build dependencies. KMPs can buildrequire kernel-$flavor-devel explicitely if desired.Delete obsolete apparmor patches. - patches.apparmor/add-path_permission.diff: Delete. - patches.apparmor/add-security_path_permission: Delete. - patches.apparmor/apparmor-2.6.25.diff: Delete. - patches.apparmor/apparmor-audit.diff: Delete. - patches.apparmor/apparmor-intree.diff: Delete. - patches.apparmor/apparmor-lsm.diff: Delete. - patches.apparmor/apparmor-main.diff: Delete. - patches.apparmor/apparmor-misc.diff: Delete. - patches.apparmor/apparmor-module_interface.diff: Delete. - patches.apparmor/apparmor-network.diff: Delete. - patches.apparmor/apparmor-path_permission: Delete. - patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. - patches.apparmor/apparmor-rlimits.diff: Delete. - patches.apparmor/d_namespace_path.diff: Delete. - patches.apparmor/d_namespace_path_oops_fix.diff: Delete. - patches.apparmor/do_path_lookup-nameidata.diff: Delete. - patches.apparmor/export-security_inode_permission-for-aufs: Delete. - patches.apparmor/file-handle-ops.diff: Delete. - patches.apparmor/fix-complain.diff: Delete. - patches.apparmor/fix-vfs_rmdir.diff: Delete. - patches.apparmor/fork-tracking.diff: Delete. - patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. - patches.apparmor/fsetattr-restore-ia_file.diff: Delete. - patches.apparmor/fsetattr.diff: Delete. - patches.apparmor/remove_suid.diff: Delete. - patches.apparmor/security-create.diff: Delete. - patches.apparmor/security-getxattr.diff: Delete. - patches.apparmor/security-link.diff: Delete. - patches.apparmor/security-listxattr.diff: Delete. - patches.apparmor/security-mkdir.diff: Delete. - patches.apparmor/security-mknod.diff: Delete. - patches.apparmor/security-readlink.diff: Delete. - patches.apparmor/security-removexattr.diff: Delete. - patches.apparmor/security-rename.diff: Delete. - patches.apparmor/security-rmdir.diff: Delete. - patches.apparmor/security-setattr.diff: Delete. - patches.apparmor/security-setxattr.diff: Delete. - patches.apparmor/security-symlink.diff: Delete. - patches.apparmor/security-unlink.diff: Delete. - patches.apparmor/security-xattr-file.diff: Delete. - patches.apparmor/sysctl-pathname.diff: Delete. - patches.apparmor/unambiguous-__d_path.diff: Delete. - patches.apparmor/vfs-getxattr.diff: Delete. - patches.apparmor/vfs-link.diff: Delete. - patches.apparmor/vfs-listxattr.diff: Delete. - patches.apparmor/vfs-mkdir.diff: Delete. - patches.apparmor/vfs-mknod.diff: Delete. - patches.apparmor/vfs-notify_change.diff: Delete. - patches.apparmor/vfs-removexattr.diff: Delete. - patches.apparmor/vfs-rename.diff: Delete. - patches.apparmor/vfs-rmdir.diff: Delete. - patches.apparmor/vfs-setxattr.diff: Delete. - patches.apparmor/vfs-symlink.diff: Delete. - patches.apparmor/vfs-unlink.diff: Delete.- Update config files for bnc#522686 -- set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536.- Update config files: Disabled optimize for size on all flavors (FATE#305694)- Update config files.- Update to 2.6.30.2 - lots of security and bug fixes - Obsoleted patches.fixes/firmware-memmap-64bit.diff- rpm/split-modules: set LC_COLLATE=C- rpm/package-descriptions: Added desktop description.- rpm/package-descriptions: Added desktop description.- Add -desktop flavors for i386 and x86_64 - Disabled group scheduler and groups - Disabled optimize for size - Enabled full preemption - Set HZ=1000- Add -desktop flavors for i386 and x86_64 (FATE#305694) - Disabled group scheduler and groups - Disabled optimize for size - Enabled full preemption - Set HZ=1000- patches.apparmor/apparmor.diff: ia64 build fix- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist function and make it less chatty in build logs.- patches.apparmor/apparmor.diff: ia64 build fix- patches.apparmor/security-default-lsm: security: Define default LSM (bnc#442668).- patches.apparmor/apparmor.diff: AppArmor.- patches.apparmor/apparmor.diff: AppArmor.- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug attribute handling.- rpm/kernel-binary.spec.in: drop the config-subst script, use scripts/config instead.- rpm/kernel-binary.spec.in: fix debugsource generation.- rpm/split-modules: fix last change.- rpm/split-modules: fix for module names with underscores or dashes.- Update to 2.6.31-rc3. - Eliminated 2 patches.- rpm/kernel-binary.spec.in: annotate in which products the obsoleted kmps were last used, remove "ralink-rt2860-kmp" which I couldn't find anywhere.- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375).- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of the base / main / unsupported module lists to a separate script. Avoids 6k modinfo calls and fixes module dependencies (bnc#512179).- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680).- rpm/modversions: fix overriding of function symbols.- rpm/modversions: fix overriding of unknown symbols.- patches.suse/e1000e_allow_bad_checksum: Delete. - patches.suse/e1000e_call_dump_eeprom: Delete. - patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: Delete. Delete the leftover debugging patches for e1000e EEPROM corruption that are not needed anymore.- README.BRANCH: Update, kotd will become 11.2 eventually.- Update to 2.6.31-rc2.- Update to 2.6.31-rc1-git10. - Eliminated 28 patches. - Xen is disabled.- patches.suse/kbuild-generate-modules.builtin: kbuild: generate modules.builtin. - rpm/kernel-binary.spec.in: package modules.builtin for use by modprobe / mkinitrd.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify the patch applying loops to reduce noise in build logs.- rpm/kernel-binary.spec.in: chmod +x find-provides- rpm/kernel-binary.spec.in: do not "annotate" the packaged Modules.symvers - patches.suse/modpost-filter-out-built-in-depends: Delete.- patches.arch/ia64-page-migration: Fix compiler warning.- rpm/kernel-binary.spec.in: move /boot/symvers* files back to - base, these are needed during KMP installation.- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: fix generating of *.symtypes files. - patches.suse/genksyms-add-override-flag.diff: Refresh. - rpm/kernel-binary.spec.in: create the *.symref files in the build directory- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to the subpackages (bnc#516827).- Update config files. revert the ACPI and thermal config changes: config/i386/pae and config/x86-64/default: CONFIG_ACPI_AC=m CONFIG_ACPI_BATTERY=m CONFIG_ACPI_BUTTON=m CONFIG_ACPI_VIDEO=m CONFIG_ACPI_FAN=m CONFIG_ACPI_PROCESSOR=m CONFIG_ACPI_THERMAL=m CONFIG_ACPI_CONTAINER=m CONFIG_X86_ACPI_CPUFREQ=m CONFIG_THERMAL=m- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. - patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.- Update Xen patches to 2.6.30 and c/s 908. - Update Xen config files. - patches.xen/tmem: Transcendent memory ("tmem") for Linux.- Update config files. config/i386/pae and config/x86-64/default: CONFIG_ACPI_AC=y CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y CONFIG_ACPI_VIDEO=y CONFIG_ACPI_FAN=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_THERMAL=y CONFIG_ACPI_CONTAINER=y CONFIG_X86_ACPI_CPUFREQ=y CONFIG_THERMAL=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_SND_TIMER=y CONFIG_SND_PCM=y CONFIG_SND_SEQUENCER=y CONFIG_SND_MIXER_OSS=y CONFIG_SND_PCM_OSS=y- Update config files. fix up config mistake in x86-64/default made in last commit.- Update config files. config/i386/pae and config/x86-64/default: CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_SOUND=y CONFIG_SND=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_I2C=y CONFIG_HWMON=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_IPV6=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_HID=y CONFIG_USB_STORAGE=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_ATA_PIIX=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_USB_EHCI_HCD=Y CONFIG_USB_OHCI_HCD=Y CONFIG_USB_UHCI_HCD=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_CFG80211=Y CONFIG_LIB80211=Y CONFIG_MAC80211=Y CONFIG_ATH5K=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_X86_MSR=Y CONFIG_X86_CPUID=Y- comment out broken acpi patch for the moment.- move the "preload" branch into master to get 2.6.30 working for Moblin. - Update config files. - patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, bnc#503101). - patches.suse/driver-core-add-nodename-callbacks.patch: Driver Core: add nodename callbacks. - patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: Driver Core: aoe: add nodename for aoe devices. - patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: Driver Core: block: add nodename support for block drivers.. - patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: Driver Core: bsg: add nodename for bsg driver. - patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. - patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: Driver Core: drm: add nodename for drm devices. - patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: Driver Core: dvb: add nodename for dvb drivers. - patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: Driver Core: input: add nodename for input drivers. - patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: Driver Core: misc: add nodename support for misc devices.. - patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: Driver Core: raw: add nodename for raw devices. - patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: Driver Core: sound: add nodename for sound drivers. - patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: Driver Core: usb: add nodename support for usb drivers.. - patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: Driver Core: x86: add nodename for cpuid and msr drivers.. - patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: Merge IRQ and POLL modes. - patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: remove "wait for all devices before mounting root" delay. - patches.suse/linux-2.6.29-enable-async-by-default.patch: enable async_enabled by default. - patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms even more. - patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: jbd: longer commit interval. - patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen after sata. - patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: retry mounting the root fs if we can't find init. - patches.suse/linux-2.6.29-silence-acer-message.patch: Silence acer wmi driver on non-acer machines. - patches.suse/linux-2.6.29-touchkit.patch: some new touch screen device ids . - patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: uvcvideo: ignore hue control for 5986:0241 (bnc#499152). - patches.suse/devtmpfs.patch: Delete.- scripts/sequence-patch.sh: fix bug in ketchup usage- Update to 2.6.30-final.- Update Xen patches to 2.6.30-rc8 and c/s 898. - Update Xen config files. - patches.xen/pci-reserve: linux/pci: reserve io/memory space for bridge. - patches.xen/xen-x86-exports: Delete.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and change indentation to what autobuild enforces on checkin. No functional change.- patches.suse/stack-unwind-add-declaration.patch: Fold into ... - patches.suse/stack-unwind: ... this one.- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel again. - rpm/find-provides: don't generate the ksym() provides ourself, let rpm do it. Add a workaround for vmlinux-*.gz in -devel.- patches.suse/reiser4-set_page_dirty_notag: mm: Add set_page_dirty_notag() helper for reiser4.- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to kmps (bnc#502092).- Update to 2.6.30-rc8.- supported.conf: remove duplicate kernel/drivers/md/dm-logConver ide major allocation. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_devt parameter (fate#305584).- Update to 2.6.30-rc7-git4.Rename mangle_minor to mangle_devt and also cover sd major allocation. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_devt parameter (fate#305584).- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs except for vanilla and ppc/ps3. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_minor parameter (fate#305584).- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578).- Update to 2.6.30-rc7-git2.- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: ath1e: add new device id for asus hardware.- rpm/mkspec: when using a custom release number, create a get_release_number.sh script for autobuild.- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip binaries in /usr/src/linux-obj/*/*/scripts.- patches.drivers/r8169-allow-true-forced-mode-setting.patch: r8169: allow true forced mode setting (bnc#467518).- switch i386 flavors back to -default (non-pae) and -pae for milestone2- rpm/find-provides: fix for kernel-kdump.- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: workaround to fix provides of built-in symbols: move vmlinux*.gz back to -base and extract the provides from it.- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE relocation.- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid unpacking the patches tarballs in compute-PATCHVERSION.sh.- rpm/mkspec: add --release option to set a custom release string. - scripts/tar-up.sh: revive -rs option.- patches.arch/acpi_thermal_passive_blacklist.patch, patches.suse/devtmpfs.patch: fix patches to apply with git-apply.- patches.suse/stack-unwind-add-declaration.patch: Fix compile error when CONFIG_STACK_UNWIND is not set.- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move mach-types.h to arch/include/asm.- Set CONFIG_FRAMEBUFFER_CONSOLE=y- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on x86/x86_64 (bnc#504608)- patches.xen/sfc-endianness: fix building with gcc 4.4.- Update Xen patches to 2.6.30/rc6-git3 and c/s 873.- Updated to 2.6.30-rc6-git3. - Eliminated 4 patches.- doc/README.SUSE: Updated to reflect building in an external directory so as not to contaminate /usr/src/linux- rpm/kernel-binary.spec.in: fix path in /usr/src/linux-obj/.../Makefile.- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = %version-%source_rel in the -devel packages (bnc#503280).- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires (bnc#503280).- rpm/mkspec: fix kernel-syms requires (bnc#503280).- patches.fixes/dup2-retval-fix: dup2: Fix return value with oldfd == newfd and invalid fd (bnc#498042).- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. - patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with NULL xattr root w/ xattrs disabled. - patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup perms when xattrs are disabled. - patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing privroot w/ xattrs enabled.- Updated to 2.6.30-rc5-git1. - Eliminated 4 patches.- Update config files. update vanilla configs so that the build works.- Update config files. - patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core maintained /dev tmpfs.- Update config files.- Update to 2.6.30-rc4-git1. - patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: kbuild, modpost: fix "unexpected non-allocatable" warning with SUSE gcc.- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build.- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build.- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. - patches.arch/x86_64-unwind-annotations: Refresh.- Update Xen patches to 2.6.29-rc4 and c/s 867. - Update i386 and x86_64 config files. - config.conf: Re-enable Xen.- patches.suse/kbuild-icecream-workaround: kbuild: add workaround for icecream bug (bnc#495786).- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex to enclose lookup_one_len.- Update to 2.6.30-rc4. - Eliminated 2 patches.- patches.drivers/libata-prefer-over-ide: libata: prefer libata drivers over ide ones (bnc#433105). - patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex to enclose lookup_one_len. - patches.kernel.org/patch-2.6.30-rc3-rc4: - patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig (bnc#402518). - patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. - patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete.- scripts/submit-to-bs: tentative script to submit a new kernel to openSUSE:Factory- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here to fix the lock order problem when the patch is updated to HEAD.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, rename the variable back to @RELEASE_PREFIX@.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to the rpm release string (note that this won't have any effect in the openSUSE:* projects).- Update config files. - build rtc_cmos driver into the kernel for i386 and x86-64 default kernels. This should automatically take care of the rtc/system time syncing so we don't need to do it in a boot script and should speed up booting time a lot.- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y- Update config files. change to use CONFIG_USB=y- Added legacy config.- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch- Moved i386 kernel-default to kernel-legacy. - Moved i386 kernel-pae config to kernel-default. - Disabled CONFIG_ISA in i386 kernel-default to improve boot speed.- Update to 2.6.30-rc3.- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: hpet: fix periodic mode programming on AMD 81xx. - patches.fixes/hpet-boot-fix: Delete.- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!"- Update to 2.6.30-rc2-git6.- Update to 2.6.30-rc2. - trace and xen flavors disabled. - CONFIG_OTUS disabled on ppc. - request-based multipath could use some testing. - Eliminated 96 patches.- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink for i386.- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no modules are supported.- Moved linux-obj symlink handling to kernel-$flavor-devel.- rpm/package-descriptions: Add comment.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp file to source-timestamp instead, so that autobuild does not add the timestamp verbatim.- Update Xen patches to 2.6.29 final and c/s 854. - patches.xen/sfc-external-sram: enable access to Falcon's external SRAM (bnc#489105). - patches.xen/sfc-sync-headers: sync Solarflare accelerator headers (bnc#489105). - Update Xen config files.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Fix last change: do not add the timestamp if it is already added verbatim (by prepare_spec during checkin)- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Add source timestamp to package descriptions.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to generated spec files. - rpm/package-descriptions: descriptions of binary packages.- Enabled STAGING on !x86 and disabled COMEDI.- patches.rpmify/split-package: Enable- Update config files: Fixed i386-vanilla.- patches.fixes/xfs-export-debug: xfs: export assertion handler.- Switch from SPARSEMEM to DISCONTIGMEM on i386.- scripts/tar-up_and_run_mbuild.sh: Added pae to the important specfiles list.- Update config files: Fix missing ia64-debug.- patches.xen/sfc-resource-driver: Fix uninitialized var warning.- Drop NR_CPUS back to 128 on i386.- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE.- Update config files: Enabled STAGING drivers on -vanilla.- patches.rpmify/rpm-kernel-config: Rediff.- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols compute-PATCHVERSION.sh- Update config files: Enabled STAGING drivers.- Sync up kernel configs for x86/x86_64 flavors.- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary spec files anymore.- rpm/modversions: keep the override keyword in --pack.- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead.- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) expansion- rpm/mkspec: new script to generate spec files from *.spec.in templates - rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the source rpm - scripts/tar-up.sh: just tar up patches directories and call mkspec- rpm/kernel-dummy.spec.in: Delete.- doc/README.KSYMS: Add to repo.- config.conf, rpm/old-packages.conf, scripts/arch-symbols, scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch symbols completely, only map the various ix86 archs to i386.- doc/README.SUSE: allow_unsupported_modules needs to be set before installing the kernel (bnc#484664).- Add %changelog to spec files- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros- rpm/kernel-source.spec.in: Create kernel-source-vanilla- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Create a %using_buildservice macro- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, scripts/sequence-patch.sh, scripts/tar-up.sh: kernel-{binary,source}: Remove arch guards- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, scripts/tar-up.sh: Move development files from kernel-source to kernel-$flavor-devel- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y- rpm/kernel-binary.spec.in: Use macros for cpu_arch- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: kernel-{source,binary}: Use path-related rpm macros- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Use a %kernelrelease macro.- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: Use %variant instead of $variant- kernel-source: Kill old obsoletes- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh: Use %var instead of @VAR@ except where necessary- kernel-syms: Sort by flavor, not architecture- kernel-syms: Stop the architecture %else madness- kernel-binary: Stop the architecture %else madness- Removed -RT guards and a dead patch.- patches.fixes/reiserfs-prealloc-fix: Delete.- patches.suse/reiserfs-inode-init: Delete.- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and VARIANT variables.- Update to 2.6.29-final. - Eliminated 4 patches.- Update Xen config files. - Update Xen patches to 2.6.29-rc8 and c/s 821.- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" to the release, breaks plain rpmbuild.- rpm/kernel-binary.spec.in: don't generate symsets - rpm/kernel-syms.spec.in: don't package symsets - rpm/find-provides: disable symset provides - rpm/macros.kernel-source: don't check for /boot/symsets* (fate#305945)- patches.fixes/loop-barriers: Delete. - patches.fixes/loop-barriers2: Delete. Remove non-mainline patches to loop driver making it honour O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249)- README: add rough guide to updating KABI- Update to 2.6.29-rc8.- patches.fixes/fix-nf_conntrack_slp, patches.suse/perfmon2-remove_get_base_syscall_attr.patch, patches.suse/perfmon2.patch, patches.suse/silent-stack-overflow-2.patch: fix build warnings.- Update Xen patches addressing several issues in initial commit - Update Xen config files (re-enable oprofile, disable novfs). - patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations in entry_64-xen.S.- patches.arch/x86_64-unwind-annotations: fix unwind annotations in entry_64.S.- patches.suse/novfs-creds-change-2.6.29: Changing credential according to new task_struct.- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf is not empty.- rpm/kernel-binary.spec.in: renamed modprobe config to /etc/modprobe.d/50-module-renames.conf (required by new module-init-tools).- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build.- Update Xen config files (get tracing options back in sync with default).- Update config files: Enable CONFIG_FRAME_POINTER on Xen.- config.conf: Enabled Xen for building.- Update Xen patches to 2.6.29-rc7.- Update config files: enabled wireless debugging in -debug flavors.- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy - rpm/prepare-build.sh: Delete.- Update to 2.6.29-rc7. - Eliminated 1 patch.- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) in kernel-vanilla.spec.- patches.suse/export-security_inode_permission: Export security_inode_permission for aufs.- scripts/tar-up.sh: Add -u to update existing spec files.- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict.- scripts/tar-up.sh: create tarballs that don't change unnecessarily: set owner/group to nobody/nobody, mtime to time of the latest commit and sort the input files.- Update to 2.6.29-rc6-git1.- rpm/kernel-syms.spec.in: also check if the package versions match (bnc#478462)- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running().- patches.suse/stack-unwind: fix patch fuzz.- misc/xen-port-patches.py: Adjust fro new x86 header placement. - patches.arch/x86_64-unwind-annotations: fix unwind annotations (bnc#472783). - patches.suse/stack-unwind: Properlz hook up unwinder again.- patches.suse/kdb-common: Build fix with -I directive.- Update config files.- Update to 2.6.29-rc5-git3. - Eliminated 1 patch.- rpm/symsets.pl: allow passing only Module.symvers and no modules- disable ppc601 support, disable unused framebuffer drivers- disable kdump on ppc32- Update config files.- Update to 2.6.29-rc5.- Update to 2.6.29-rc4-git7. - Eliminated 2 patches.- patches.rpmify/spin_is_contended-fix: spin_is_contended Kconfig fixes.- Updated to 2.6.29-rc4. - Eliminated 3 patches.- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: x86, pat: fix warn_on_once() while mapping 0-1MB range.- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix last change: don't pass -e to weak-modules2.- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass down shell options like -x to weak-modules2 to make debugging with rpm -ivv easier.- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp actually work (bnc#470963).- scripts/tar-up.sh: fix branch name in KOTD packages.- config.conf: readde -debug flavor for ppc64- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: Better handle other FC initiators (bnc#471217 - LTC51238)- scripts/wd-functions.sh: display master as "master", not "HEAD" or "".- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix led naming. - patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: fix led naming. - patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: iwlwifi: another led naming fix. - patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: fix led naming . - patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: fix led naming.- Updated to 2.6.29-rc3-git3. - Eliminated 6 patches.- Updated to 2.6.29-rc3. - AppArmor is disabled. - Xen is disabled. - Eliminated 745 patches.- Enabled patches.suse/reiserfs_warning-reentrant- patches.fixes/xpc-pass-physical, patches.kabi/xpc-pass-physical: kABI: restore upstream patch, add ABI cover-up. (bnc#458811)- patches.fixes/serial-jsm-enable_ms.patch: Add enable_ms to jsm driver (bnc#471224 - LTC51066)- patches.arch/ppc-optimize-sync.patch: Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356)- refresh patches for fuzz due to 2.6.27.14-rc1 import.- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: ABI fix: add epoll_devs back to struct user_struct.- Update to 2.6.27.14-rc1 - lots of security fixes - lots of bugfixes - obsoletes: - patches.drivers/alsa-virtuoso-no-eeprom-overwrite - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch - patches.fixes/sysfs-fix-problems-with-binary-files.patch - patches.fixes/xpc-fix-NULL-deref - patches.fixes/xpc-write-barrier- patches.arch/ppc-pseries-migration_hang_fix.patch: Fix partition migration hang under load (bnc#470563 - LTC51153)- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE on ppc/ppc64- patches.drivers/libata-fix-EH-device-failure-handling: libata: fix EH device failure handling (bnc#470845).- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: queue_full is lacking the entry for qdio utilization (bnc#466462).- add ability to debug kernel using USB debug connector. - Update config files. - patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci reg def. - patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: usb debug port early console, v4.- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch patches.kabi/export-iwl_rx_allocate patches.kabi/sched-kabi-compat-hack.patch: Introduce patches.kabi/ for patches that only work around kabi issues and can be safely dropped at the next SP.- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c changes to pageattr-xen.c (bnc#439348).- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() to un-protect read-only kernel code pages (bnc#439348). - patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part (bnc#439348).- config/s390/s390: the -man package still fails for s390, disable it- rpm/kernel-binary.spec.in: fix build of the -man subpackage on 31bit s390- fix kernel-default.ppc64 reference symsets- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 FATE304266). [cpu_mask_to_apicid bigsmp fix]- patches.fixes/scsi-ibmvscsi-module_alias.patch: map scsi proc_name to module name (bnc#459933 - LTC50724)- Update config files: Disable ftrace in -debug on ppc64- config.conf: Added -debug flavor for ppc64.- patches.drivers/libfc-set-the-release-function.diff: Whitespace change.- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: IO data integrity issue when a IO data frame lost (bnc#469536).- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw.- update patches.arch/ppc-memoryless-nodes.patch: include prototype for PFN_UP() (bnc#462546 - LTC50009)- patches.suse/e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls. readded to avoid kabi change- config.conf: Added kernel-vmi to i386.- update patches.arch/ppc-memoryless-nodes.patch: use PFN_UP() for end_pfn (bnc#462546 - LTC50009)- kabi: import FCoE changes- patches.suse/dm-mpath-requeue-for-stopped-queue: disable wrong debug message again.- patches.fixes/taskstats-alignment: IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. (bnc#448410)- update patches.arch/ppc-memoryless-nodes.patch: fix calculation of reserve_size (bnc#462546 - LTC50009)- patches.fixes/disable-lro-per-default: Disable LRO per default in igb and ixgbe. (bnc#467519)- Just comment out patches.xen/xen3-e1000e_* (to address build error) until disposition of their originals is known.- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use stale copy of sk. (bnc#440104)Renamed some patches so they get included in vanilla builds. - patches.rpmify/firmware-path: Renamed. - patches.rpmify/no-include-asm: Renamed. - patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed.- patches.suse/led_classdev.sysfs-name.patch: use correct name for /sys/devices/virtual/leds/ entries (bnc#468350)- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. - patches.suse/e1000e_allow_bad_checksum: Delete. - patches.suse/e1000e_call_dump_eeprom: Delete. - patches.suse/e1000e_ioremap_sanity_check: Delete. - patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: Delete. Remove not mainline e1000e patches which were added to help with the e1000e NVM corruption - root issue is fixed- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. (bnc#468725)- supported.conf: Correct spelling for dm-least-pending path checker.- patches.suse/dm-mpath-check-info-before-access: Kernel Oops during path failover (bnc#458393).- refresh patch fuzz now that 2.6.27.13 is in tree- Update to final version of 2.6.27.13- dynamic debugging fixes backported from upstream: - patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: driver core: add newlines to debugging enabled/disabled messages. - patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: Driver core: fix 'dynamic_debug' cmd line parameter. - patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: driver core: fix using 'ret' variable in unregister_dynamic_debug_module.- patches.arch/x86_64-hpet-64bit-timer.patch: (fix return of an unitialized value (bnc#469017)- update kabi files: ignore changes in struct pcie_link_state as it is an internal structure only.- patches.suse/genksyms-add-override-flag.diff: genksyms: add - -override flag. - rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1- patches.fixes/sched-kabi-compat-hack.patch: sched: leave RT_GROUP_SCHED structure components intact to preserve kABI. broke kabi with fix for 456542- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency (bnc#464461). - patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: CPUFREQ: ondemand/conservative: sanitize sampling_rate restrictions (bnc#464461). - patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: CPUFREQ: ondemand: Limit default sampling rate to 300ms max. (bnc#464461). - patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS object (bnc#464461).- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount (bnc#458027).- Update config files: Disable RT_GROUP_SCHED (bnc#456542). The RT_GROUP_SCHED feature is experimental and clearly broken, so lets turn it off for now.- patches.fixes/hpilo-open-close-fix: hpilo open/close fix (bnc#466517).- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O on stopped queues correctly (bnc#458393).- patches.suse/mnt-want-write-speedup.patch, patches.suse/mnt_clone_write.patch: modified not to break kABI, enabled (bnc#436953).- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill while the interface is down (bnc#446158).- kabi/severities: temporarily enable changes in FcOE modules.- patches.arch/s390-08-06-personality.patch: kernel: setting 32 bit personality doesn't work (bnc#466462). - patches.arch/s390-08-07-compat_wrappers.patch: kernel: Add missing wrapper functions for 31 bit compat syscalls. (bnc#466462,LTC#51229). - patches.fixes/block-leave-the-request-timeout-timer-running: Delete obsolete patch.- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change fcoe_sw sg_tablesize to SG_ALL (bnc #459142). - patches.drivers/fcoe-check-return-for-fc_set_m.diff: check return for fc_set_mfs (bnc #459142). - patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame length validation in the early receive path (bnc #459142). - patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: fcoe: fix incorrect use of struct module (bnc #468051). - patches.drivers/fcoe-improved-load-balancing-i.diff: improved load balancing in rx path (bnc #459142). - patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff of the fabric when destroying interface (bnc #459142). - patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove WARN_ON in fc_set_mfs (bnc #459142). - patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is never used (bnc #459142). - patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add fc_disc.c locking comment block (bnc #459142). - patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: Ensure correct device_put/get usage (round 2). - patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: Fix rport recursive lock on rport mutex (bnc #459142). - patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: handle RRQ exch timeout (bnc #465596). - patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve fc_lport.c locking comment block (bnc #459142). - patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve fc_rport.c locking comment block (459142). - patches.drivers/libfc-make-fc_disc-inline-with.diff: make fc_disc inline with the fc_lport structure (bnc #459142). - patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN parsing more robust (bnc #459142). - patches.drivers/libfc-make-sure-we-access-the.diff: make sure we access the CRC safely (bnc #459142). - patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: Pass lport in exch_mgr_reset (bnc #465596). - patches.drivers/libfc-remove-debug-print-state.diff: libfc: Remove debug print statement, too verbose (bnc #459142). - patches.drivers/libfc-set-the-release-function.diff: Set the release function for the rport's kobject (round 2) (bnc #459142). - patches.drivers/libfc-updated-comment-for-orde.diff: updated comment for order of em and ex locks (bnc #459142). - patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated libfc fcoe module ver to 1.0.6 (bnc #459142). - patches.drivers/libfc-use-an-operations-struct.diff: use an operations structure for rport callbacks (bnc #459142). - patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: when rport goes away (re-plogi), clean up exchanges to/from rport (bnc #465596). - patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking issues with lport->lp_mutex around lport->link_status (bnc [#468053]). - patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT from certain ELS (bnc #468054).- patches.fixes/qla2xxx-check-fc-rport-validity: qla2xxx: added check for fcport is valid in qla2x00_terminate_rport_io(). (bnc#467624).- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - Add quirk for Gateway T1616 laptop (bnc#467597). - patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model entry for HP dv4. - patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - Add model=ref for Intel board with STAC9221 (bnc#406529).- patches.fixes/blk-leave-sync-timer-running: block: Rediff - patches.fixes/block-use-round_jiffies_up: Block: use round_jiffies_up() (bnc#464155). - Add missing patches to series.conf: patches.fixes/round-jiffies-up patches.fixes/block-use-round_jiffies_up patches.fixes/block-fix-blk_start_queueing patches.fixes/suppress-buffer-IO-errors patches.fixes/block-optimizations-in-blk_rq_timed_out_timer patches.fixes/block-add-comment-in-blk_rq_timed_out- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: handle also drivers/scsi/ibmvscsi/ibmvfc.c- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we allocate enough storage for socket address (467691).- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes.- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: ABI fix: add s_syncing back to struct super_block.- update to 2.6.27.13-rc1: - security updates - lots of bugfixes - obsoletes: - patches.arch/ppc-fix_hugepage_check.patch - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back - patches.drivers/alsa-hda-samsung-q45-quirk - patches.fixes/security-introduce-missing-kfree.patch - patches.fixes/xpc-fix-heartbeat - Update config files.- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug with shared interrupt during reset (bnc#396687)- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert "vt: fix background color on line feed" (bnc#418613).- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: fix rs_get_rate WARN_ON() (bnc#456002). - Reordered wireless patches to group together patches touching the same driver.- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: disable catas_reset by default to avoid problems with EEH (bnc#456389).- patches.fixes/xpc-pass-physical: fixed kABI breakage. (bnc#458811)- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is not an important spec file.- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI breakage, reenabled.- rpm/modversions: eat the "override" keyword before parsing the symbol definition.- patches.fixes/scsi-ibmvscsi-vio_leak.patch: Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205)- patches.suse/of_platform_driver.module-owner.patch: add missing module symlink to /sys/bus/*/driver/* in struct of_platform_driver.- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile error fix - new version from Intel (bnc#465923)- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode for HPET Timer0 (bnc#456700). (fix compilation on i386 and add hpet64 to kernel-parameters.txt)- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode for HPET Timer0 (bnc#456700).- patches.fixes/xpc-pass-physical: sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) - patches.fixes/xpc-fix-heartbeat: sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545)- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: add Dell Vostro 1510 to nomux list (bnc#404881).- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113).- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add extra volume offset to standard volume amp macros (bnc#466428). - patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - Halve too large volume scales for STAC/IDT codecs (bnc#466428).- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 to 8.2.8.12 (bnc#467713).- patches.fixes/reiserfs-debug-1036: fix missing jl arg- rpm/kernel-binary.spec.in: delete duplicate error message in the kabi checks- patches.fixes/remove_kernel_physical_mapping_init_from_init: move kernel_physical_mapping_init to __meminit (bnc#467474).- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes kABI.- patches.fixes/security-introduce-missing-kfree.patch: security: introduce missing kfree (bnc#467322). - patches.fixes/sysfs-fix-problems-with-binary-files.patch: sysfs: fix problems with binary files.- patches.arch/ia64-page-migration.fix: fix deadlock caused by cpe_migrate.ko and mark it supported. (bnc#464676)- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set in PROM (bnc#457679).- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 systems (bnc#458869).- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer dereference. (bnc#466563). - patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are updated before bte_copy (bnc#466563).- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: ipw2200: fix scanning while associated (bnc#459067).- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report killswitch changes even if the interface is down (bnc#446013).- patches.fixes/mac80211-add-direct-probe.patch: mac80211: add direct probe before association (bnc#461889).- patches.drivers/mptsas-discover-all-devices: mptsas driver fails to discover devices (bnc#459932).- Update Xen patches to 2.6.27.12. - patches.xen/764-netback-foreign-pages.patch: netback: handle non-netback foreign pages. - patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining to switch all affected ports belonging to a particular /dev/evcthn user. - patches.xen/gso-size-check.patch: gso: Ensure that the packet is long enough. - patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is in use (bnc#435596). - patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity check to catch mapping requests exceeding the BAR sizes (bnc#425480). - patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous kmap fix (bnc#449812).- update patches.suse/radeon-monitor-jsxx-quirk.patch: implement correct model matching- update patches.suse/dm-mpath-tracking-nr-bytes: lpp_end_io gets nr_bytes as third arg- update patches.suse/radeon-monitor-jsxx-quirk.patch: match all JSxx/QSxx models based on the first 4 chars in 'model'- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: Fix MSI after kexec (bnc#467633)- clean up patch fuzz after 2.6.27.12 inclusion.- Update to the real 2.6.27.12- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate reiserfs_warning from uniqueness functions; Fixes deadlock.- patches.drivers/cxgb3-ser.patch: reset the adapter on fatal error (bnc#466062 - LTC51042)- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing cpu hot remove for inactive iucv (bnc#466462,LTC#51104). - patches.arch/s390-08-04-compat-sigaltstack.diff: kernel: 31 bit compat sigaltstack syscall fails with - EFAULT. (bnc#466462,LTC#50888). - patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: af_iucv: System hang if recvmsg() is used with MSG_PEEK (bnc#466462,LTC#51136).- patches.suse/dm-mpath-accept-failed-paths: Only accept non-existing paths when adding failed paths (bnc#467579)- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the packaged .configs if builfing debug packages (bnc#460887)- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6- patches.suse/export-iwl_rx_allocate: reintroduce EXPORT_SYMBOL(iwl_rx_allocate).- import SLE11 RC2 reference kabi- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't return all sense data (bnc#466179).- Update to 2.6.27.12-rc2- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: call boot IRQ quirks at end of device init and during resume. - patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: update to upstream variant of this patch: - integrate an older quirk to make IO-APIC mode work on AMD 8131 rev. A0 and B0 - fix boot IRQ disabling logic for AMD 813x - remove unneeded code for AMD SB700S- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap fix (bnc#449812).- enable mptsas in kdump kernel to allow crashdump on QS2x bladesFix STAC925x patch again - patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix (yet more) STAC925x issues (bnc#460478).- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix subchannel multipath mode setup (bnc#466462,LTC#51047). - patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix memory alignment for GPN_FT requests. (bnc#466462).- Update config files for vanilla kernel versions due to new config option added in 2.6.27.12-rc1.- Update to 2.6.27.12-rc1: - security fixes - fixes CVE-2009-0029 - bug fixes all over the place. - obsoletes the following patches: - patches.arch/ppc-cmm_no_kdump.patch - patches.drivers/alsa-caiaq-midi-oops-fix - patches.drivers/alsa-hda-hp-6730b-quirk - patches.drivers/ibmvfc-host_init_delay.patch - patches.drivers/ibmvfc-improve_sync_events.patch - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch - patches.fixes/mm-lockless-pagecache-barrier.patch - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch - patches.fixes/uv-remove-erroneous-BAU-init - Update config files.- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365).- patches.suse/s390-System.map.diff: Strip L2^B symbols (bnc #456682).- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: Add missing Gateway entries and autodetection (bnc#460478). - patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes on Gateway entries (bnc#460478). - patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP dv5 mic input (bnc#462913). - patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk for another HP dv5 (bnc#462913). - patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - Fix a typo. - patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add automatic model setting for Samsung Q45. - patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add a new function to seek for a codec ID (bnc#460478). - patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). - patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix missing initialization of NID 0x0e for STAC925x (bnc#460478).- patches.arch/ppc-fix_hugepage_check.patch: is_hugepage_only_range() must account for both 4kB and 64kB slices (bnc#466229 - LTC51063)- Update config files: Disabled PARAVIRT on vanilla and LGUEST.- Enabled patches.suse/unlock_page-speedup.patch- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: PCI PM: Split PCI Express port suspend-resume (bnc#455926). - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: PCI: Suspend and resume PCI Express ports with interrupts disabled (bnc#455926). - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: PCI: handle PCI state saving with interrupts disabled (bnc#455926). - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: PCI: Rework default handling of suspend and resume (bnc#455926).- Update config files: Disable PARAVIRT.- refresh patches for fuzz due to update to 2.6.27.11- Update to final version of 2.6.27.11- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe and kernel DCB netlink code. (bnc#458194) - patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile error fix. (bnc#465923) - Update config files.- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. It came out that this is an already fixed BIOS bug. The quirk is not needed anymore.- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: In AcpiNsGetInternalNameLength, skip the redundant backslash of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 http://www.acpica.org/bugzilla/show_bug.cgi?id=739). - patches.fixes/acpi_video_always_update_sys.patch: video: always update the brightness when poking "brightness" (bnc#450149). - patches.fixes/acpi_video_handle_reversed_brightness_info.patch: ACPI: video: Fix reversed brightness behavior on ThinkPad SL series (bnc#450149).- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: fix __load_balance_iterator() for cfs with only one task (bnc#457594 - LTC50544)- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on ENOSPC when converting delayed allocations (bnc#433112 - LTC48749)- Added guarded patches: - patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write speedup (bnc#436953). - patches.suse/mnt_clone_write.patch: fs: introduce mnt_clone_write (bnc#436953). - patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup (bnc#436953).- Update config files. - patches.drivers/add-via-chrome9-drm-support.patch: add Via chrome9 drm support.- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: pata_via.c: Support VX855 and future chips whose IDE controller use 0x0571..- patches.fixes/scsi-restart-lookup-by-target: Modify patch after suggestions from James Bottomley (bnc#465346).- patches.fixes/scsi-restart-lookup-by-target: Restart scsi_device_lookup_by_target() (bnc#465346).- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966)- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816)- Update to 2.6.27.11-rc1: - lots of minor fixes - obsoletes: - patches.fixes/md-bitmap-read-do-not-overflow - patches.suse/scsi-scsi_transport_srp-shost_data.patch- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch symlinks like i586 -> i386 in /usr/src/linux-obj.- supported.conf: updated staging and other drivers- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: Tx performance tweak helper. - patches.drivers/r8169-add-8168-8101-registers-description: r8169: add 8168/8101 registers description. - patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: r8169: add hw start helpers for the 8168 and the 8101. - patches.drivers/r8169-additional-8101-and-8102-support: r8169: additional 8101 and 8102 support. - patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: r8169: use pci_find_capability for the PCI-E features. (bnc#448168)- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed "kernel-source" string, to stay in sync with with differet kernel variants.- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: replace the /usr/src/linux-obj symlink with a directory containing per-flavor symlinks instead. This allows us to install kernel-source / syms and kernel-source-rt / syms-rt in parallel and still find everything below /usr/src/linux-obj/. - rpm/kernel-binary.spec.in: for -rt, install into /usr/src/linux-$version-rt-obj. - rpm/kernel-syms.spec.in: fix kernel-source requires for -rt.- patches.drivers/input-usbtouchscreen-hw-calibration.patch: Input: usbtouchscreen - allow reporting calibrated data (bnc#444814).- patches.suse/file-capabilities-add-file_caps-switch.diff: fix parsing of the file_caps commandline option (bnc#264075)- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies (bnc#464329).- patches.arch/ppc-cmm_no_kdump.patch: Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)- patches.suse/cgroup-disable-memory.patch: memcg: disable the memory controller by default. - patches.suse/add-enable_cgroup-parameter.patch: Delete. - patches.suse/disable-cgroups.patch: Delete.- patches.suse/radeon-monitor-jsxx-quirk.patch fix compile errors- patches.fixes/ath5k-ignore-calibration-return-value.patch: ath5k: ignore the return value of ath5k_hw_noise_floor_calibration (bnc#446541).- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: suppress bogus warning messages (bnc#460961).- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for the graphics adapter in some JSxx (bnc#461002 - LTC50817)- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not derive IRQ from parent bridge/device via boot param/dmi list (bnc#437211). - patches.suse/acpi_osi_sle11_ident.patch: Provide possibility for vendors to fix BIOS issues for SLE11 only (none).- patches.drivers/blk-request-based-multipath-update: Rediff. - patches.fixes/scsi-refactor-busy-processing: refactor sdev/starget/shost busy checking; break out from blk-request-based-multipath-update.- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 to 8.2.8.11 (bnc#464662). - patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: only call scsi_unprep_request() under queue lock (bnc#464155). - patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix hang in starved list processing (bnc#464155).- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID for 5716S - patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: Fix bug in bnx2_free_rx_mem() (bnc#464130)- patches.suse/disable-cgroups.patch: Disable all cgroups (bnc#436025).- Backporting block layer fixes (bnc#464155): * patches.fixes/block-add-comment-in-blk_rq_timed_out: add comment in blk_rq_timed_out() about why next can not be 0 * patches.fixes/block-fix-blk_start_queueing: block: Fix blk_start_queueing() to not kick a stopped queue. * patches.fixes/block-leave-the-request-timeout-timer-running: block: leave the request timeout timer running even on an empty list. * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: block: optimizations in blk_rq_timed_out_timer(). * patches.fixes/block-suppress-buffer-IO-errors: block: Supress Buffer I/O errors when SCSI REQ_QUIET flag set. * patches.fixes/block-use-round_jiffies_up: Block: use round_jiffies_up(). * patches.fixes/round-jiffies-up: Add round_jiffies_up and related routines.- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: ACPI/PCI: PCI MSI _OSC support capabilities called when root bridge added (bnc#438941).- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). - patches.suse/scsi-check-removed-device-for-offline: Only check for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.- patches.suse/add-enable_cgroup-parameter.patch: Add cgroup_enable parameter (bnc#436025).- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: ACPI/PCI: include missing acpi.h file in pci-acpi.h. (bnc#438941).- clean up patch fuzz- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: ACPI/PCI: PCI MSI _OSC support capabilities called when root bridge added (bnc#438941). - patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: ACPI/PCI: PCIe AER _OSC support capabilities called when root bridge added (bnc#438941). - patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: ACPI/PCI: PCIe ASPM _OSC support capabilities called when root bridge added (bnc#438941). - patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: ACPI/PCI: remove obsolete _OSC capability support functions (bnc#438941).- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: ACPI/PCI: call _OSC support during root bridge discovery (bnc#438941). - patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: ACPI/PCI: Change pci_osc_control_set() to query control bits first (bnc#438941). - patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: ACPI/PCI: Fix possible race condition on _OSC evaluation (bnc#438941). - patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: ACPI/PCI: include missing acpi.h file in pci-acpi.h. (bnc#438941). - patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: ACPI/PCI: PCI extended config _OSC support called when root bridge added (bnc#438941).- patches.drivers/bnx2x-version-update.patch: bnx2x: Version Update (bnc#439679).- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: Remove message for failed port (bnc#464466). - patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add support for unchained FSF requests (bnc#464466). - patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu topology support (bnc#464466). - patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add 'failfast' device feature. (bnc#464466,LTC#43066).- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix Oops with MIDI.- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid destroying table in dm_any_congested (bnc#457205). - patches.fixes/dm-table-ref-count: dm table: rework reference counting (bnc#457205). - patches.fixes/dm-unbind-drop-ref: dm table: drop reference at unbind (bnc#457205).- update kdump config, disable some unused drivers- refresh config files, no functional changes- patches.drivers/ehea-modinfo.patch: use separate table for module alias (bnc#435215 - LTC48564)Backport fixes for HD-audio from the upstream: - patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - Fix typos for AD1882 codecs. - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: hda - make laptop-eapd model back for AD1986A. - patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk for HP 2230s (bnc#461660). - patches.drivers/alsa-hda-sigmatel-add-missing-terminators: ALSA: hda - Add missing terminators in patch_sigmatel.c.- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) for ppc/kdump and ppc64/kdump (bnc #459119).- Make kernel-source.changes incremental again- supported.conf: rename dm-leastpending-path to dm-leastpending- patches.drivers/ehea-modinfo.patch: add alias entry for portN properties (bnc#435215 - LTC48564)- patches.drivers/ibmvfc-abort-response.patch: Fixup command response translation (bnc#459383 - LTC50695)- patches.drivers/ibmvfc-improve_sync_events.patch: Improve async event handling (bnc#460567 - LTC50778)- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome DRM bugfixes.- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to patches.fixes/dlm-fix-shutdown-cleanup.patch- Fixes a regression from commit 0f8e0d9a317406612700426fad3efab0b7bbc467, "dlm: allow multiple lockspace creates".- patches.arch/ppc-pseries-cpu-migrate.patch: Update default_server during migrate_irqs_away (bnc#460566 - LTC50723)- patches.suse/mm-increase-dirty-limits.patch: Increase limits for starting writeback of dirty data (bnc#449662).- Update config files (part of bnc#448412).- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver patches for SLE11 (bnc#460775).- patches.suse/dm-barrier-single-device: Update Patch-mainline header. Patch is not refreshed as it breaks kabi (FATE#304489).- patches.drivers/cciss-driver-panic-on-volume-delete: cciss driver may panic if a logical volume is deleted (bnc#459553).- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks (bnc#461747).- patches.fixes/fc_transport-devloss-callback-restore: FC devloss callback not called when devloss timer fires (bnc#463289).- patches.suse/dm-mpath-leastpending-path-update: Update least-pending-IO dynamic load balancer (bnc#444199). - patches.suse/dm-mpath-queue-length-load-balancing: Rediff. - patches.suse/dm-mpath-service-time-load-balancing: Rediff. - patches.suse/dm-mpath-tracking-nr-bytes: Rediff. - patches.suse/dm-mpath-leastpending-path: Delete.- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous BAU initialization (bnc#463313).- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: exploit source MAC address for inbound layer3 packets (bnc#458339). - patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid crash in case of layer mismatch for VSWITCH (bnc#458339). - patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix unsolicited SIM sense condition. (bnc#458339). - patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix broken memcpy (bnc#458339). - patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework s390dbf usage (bnc#458339). - patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework inbound buffer acknowledgement (bnc#458339). - patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes when repeatetly attaching/detaching devices. (bnc#458339).- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for contiguous kmap fix (bnc#449812).- patches.fixes/mm-lockless-pagecache-barrier.patch: update.- patches.suse/modpost-filter-out-built-in-depends: modpost: filter out "built-in" depends (bnc#450085). - patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: refresh.- Fix ps3 config.- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless pagecache barrier fix.- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: fs symlink write_begin allocation context fix.- Update config files.- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, fate#304191, fate#201036).- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP version of lru_add_drain_all() (bnc#458380).- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap fix (bnc#449812).- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: Fix oops with incompatible backlight interface.- update patches.arch/ppc-memoryless-nodes.patch: fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make max_requests module parameter more accurate (bnc#458499 - LTC50637)- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk for another HP dv7 (bnc#461108).- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).- patches.fixes/reiserfs-debug-1036: Print more info.- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable 44.1kHz capture on CA0106 (bnc#447624). - patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add power-amangement support (bnc#447624). - patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix plaback problems on Intel desktops with IDT codecs.- patches.arch/x86_sgi-uv-scir.patch, patches.suse/e1000e_ioremap_sanity_check, patches.suse/perfmon2-remove_get_base_syscall_attr.patch, patches.suse/perfmon2.patch, patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.- Update config files. - patches.drivers/staging-add-rt2870-wireless-driver.patch: Staging: add rt2870 wireless driver.- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read past end of bitmap when reading bitmap. (bnc#459557).- patches.fixes/reiserfs-debug-1036: Fixed ordering.- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.- Updated to final 2.6.27.10 release- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: Use apic=bigsmp on specific xseries machines (bnc#440497).- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: Only scan the root bus in early PCI quirks. (bnc#57886).- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. - patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. - patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. - patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. - patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. - patches.xen/xen-x86-exports: export a few more symbols (bnc#458222). - patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... - patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.- patches.fixes/md-disable-recovery-on-faulty-degraded-array: Disable recovery when degraded RAID1 array appears to be faulty. (bnc#447835).- rpm/symsets.pl: fix uninitialized variable- rpm/kernel-binary.spec.in: - add genksyms reference files so that genksyms can explain why did checksums change- patches.drivers/via-framebuffer-driver.patch: Delete. It oopses badly and is not needed for the HP2133 hardware, as it has switched to Intel chipsets.- Upate to 2.6.27.10-rc1, fixing lots of problems. - obsoletes: - patches.drivers/libata-update-ST-FLUSH-blacklist - patches.fixes/iwlwifi_fix_oops.patch - patches.fixes/v4l-dvb-avoid-writing-outside-array- patches.suse/reiserfs-barrier-default: Make reiserfs default to barrier=flush.- addded symtypes-* files to the RC1 reference kabi- patches.fixes/ext3-mark-super-uptodate: ext3: always mark super uptodate before dirty (bnc#457043).- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: block: only call ->request_fn when the queue is not stopped (bnc#457041). - patches.fixes/blk-get-extra-reference-before-unmap: block: hold extra reference to bio in blk_rq_map_user_iov(). - patches.fixes/blk-move-unplug_work-init: block: move q->unplug_work initialization. - patches.fixes/blk-set-segment-boundary-mask: block: fix setting of max_segment_size and seg_boundary mask. - patches.fixes/dm-mpath-send-activate-to-every-path: Handle multiple paths in a path group properly during pg_init. - patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor and product IDs to RDAC device handler. - patches.suse/dm-mpath-accept-failed-paths: Accept failed paths for multipath maps (bnc#458037,bnc#458393). - patches.suse/scsi-check-removed-device-for-offline: Check if device is removed in scsi_device_online() (bnc#456747).- Enable 3270 console (bnc#457039)- Update config files. - patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: mm: Do not disable memory hotplug when hibernation is enabled (bnc#438914).- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table in iwl_clear_stations_table function (bnc#457062).- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size check and fixed ddp page setup (bnc#449519).- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx driver SLES 11 Beta6 update (bnc#458186).- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).- Update to 2.6.27.9 - obsoleted: - patches.fixes/applicom-fix-unchecked-ioctl-range - patches.fixes/watchdog-ib700wdt-buffer-underflow- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: ensure nonzero transaction (bnc#447406).- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.- .gitignore: Ignore backup files.- patches.fixes/scsi-check-host-lookup-failure: Correct scsi_host_lookup return value (bnc#456532). - patches.suse/dm-mpath-accept-failed-paths: Accept failed paths for multipath maps (bnc#458037).- patches.fixes/hso_killswitch.patch: hso: rfkill type should be WWAN (bnc#458625).- patches.fixes/hso_killswitch.patch: fix hso rfkillswitch type to WWAN (bnc#458625)- import SLE11 RC1 reference kabi- refresh patches to apply cleanly due to 2.6.27.9-rc addition.- remove patches that were obsoleted by 2.6.27.9-rc2 - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch - patches.arch/x86-hpet-use-WARN_ON_ONCE - patches.drivers/alsa-hda-acer-quirk - patches.drivers/alsa-hda-alc888-medion-add - patches.drivers/alsa-hda-dell-studio-15-quirk - patches.drivers/alsa-hda-dell-studio-1535-quirk - patches.drivers/alsa-hda-hp-6730s-quirk - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk - patches.drivers/alsa-hda-hp-mobile-fix - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch - patches.drivers/cell_edac.patch - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch - patches.fixes/block-enforce-minimum-SG_IO-timeout - patches.fixes/cxgb3-remove-duplicate-tests-in-lro - patches.fixes/cxgb3_fix_race_in_EEH - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch - patches.fixes/pci_aspm_check_endless_loop_safe.patch - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch - patches.fixes/x86-arch_add_memory-remove-debug - patches.fixes/x86-memory-hotplug-off-by-one- update to 2.6.27.9-rc2: - lots of bugfixes - some security updates- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.- Compile in zfcpdump module for S/390 (bnc#446367).- rpm/kernel-binary.spec.in: one more fix to make kabi checks work- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: fix Seagate NCQ+FLUSH blacklist (bnc#458192).- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page in swap_sync_page (441793).- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: zfcp: fix erp timeout cleanup for port open requests (bnc#450096).- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - fix buffer_underflow bug (bnc#457898).- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix an unchecked user ioctl range and an error return (bnc#457897).- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a minimum SG_IO timeout (bnc#457896).- rpm/find-provides: don't fail if a subpackage doesn't contain any modules (such as the -man subpackage on s390x)- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk for HP6730B laptop (bnc#457909). - patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add another HP model (6730s) for AD1884A. - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - Make the HP EliteBook 8530p use AD1884A model laptop.- patches.drivers/ibmvfc-add_sync.patch: Fix errors due to inconsistent command data (bnc#456654 - LTC50451) - patches.drivers/ibmvfc-host_init_delay.patch: Delay NPIV login retry and add retries (bnc#456654 - LTC50451)- patches.drivers/libata-pata_hpt366-fix-cable-detection: pata_hpt366: fix cable detection, (bnc#362159). - patches.drivers/libata-pata_hpt366-fix-clock-detection: pata_hpt366: fix clock detection (bnc#362159). - patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: no ATAPI DMA (bnc#362159). - patches.drivers/libata-pata_hpt366-reimplement-mode-programming: pata_hpt366: reimplement mode programming (bnc#362159).- supported.conf: Mark xfs_dmapi as supported (bnc#457668).- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove debug code from arch_add_memory() (bnc#457526). - patches.fixes/x86-memory-hotplug-off-by-one: x86, memory hotplug: remove wrong -1 in calling init_memory_mapping() (bnc#457526).- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove a leftover hardcoded dependency on the kernel-source package so that KMPs can alternatively be built against a kernel other than (kernel-source + kernel-syms), such as (kernel-source-rt + kernel-syms-rt).- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: ASPM: Break out of endless loop waiting for PCI config bits to switch (bnc#449799).- rpm/symsets.pl: - add --required-modules option to tell which modules this subpackage requires via dependencies. This is needed to preserve symsets when modules move from one subpackage to another. - add POD help and --help option. - rpm/kernel-binary.spec.in: make use of --required-modules- patches.fixes/xfs-barrier-fix.patch: Fix propagation of EOPNOTSUPP when barriers are not supported. (bnc#438608).- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure to enable WoL by default when possible (bnc#447371).- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: Check for valid hugepage size in hugetlb_get_unmapped_area (bnc#456433 - LTC50170).- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.- patches.drivers/sgi-xp-no-uv: SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)- Update config files for ia64: Disable PERMIT_BSP_REMOVE. (bnc#386714)- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what subpackage is being processed in find-provides and just print the symsets computed in the spec.- rpm/post.sh: use flavor-rpmarch to match boards on powerpc- rpm/kernel-module-subpackage: skip empty KMPs with a warning in the kmp %%postun- Update config files. - patches.apparmor/fix-complain.diff: fix enforcement of deny rules in complain mode (bnc#426159). - patches.apparmor/fix-security-param.diff: fix recognition of security= boot parameter (bnc#442668). - patches.apparmor/fork-tracking.diff: fix log messages to enable tools profile learning (bnc#447564).- rpm/post.sh: update board detection to use rpmarch instead flavor- patches.fixes/block-integrity-update: Block integrity update (FATE#304345). - patches.suse/dm-block-integrity: Block integrity support for DM and MD (FATE#304345). - patches.suse/dm-mpath-add-start-io: dm-mpath: add a path selector interface (FATE#303862,FATE#302108). - patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add queue-length dynamic load balancer (FATE#303862,FATE#302108). - patches.suse/dm-mpath-service-time-load-balancing: dm-mpath: add service-time oriented dynamic load balancer (FATE#303862,FATE#302108). - patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: interface change for service-time dynamic load balancer (FATE#303862,FATE#302108). - supported.conf: Update to correctly reference dynamic load balancer modules (bnc#444199)- patches.suse/perfmon2-add_ioctl_interface.patch: switch to ioctl interface for perfmon2. - patches.suse/perfmon2-fix_disabled.patch: fix initializion of perfmon disabled. - patches.suse/perfmon2-remove_get_base_syscall_attr.patch: remove perfmon syscall_base attribyute. - patches.suse/perfmon2-remove_syscalls.patch: drop additional perfmon2 syscalls. - patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional perfmon2 syscalls.- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: ACPI: EC: Don't degrade to poll mode at storm automatically. (bnc#446142). - patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break out of endless loop waiting for PCI config bits to switch (bnc#449799).- refresh patches to apply cleanly.- Update to final 2.6.27.8 release - contains 2 changes from 2.6.27.8-rc1- patches.xen/xen-configurable-guest-devices: fix a typo.- patches.suse/scsi-scsi_transport_srp-shost_data.patch: move crq_queue_create at the end of initialization (bnc#455929).- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes for fnic. - patches.drivers/open-fcoe-rc1-update: Update open-FCoE with latest patches from Intel (bnc#438954).- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits in netback).- patches.arch/s390-zfcp-synchronize-scsi-register: No udev events for zfcp online / offline (bnc#443667). - patches.fixes/scsi-remove-scmd-timeout: Fix block timeout residue problems (bnc#447249,bnc#441335). - patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch.- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: saa7134: fix resource map sanity check conflict (bnc#446733).- Update config files. - patches.drivers/staging-add-rtl8187se-driver.patch: Staging: add rtl8187se driver. Needed for MSI Wind and other netbooks.- Update config files. - patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: Staging: Add ServerEngines benet 10Gb ethernet driver.- update the wlan-ng driver to the latest upstream version, making it much more useful (it actually works now...)- patches.fixes/sunrpc-module-refcount-fix: Add a reference to sunrpc in svc_addsock (443379). This avoid a bug where refcount on sunrpc can go zero or negative.- patches.fixes/reiserfs-debug-1036: reiserfs: print more information when an empty journal list is encountered (bnc#447406 bnc#399966).- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: ATM: duplicate listen() on socket corrupts the vcc table (CVE-2008-5079).- Update config files.XFS update on request from SGI: - patches.apparmor/vfs-notify_change.diff: Add a vfsmount parameter to notify_change(). (refreshed) - patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: Account for allocated blocks when expanding directories (bnc#450658). - patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: XFS: Check for valid transaction headers in recovery (bnc#450658). - patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI (bnc#450658). - patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). - patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs (bnc#450658). - patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: handle memory allocation failures during log initialisation (bnc#450658). - patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware (74107, 173874, bnc#450658). - patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait for all I/O on truncate to zero file size (bnc#450658). - patches.suse/xfs-dmapi-2.6.27: Delete. - patches.suse/xfs-dmapi-xfs-2.6.27: Delete.- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397).- Update config files. - patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: fix remote port status check (bnc#450096). - patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: smp_call_function races. (bnc#450096). - patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize work. (bnc#450096). - patches.arch/s390-05-07-generic-ipi.patch: kernel: smp_call_function races. (bnc#450096). - patches.arch/s390-05-08-topology.patch: kernel: disable cpu topology support by default (bnc#450096,LTC#50392).- patches.arch/ppc-cell-gdb-watchpoints.patch: Fix GDB watchpoints on Cell (bnc#456405 - LTC50396).- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on Cell entered with XER.SO=1 (bnc#456406 - LTC50395).- patches.suse/genhd-disk-ro-uevents: Send uevents for write_protect changes (bnc#440959).- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, a supported variant will be provided in a separate KMP (bnc#455959)- Set CONFIG_IA64_CPE_MIGRATE=m.- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, and sfc_netutil as externally supported, add sfc_netfront, and mark xenscsi and xen-scsibk as unsupported.- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of uninitialized variable in cache_grow() (bnc#444597).- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use block timeout (bnc#447249,bnc#441335).- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed anymore now that 2.6.27.8-rc1 has a similar fix.- Update to 2.6.27.8-rc1: - lots of bugfixes - some security fixes as well. - obsoletes lots of existing patches: - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch - patches.drivers/libata-fix-ata_tf_read_block-overflow - patches.drivers/libata-fix-ata_tf_to_lba48-overflow - patches.drivers/libata-seagate-firmware-bug - patches.drivers/parport-serial-array-overflow-fix - patches.fixes/af_unix-soft-lockup-fix.patch - patches.fixes/cifs-add-cifs_sock_list - patches.fixes/cifs-cleanup-cifs_mount - patches.fixes/cifs-cleanup-proto-handling - patches.fixes/cifs-disable-sess-sharing - patches.fixes/cifs-fix-build-breakage - patches.fixes/cifs-fix-data-corruption - patches.fixes/cifs-fix-dead-tcon-check - patches.fixes/cifs-fix-oops-on-failed-mount - patches.fixes/cifs-fix-reconnection-flags - patches.fixes/cifs-fix-smb-send2 - patches.fixes/cifs-fix-writepages - patches.fixes/cifs-reinstate-sess-sharing-sans-races - patches.fixes/cifs-reinstate-treecon-sharing - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully - patches.fixes/ext4_fix_whitespace_checkpatch_issues - patches.fixes/ext4_update-flex-bg-counters-when-resizing - patches.fixes/fix-inotify-watch-removal-umount-races - patches.fixes/hpwdt-execute-page.diff - patches.fixes/hpwdt-kdump.diff - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. - patches.xen/xen3-patch-2.6.27, patches.xen/xen-netback-notify-multi, patches.xen/xen-virq-per-cpu-irq: Refresh.- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change init order to fill in shost_data (bnc#455929).- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for skb allocation.- patches.suse/scsi-scsi_transport_srp-shost_data.patch: add debug for Scsi_Host->shost_data (bnc#455929).- supported.conf: mark dm-leastpending-path as supported (bnc#444199)Patch updated to remove strcmp() on NULL strings. - patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: ata_piix: add borked Tecra M4 to broken suspend list (bnc#398270).- Update Xen patches to c/s 728 (plus several indivual ones) - patches.xen/735-balloon-exit.patch: remove sysfs files during balloon module exit. - patches.xen/737-kexec-free.patch: kexec: Don't pass limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). - patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix potential resource leak. - patches.xen/746-pirq-status-page.patch: use shared page indicating the need for an EOI notification - patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of xen_limit_pages_to_max_mfn() - patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code - patches.xen/panic-on-io-nmi-xen.diff: Rename to ... - patches.xen/xen3-panic-on-io-nmi.diff: ... this. - patches.xen/uv-sysfs-no-xen.diff: Replace by ... - patches.xen/xen3-uv_setup_irq.diff: ... this. - patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: add early detection of UV system types (bnc#429984). - patches.xen/xen-fb-bad-irq: Delete.- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver to 8.2.8.9 (bnc#420767).- patches.suse/cfq-ioc-race: Exiting queue and task might race to free cic (bnc#444346).- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it didn't apply cleanly.- Fix data corruption issues (411655). patches.fixes/cifs-fix-data-corruption patches.fixes/cifs-fix-smb-send2 - Fix multiple oopses, memory corruption due to mount/umount races (https://bugzilla.samba.org/show_bug.cgi?id=5720). patches.fixes/cifs-add-cifs_sock_list patches.fixes/cifs-cleanup-cifs_mount patches.fixes/cifs-cleanup-proto-handling patches.fixes/cifs-disable-sess-sharing patches.fixes/cifs-fix-build-breakage patches.fixes/cifs-fix-dead-tcon-check patches.fixes/cifs-fix-oops-on-failed-mount patches.fixes/cifs-fix-reconnection-flags patches.fixes/cifs-fix-writepages patches.fixes/cifs-reinstate-sess-sharing-sans-races patches.fixes/cifs-reinstate-treecon-sharing- scripts/git-create-branch: Helper script to create a new branch.- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first eight digits of the commit id to the release string. This makes it easier to match rpm release numbers with commits.- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft lockups/OOM issues w/ unix garbage collector (bnc#449739 CVE-2008-5300).- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: additional fixes/updates for SLES11 (bnc#450197). - patches.fixes/scsi-fixup-failfast-definitions: fc_transport: fix old bug on bitflag definitions (bnc#447814).- patches.suse/novfs-map-drives-correctly.diff - patches.suse/novfs-merge-changes.diff: Modified to revert some changes in novfs_set_map_drive() - patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped drives on exit (bnc#449451).- supported.conf: mark ocfs2 as unsupported, a supported variant will be provided in a separate KMP (bnc#449824)- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: update error message (bnc#448301 - LTC50134)- Update config files for S/390: Disable FCoE and sync default and s390. - supported.conf: Mark KVM as supported.- ...and added the patches to the series.conf (bnc#450096)- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: Wrong placement of linebreak in message (bnc#450096). - patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: zfcp: invalid return value on failing fsf_req creation (bnc#450096). - patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening of wka ports (bnc#450096).- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G fiber support. - patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: Allocate multiqueues at init time. - patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: cxgb3: More flexible support for PHY interrupts.. - patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: Support for Aeluros 2005 PHY. - patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: allow for PHY reset status. - patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: commnonize LASI phy code. - patches.drivers/cxgb3-eeprom-read-fixes.patch: cxgb3 - eeprom read fixes. - patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - enable lro control through ethtool. - patches.drivers/cxgb3-simplify-port-type-struct-and-usage: cxgb3: simplify port type struct and usage. - patches.drivers/cxgb3-update-driver-version: cxgb3: update driver version. (bnc#446739)- rpm/macros.kernel-source: one more fix to the flavor selection code (for some reason %* contained a newline)- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: x2APIC support: changes for MADT and SRAT ACPI tables (fate 303948 and fate 303984). - patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: Add check for invalid handle in acpi_get_object_info (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). - patches.fixes/acpi_dereference_object_if_possible.patch: ACPICA: Add function to dereference returned reference objects (http://bugzilla.kernel.org/show_bug.cgi?id=11105). - patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: ACPI: don't load acpi_cpufreq if acpi=off (no reference).- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: Copy dynamically loaded tables to local buffer (bnc#410726).- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: SUNRPC: Fix autobind on cloned rpc clients. Importantly, this removes a 'BUG_ON' that fires. (450083).- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: ata_piix: add borked Tecra M4 to broken suspend list (bnc#398270).- UV updates from SGI (bnc#442455, #442455). o patches.fixes/ia64_uv_partition_id.diff: Add partition id, coherence id, and region size to UV o patches.fixes/ia64_uv_watchlist.diff: Add UV watchlist suppor o patches.fixes/null_irq_desc_name.diff: genirq: NULL struct irq_desc's member 'name' in dynamic_irq_cleanup() o patches.fixes/uv-bios_call_memprotect.diff: Add UV bios call to change memory protections o patches.fixes/uv-bios_call_partition.diff: x86: Add UV partition call o patches.fixes/uv-bios_call_reserve_page.diff: Add UV bios call to get the address of the reserved page o patches.fixes/uv-bios_call_watchlist.diff: Add UV bios calls to allocate and free watchlists o patches.fixes/uv-bios_common.diff: x86: Add UV bios call infrastructure o patches.fixes/uv-efi_bios.diff: x86: Add UV EFI table entry o patches.fixes/uv-sn_region_size.diff: Use consistent names for region size and conherence id on x86 and ia64 o patches.fixes/uv-sysfs.diff: x86: Add UV sysfs entries o patches.fixes/uv-xp-change_memprotect.diff: Define xp_expand_memprotect() and xp_restrict_memprotect() o patches.fixes/uv-xpc-get_sn_info.diff: Define xp_partition_id and xp_region_size o patches.fixes/uv-xpc_create_gru_mq_uv.diff: Add the code to create the activate and notify gru message queues o patches.fixes/uv-xpc_get_part_rsvd_page.diff: Add support for getting the address of a partition's reserved page o patches.fixes/uv_setup_irq.diff: x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 - Refresh Xen patches o patches.xen/xen3-auto-arch-x86.diff o patches.xen/xen3-patch-2.6.19 - patches.xen/xen-x86-no-lapic: Add uv_irq.o - patches.xen/uv-sysfs-no-xen.diff: Don't build UV sysfs support on Xen.- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: powernow-k8: ignore out-of-range PstateStatus value (no bug avail).- Update config files. activate ALTIVEC in ps3 config- patches.drivers/open-fcoe-beta4-update: rediff. - patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE for Beta6 (bnc#438954).- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080).- rpm/kernel-binary.spec.in: move Module.symvers creation into CONFIG_MODULES section, a static kernel exports nothing- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlinkBlock layer timer bug fixed. Multipath patch update is just patch refresh. - patches.drivers/block-internal-dequeue-shouldnt-start-timer: block: internal dequeue shouldn't start timer (bnc#449880). - patches.drivers/blk-request-based-multipath-update: Block layer fixes for request-based multipathing (References: FATE#302108).- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32- rpm/kernel-binary.spec.in: always create a dummy initrd because mkinitrd is called unconditionally- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix- remove last traces of kernel-um handling- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: Conditionally disable queue_full tracking (bnc#449386).- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841).- patches.arch/ppc-memoryless-nodes.patch: fix booting with memoryless nodes (443280 - LTC49675)- patches.drivers/libata-seagate-firmware-bug: libata: blacklist Seagate drives which time out FLUSH_CACHE when used with NCQ (bnc#449531).- rpm/macros.kernel-source: Fix the kernel flavor selection logic for the %kernel_module_package macro.- patches.fixes/blk-leave-sync-timer-running: move to correct place in series.conf and rediff - patches.drivers/cciss-newids.patch: Delete.- patches.drivers/cciss-newids.patch: Support for newcciss controller (bnc#448416). - patches.fixes/blk-leave-sync-timer-running: block: leave request timeout timer running on an empty list (bnc#447249).- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597).- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect that this patch introduced by reverting patches.fixes/oom-warning (bnc #444597).- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add power-amangement support (bnc#447624). - patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - Check model for Dell 92HD73xx laptops (bnc#446025). - patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - mark Dell studio 1535 quirk (bnc#446025). - patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - Fix caching of SPDIF status bits. - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: hda - No 'Headphone as Line-out' swich without line-outs (bnc#446025). - patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - Fix AFG power management on IDT 92HD* codecs (bnc#446025).- patches.fixes/fix-inotify-watch-removal-umount-races: Fix inotify watch removal/umount races (bnc#446973 CVE-2008-5182).- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant creation of sgi_uv (bnc#444799).- supported.conf: dm-raid45 depends on a few more modules (bnc#440208, bnc#441310).- Switch from a no_file_caps command line switch to file_caps={0,1} for enabling/disabling file capabilities, and make file_caps=0 the default: we cannot get the no_file_caps option added to the kernel command line anymore (perl-Bootloader, bnc#418366).- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, bnc#441310).- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to CONFIG_PREEMPT_NONE.- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: sched: fix a bug in sched domain degenerate (bnc#442464).- doc/README.SUSE: document that setting allow_unsupported_modules to 1 in /etc/modprobe.d/unsupported-modules is required to make self-compiled kernels work.- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream submission.- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: add early detection of UV system types (bnc#429984).- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053)- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: fix boot panic caused by offline CPUs (bnc#440386).- config/x86_64/maxcpus: Delete.- rpm/kernel-binary.spec.in: s/CVS/GIT/- rpm/symsets.pl: fix module names in export lists (kernel/irq/built-in was printed as irq/built-in)- Update x86_64/{debug,default,trace,vanilla} config files: increase NR_CPUS to 512.- rpm/symsets.pl: Replace the bash and awk scripts around symsets and kabi checking with a single script that generates symsets, reuses symsets from older kernels and checks for kabi changes for each of the split packages (kabi checking and symset reuse require a set of reference files, which does not exist yet) - rpm/list-exported-symbols: Delete. - rpm/split-into-symsets: Delete. - scripts/kabi-checks: Delete. - kabi/severities: table of kabi change severities - rpm/built-in-where, rpm/find-provides, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, scripts/tar-up.sh: update to use symsets.pl- patches.drivers/ixgbe-sfp.patch: include additional fixes from Intel (bnc#442411)- patches.fixes/igb_ethtool.patch: add missing ethtool hooks (bnc#435551)- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: cio: ccwgroup online vs. ungroup race condition (bnc#445100,LTC#50092). - patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: prevent double decrement on host_busy counter (bnc#445100).- rpm/macros.kernel-source: + Rename the -s option to -t in the %kernel_module_package macro for improved cross-distro compatibility. + Define %kernel_module_package_release as 1 for feature tests. + Define %kernel_module_package_buildreqs for use by KMPs: that way, KMPs can either use this macro for compatibility, or they can substitute other packages for special cases.- patches.drivers/cxgb3i: add cxgb3i iscsi driver (FATE#304154,bnc#433500). - patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - fixed offload wr array size (bnc#447409). - patches.fixes/dm-table-switch-to-readonly: dm multipath devices are not getting created for readonly devices (bnc#382705). - patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath priority groups (bnc#372684). - patches.suse/scsi-netlink-ml: Netlink interface for SCSI sense codes (FATE#303789).- patches.suse/novfs-map-drives-correctly.diff: Fix oops in set_map_drive (bnc#446824, bnc#444469).- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: Fix Xen pv driver build.- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch - patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch - patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch - patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch - patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch - patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch - patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch - patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch - patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch update spufs to current mainline state (bnc#447133 - LTC50070)- patches.drivers/parport-serial-array-overflow-fix: Fix array overflow in parport_serial.c (bnc#447067).- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - Add a quirk for Dell Studio 15 (bnc#446025). - patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: Add STAC_DELL_M4_3 quirk (bnc#446025).- patches.suse/silent-stack-overflow-2.patch: avoid silent stack overflow over the heap. Try again.- Refresh patches to apply cleanly after 2.6.27.7 update.- Update to 2.6.27.7 - lots of bugfixes and security updates. - obsoletes: - patches.arch/s390-04-05-topology-lock.diff - patches.drivers/bnx2x-zero-PMF - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch - patches.fixes/sony_laptop_fix_suspend.patch - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: detect and clear spurious IRQs (bnc#445872).- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return code (bnc#352998).- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change file names of local quota files to be consistent (fate#302681). - patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: ocfs2: Fix hang in quota recovery code (fate#302681). - patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: Fix oops when only usrquota or grpquota feature is enabled (fate#302681).- patches.suse/panic-on-io-nmi.diff patches.xen/panic-on-io-nmi-xen.diff: New kernel sysctl panic-on-io-nmi, which is set will cause a kernel panic on receiving an IOCK NMI (bnc#427979).- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac values (bnc#445100). - patches.arch/s390-04-07-als.patch: kernel: Add processor type march=z10 and a processor type safety check. (bnc#445100).- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: STAC_DELL_M6 EAPD (bnc#446025).- Update Xen patches to 2.6.27.6 and c/s 724. - Update Xen config files. - patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it gets set up (bnc#445659). - patches.xen/xen-netback-notify-multi: netback: use multicall for send multiple notifications. - patches.xen/xen-netback-nr-irqs: netback: reduce overhead of IRQ recording.- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614)- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch crashes the sound driver- rpm/kernel-binary.spec.in: excluded vanilla build from creating the man package- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while processing async events (bnc#445541). - patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver update to 4.16.00.00 (bnc#425660). - patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not call activate_path() if pgpath is NULL (bnc#442676). - patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize path state to be passive when path is not owned (bnc#442676). - patches.suse/dm-mpath-leastpending-path: Dynamic load balancing policy for device mapper multipath (bnc#444199).- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only update rq->clock while holding rq->lock (437171 - LTC47404). - patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: revert back to per-rq vruntime (437171 - LTC47404). - patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: sched: rework wakeup preemption (437171 - LTC47404). - patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: sched: re-instate vruntime based wakeup preemption (437171 - LTC47404).- Update config files. Fixed debug build, added dependent config option.- Update config files. - > unified i386/x86_64 debug kernels: - added CONFIG_NO_HZ=y to i386-debug - added CONFIG_DEBUG_INFO to x86_64-debug Differ method to receive processor_id depending whether the processor got declared as a regular ACPI device or as a processor object: - patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: ACPI: Behave uniquely based on processor declaration definition type (bnc#440062). - patches.arch/acpi_disambiguate_processor_declaration_type.patch: ACPI: Disambiguate processor declaration type (bnc#440062). - patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column adherence and spelling fix (no functional change) (bnc#440062). - patches.xen/xen3-auto-common.diff: xen3 common. Fix missing bit for ThinkPad brightness switching: - patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: Do not use video backlight switching for Lenovo ThinkPads. - patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: Ignore missing _DIS method on pic device (bnc#446487).- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware handler when removing multipath maps (bnc#435688). - patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for explicit tgps mode.- rpm/kernel-binary.spec.in: Added kernel man package for s390x- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if interrupts property is missing (bnc#446610 - LTC50006)- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: Blacklist boxes that require us to set SCI_EN directly on resume (bnc#444786).- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary HPET read problem (bnc#433746).- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: sony-laptop: fingers off backlight if video.ko is serving this functionality. - > Fix typo, must not invert logic at this point- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829)- scripts/tar-up.sh: record the git branch name in the spec files (no branch name means master)- patches.drivers/elousb.patch: fix values of maximum X and Y coordinates so that they are compliant with the values that the device contains in its descriptor (bnc#442865)- patches.suse/novfs-merge-changes.diff: Merge changes left out during code pull (bnc#445000).- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for multiple BSR nodes in the device tree. (bnc#443665 - LTC49817)- patches.arch/ppc-pseries-cmm-pagecounter.patch: Update page in counter for CMM (bnc#445540 - LTC49942)- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small BSR register on Power LPAR (bnc#443673 - LTC49749)- config/s390/s390: Update config files: added CONFIG_UTRACE=y and CONFIG_HAVE_ARCH_TRACEHOOK=y- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: ehca: fix a possible nullpointer access (bnc#441966).- patches.arch/ppc-axon-missing-msi-workaround-5.diff: powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964).- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: Fix problem with max number of QPs and CQs (bnc#441619).- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852).- Update config files. - patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. - patches.trace/s390-utrace-enablement.patch: Backport s390 kernel components required for utrace enablement.- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the Kerntypes file for use with old lcrash debuggers.- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: hda - Fix GPIO initialization in patch_stac92hd71bxx() (bnc#445321,bnc#445161). - patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT (bnc#445321,bnc#445161). - patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161).- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert WARN_ON to WARN_ON_ONCE (bnc#433746).RT development has moved to slert-devel branch. - Remove RT patches from master branch. (itemized RT patch list suppressed)- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856)- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config flavor on ppc and ppc64 in sync the last change had also no bug number to fix the possible bug in the Xserver.- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split ALC268 acer model (bnc#420048).- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: qdio: prevent double qdio shutdown in case of I/O errors. (bnc#445100). - patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: fix qeth port count detection. (bnc#445100). - patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz messages without KMSG_COMPONENT (bnc#445100). - patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: dasd: log sense for fatal errors. (bnc#445100). - patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking in cpu topology code. (bnc#445100).- patches.arch/s390-personality-mask.patch: fix s390x_newuname.- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959).- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 (bnc#420767). - patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). - patches.fixes/dm-mpath-reattach-dh: Reattach device handler for multipath devices (bnc#435688). - patches.fixes/scsi-add-tgps-setting: Add TGPS setting to scsi devices. - patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler initialization on Unit Attention.- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB (9621): Avoid writing outside shadow.bytes array (bnc#445569).- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops in ipw_tx_skb (bnc#397390).- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set (bnc#439126).- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: hda - Check model type instead of SSID in patch_92hd71bxx() (bnc#444349). - patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: STAC_VREF_EVENT value change (bnc#444349).- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: memory hotplug: fix page_zone() calculation in test_pages_isolated() (bnc#445163).- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: Input: ALPS - add signature for DualPoint found in Dell Latitude E6500 (bnc#436719).- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: fix indentation and braces disagreement - add braces. - patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED status handling improvement. - patches.fixes/scsi-retry-transport-error: scsi_error regression: Fix idempotent command handling.- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: fix indentation and braces disagreement - add braces. - patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED status handling improvement. - patches.fixes/scsi-retry-transport-error: scsi_error regression: Fix idempotent command handling.- patches.fixes/hpwdt-execute-page.diff: [WATCHDOG] [hpwdt] Set the mapped BIOS address space as executable (bnc#430680).- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, patches.xen/xen-x86-vmware-tsc-fix: VMware tsc clocksource workaround (bnc#441338).- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as well. - patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update to newer version.- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid access on i386 sparsemem (bnc#440525). - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: Refresh.- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: iwlagn: avoid sleep in softirq context (bnc#444382).- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: cdc-acm.c: fix recursive lock in acm_start_wb error path.- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla configs.- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some suspend/resume issues (option added in 2.6.27.6)- refresh patches so that everything applies cleanly.- Update to 2.6.27.6: - fixes some security issues - lots of bugfixes - obsoletes: - patches.arch/acpi-dock-avoid-check-_STA-method.patch: - patches.arch/ppc-gigantic-page-fix2.patch: - patches.arch/ppc-gigantic-page-fix3.patch: - patches.drivers/alsa-hda-dell-eq-option: - patches.drivers/cciss-fix-procfs-firmware-regression.patch: - patches.drivers/cciss-fix-sysfs-symlink.patch: - patches.drivers/libata-fix-last_reset-timestamp-handling: - patches.kernel.org/md-raid10-recovoery-fix.path:- rpm/kernel-binary.spec.in: package modules.order (bnc#441384)- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration and switch back to at most 128 cpus in the other configs. This avoids wasting memory on all but the most extreme x86_64 systems. - rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to allow per-flavor patches. (Use this for testing only!) - patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add this patch conditionally for x86_64/maxcpus for now pending test results from bnc#425240.- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add digital beep playback switch for STAC/IDT codecs (#444572). - patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - Missing NULL check in hda_beep.c.- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to make it work with iSCSI (bnc#444234)- mark some powerpc device drivers as supported to move them out of kernel-extra, otherwise installation-images will not pick them up - ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) - PowerMac, Efika and Pegasos2 storage and network drivers- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit addresses for the firmware memory map.- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - Rename mic-analog loopback mixer element (bnc#444194).- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - Fix IDT/STAC multiple HP detection (bnc#443267).- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if kmalloc fails (bnc#425240).- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: hda - Add missing analog-mux mixer creation for STAC9200 (bnc#443738). - patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - Fix input pin initialization for STAC/IDT codecs (bnc#443738).- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will be implemented in the 11.2 installer- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add locking around error buffer. - patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf wrongly consumes va_arg.- patches.suse/module-ref-dynamic-alloc: Allocate module.ref array dynamically (bnc#425240). - Update config files: back to NR_CPUS=4096- Update config files: Set NR_CPUS on x86_64 back to 128 again for now: with NR_CPUS=4096, the size of eack .ko file increases by 496 KiB because of the static struct module in .gnu.linkonce.this_module.- patches.arch/ppc-select: Fix wrong error code from ppc32 select.- rpm/kernel-binary.spec.in: also encode the architecture into the packageand supplements.- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 (bnc#443661). - patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 (bnc#443661).- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave devices (bnc#443657).- config/ppc/ppc64: Disable 64k pages to work around X server bug.- rpm/kernel-binary.spec.in: fix variable assignment in last change- rpm/kernel-binary.spec.in: encode the architecture into subpackage dependencies (bnc#440961)- handle arch differences for cpu and kbuild correctly- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: migrade pages off of pages with correctable errors.- scripts/tar-up.sh: do not generate kernel-source-rt.spec and kernel-syms-rt.spec if RT is not enabled.- config.conf: Suppress RT configurations.- config.conf: Removed previous workaround. - rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols.- config.conf: Workaround for kernel-ppc64 on head-ppc.- Update to the "real" 2.6.27.5. No code changes from what we had in our tree previously, with the exception for the version number change.- patches.fixes/kdb-read-CR.diff: Support '\n' in KDB (bnc#442808).- disable perfmon support in the -trace kernels as it doesn't build properly.- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext.- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support to ixgbe. - patches.drivers/open-fcoe-beta3-update: Open-FCoE update for Beta3 (bnc#438954). - patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for Beta4 (bnc#438954). - patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for Beta5 (bnc#438954). - patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). - patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting pg will cause tx unit hangs (bnc#438954). - patches.fixes/multiq-requeue-should-rewind-current_band: multiq: requeue should rewind the current_band (bnc#438954). - patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select in RDAC device handler (bnc#441337). - patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: make sure the ownership is set correctly (bnc#441337). - patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch to check for ->bus instead of ->type (bnc#431294).- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - Fix probe errors on Dell Studio Desktop (bnc#440907). - patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - Fix ALC260 hp3013 master switch (bnc#441068).- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: qeth: pre z9 systems return HiperSocket version string different. (bnc#440610,LTC#49052). - patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate race between validation and locking. (bnc#440610). - patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: zfcp: prevent SCSI target scan for vanished rport (bnc#440610,LTC#49373).- Update config files for RT- build a kernel-default in dist ppc64, its identical to kernel-ppc64 otherwise unused- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004)- stop building kernel-default and kernel-ps3 in dist ppc64, they are openSuSE only packages- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails on powerpc, disable vdso_install for the time being- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383).- rpm/post.sh: reject legacy iSeries again- build a 32bit and a 64bit vanilla kernel on powerpc- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: net: Fix recursive descent in __scm_destroy()..- remove patches.arch/ppc64-rpanote-relocate-firmware.patch older firmware versions can handle relocation properly (bnc#427960)- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: deadlock in iw_cxgb3 can cause hang when configuring interface. (bnc#430998).- patches.suse/perfmon2.patch: perfmon2 (bnc#430298).- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: Allow redirtying of a completed unstable write." (442267). It causes a BUG().- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug in raid10 recovery.. - patches.suse/md-notify-when-stopped: md: notify udev when an md array is stopped..: Removed much of this patch as it turned out to be both buggy and unnecessary (the ioctl can be done from mdadm).- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add Longcove (SFP+) NIC support for FCoE needs (bnc#442411)- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP for the i386 default kernel, so that the installer can actually boot on "modern" multiprocessor i386 boxes (bnc#428247)- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc.- rpm/kernel-binary.spec.in: Call make vdso_install to install the vdso shared objects for debugging.- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). - patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: Add support for Intel Ibex Peak (bnc#415383).- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build - patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: fix message flood for unsolicited interrupts (bnc#440610). - patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD uevents are not sent correctly (bnc#440610,LTC#49429). - patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump data in s390dbf traces (bnc#440610).- patches.arch/s390-03-01-stp-init.patch: kernel: Fix initialization of stp. (bnc#440610,LTC#49639). - patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range for add_active_range() in setup_memory() (bnc#440610,LTC#49639). - patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: dasd: fix message flood for unsolicited interrupts (bnc#440610,LTC#49639).- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port scan when setting FCP device online (bnc#434333).- Update Xen patches to 2.6.27.4 and c/s 718. - Update Xen config files. - patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include pv-ops-Xen changes here - patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. - patches.xen/xen-configurable-guest-devices: allow number of guest devices to be configurable. - patches.xen/xen-cpufreq-report: make /proc/cpuinfo track CPU speed. - patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single IRQ each. - patches.xen/xen-rtl2860-build: Rename to ... - patches.xen/xen-rt2860-build: ... this. - patches.xen/xen-sysdev-suspend: use base kernel suspend/resume infrastructure. - patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a single IRQ each. - patches.xen/xen-x86-mmu-batching: Delete. - patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. - patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: x64, x2apic/intr-remap: introcude self IPI to genapic routines (fate #303948 and fate #303984). - patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: x86: reduce stack requirements for send_call_func_ipi (bnc#425240 FATE304266). - patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 FATE304266).- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for new ps3vram patch - patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch that works with firmware 2.50 (bnc#442227)- remove unneeded BuildRequires for dtc- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed (bnc#417299)- patches.suse/file-capabilities-add-no_file_caps-switch.patch: file capabilities: add no_file_caps switch (v4). add the patch back into the tree.- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump elf headers to core per default.Fix !CONFIG_DMI case. - patches.drivers/dmi-introduce-dmi_first_match: DMI: Introduce dmi_first_match to make the interface more flexible (bnc#441721).- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch to skip all devices with no dma_parms (bnc#431294)- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor dependency (bnc#440961).- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with v3 of the patch from IBM (bnc#417300) - patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog infrastucture and message generation (bnc#417300). - patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: Patch edited to allow new kmsg patch- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow ignoring ABI mismatches. (This is still unsafe to do!)Backport fixes from 2.6.28-rc. - patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk for another Acer Aspire (1025:0090) (bnc#426935). - patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add a quirk for MEDION MD96630 (bnc#412548). - patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a STAC_DELL_EQ option. - patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the number of GPIOs show in proc.- refresh -rt patches to remove fuzz.Backport two more device specific workarounds from 2.6.28-rc. - patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. - patches.drivers/libata-whitelist-good-bridges: libata: add whitelist for devices with known good pata-sata bridges.- refresh patches to remove fuzzBackport double spin off workaround. - patches.drivers/dmi-introduce-dmi_first_match: DMI: Introduce dmi_first_match to make the interface more flexible (bnc#441721). - patches.drivers/libata-ahci-blacklist-double-spin-off: SATA AHCI: Blacklist system that spins off disks during ACPI power off (bnc#441721). - patches.drivers/libata-ata_piix-blacklist-double-spin-off: SATA PIIX: Blacklist system that spins off disks during ACPI power off (bnc#441721). - patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting of systems that spin off disks during ACPI power off (rev. 2) (bnc#441721). - patches.drivers/libata-sata_sil-blacklist-double-spin-off: SATA Sil: Blacklist system that spins off disks during ACPI power off (bnc#441721). - patches.drivers/power-introduce-system_entering_hibernation: Hibernation: Introduce system_entering_hibernation (bnc#441721).- fix rt tree that was broken by 2.6.27.5-rc1- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch fix booting on ppc32 (bnc#439491 - LTC48584)Backport sata_via fixes from 2.6.28-rc. - patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: fix support for 5287 (bnc#441718). - patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: sata_via: load DEVICE register when CTL changes (bnc#441718). - patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: sata_via: restore vt*_prepare_host error handling (bnc#441718).Backport laptop table and pci device ID table entries from 2.6.28-rc. - patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: ata_piix: add Hercules EC-900 mini-notebook to ich_laptop short cable list. - patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs.Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. - patches.drivers/libata-ata_piix-use-slave_link: ata_piix: drop merged SCR access and use slave_link instead (bnc#441420). - patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: libata-eh: fix slave link EH action mask handling (bnc#441420). - patches.drivers/libata-implement-slave_link: libata: implement slave_link (bnc#441420). - patches.drivers/libata-make-SCR-access-ops-per-link: libata: make SCR access ops per-link (bnc#441420). - patches.drivers/libata-misc-updates-to-prepare-for-slave-link: libata: misc updates to prepare for slave link (bnc#441420). - patches.drivers/libata-reimplement-link-iterator: libata: reimplement link iterator (bnc#441420). - patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: libata: set device class to NONE if phys_offline (bnc#441420). - patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: libata: transfer EHI control flags to slave ehc.i (bnc#441420).- Update to 2.6.27.5-rc1: - fixes lots of things, including a few CVE entries - obsoletes, and caused to be deleted: - patches.arch/ppc-pseries_16g-numa.patch - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch - patches.arch/ppc-pseries_mem-limit-16g.patch - patches.arch/s390-02-02-smp-sysdev.patch - patches.drivers/alsa-hda-reboot-notifier - patches.drivers/libata-sata_nv-hardreset-fix - patches.fixes/acpi-clear-wake-status.patch - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch - patches.suse/file-capabilities-add-no_file_caps-switch.diff - patches.suse/file-capabilities-turn-on-by-default.diff - Update config files.- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add bnx2_shutdown_chip() - patches.drivers/bnx2-check-running.patch: Check netif_running in most ethtool operations (bnc#440052)- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device support for 82598AT (copper 10GbE) adapters (bnc#441471)- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init.- rpm/kernel-binary.spec.in: fix typo- patches.drivers/bnx2x-zero-PMF: bnx2x: Removing the PMF indication when unloading. (bnc#439679)- rpm/kernel-binary.spec.in: make also -base and -extra x86 subpackages not installable on x86_64- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - Performance Data colletion & analysis patch update (bnc#417243). - patches.arch/s390-01-04-fcpperf-3.patch: Removed for update- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in d_namespace_path (bnc#433504).- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : fix bug w/ dma on virtual fc ports (bnc#431294).- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. - Refresh config files.- patches.drivers/libata-fix-last_reset-timestamp-handling: libata: fix last_reset timestamp handling (bnc#441340).- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to 8.02.01-k9 (bnc#439208).- refresh patches to apply cleanly.- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix.- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - Add more invert_shared_spdif flag to Audigy models (bnc#440862). - patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add ALC269 fujitsu model (bnc#440626).- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45.- patches.suse/dm-barrier-single-device: Fix dm table ref count (FATE#304489).BNC reference added. - patches.drivers/libata-dont-restore-DET-on-detach: libata: mask off DET when restoring SControl for detach (bnc#440980).- patches.drivers/libata-dont-restore-DET-on-detach: libata: mask off DET when restoring SControl for detach.- add patches.arch/ppc-clock_gettime-nanoseconds.patch update also nanoseconds (bnc#439908 - LTC49499)- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add SUSE_COMMITTER_EMAIL.BNC reference added. - patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix generic, nf2/3 detection regression (bnc#429344).- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix generic, nf2/3 detection regression.- Update RT config files: enable more lock debugging, latency features, make x86_64 and i386 consistent.- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make kprobe locking consistent with lock-type declarations- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: Use raw_smp_processor_id in __mem_cgroup_stat_add_safe.- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch:- patches.rt/workqueue-introduce-create_rt_workqueue.patch: workqueue: introduce create_rt_workqueue. (from 2.6.28) Refresh to eliminate fuzz: - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT.- Update RT config files: - Sync with SLES 11 default/debug configs - Limit CPUS to 32 - Disable CONFIG_RADIX_TREE_CONCURRENT - Disable CONFIG_RADIX_TREE_OPTIMISTIC - Disable CONFIG_PREEMPT_RCU_BOOST - Enable CONFIG_RTMUTEX_CHECK - Adapt RT patches to changes made by: x86_sgi_cpus4096-05-update-send_IPI_mask.patch - patches.rt/mitigate-resched-flood-update.patch: Update smp_send_reschedule_allbutself_cpumask mask parameter. - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update smp_send_nmi_allbutself mask parameter. Resolve conflicts introduced by: x86_sgi_cpus4096-05-update-send_IPI_mask.patch - patches.rt/nmi-profiling-base.patch - patches.rt/send-nmi-all-preempt-disable.patch Refresh to eliminate fuzz - patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. - patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT.- patches.fixes/kdb-fix-stack-overflow.patch: kdb: fix stack overflow for large NR_CPUS count (bnc#440361).Fate 304268 and 304266. SGI scir driver (replaces the more intrusive leds one) and the rather intrusive x86_64 4096 CPU support patches: - Update config files. - patches.arch/x86_uv_early_detect.patch: Delete hacks that were necessary while waiting for x2apic code. (bnc#429984). - patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a System Activity Indicator driver (FATE304268 bnc#426066). - patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: smp: reduce stack requirements for smp_call_function_mask (bnc#425240 FATE304266). - patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: x86: reduce stack requirements for send_call_func_ipi (bnc#425240 FATE304266). - patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 FATE304266). - patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: Additional cpumask fixups (bnc#425240 FATE304266). - patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: Add for_each_cpu_mask_and (bnc#425240 FATE304266). - patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: more cpumask cleanups for previous (x86_sgi_cpu4096..) patches (Additional cpumask fixups). - patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). - patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. - patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: Updates to support NR_CPUS=4096 (Additional cpumask fixups).- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - Add digital-mic for ALC269 auto-probe mode (bnc#440626). - patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - Disable broken mic auto-muting in Realtek codes (bnc#440626).- Update config files. - patches.drivers/cxgb3i: add cxgb3i iscsi driver (FATE#304154,bnc#433500). - patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - manage private iSCSI IP addresses (FATE#304154,bnc#433500). - patches.drivers/open-iscsi-offloading-support: support for iscsi pdu digest offload and payload DDP. (FATE#304154,bnc#433500). - patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - remove duplicate tests in lro (FATE#304154, bnc#430538). - supported.conf: Mark cxgb3i as supported.- patches.suse/kdb-resolve-uv-conflict.diff: Resolve KDB conflicts with UV (bnc#440376).- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - Fix SPDIF mute on IDT/STAC codecs. - patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add reboot notifier.- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: ocfs2: Fix mount cleanup after quota failure (fate#302681). - patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: ocfs2: Fix recovery of nodes when quota feature is disabled (fate#302681). - patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix grace time syncing (fate#302681).- patches.drivers/block-del-timer-after-dequeue: blk: move blk_delete_timer call in end_that_request_last (bnc#440076 bnc#440173).- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops on G33 in 1MB stolen Mem case (bnc#391261).- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: agp: Fix stolen memory counting on G4X. (bnc#437618).- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium presence misdetection in usb storage device (bnc#362850).- add patches.fixes/scsi-ibmvscsi-show-config.patch use 4k buffer to transfer config data (439970 - LTC49349)- patches.drivers/block-add-timeout-on-dequeue: block: add timer on blkdev_dequeue_request() not elv_next_request() (bnc#440076).Refresh RT patches: - patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT adaptive spinlocks lite. - patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. - patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. - patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/check-for-migration-during-push.patch: RT: fix push_rt_task() to handle dequeue_pushable properly. - patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT 2.6.27-RT WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. - patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. - patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-run-softirq-from-hardirq-completely.patch: Linux-RT 2.6.27-RT Disable running softirqs from hardirqs completely!. - patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT 2.6.27-RT. - patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. - patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT 2.6.27-RT. - patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT event-tracer: add clockevent trace. - patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT Change bug_on for atomic to pagefault_disabled.. - patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: Linux-RT 2.6.27-RT Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. - patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-up-comment.patch: RT: Remove comment that is no longer true. - patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT fix-tracer-wreckage-wtf-is-this-code-all-features.patch. - patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. - patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. - patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. - patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: Linux-RT 2.6.27-RT. - patches.rt/handle-pending-in-simple-irq.patch: Linux-RT 2.6.27-RT handle IRQ_PENDING for simple irq handler. - patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT mm: remove kmap_lock. - patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. - patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. - patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT 2.6.27-RT. - patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. - patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug builds). - patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT add rt stats to /proc/stat. - patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: Linux-RT 2.6.27-RT. - patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. - patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT mm: lock_page_ref. - patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT lockdep: show held locks when showing a stackdump. - patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. - patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT reduce pagetable-freeing latencies. - patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT map tasks to reader locks held. - patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT implement reader limit on read write locks. - patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT map read/write locks back to their readers. - patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT read lock Priority Inheritance implementation. - patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. - patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT softirq preemption: optimization. - patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT nmi-driven profiling for /proc/profile. - patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. - patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: Linux-RT 2.6.27-RT. - patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT clean up the page fault disabling logic. - patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. - patches.rt/paravirt-function-pointer-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/partreadd-lttng-instrumentation-irq.patch: readd RT compatible version of lttng-instrumentation-irq. - patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT introduce pause_on_oops_head/tail boot options. - patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-init-show-enabled-debugs.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-net-drivers.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT 2.6.27-RT NOHZ: local_softirq_pending with tickless. - patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-prevent-idle-boosting.patch: Linux-RT 2.6.27-RT Premmpt-RT: Preevent boosting of idle task. - patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. - patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. - patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. - patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT radix-tree: concurrent write side support. - patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT debug: optimistic lock histogram. - patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT radix-tree: optimistic locking. - patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT 2.6.27-RT. - patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT 2.6.27-RT. - patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. - patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: Linux-RT 2.6.27-RT rt: move update_wall_time back to do timer. - patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT 2.6.27-RT. - patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT rt: rename rt_mutex_setprio to task_setprio. - patches.rt/s_files.patch: Linux-RT 2.6.27-RT remove global files_lock. - patches.rt/sched-add-needs_post_schedule.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: Linux-RT 2.6.27-RT CFS: enable irqs in fire_sched_in_preempt_notifier. - patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT sched-fix-dequeued-race.patch. - patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-only-push-once-per-queue.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-properly-account-irq-and-rt-load.patch: Linux-RT 2.6.27-RT sched: properly account IRQ and RT load in . - patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. - patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. - patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. - patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. - patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT rt: dont disable irqs in usb. - patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. - patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. - patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. - patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-events-handle-syscalls.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. - patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT.- s/rtl2860/rt2860/ - remove driver from the Xen build as it's dying for some reason. - add obsoletes for ralink-rt2860-kmp- update patches.arch/ppc-oprofile-spu.patch add missing ARRAY_SIZE(pm_signal_local)- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support for EMC Symmetrix Subsystem Control I/O (bnc#439221)- patches.xen/xen-rtl2860-build: fix issue with Windows-style types used in rtl2680.- build af_packet as a module on powerpc (bnc#433540)- add patches.arch/ppc-oprofile-spu-mutex-locking.patch Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617)- add patches.arch/ppc-oprofile-spu.patch fix local array size in activate spu profiling function (bnc#439553 - LTC48925)- update patches.drivers/ehea.patch Add hugepage detection (bnc#439599 - LTC48958)- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: add agnx wireless driver. - patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: Staging: add otus Atheros wireless network driver. - patches.drivers/staging-add-rtl2860-wireless-driver.patch: Staging: add rtl2860 wireless driver (bnc#437959). - Update config files.- patches.suse/silent-stack-overflow-2.patch: disabled, as it causes kernel hangs triggered by grub (bnc#439448).- update patches.suse/SoN-17-net-ps_rx.patch fix i/o corruption on rx in ixgbe (bnc#438929)- config/powerpc/*: Fixup configuration files after last change.- config/*: Include many multimedia drivers which has been dropped accidentally. This includes the pwc, ivtv, zr36067 drivers and many old webcam drivers (bnc#439489). - supported.conf: Add all these drivers again.- patches.drivers/alsa-hda-analog-update, patches.drivers/alsa-hda-atihdmi-update, patches.drivers/alsa-hda-beep, patches.drivers/alsa-hda-hp-mobile-fix, patches.drivers/alsa-hda-nvidia-hdmi, patches.drivers/alsa-hda-probe-fix, patches.drivers/alsa-hda-proc-fix, patches.drivers/alsa-hda-realtek-update, patches.drivers/alsa-hda-sigmatel-update, patches.drivers/alsa-hda-spdif-slave, patches.drivers/alsa-hda-via-rec-fix, patches.drivers/alsa-hda-via-update: ALSA updates, mostly taken from 2.6.28-rc1 patches - Update config files.- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry.- config/ia64/vanilla, config/x86_64/vanilla: fix configuration discrepancy, CONFIG_SND_HDA_HWDEP=m.- add patches.arch/ppc-pcibios_allocate_bus_resources.patch add patches.arch/ppc-powerpc-debug-pci-hotplug.patch fix DLPAR on pseries (bnc#439491 - LTC48584)- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584)- update ps3 config, remove unneeded options to reduce vmlinux size- patches.suse/md-notify-when-stopped: md: notify udev when an md array is stopped. (fate#303894).- use the panasonic laptop driver that was accepted by upstream, not the pcc-acpi driver, which was rejected: - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: panasonic-laptop: add Panasonic Let's Note laptop extras driver v0.94. - Update config files.- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer driver. - Update config files.- patches.fixes/hpwdt-kdump.diff: Don't change permission of sysfs file (did that accidentally when changing the default value).- patches.arch/x86_uv_early_detect.patch: Delete hacks that were necessary while waiting for x2apic code. (bnc#429984).Refresh the govault patch. - patches.drivers/libata-add-waits-for-govault: libata: add waits for GoVault (bnc#246451).- patches.fixes/kdb-oops-panic.diff: Fix NULL pointer dereference when regs == NULL (bnc#439007). - patches.fixes/hpwdt-kdump.diff: Fix kdump when using hpwdt (bnc#436786).- refresh patches to apply cleanly and properly.- Update to 2.6.27.4- Fix the dependencies between the split kernel packages and KMPs (FATE 303631). - Fix for kernel paclages which are not split. - rpm/kernel-source.spec.in: Update list of scripts to include.- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class file creation (bnc#434333) - patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have been found (bnc#434333) - patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware MAC-address for layer2 hsi-devices (bnc#434333) - patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery fails (bnc#434333) - patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error in non prealloc header path (bnc#434333,LTC#48840) - patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove unnecessary support ckeck in sysfs route6 (bnc#434333) - patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid skb_under_panic for malformatted inbound data (bnc#434333) - patches.arch/s390-02-09-tape-lock.patch: tape device driver: improve locking (bnc#434333)- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: touch_mnt_namespace when the mount flags change (FATE#304218).- Updated to 2.6.27.4-rc3: - fixed ath5k suspend/resume regression - fixed pvrusb2 so it actually works- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling (fate#302681). - fixed 64-bit division- Update config files for -rt.- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390.- move patches.suse/md-raid-metadata-PAGE_SIZE.patch to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch to allow raid0 with 64k PAGE_SIZE- Update config files. - supported.conf: Added new quota module - patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed Quotas for OCFS2: - patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: quota: Add callbacks for allocating and destroying dquot structures (fate#302681). - patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: quota: Increase size of variables for limits and inode usage (fate#302681). - patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: quota: Remove bogus 'optimization' in check_idq() and check_bdq() (fate#302681). - patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: Make _SUSPENDED just a flag (fate#302681). - patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: quota: Allow to separately enable quota accounting and enforcing limits (fate#302681). - patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: ext3: Use sb_any_quota_loaded() instead of sb_any_quota_enabled() (fate#302681). - patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: ext4: Use sb_any_quota_loaded() instead of sb_any_quota_enabled() (fate#302681). - patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: reiserfs: Use sb_any_quota_loaded() instead of sb_any_quota_enabled(). (fate#302681). - patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: quota: Remove compatibility function sb_any_quota_enabled() (fate#302681). - patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). - patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: quota: Move quotaio_v[12].h from include/linux/ to fs/ (fate#302681). - patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: quota: Split off quota tree handling into a separate file (fate#302681). - patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: quota: Convert union in mem_dqinfo to a pointer (fate#302681). - patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: quota: Allow negative usage of space and inodes (fate#302681). - patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: quota: Keep which entries were set by SETQUOTA quotactl (fate#302681). - patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: quota: Add helpers to allow ocfs2 specific quota initialization, freeing and recovery (fate#302681). - patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: quota: Implement function for scanning active dquots (fate#302681). - patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: ocfs2: Fix check of return value of ocfs2_start_trans() (fate#302681). - patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: Support nested transactions (fate#302681). - patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: ocfs2: Fix checking of return value of new_inode() (fate#302681). - patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: ocfs2: Let inode be really deleted when ocfs2_mknod_locked() fails (fate#302681). - patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: ocfs2: Assign feature bits and system inodes to quota feature and quota files (fate#302681). - patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: ocfs2: Mark system files as not subject to quota accounting (fate#302681). - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling (fate#302681). - patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: ocfs2: Add quota calls for allocation and freeing of inodes and space (fate#302681). - patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: ocfs2: Enable quota accounting on mount, disable on umount (fate#302681). - patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: Implement quota syncing thread (fate#302681). - patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: Implement quota recovery (fate#302681).- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. (bnc#430093)- Refreshed context for -RT patches so they apply again.- patches.drivers/sgi-ioc4-request-submodules: Make ioc4 request dependant modules. (bnc#429215)- Update config files: Disable FAIL_MAKE_REQUEST.- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly workaround patch.- Include patches from upstream: - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. - patches.fixes/block-rq-affinity: Implement rq affinity. - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove is_active from struct dm_path. - patches.fixes/block-discard-requests: Implement block discard. - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call blk_abort_queue on failed paths (bnc#417544). - patches.drivers/block-call-sync-on-cleanup: block: blk_cleanup_queue() should call blk_sync_queue(). - Refaktor and update request-based multipath patches: - patches.drivers/blk-request-based-multipath-update: Update request-based multipathing patches to upstream version (bnc#434105). - patches.suse/rq-based-multipath: Update to latest version of request-based multipathing patchset (bnc#434105) - patches.drivers/block-abort-request-rq-complete-marking: use rq complete marking in blk_abort_request (bnc#434105). - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. - patches.fixes/dm-mpath-abort-queue: Delete. - patches.suse/rq-based-block-layer: Delete. - patches.suse/rq-based-dm-interface: Delete. - patches.suse/rq-based-multipath-functions: Delete. - patches.suse/rq-based-init-crash: Delete. - Update patches to upstream version: - patches.drivers/bdev-resize-check-for-device-resize - patches.drivers/bdev-resize-added-flush_disk - patches.drivers/bdev-resize-call-flush_disk - patches.drivers/bdev-resize-sd-driver-calls - patches.drivers/block-timeout-handling - patches.drivers/bdev-resize-adjust-block-device-size - patches.drivers/bdev-resize-wrapper-for-revalidate_disk - patches.drivers/block-abort-queue - patches.fixes/scsi-enhance-error-codes - Rediff patches: - patches.fixes/scsi-misc-git-update - patches.suse/dm-barrier-single-device - patches.suse/kdb-common - patches.drivers/lpfc-8.2.8-update - patches.drivers/lpfc-8.2.8.3-update - patches.drivers/mpt-fusion-4.00.43.00-update- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also to kernel/sysctl_check.c.- Obsolete uvcvideo-kmp.- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918).- patches.arch/x86_64-unwind-annotations: fix unwind annotations. - patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations.- Update Xen patches to 2.6.27.3 and c/s 704 - patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate [#303948] and fate #303984). - patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: x86: use cpuid vector 0xb when available for detecting cpu topology (fate #303948 and fate #303984). - patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility configure option. - patches.xen/xen-x86-exit-mmap: be more aggressive about de-activating mm-s under destruction. - patches.xen/xen-x86-machphys-prediction: properly predict phys<->mach translations. - patches.xen/xen-x86-mmu-batching: utilize arch_{enter,leave}_lazy_cpu_mode(). - patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of lazy TLB data are caught during the build. - Update Xen config files.- rpm/kernel-binary.spec.in: - do not split kernel-kdump into -base and -extra - fix case when a build results in no unsupported modules- patches.fixes/kdb-kdump.diff: Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454).- supported.conf: Mark dmapi as supported (by SGI).- disable all unsupported drivers in kernel-kdump- patches.suse/silent-stack-overflow-2.patch: avoid silent stack overflow over the heap (bnc#44807 bnc#211997).- Update to 2.6.27.4-rc2- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file- Update to 2.6.27.4-rc1 - lots of bugfixes, and obsoletes some current patches: - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. - patches.fixes/wdm_autoload.diff: Delete.- Fix ppc and ps3 configs- Update config files. - patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, fate#304191, fate#201036).- Update config files. Enable cgroups for all archs (bnc#417527)- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic pages fix 2 (bnc#434026). - patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic pages fix 3 (bnc#434026). - patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 vanilla kernel.- patches.drivers/cciss-fix-procfs-firmware-regression.patch: cciss: fix procfs firmware regression (bnc435644). - patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix sysfs symlink (bnc435644).- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use Calgary iommu systems, you now must manually pass "iommu=calgary" to get this hardware support back enabled. This is the recommended proceedure right now, from IBM, otherwise the hardware crashes. bnc#436450.- clean up all fuzz in patches to get them to apply cleanly.- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core kernel code and was rejected from upstream. - patches.arch/s390-01-03-cmm2-v2.patch: Delete. - patches.arch/s390-01-03-cmm2-v2a.patch: Delete.- Update to version 3.4 of squashfs: - patches.suse/squashfs3.3-patch: Delete. - patches.suse/squashfs-patch-2.6.25: Delete. - patches.suse/squashfs-patch-2.6.27: Delete. - patches.suse/squashfs-3.4.patch: squashfs v3.4.- patches.fixes/block-sanitize-invalid-partition-table-entries: block: sanitize invalid partition table entries (bnc#371657).- add patches.arch/ppc-pseries_mem-limit-16g.patch Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329)- Update x86 64bit config files to include WAN support (bnc#437692)- add patches.drivers/cell_edac.patch Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143)- update patches.suse/nameif-track-rename.patch print also application and pid- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: HID: Fix Sony Vaio VGX report descriptor (bnc#437758).- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch reject dynamic memory add/remove (bnc#434651 - LTC48744)- Update config files.- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear KVA on x86 (bnc#437674). - patches.xen/xen3-patch-2.6.26: merge- update to 2.6.27.3 - lots of bugfixes - CVE-2008-3831 fix- scripts/vc: Handle unset $EDITOR- patches.suse/export-release_open_intent: Export release_open_intent for NFS branches with aufs.- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as supported by IBM. - supported.conf: Mark the i5k_amb hwmon driver as supported.- add patches.drivers/ehea.patch Fix memory hotplug support (436447 - LTC48713)- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757)Add PS3 audio patches: - patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: ps3: Add passthrough support for non-audio streams. - patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: ps3: Add ps3av_audio_mute_analog(). - patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: ps3: Add support for SPDIF/HDMI passthrough.- patches.rt/genirq-usb.patch: Make status_cache u32 - patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ threading.- patches.fixes/dm-mpath-abort-queue: rediff. - patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk timer deletes (LTC#48990, bnc#434105). - patches.suse/rq-based-block-layer: rq-based multipathing: rediff.- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result too short (5) message flood (bnc#432535).- patches.suse/filp-slab-rcu: Delete.USB IRQ threading (experimental: guarded by genirq): - patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make irqreturn_t an enum. - patches.rt/genirq2-add-quick-check-handler.patch: genirq: add a quick check handler. - patches.rt/genirq3-add-threaded-irq-handler-support: genirq: add threaded interrupt handler support. - patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: genirq: add a helper to check whether the irqthread should run. - patches.rt/genirq5-make-irq-threading-robust: genirq: make irq threading robust. - patches.rt/genirq-usb.patch: genirq threading for ehci, ohci and uhci USB hosts.. - patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, obsolete 2.4 compatibility code in wlan-ng. Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND.- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels.- patches.suse/kdump-dump_after_notifier.patch: Add dump_after_notifier sysctl (bnc#436678).- scripts/wd-functions.sh: reverse git and cvs checks (check for cvs before git). This solves the problem if you are using a cvs tree, yet it happens to live in a directory that way up the directory chain is in a git tree (like for people who keep portions of their $HOME in git).- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP on i386-pae kernels. (bnc#428247)- patches.arch/x86-tracehook: fix the order of arguments in /proc/$pid/syscall on x86_64.- Update config files: Enable CONFIG_KVM_KMP for RT config, run oldconfig.- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline state.- Update config files. - patches.suse/kvm-as-kmp: Allow KVM to be built as KMP (FATE#303679).- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel components such that a kernel message catalog as well as related man pages can be automatically generated. (bnc#417300) - patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to fit on recent kmsg patch changes. (bnc#417550) - patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: Update patch to fit on recent kmsg patch changes. - config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y- supported.conf: Mark 'crasher' as supported to avoid installing the "extra" package only for that module.- add patches.arch/ppc-pseries_16g-numa.patch fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839)- Update to 2.6.27.2. - lots of bugfixes- patches.rt/fix-preempt-none.patch: Fix preempt-none build errors- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994).- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add 57780 ASIC revision. (bnc#434147) - patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: broadcom: Add support for the 57780 integrated PHY. (bnc#434147) - patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875)- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that the file gets removed when uninstalling the kernel.- ocfs2 ACL / security attribute support - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch- ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch - patches.suse/ocfs2-Remove-pointless.patch - patches.suse/ocfs2-make-la_debug_mutex-static.patch - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch - patches.suse/ocfs2-fix-build-error.patch- ocfs2 dynamic local alloc patches- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm timeouts to jiffies conversion (bnc#425747 FATE304221).- added patches.arch/s390-01-03-cmm2-v2a.patch fix the sequence of initilisations.- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages supplement kernel-$flavor on openSUSE and SLED so that those packages will get installed by default, using the product(...) dependencies provided by the *-release packages.- Previous checkin was totally broken wrt rt config files. Revert to previous versions and incorporate any changes from run_oldconfig. Sole changes to previous versions is to remove CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent with change in 2.6.27.1- Update to 2.6.27.1 - disables a problem config option, only affected the vanilla, debug, and rt kernel variants.- add patches.arch/ppc-pseries_pfn-mem-rm.patch fix hotplug memory remove (bnc#435181 - LTC48640)- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd on older distros (bnc#435246) Fixed fix for bnc#435104 ("/boot/" was missing in some places)- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage (fate#303631) - rpm/postun.sh, rpm/post.sh: remove the temporary workaround- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch not needed anymore- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should cope if 'file' hasn't been opened properly (bnc#431785).- Update RT patches to latest .27 Windriver version (all patches) - Disable patches.rt/swap-spinlock-fix.patch - Guard filp-slab-rcu for RT- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: Add Acer Aspire 5710 to nomux blacklist (bnc#404881).- patches.fixes/ehci_sched.diff: Delete. in mainline now. done to the right tree.- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from weak-modules2 --{add,remove}-kernel-modules until module-init-tools has rebuilt- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. The patch is already upstream in 2.6.27- patches.suse/osync-error: Update position after check for -EIO (bnc#434910).- patches.suse/rlimit-memlock-64k.patch: Increase default RLIMIT_MEMLOCK to 64k (bnc#329675).- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y (FATE#303758).- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572).- patches.trace/utrace-core: undo overzealous #ifdef's, which removed too much code in case UTRACE_CONFIG was unset.- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix from constant compared against.- call bootloader_entry without leading /boot/ (bnc#435104)- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: kill functions.sh, put the relink() function to source-post.sh directly - rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, rpm/kernel-binary.spec.in: unify generation of the scriptlets, switch to the new weak-modules2 script- disable unused ide_platform driver- supported.conf: Remove i2c-core and i2c-piix4 from base.- supported.conf: remove ide-core and ide-cdrom from base on request from Tejun.- Update config files. - patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: add pcc-acpi driver. - rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet.- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and ppc-acpi-kmp- Update config files. - patches.drivers/staging-at76_usb-wireless-driver.patch: staging: at76_usb wireless driver.- refresh all patches (except xen and rt) to apply cleanly- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed driver is now included from the staging tree.- put proper Patch-mainline: markings on staging patches- patches.drivers/staging-workaround-build-system-bug.patch: Staging: workaround build system bug.- rpm/post.sh: Fix typo that breaks script.- disabled staging drivers for -rt trees- Add -staging tree: - added TAINT_CRAP flag - added eth131x network driver - added slicoss network driver - added sgx network driver - added me4000 data collection driver - added go7007 video capture driver - added USB/IP host and client driver - added w35und wifi network driver - added prism2 usb wifi network driver - added echo cancellation driver - only enabled these on x86 platforms- patches.arch/s390-02-01-xpram.patch: xpram: per device block request queues (bnc#434333,LTC#49030)- rpm/kernel-binary.spec.in: Updated supported.conf checker to eliminate false positives.- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.- supported.conf: mark drivers/net/wireless/b43* and driver/net/wireless/rt2x00/* as unsupported because of known problems we cannot fix.- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to cdc-wdm driver to compute a proper alias (bnc#433817).- Update config files (CONFIG_UTRACE for rt flavours).- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.- patches.trace/utrace-core: utrace core (FATE#304321). CONFIG_UTRACE enabled only for kernel-trace. - Update config files.- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.- Remove another stale swap-over-nfs patch. patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete.- Updated to 2.6.27 final.- Update config files - Fix conflicts, remove most -RT guards added in recent RT update patches.rt/apic-dumpstack.patch: refresh patches.rt/preempt-irqs-core.patch: refresh patches.rt/print-might-sleep-hack.patch: refresh patches.rt/partrevert-lttng-instrumentation-irq.patch: add patches.rt/partreadd-lttng-instrumentation-irq.patch: add - Drop unused RT patches patches.rt/mips-change-raw-spinlock-type.patch patches.rt/nmi-watchdog-disable.patch patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch patches.rt/lockstat-fix-contention-points.patch patches.rt/sched-cpupri-priocount.patch patches.rt/nmi-watchdog-fix-1.patch patches.rt/cache_pci_find_capability.patch patches.rt/fix-emac-locking-2.6.16.patch patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch patches.rt/tie-pi-into-task.patch patches.rt/idle2-fix.patch patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch patches.rt/rtmutex-initialize-waiters.patch patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch patches.rt/add-generalized-pi-interface.patch patches.rt/warn-on-rt-scatterlist.patch patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch patches.rt/trace-eip2ip.patch patches.rt/sched_rt-fixup.patch patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch patches.rt/trace_hist-latediv.patch patches.rt/sched-cpupri-hotplug-support.patch patches.rt/idle-fix.patch patches.rt/ftrace-fix-get-kprobe-wreckage.patch patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch patches.rt/ftrace-function-record-nop.patch patches.rt/ftrace-document-update1.patch patches.rt/26-rt1-chirag.patch patches.rt/trace_hist-divzero.patch patches.rt/latency-tracing-ppc.patch patches.rt/rtmutex-defer-pi-until-sleepy.patch patches.rt/pmtmr-override.patch patches.rt/sched-prioritize-non-migrating-rt-tasks.patch patches.rt/rtmutex-use-runtime-init.patch patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch patches.rt/lockdep-lock_set_subclass.patch patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch patches.rt/rt-mutex-irq-flags-checking.patch patches.rt/ftrace-upstream.patch patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch patches.rt/ftrace-preempt-trace-check.patch patches.rt/rtmutex-add_readers.patch patches.rt/lockdep-avoid-fork-waring.patch patches.rt/arm-omap-02.patch patches.rt/fix-acpi-build-weirdness.patch patches.rt/cycles-to-ns-trace-fix.patch patches.rt/ftrace-compile-fixes.patch patches.rt/ftrace-wakeup-rawspinlock.patch patches.rt/rtmutex-convert-to-libpi.patch patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch patches.rt/ftrace-trace-sched.patch- supported.conf: mark kernel/fs/gfs2 unsupported- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due to sb16 dependancy issues- patches.fixes/account-reserved-pages: Delete.- patches.suse/supported-flag-sysfs: Updated to build with CONFIG_MODULES=n.- Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow- supported.conf: thermal_sys, not thermal_sysfs.- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9.- supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean.- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182).- patches.fixes/serial8250_console_write-ier: Delete. - patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete.- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due to dependancy on isa sb16 driver.- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. - patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete.- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to symbol dependancy tree.- patches.suse/osync-error: make sure O_SYNC writes properly return -EIO (bnc#58622).- patches.arch/ppc-vmcoreinfo.diff: Add additional symbols to /sys/kernel/vmcoreinfo data for ppc(64).- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC patchset (fate#303984 and fate#303948). - Update config files. Disable interrupt remapping for Xen -> this is something for the hypervisor.- Update config files: THERMAL_HWMON=y in vanilla configs.- Update config files: THERMAL_HWMON=y; is boolean and enables functionality in the already modular THERMAL module.- patches.suse/supported-flag-sysfs: Export supported status via sysfs.- Update config files. Disabled the in kernel KVM modules in preference to using them as KMPs. See also brogers@novell.com- Added a -iu|--ignore-unsupported-deps option to allow builds with supported.conf problems.- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: Build hwmon and thermal as modules.- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported.- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/- patches.arch/ppc-dynamic-reconfiguration.diff: powerpc: Add support for dynamic reconfiguration memory in kexec/kdump kernels (bnc#431492).- rpm/kernel-binary.spec.in: package kernel-xen has dependency to xen (bnc#431215).- supported.conf: mark TPM drivers a supported, as IBM and others rely on them.- supported.conf: fix a dependancy link with the isa sb driver with unsupported symbols- supported.conf: mark ieee80122 modules as supported, as other supported modules need them.- supported.conf: mark all of the mtd drivers as unsupported to fix the build errors (and to reflect our policy here.)- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910).- Don't build the tps65010 driver, it's only used on OMAP at the moment.- rpm/built-in-where: make it work with a four-column Modules.symvers (bnc#433533)- Update KDB to v4.4-2.6.27-rc8.- disable legacy iseries (bnc#433685 - LTC48946)- enable battery_pmu on ppc32- supported.conf: Marked these unsupported: cpufreq-nforce2 e_powersaver gx-suspmod longhaul longrun p4-clockmod powernow-k6 powernow-k7 speedstep-ich speedstep-smi Even Via CPUs are exporting cpu freq steps via ACPI and work fine with acpi-cpufreq. No need to support the old, some are known broken, drivers.- add patches.suse/md-raid-metadata-PAGE_SIZE.patch ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490)- patches.xen/xen3-auto-common.diff: minor patch apply fix after libata-prefer-over-ide.- patches.drivers/libata-prefer-over-ide: libata: prefer libata drivers over ide ones (bnc#433105).- patches.xen/xen-op-packet: add support for new operation type BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964).- supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, like bnc#433541.- supported.conf: sorted the file correctly so we can start determining what we are not supporting easier.- Updated -rt for context against -rc9 and the x2APIC patches: - patches.rt/new-softirq-code.patch - patches.rt/preempt-irqs-core.patch - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch - CONFIG_INTR_REMAP=n for now - patches.rt/preempt-softirqs-core.patch - patches.rt/rt-slab-new.patch - patches.rt/slab-irq-nopreempt-fix.patch - Update config files: NFS_SWAP=nx2APIC and interrupt remapping enablement. Xen needs further work to build again. Commit ids are from x86 tip git tree: - patches.arch/x2APIC_fix_section_mismatch.patch: Fix several section mismatches (none). - patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: dmar: fix dmar_parse_dev() devices_cnt error condition check (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: x64, x2apic/intr-remap: fix the need for sequential array allocation of iommus (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: dmar: initialize the return value in dmar_parse_dev() (fate [#303948] and fate #303984). - patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: x64, x2apic/intr-remap: code re-structuring, to be used by both DMA and Interrupt remapping (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: dmar: fix using early fixmap mapping for DMAR table parsing (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping specific code (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: x86, lguest: fix apic_ops build on UP (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: x86, xen: fix apic_ops build on UP (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: x64, x2apic/intr-remap: parse ioapic scope under vt-d structures (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: x86: apic_ops for lguest (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to intel-iommu.h (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: x64, x2apic/intr-remap: Queued invalidation infrastructure (part of VT-d) (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: x86: let 32bit use apic_ops too - fix (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: x64, x2apic/intr-remap: Interrupt remapping infrastructure (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: x64, x2apic/intr-remap: routines managing Interrupt remapping table entries. (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: x64, x2apic/intr-remap: generic irq migration support from process context (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: x64, x2apic/intr-remap: 8259 specific mask/unmask routines (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: x64, x2apic/intr-remap: ioapic routines which deal with initial io-apic RTE setup (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: x64, x2apic/intr-remap: introduce read_apic_id() to genapic routines (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, fix (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: x64, x2apic/intr-remap: basic apic ops support (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate [#303948] and fate #303984). - patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: x64, x2apic/intr-remap: disable DMA-remapping if Interrupt-remapping is detected (temporary quirk) (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: x64, x2apic/intr-remap: x2apic ops for x2apic mode support (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: x64, x2apic/intr-remap: introcude self IPI to genapic routines (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: x64, x2apic/intr-remap: x2apic cluster mode support (fate [#303948] and fate #303984). - patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate [#303948] and fate #303984). - patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: x64, x2apic/intr-remap: MSI and MSI-X support for interrupt remapping infrastructure (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: x86: make read_apic_id return final apicid (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: x86: let 32bit use apic_ops too (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: x64, x2apic/intr-remap: add x2apic support, including enabling interrupt-remapping (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: x64, x2apic/intr-remap: support for x2apic physical mode support (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate [#303948] and fate #303984). - patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: x86: make 64bit have get_apic_id (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: x2apic: xen64 paravirt basic apic ops (fate #303948 and fate [#303984]). - patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: x86: add apic probe for genapic 64bit, v2 (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: x86: add apic probe for genapic 64bit - fix (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: x2apic: use x2apic id reported by cpuid during topology discovery (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: x86: use cpuid vector 0xb when available for detecting cpu topology (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: x86: use x2apic id reported by cpuid during topology discovery, fix (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: x86: io-apic - interrupt remapping fix (fate #303948 and fate #303984). - patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: x2apic: fix reserved APIC register accesses in print_local_APIC() (fate #303948 and fate #303984). - patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and some System Activity Indicators (FATE#304268). - patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). - patches.xen/xen-x86-no-lapic: Disallow all accesses to the local APIC page (191115). - patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. - patches.xen/xen3-patch-2.6.19: Linux 2.6.19. - patches.xen/xen3-patch-2.6.26: 2.6.26. - Update config files: Added CONFIG_INTR_REMAP to all x86_64 flavors- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this driver is now included in the kernel package.- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 patch to bring in sync with upstream version. (bnc#417243) - patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by updated patch- Remove stale swap-over-nfs patches. - patches.suse/SoN-05-page_alloc-reserve.patch: Delete. - patches.suse/SoN-06-reserve-slub.patch: Delete.- No uml patches left, so remove the code referring to patches.uml.tar.bz2.Guarded by +RT - patches.rt/fix-up-comment.patch: RT: Remove comment that is no longer true. - patches.rt/check-for-migration-during-push.patch: RT: fix push_rt_task() to handle dequeue_pushable properly.- Add DMAPI patches (supported by SGI). - Update config files: enable DMAPI.- Doh, forgot to remove stale files from cvs - Update config files NFS_SWAP=y.- Refreshed to -v19 of swap over nfs patchset. o netns, ipv6 fixes o patch ordering changes due to additional patches - Adjust patches.xen/xen3-auto-common.diff to avoid conflict.- Enable CONFIG_MFD_SM501_GPIO also for RT.- Refresh patches.rt/mips-remove-duplicate-kconfig.patch.- Update to 2.6.27-rc9. - Enable new configuration option CONFIG_MFD_SM501_GPIO. - Drop following patches (mainline): o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues o patches.suse/e1000e_mmap_range_chk, o patches.suse/e1000e_reset_swflag_after_resetting_hardware o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm - Adjust/refresh following patches: o patches.arch/s390-01-03-cmm2-v2.patch o patches.drivers/e1000e_add_82574L.patch o patches.drivers/e1000e_add_ICH9_BM.patch o patches.drivers/e1000e_add_LOM_devices.patch o patches.suse/e1000e_allow_bad_checksum o patches.suse/e1000e_call_dump_eeprom o patches.suse/e1000e_ioremap_sanity_check o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory- rpm/kernel-module-subpackage: switch KMPs to the new weak-modules2 script, which handles running depmod and mkinitrd- supported.conf: mark igb as supported.- kernel-source-rt must not provide a kernel-source symbol: this would break dependencies.- update patches.suse/ppc-no-LDFLAGS_MODULE.patch use suggested patch from kernel.org bugzilla- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)- supported.conf: mark efivars.ko as supported- enable yealink driver (bnc#432841)- patches.fixes/ehci_sched.diff: fix hang in disable_periodic (bnc#403346).- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix section mismatch in fujitsu_laptop driver (none).- patches.fixes/sd-needs-updating: Driver 'sd' needs updating (bnc#406656).- rpm/post.sh: Catch mkinitrd error code indicating missing required modules. Only add a bootloader entry if an initrd could be created, but re-add the bootloader entry even if the initrd already existed before (bnc#431703).- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 (bnc#420767). - patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes for SLES11 (bnc#432976).- mark legacy iseries storage as supported- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as unsupported.- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 on ia64, these are motherboard-specific drivers for x86_64 motherboards. - config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver for x86 hardware. - config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there is no Simtec hardware based on these architectures.- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols defined in vmlinux by subsystem. (Actually, per directory, under the assumption that there is enough of a correlation).- supported.conf: add ohci-hcd to base. Fix up other USB drivers (USB network drivers had moved, others were missing)- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: add atl2 network driver. - Update config files (even the rt ones).- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus WARN_ON() condition, as per upstream commit 95b866d5a- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)- compile windfarm_pm121 into the kernel- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, scripts/run_oldconfig.sh, scripts/sequence-patch.sh: Eliminated defconfig.$flavor- mark Cell drivers as supported- Update config files rt configs not updated for per-module-dynamic-debug-messages.patch- change patches.suse/supported-flag to show which modules are unsupported and externally supported in oops messages. Also change the taint values as the documentation was totally wrong.- Reenable RT debug builds, compile tested only - Update config files - Fix tracer issues patches.rt/event-trace-hrtimer-trace.patch patches.rt/trace-events-handle-syscalls.patch patches.rt/trace-ktime-scalar.patch patches.rt/tracer-event-trace.patch - patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb - patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT - patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: driver core: basic infrastructure for per-module dynamic debug messages. - refresh patches.trace/tracepoints.patch: Kernel Tracepoints. - Update config files.- Introduce kernel-source-rt and kernel-syms-rt packages, needed for building real-time KMPs.- Don't clean .- supported.conf: add qeth_l2 and qeth_l3 as supported modules- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to the latest version of the patch as provided by Intel- Update Xen patches to 2.6.27-rc8 and c/s 684. - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... - patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put in proper place in series.conf. - patches.xen/xen-rwlocks-enable-interrupts: Replace by ... - patches.xen/xen3-rwlocks-enable-interrupts: this, and put in proper place in series.conf.- scripts/sequence-patch.sh - scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.- enable msi on ppc64 (bnc#430937)- rpm/kernel-source.spec.in: Remove /lib/modules from file list as it's already in filesystem- rpm/kernel-source.spec.in: Fixed missing endif- Update config files: make floppy module on i386, too- supported.conf: update sound drivers- update RT to 2.6.27-rc8 - patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT.- Update -rt config files.- update to 2.6.27-rc8 - obsoletes these patches: - patches.arch/ia64-kdump_proc_iomem.diff - patches.drivers/qla2xxx-defer-risc-interrupt-enablement - patches.fixes/usb-hcd-interrupt-shared.patch- additional patches to track down and fix e1000e NVM corruption - patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check to catch mapping requests exceeding the BAR sizes (bnc#425480). - patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write protect ICHx NVM to prevent malicious write/erase (bnc#425480).- Update config files.- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion driver to v4.00.43.00 (bnc#425660). - patches.kernel.org/gdth-section-conflict: Add missing annotations.- Update config files: Disabled everything unnecessary in ps3 config file- disable ninja32 and ns87415 pata drivers on ppc64- config.conf: enable rt for i386/x86_64 - Update config files: Preliminary sync with default and debug configs. - config/x86_64/rt_timing: Delete. - patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT radix-tree: gang slot lookups. - patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT mm: lockless probe. - patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT mm: speculative get page. - patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT mm: lockless pagecache lookups. - patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT mm: spinlock tree_lock. - patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. - patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. - patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. - patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT 2.6.27-RT rtmutex: break out early on first run. - patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT 2.6.27-RT. - patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT adaptive spinlocks lite. - patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. - patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. - patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT ARM: compile fix for event tracing. - patches.rt/arm-fix-compile-error-trace-exit-idle.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. - patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. - patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT Cache calls to pci_find_capability. - patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT 2.6.27-RT just rename call_rcu_bh instead of making it a macro. - patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT 2.6.27-RT WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. - patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. - patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT 2.6.27-RT. - patches.rt/disable-run-softirq-from-hardirq-completely.patch: Linux-RT 2.6.27-RT Disable running softirqs from hardirqs completely!. - patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT 2.6.27-RT. - patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: Linux-RT 2.6.27-RT. - patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. - patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT 2.6.27-RT. - patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT event-tracer: add clockevent trace. - patches.rt/export-schedule-on-each-cpu.patch: Linux-RT 2.6.27-RT. - patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT 2.6.27-RT Fix a previously reverted "fix". - patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT fix-adaptive-hack.patch. - patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT Change bug_on for atomic to pagefault_disabled.. - patches.rt/fix-circular-locking-deadlock.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: Linux-RT 2.6.27-RT Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. - patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT call reboot notifier list when doing an emergency reboot. - patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: Linux-RT 2.6.27-RT. - patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. - patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT floppy: suspend/resume fix. - patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT rt: remove call to stop tracer. - patches.rt/ftrace-document-event-tracer.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: document updates. - patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT ftrace: dont trace markers. - patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. - patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: define function trace nop. - patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT ftrace: cpu hotplug fix. - patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: only trace preempt off with preempt tracer. - patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT 2.6.27-RT ftrace: fix the command line printing. - patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT ftrace: record comm on function ctrl change. - patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT fix-tracer-wreckage-wtf-is-this-code-all-features.patch. - patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: trace sched.c. - patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: Linux-RT 2.6.27-RT ftrace: avoid lockdep recursion. - patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup function trace. - patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: Linux-RT 2.6.27-RT. - patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. - patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. - patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. - patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: Linux-RT 2.6.27-RT. - patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. - patches.rt/handle-pending-in-simple-irq.patch: Linux-RT 2.6.27-RT handle IRQ_PENDING for simple irq handler. - patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. - patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. - patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT mm: remove kmap_lock. - patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. - patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. - patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT 2.6.27-RT. - patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT 2.6.27-RT. - patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. - patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT genirq: fix simple and fasteoi irq handlers. - patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. - patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. - patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT add rt stats to /proc/stat. - patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: Linux-RT 2.6.27-RT. - patches.rt/latency-measurement-drivers.patch: Linux-RT 2.6.27-RT. - patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. - patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. - patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT 2.6.27-RT. - patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/lock_list.patch: Linux-RT 2.6.27-RT lock_list - a fine grain locked double linked list. - patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT mm: lock_page_ref. - patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. - patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held lock's subclass. - patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. - patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT lockdep: prettify output. - patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. - patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT lockdep: show held locks when showing a stackdump. - patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT 2.6.27-RT. - patches.rt/lockstat-fix-contention-points.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT lockstat: fix contention points. - patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT lockstat: warn about disabled lock debugging. - patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. - patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. - patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. - patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT 2.6.27-RT. - patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT mapping_nrpages-fix.patch. - patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT mm/fs: abstract address_space::nrpages. - patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to __raw_spinlock_t. - patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: Linux-RT 2.6.27-RT RT: remove conflicting rtc_lock declaration. - patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT 2.6.27-RT. - patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT 2.6.27-RT RT: remove finish_arch_switch. - patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. - patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT mm: -rt bits for concurrent pagecache. - patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT mm: concurrent pagecache write side. - patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT reduce pagetable-freeing latencies. - patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. - patches.rt/msi-suspend-resume-workaround.patch: Linux-RT 2.6.27-RT. - patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT map tasks to reader locks held. - patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT implement reader limit on read write locks. - patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT map read/write locks back to their readers. - patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT read lock Priority Inheritance implementation. - patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. - patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT softirq preemption: optimization. - patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT 2.6.27-RT. - patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT nfs: fix missing preemption check. - patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog by default. - patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. - patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT local_bh_enable() is safe for irqs_disabled(). - patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. - patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. - patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: Linux-RT 2.6.27-RT. - patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT clean up the page fault disabling logic. - patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. - patches.rt/paravirt-function-pointer-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT introduce pause_on_oops_head/tail boot options. - patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. - patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. - patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. - patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT 2.6.27-RT. - patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT percpu_list. - patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. - patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT pmtmr: allow command line override of ioport. - patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: Linux-RT 2.6.27-RT. - patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT powerpc: ftrace stop on crash. - patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc32_notrace_init_functions.patch: Linux-RT 2.6.27-RT don't trace early init functions for ppc32. - patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-init-show-enabled-debugs.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mellanox-driver-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-net-drivers.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT 2.6.27-RT NOHZ: local_softirq_pending with tickless. - patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-tlb-batching.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-prevent-idle-boosting.patch: Linux-RT 2.6.27-RT Premmpt-RT: Preevent boosting of idle task. - patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-sched-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. - patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. - patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. - patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT fix printk in atomic hack. - patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. - patches.rt/qrcu.patch: Linux-RT 2.6.27-RT QRCU with lockless fastpath. - patches.rt/quicklist-release-before-free-page-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/quicklist-release-before-free-page.patch: Linux-RT 2.6.27-RT. - patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. - patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT radix-tree: concurrent write side support. - patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT lockdep: add +1 to radix tree array. - patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT debug: optimistic lock histogram. - patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT radix-tree: optimistic locking. - patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. - patches.rt/rcupreempt-boost-early-init.patch: Linux-RT 2.6.27-RT. - patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT 2.6.27-RT. - patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT relay: fix timer madness. - patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT 2.6.27-RT. - patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. - patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. - patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT rt: PI-workqueue: propagate prio for delayed work. - patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT rt: list_splice2. - patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: Linux-RT 2.6.27-RT rt: move update_wall_time back to do timer. - patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT rt-mutex-namespace.patch. - patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT rt-mutex-cleanup.patch. - patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT rt: plist_head_splice. - patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT 2.6.27-RT rwlock: be more conservative in locking reader_lock_count. - patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT rt: PI-workqueue support. - patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT rt: PI-workqueue: fix barriers. - patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT rt: PI-workqueue: wait_on_work() fixup. - patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT rt: rename rt_mutex_setprio to task_setprio. - patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT rtmutex-debug-fix.patch. - patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT lock debugging: clean up rtmutex-debug.h. - patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. - patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. - patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT rtmutex - remove double xchg. - patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT rwlock: fix pi_list race conditions. - patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT 2.6.27-RT rwlocks multi downgrade write. - patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT rwlock: reset prio on unlocks and wakeups. - patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT rwlock: fix torture test to handle non-rt. - patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT rwlock: rwlock torture test. - patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT 2.6.27-RT. - patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT rwlock: fix non PREEMPT_RT case. - patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT implement rwlocks management. - patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT add framework for multi readers on rwsems. - patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT s_files: free_write_pipe() fix. - patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT 2.6.27-RT. - patches.rt/s_files.patch: Linux-RT 2.6.27-RT remove global files_lock. - patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: Linux-RT 2.6.27-RT CFS: enable irqs in fire_sched_in_preempt_notifier. - patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT sched-fix-dequeued-race.patch. - patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. - patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. - patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT 2.6.27-RT. - patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT 2.6.27-RT. - patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT 2.6.27-RT. - patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. - patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. - patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. - patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. - patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT core: make asm/irq_regs.h available on every platform. - patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT 2.6.27-RT. - patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT rt: dont disable irqs in usb. - patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. - patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. - patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. - patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-add-event-markers-arm.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: Linux-RT 2.6.27-RT trace-do-not-wakeup-when-irqs-disabled.patch. - patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. - patches.rt/trace-events-handle-syscalls.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. - patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT ftrace: print ktime values in readable form. - patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). - patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. - patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. - patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: Linux-RT 2.6.27-RT [AT91: PATCH]: Use edge triggered interrupt handling for AT91-GPIO instead of simple_irq-handler. - patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. - patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt rt. - patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT 2.6.27-RT x86_64 GTOD: offer scalable vgettimeofday. - patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT This patch should solve some of the bug messages.. - patches.rt/add-generalized-pi-interface.patch: Linux-RT 2.6.27-RT add generalized priority-inheritance interface. - patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT RT: wrap the rt_rwlock "add reader" logic. - patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT 2.6.27-RT rtmutex: pi-boost locks as late as possible. - patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT rtmutex: formally initialize the rt_mutex_waiters. - patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT rtmutex: use runtime init for rtmutexes. - patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT sched: add the basic PI infrastructure to the task_struct. - patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT rtmutex: convert rtmutexes to fully use the PI library. - patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: Linux-RT 2.6.27-RT ftrace: fix elevated preempt_count in wakeup-tracer. - patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: Linux-RT 2.6.27-RT seqlock: make sure that raw_seqlock_t retries readers while writes are pending. - patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. - patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT Linux-RT 2.6.26-RT. - patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT nmi-driven profiling for /proc/profile. - patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. - patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. - patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT rt-friendly per-cpu pages. - patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. - patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. - patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. - patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. - patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. - patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT ftrace: warn on failure to disable mcount callers. - patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. - patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. - patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT 2.6.27-RT. - patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. - patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. - patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. - patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. - patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: Linux-RT 2.6.27-RT. - patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: Linux-RT 2.6.27-RT. - patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT 2.6.27-RT. - patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: Linux-RT 2.6.27-RT. - patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. - patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT rtmutex: check integrity. - patches.rt/sched-add-needs_post_schedule.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT 2.6.27-RT suppress warning of smp_processor_id use.. - patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-only-push-if-pushable.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-only-push-once-per-queue.patch: Linux-RT 2.6.27-RT. - patches.rt/sched-properly-account-irq-and-rt-load.patch: Linux-RT 2.6.27-RT sched: properly account IRQ and RT load in . - patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. - patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: Linux-RT 2.6.27-RT. - patches.rt/seqlock-02-fix-elevated-preempt-count.patch: Linux-RT 2.6.27-RT. - patches.rt/seqlock-serialize-against-writers.patch: Linux-RT 2.6.27-RT. - patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT 2.6.27-RT seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. - patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT 2.6.27-RT. - patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. - patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. - patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT.- enable ipmi message handler on ppc64 (bnc#430705)- create flavor symlinks unconditionally they do not depend on presence of modules- Update config files after Swap-over-NFS backout.- kernel-vanilla and kernel-p3 are not split into main, -base, and - extra packages. Fix the bogus dependencies on those packages.- disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: gfp_to_alloc_flags() (FATE#303834). - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: serialize access to min_free_kbytes (FATE#303834). - patches.suse/SoN-03-doc.patch: swap over network documentation (FATE#303834). - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: expose gfp_to_alloc_flags() (FATE#303834). - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve pages (FATE#303834). - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge of reserve pages (FATE#303834). - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: kmem_alloc_estimate() (FATE#303834). - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow PF_MEMALLOC from softirq context (FATE#303834). - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency pool (FATE#303834). - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: system wide ALLOC_NO_WATERMARK (FATE#303834). - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: __GFP_MEMALLOC (FATE#303834). - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve management (FATE#303834). - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: tag avc cache alloc as non-critical (FATE#303834). - patches.suse/SoN-14-net-backlog.patch: net: wrap sk->sk_backlog_rcv() (FATE#303834). - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive api (FATE#303834). - patches.suse/SoN-16-net-sk_allocation.patch: net: sk_allocation() - concentrate socket related allocations (FATE#303834). - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve infrastructure (FATE#303834). - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET reserves. (FATE#303834). - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook skb allocation to reserves (FATE#303834). - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter emergency skbs. (FATE#303834). - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent a stream specific deadlock (FATE#303834). - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: NF_QUEUE vs emergency skbs (FATE#303834). - patches.suse/SoN-23-netvm.patch: netvm: skb processing (FATE#303834). - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for non block device backed swap files (FATE#303834). - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods for teaching filesystems about PG_swapcache pages (FATE#303834). - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS client how to treat PG_swapcache pages (FATE#303834). - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache revalidation for swapfiles (FATE#303834). - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS (FATE#303834). - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various memory recursions possible with swap over NFS. (FATE#303834). - patches.xen/xen3-auto-common.diff: xen3 common.- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). Provide the base infrastructure for utrace on x86.- config/powerpc/vanilla: configure to 64bit.- rpm/functions.sh: remove readlink emulation.- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 (bnc#420767).- Update ia64 config files. (bnc#429881)- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE generation (bnc#430344)- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in e1000_probe() in case the card has invalid EEPROM checksum- Do not split kernels which have modules disabled (kernel-ps3) or which do not differentiate between supported and unsupported modules (kernel-vanilla).- patches.drivers/open-fcoe-dcb-support: Fix section annotation for ixgbe. - patches.fixes/scsi-enhance-error-codes: Add missing hunk. - patches.fixes/open-iscsi-git-update: Open-iSCSI updates (FATE#304283). - patches.kernel.org/gdth-section-conflict: Fixup gdth section annotations.- Silence /etc/rpm/macros.kernel-source via rpmlintrc.- Enable Solarflare driver link and resource driver patches. - Update x86 config files.- rpm/kernel-source.spc.in: Try to get rid of a hack that makes uname -r pretend in build environments that the kernel from the installed kernel-source package is the running kernel: packages assuming this are completely broken ans should really be fixed.- rpm/kernel-source.spec.in: Prepare for the upcoming introduction of kernel-source-rt (and kernel-syms-rt) for producing KMPs for real-time kernels. - rpm/install-configs: Remove; this script didn't improve things.- rpm/kernel-source.rpmlintrc: New file to silence warnings about zero size files - rpm/kernel-source.spec.in: Install it. - rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source a config file to silence rpmlint.- supported.conf: Update the list of i2c bus drivers. - i2c-i810, i2c-prosavage and i2c-savage4 are gone. - i2c-isch and i2c-nforce2-s4985 are new, mark as supported.- rpm/kernel-source.spec.in: Do not package .gitignore files.- Fix CONFIG_MODULES=n case. - config.conf: Some cleanups.- Split the binary kernel packages into three parts: + kernel-$flavor-base: very reduced hardware support, intended to be used in virtual machine images + kernel-$flavor: extends the base package; contains all kernel modules we can support + kernel-$flavor-extra: all other kernel modules which may be useful, but which we cannot support.- Hardlink duplicate files automatically: It doesn't save much, but it keeps rpmlint from breaking the package build.- Add consistency check: supported modules must not depend on unsupported ones ... and guess what, there was a large number of such modules. Fix this by adding all the dependent modules to supported.conf.- patches.suse/dm-barrier-single-device: Implement barrier support for single device DM devices (FATE#304489).- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default mbuild spec list.- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480).- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480)- patches to track down and fix the e1000e NVM corruption (bnc#425480) - patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad checksum - patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to dmesg for ich8/9 - patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: debug contention on NVM SWFLAG - patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: e1000e: do not ever sleep in interrupt context - patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock - patches.suse/e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls - patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep issues - patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap - patches.suse/e1000e_reset_swflag_after_resetting_hardware: e1000e: reset swflag after resetting hardware - patches.suse/e1000e_update_version: update version - patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: e1000e: Use set_memory_ro()/set_memory_rw() to protect flash memory - cleanup old not longer used patches * patches.drivers/e1000-7.6.5-napi-tail.patch * patches.drivers/e1000-7.6.9.2 * patches.drivers/e1000-7.6.9.2-napi- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275)- patches.arch/acpi-export-hotplug_execute: acpi: export acpi_os_hotplug_execute.- patches.xen/xen-rwlocks-enable-interrupts: add missing __raw_{read,write}_lock_flags to xen's asm/spinlock.h.- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c from makefile.- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many false positives.No functional change: - patches.arch/acpi_thermal_passive_blacklist.patch: Avoid critical temp shutdowns on specific ThinkPad T4x(p) and R40 (https://bugzilla.novell.com/show_bug.cgi?id=333043). Dock bug fixes (kacpid runs amok on Dells after suspend): - patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid check _STA method (fate#304731,bnc#401740). - patches.arch/acpi-dock-fix-eject-request-process.patch: fix eject request process (fate#304731,bnc#401740). More Dock improvements, unrelated to above fixes: - patches.arch/acpi-bay-remove-useless-code.patch: remove useless code (fate#304731,bnc#401740). - patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: Fix duplicate notification handler register (fate#304731,bnc#401740). - patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK support for dock (fate#304731,bnc#401740). - patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: fix for bay in a dock station (fate#304731,bnc#401740). - patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race (fate#304731,bnc#401740). - patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: introduce .uevent for devices in dock (fate#304731,bnc#401740). - patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: libata hotplug to align with dock driver (fate#304731,bnc#401740). - patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: makeing dock driver supports bay and battery hotplug (fate#304731,bnc#401740). - patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: add 'type' sysfs file for dock (fate#304731,bnc#401740). - patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: Use ACPI_EXCEPTION instead of printk(KERN_ERR.- Update config files: NFS_SWAP=y- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to re-enable interrupts (bnc#387784). - patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable interrupts when waiting for a rwlock (bnc#387784).- Add Swap over NFS patchset. - Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h as both xen and swap-over-nfs want to add some bits to the skbuff structure. - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: gfp_to_alloc_flags() (FATE#303834). - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: serialize access to min_free_kbytes (FATE#303834). - patches.suse/SoN-03-doc.patch: swap over network documentation (FATE#303834). - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: expose gfp_to_alloc_flags() (FATE#303834). - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve pages (FATE#303834). - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge of reserve pages (FATE#303834). - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: kmem_alloc_estimate() (FATE#303834). - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow PF_MEMALLOC from softirq context (FATE#303834). - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency pool (FATE#303834). - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: system wide ALLOC_NO_WATERMARK (FATE#303834). - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: __GFP_MEMALLOC (FATE#303834). - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve management (FATE#303834). - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: tag avc cache alloc as non-critical (FATE#303834). - patches.suse/SoN-14-net-backlog.patch: net: wrap sk->sk_backlog_rcv() (FATE#303834). - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive api (FATE#303834). - patches.suse/SoN-16-net-sk_allocation.patch: net: sk_allocation() - concentrate socket related allocations (FATE#303834). - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve infrastructure (FATE#303834). - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET reserves. (FATE#303834). - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook skb allocation to reserves (FATE#303834). - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter emergency skbs. (FATE#303834). - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent a stream specific deadlock (FATE#303834). - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: NF_QUEUE vs emergency skbs (FATE#303834). - patches.suse/SoN-23-netvm.patch: netvm: skb processing (FATE#303834). - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for non block device backed swap files (FATE#303834). - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods for teaching filesystems about PG_swapcache pages (FATE#303834). - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS client how to treat PG_swapcache pages (FATE#303834). - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache revalidation for swapfiles (FATE#303834). - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS (FATE#303834). - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various memory recursions possible with swap over NFS. (FATE#303834). - patches.xen/xen3-auto-common.diff: xen3 common.- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it more obvious that the patch is not constrained to s390. The new series is: patches.suse/self-ptrace.patch: the generic pieces patches.arch/x86-self-ptrace.patch: implementation for x86 patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390- Update Xen patches to 2.6.27-rc7 and c/s 676.- add patches.arch/ppc64-rpanote-relocate-firmware.patch update RPA note for firmware relocation (bnc#427960 - LTC48297)This adds some tracepoint instrumentation taken from the LTTng patch series. Tracepoints are enabled for kernel-debug and kernel-trace only. I disabled ftrace for all flavors except kernel-debug and kernel-trace as well. - Update config files. - rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace flavor - patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse warnings. - patches.xen/xen3-fixup-common: rediff - patches.xen/xen3-auto-common.diff: rediff - patches.xen/xen3-patch-2.6.21: rediff - patches.xen/xen3-patch-2.6.26: rediff - patches.trace/rcu-read-sched.patch - patches.trace/markers-use-rcu-read-lock-sched.patch - patches.trace/tracepoints.patch - patches.trace/tracepoints-use-table-size-macro.patch - patches.trace/tracepoints-documentation.patch - patches.trace/tracepoints-tracepoint-synchronize-unregister.patch - patches.trace/tracepoints-documentation-fix-teardown.patch - patches.trace/tracepoints-samples.patch - patches.trace/tracepoints-samples-fix-teardown.patch - patches.trace/lttng-instrumentation-irq.patch - patches.trace/lttng-instrumentation-scheduler.patch - patches.trace/lttng-instrumentation-timer.patch - patches.trace/lttng-instrumentation-kernel.patch - patches.trace/lttng-instrumentation-filemap.patch - patches.trace/lttng-instrumentation-swap.patch - patches.trace/lttng-instrumentation-memory.patch - patches.trace/lttng-instrumentation-page_alloc.patch - patches.trace/lttng-instrumentation-hugetlb.patch - patches.trace/lttng-instrumentation-net.patch - patches.trace/lttng-instrumentation-ipv4.patch - patches.trace/lttng-instrumentation-ipv6.patch - patches.trace/lttng-instrumentation-socket.patch - patches.trace/lttng-instrumentation-fs.patch - patches.trace/lttng-instrumentation-ipc.patch - patches.trace/ftrace-port-to-tracepoints.patch - patches.trace/ftrace-framepointer.diff- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): Collaborative Memory Management Stage II (bnc#417244) - patches.xen/xen3-auto-common.diff: Modified patch to allow for the new patch- rpm/kernel-binary.spec.in: Enable sparse checking and section mismatch checking.- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly handle arch/$arch/include/asm (bnc#427473).- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: ext2: Avoid printk floods in the face of directory corruption (bnc#427244 CVE-2008-3528). - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: ext3: Avoid printk floods in the face of directory corruption (bnc#427244 CVE-2008-3528).- Update to 2.6.27-rc7. - Eliminated 2 patches. - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context.Workaround for ThinkPad brightness switching: - patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: Do not use video backlight switching for Lenovo ThinkPads. Commented out for now, possibly to be included later - patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. - patches.drivers/cpufreq_add_idle_microaccounting_6.patch: cpufreq,ondemand: Use get_cpu_idle_time_us() to get micro-accounted idle information. - patches.drivers/cpufreq_change_load_calculation_2.patch: cpufreq, ondemand: Change the load calculation, optimizing for dependent cpus. - patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: export get_cpu_idle_time_us() . - patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: cpufreq,ondemand: Prepare changes for doing micro-accounting. - patches.drivers/cpufreq_parameterize_down_differential_4.patch: cpufreq, ondemand: Use a parameter for down differential. Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more consistent across different kernel flavors as suggested on the kernel list: - Update config files.- patches.drivers/open-fcoe-libfc: Fix build error on IA64. - patches.fixes/scsi-terminate-target-reset: Target reset hangs (bnc#427267). - supported.conf: Update to include supported SCSI adapters.- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE related change. - Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE.- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: md: Allow metadata_version to be updated for externally managed metadata. (FATE#304218). - patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: md: Don't try to set an array to 'read-auto' if it is already in that state. (FATE#304218).- patches.suse/no-frame-pointer-select: Disable. - Re-enable CONFIG_FRAME_POINTER in x86 config files.- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in non-debug configs). - patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. - patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig (bnc#402518).- Update config files. - patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over Ethernet driver (FATE#303913). - patches.drivers/open-fcoe-libfc: libfc: a modular software Fibre Channel implementation (FATE#303913). - patches.drivers/open-fcoe-header-files: FC protocol definition header files (FATE#303913). - patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support (FATE#303913). - patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. - patches.fixes/vlan-gso-size-fix: vlan: device not reading gso max size of parent. (FATE#303913). - patches.fixes/pkt_action-skbedit: pkt_action: add new action skbedit. - patches.fixes/pkt_sched_multiq_support: pkt_sched: Add multiqueue scheduler support (FATE#303913). - supported.conf: Update to include FCoE and device_handler modules- supported.conf: adjust name of ide-cd (is now ide-cd_mod).- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: qla2xxx: Defer enablement of RISC interrupts until ISP initialization completes (FATE#304113). - patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to 8.02.01-k8 (FATE#304113).- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042)- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove (bnc#417537)- Update config files (build elousb driver as module) - patches.drivers/elousb.patch: Elo USB touchscreen driver (FATE#304972).- patches.fixes/dm-mpath-abort-queue: Abort queued requests for multipath (FATE#304151).- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD- patches.xen/xen-scsifront-block-timeout-update: Update XEN scsifront driver to request timeouts.- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, RT_GROUP_SCHED, CGROUP_SCHED- patches.drivers/block-timeout-handling: Fix typo.- Add LED driver for SGI "UV" systems (FATE#304268)- patches.drivers/bdev-resize-added-flush_disk: Added flush_disk to factor out common buffer cache flushing code (FATE#302348,FATE#303786). - patches.drivers/bdev-resize-adjust-block-device-size: Adjust block device size after an online resize of a disk. (FATE#302348,FATE#303786). - patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() after detecting an online resize. (FATE#302348,FATE#303786). - patches.drivers/bdev-resize-check-for-device-resize: Check for device resize when rescanning partitions (FATE#302348,FATE#303786). - patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver calls revalidate_disk wrapper (FATE#302348,FATE#303786). - patches.drivers/bdev-resize-wrapper-for-revalidate_disk: Wrapper for lower-level revalidate_disk routines. (FATE#302348,FATE#303786). - patches.drivers/block-timeout-handling: block: unify request timeout handling (FATE#304151,bnc#417544). - patches.fixes/scsi-misc-git-update: SCSI misc fixes (FATE#303485,FATE#303484). - patches.fixes/scsi-enhance-error-codes: Separate failfast into multiple bits (FATE#303485,FATE#303484). - patches.suse/rq-based-block-layer: rediff. - patches.suse/rq-based-multipath-functions: rediff. - patches.suse/no-partition-scan: rediff.- patches.fixes/scsi-misc-git-update: SCSI misc fixes, required by the driver updates (FATE#303485,FATE#303484)- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 (bnc#420767). - patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update to 8.2.8 (FATE#303485,bnc#420767).- patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot).Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the block is allocated (fate#303783). - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: ext4: add missing unlock in ext4_check_descriptors() on error path (fate#303783). - patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: ext4: Add percpu dirty block accounting. (fate#303783). - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: ext4: fix #11321: create /proc/ext4/*/stats more carefully (fate#303783). - patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: Fix long long checkpatch warnings (fate#303783). - patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: Add printk priority levels to clean up checkpatch warnings (fate#303783). - patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: Fix whitespace checkpatch warnings/errors (fate#303783). - patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: Properly update i_disksize. (fate#303783). - patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: ext4: invalidate pages if delalloc block allocation fails. (fate#303783). - patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: ext4: Make sure all the block allocation paths reserve blocks (fate#303783). - patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). - patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: ext4: Retry block allocation if we have free blocks left (fate#303783). - patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry block reservation (fate#303783). - patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed arithematic fix (fate#303783). - patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: ext4: Switch to non delalloc mode when we are low on free blocks count. (fate#303783). - patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: ext4: truncate block allocated on a failed ext4_write_begin (fate#303783). - patches.fixes/ext4_update-flex-bg-counters-when-resizing: Update flex_bg free blocks and free inodes counters when resizing. (fate#303783). - patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: clean up percpu_counter_sum_and_set() (fate#303783).- Enable KDB for i386 and x86_64 in "default" and "pae" configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations that have KDB enabled.- Update config files. enable PID_NS and USER_NS (FATE#303785, FATE#304371)- Update config files. - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781)- Added POSIX File Locks support for Ocfs2 (FATE#110294) - patches.suse/ocfs2-POSIX-file-locks-support.patch- Added Ocfs2 JBD2 Support (FATE#302877) - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch - patches.suse/ocfs2-Add-the-inode64-mount-option.patch - patches.suse/ocfs2-Switch-over-to-JBD2.patch- Added Ocfs2 Extended Attributes Support (FATE#302067) - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch - patches.suse/ocfs2-reserve-inline-space-for-extend.patch - patches.suse/ocfs2-Add-extended-attribute-support.patch - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch - patches.suse/ocfs2-fix-printk-format-warnings.patch - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch- Add patches.fixes/jbd2-create-proc-entry-fix.patch jbd2: Create proc entry with bdevname+i_ino. (FATE#302877)- Add patches.fixes/dlm-allow-multiple-lockspaces.patch dlm: allow multiple lockspace creates (FATE#110294)- Update kdb patches.- Update config files. change CONFIG_NODES_SHIFT from 6 to 9 (FATE#304261)- Update config files. Added: CONFIG_PCIEASPM- patches.drivers/e1000e_add_82574L.patch: e1000e: add support for new 82574L part. - patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support for the 82567LM-4 device. - patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add support for 82567LM-3 and 82567LF-3 (ICH10D). (FATE#303916)- patches.suse/no-partition-scan: Implement 'no_partition_scan' commandline option (FATE#303697)- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix section type conflicts. - patches.kernel.org/psmouse-section-conflict.diff: psmouse: fix section type conflict. - patches.kernel.org/carmine-section-mismatch: video: Fix section mismatch in carminefb. - patches.kernel.org/md-section-conflict: md: Fix section conflicts. - patches.kernel.org/setup_APIC_timer-section-mismatch: x86: Fix section conflict with kvm_setup_secondary_clock.- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Serve ThinkPad IGD devices backlight functionality through thinkpad_acpi (fate #302883). - supported.conf: Add most important laptop drivers as supported: kernel/drivers/misc/asus_laptop kernel/drivers/misc/eeepc-laptop kernel/drivers/misc/msi-laptop kernel/drivers/misc/fujitsu-laptop kernel/drivers/acpi/wmi kernel/drivers/misc/hp-wmi- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up some section conflicts.- Update to 2.6.27-rc6.- supported.conf: Added missing netfilter modules.- supported.conf: Updated netfilter module names.- patches.kernel.org/firmware-path: Updated header.- Update config files: support more than 4 serial ports (FATE#303314)- set CONFIG_CMM=y instead of =m to simplify virtual partition memory (bnc#417554)- rpm/kernel-binary.spec.in: add Recommends: kerneloops- Updated to 2.6.27-rc5-git10- Updated to 2.6.27-rc5-git9- patches.arch/s390-01-01-self-ptrace-v3.patch: system call notification with self_ptrace (bnc#417299) - patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): Add support for >2G DCSS and stacked contiguous DCSS support. (bnc#417246) - patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - Performance Data colletion & analysis (bnc#417243)- add patches.fixes/usb-hcd-interrupt-shared.patch fix interrupt handling for shared irqs, for PS3 (bnc#409961)- Updated to 2.6.27-rc5-git7- build with CONFIG_POWER4_ONLY (bnc#417566) this disables support for POWER3 and RS64 cpus- switch from Reno to Cubic as default TCP congestion algorithm (bnc#422825)- Update KDB patches. Fix build on x86_64-debug.- mark crc-t10dif as supported- mark pata_pdc2027x as supported- mark spidernet as supported- mark ehea as supported- supported.conf: Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo as supported Remove or adjust supported laptop drivers that went from drivers/acpi to drivers/misc- supported.conf: Mark virtio modules as supported.- Update Xen patches to 2.6.27-rc5 and c/s 651.- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel (new function): System call notification with self_ptrace (bnc#417299,FATE#304021)- File capabilities: replace our no_file_caps patch with what is supposed to end up in 2.6.28.- patches.arch/ia64-node_mem_map-node_start_pfn.diff: Fix memory map for ia64/discontmem for kdump.- Updated to 2.6.27-rc5-git2- Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug will fail there.- update message in post.sh to display also the rpm FLAVOR- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch rename rh_init to region_hash_init to avoid conflict with existing powerpc symbol on powerpc- disable musb, not useful, does not compileVendor specific drivers vs generic video driver. Distinguish which ACPI driver should do backlight switching. This patch series is queued up for 2.6.28 in the ACPI branch: - patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: ACPI: video: Ignore devices that aren't present in hardware. - patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check for ACPI backlight support otherwise use vendor ACPI drivers. - patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: Acer-WMI: fingers off backlight if video.ko is serving this functionality. - patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: asus-acpi: fingers off backlight if video.ko is serving this functionality. - patches.arch/0004-Compal-fingers-off-backlight.patch: compal: fingers off backlight if video.ko is serving this functionality. - patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: fingers off backlight if video.ko is serving this functionality. - patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: fujitsu-laptop: fingers off backlight if video.ko is serving this functionality. - patches.arch/0007-msi-laptop-fingers-off-backlight.patch: msi-laptop: fingers off backlight if video.ko is serving this functionality. - patches.arch/0008-sony-laptop-fingers-off-backlight.patch: sony-laptop: fingers off backlight if video.ko is serving this functionality. - patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: thinkpad_acpi: fingers off backlight if video.ko is serving this functionality. I had to refresh these. While one patch was broken, two lines were missing, "patch" from 11.0 still worked, while "patch" from 10.3 did not: - patches.xen/add-console-use-vt: add console_use_vt. - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: kexec: Move asm segment handling code to the assembly file (i386).- Disabled patches.kernel.org/ia64-asm-nr-irqs- patches.fixes/pseries-compile-fix: pseries: compile fix.- patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc.- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation should place it in arch/../asm.- Update config files.- Updated to 2.6.27-rc4. - Refreshed context.- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: x86, pci: introduce pci=noioapicquirk kernel cmdline option. Mysterious patch problem in include/asm-x86/pci.h - patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts register on resume.- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: Delete.- Update Xen patches to 2.6.27-rc4. - patches.xen/xen-x86_64-dump-user-pgt: dump the correct page tables for user mode faults. - patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 allocations for pgd-s. - patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs transparent to callers. - patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. - patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry handling. - patches.xen/xen-x86-bigmem: fix issues with the assignment of huge amounts of memory. - patches.xen/xen-msix-restore: print at least a message if MSI-X restore failed. - config.conf: Re-enable Xen. - patches.xen/sfc-i2c: Delete. - Update config files.- patches.suse/stack-unwind: Adjust and re-enable. - Update config files.- patches.kernel.org/ps3-lpm-include: Delete.- Removed unused patches.- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221)- Update config files.- Update kdb patches.- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error without CONFIG_PPC_83xx. - Update config files.- Update config files: disable CONFIG_IPIC for ppc/default and vanilla again to fix build- rpm/kernel-binary.spec.in: fix build without firmware files- patches.kernel.org/no-include-asm: kbuild: correctly link include/asm in external builds.- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again.- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict.- Enabled patches.kernel.org/firmware-path- patches.apparmor/add-security_path_permission: Fixed duplicate export of security_inode_permission.- patches.apparmor/add-security_path_permission: Add missing stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n- patches.kernel.org/firmware-path: firmware: Allow release-specific firmware dir. - rpm/kernel-binary.spec.in: Add firmware files.- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export cpu_core_map for topology_core_siblings.- Updated to 2.6.27-rc3. - AppArmor mostly merged. There may be some hiccups. - Xen and RT temporarily disabled for merging. - 17 patches eliminated.Guarded by +RT - patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: seqlock: make sure that raw_seqlock_t retries readers while writes are pending. - patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: ftrace: fix elevated preempt_count in wakeup-tracer.- Update config files for RT kernel to activate SCSI device handler.- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix a couple of bugs and inconsistencies.- Fix reference to $RPM_BUILD_ROOT in makefiles.- patches.fixes/dm-mpath-hp-sw.patch: Delete. - Update config files. - patches.fixes/dm-2.6.27-update: Upstream device-mapper patches (FATE#302108). - patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update (FATE#302269,FATE#303696,FATE#303754,FATE#304125). - patches.suse/rq-based-block-layer: rq-based multipathing: block layer changes (FATE#302108). - patches.suse/rq-based-dm-interface: rq-based multipathing: device-mapper interface (FATE#302108). - patches.suse/rq-based-multipath-functions: rq-based multipathing: request-based functions to multipath (FATE#302108).- Update Xen patches to c/s 623. - patches.xen/sfc-network-driver: Delete. - patches.xen/xen-balloon-hvm-min: Delete. - patches.xen/xen-netfront-flip-prod: Delete. - patches.xen/xen-x86_64-init-cleanup: Delete. - patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit driver (disabled). - patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). - Update Xen config files.- add patches.suse/ppc-no-LDFLAGS_MODULE.patch do not link external modules against arch/powerpc/lib/crtsavres.o- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: audit transaction ids to always be unsigned ints (bnc#410847).- README.BRANCH: Took ownership of 11.1 tree.- README: Changed w3d links to wiki links.Fixed misnamed rt_trace to rt_timing - config/x86_64/rt_trace: Delete. - Update config files. - config.conf:Added x86_64/rt_trace kernel flavor (based on ftrace) - Update config files. - config.conf:Guarded by +RT - Fix rtmutex-tester build problem with rt_debug - patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert rtmutexes to fully use the PI library.Guarded by +RT - Remove version.patch to stop build breakage- update apparmor patches with fixes for - broken getcwd (bnc#413915) - ref counting bug in getcwd and d_namespace_path when used on disconnected paths (bnc#414607) - typeo in patches that keep selinux from compiling (bnc#414609) - incorporate smack patch into base apparmor patches, so that smack can be built (bnc#414610)- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix memory corruption (bnc#414635). - patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: kill tasklets on shutdown (bnc#414638).- README.BRANCH: added file.- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will not run if USB is compiled in and a specific USB device is not present- patches.fixes/tpm-write-data-types.patch: tpm: Use correct data types for sizes in tpm_write() and tpm_read() (bnc#400211).PI rework v0.5 and a fix from upstream for 26-rt1 - patches.rt/26-rt1-chirag.patch: This patch should solve some of the bug messages.. - patches.rt/add-generalized-pi-interface.patch: add generalized priority-inheritance interface. - patches.rt/tie-pi-into-task.patch: sched: add the basic PI infrastructure to the task_struct. - patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally initialize the rt_mutex_waiters. - patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock "add reader" logic. - patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime init for rtmutexes. - patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert rtmutexes to fully use the PI library. - patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: pi-boost locks as late as possible.- Reenable EFI_RTC.- Update config files. Unset on forgotten archs: CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS bug which is common on latest AMD driven boards (bnc#387053).Add boot interrupt patches from linux-2.6-tip - patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch - patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch - patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch - patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch - patches.arch/x86-disable-intel-boot-interrupt-generation.patch - patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch - patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch - patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch - Update config files. * reroute of boot interrupts is enabled for RT only!Update to 2.6.26-rt1: - config.conf: Enable i386/x86_64 - RT / RT_debug - Update config files: * Sync to default config. * Disable (broken): - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) - ISP 1760 HCD support (USB_ISP1760_HCD) - KDB - QLogic InfiniPath Driver (INFINIBAND_IPATH) Remove obsolete patches: - patches.rt/arm-cmpxchg-support-armv6.patch: Delete. - patches.rt/arm-cmpxchg.patch: Delete. - patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. - patches.rt/arm-leds-timer.patch: Delete. - patches.rt/arm-omap-03.patch: Delete. - patches.rt/arm-omap-04.patch: Delete. - patches.rt/disable-sched-rt-groups.patch: Delete. - patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: Delete. - patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: Delete. - patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. - patches.rt/drivers-edac-i5000-turn-off-unsupported-check: Delete. - patches.rt/drivers-edac-new-amd64.patch: Delete. - patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. - patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. - patches.rt/drivers-edac-test_device.patch: Delete. - patches.rt/ep93xx-clockevents-fix.patch: Delete. - patches.rt/ep93xx-clockevents.patch: Delete. - patches.rt/ep93xx-timer-accuracy.patch: Delete. - patches.rt/fix-alternate_node_alloc.patch: Delete. - patches.rt/fix-irq-flags-size.patch: Delete. - patches.rt/foo.patch: Delete. - patches.rt/ftrace-add-nr_syscalls.patch: Delete. - patches.rt/ftrace-alloc-pages.patch: Delete. - patches.rt/ftrace-cpu-clock-update.patch: Delete. - patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: Delete. - patches.rt/ftrace-direct-calls.patch: Delete. - patches.rt/ftrace-disable-daemon.patch: Delete. - patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. - patches.rt/ftrace-eventtrace-fixup.patch: Delete. - patches.rt/ftrace-filter-functions.patch: Delete. - patches.rt/ftrace-fix-ip.patch: Delete. - patches.rt/ftrace-flip-fix.patch: Delete. - patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. - patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. - patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. - patches.rt/ftrace-max-update-fixes.patch: Delete. - patches.rt/ftrace-move-memory-management-to-generic.patch: Delete. - patches.rt/ftrace-nop-calls.patch: Delete. - patches.rt/ftrace-peterz-cpu_clock.patch: Delete. - patches.rt/ftrace-remove-max-printks.patch: Delete. - patches.rt/ftrace-safe-traversal-hlist.patch: Delete. - patches.rt/ftrace-stop-function-trace-fix.patch: Delete. - patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. - patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. - patches.rt/ftracer-build-fix.patch: Delete. - patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. - patches.rt/futex-performance-hack.patch: Delete. - patches.rt/git-ignore-module-markers.patch: Delete. - patches.rt/irq-flags-unsigned-long.patch: Delete. - patches.rt/kernel-bug-after-entering-something-from-login.patch: Delete. - patches.rt/kthread-cpus-allowed-init.patch: Delete. - patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. - patches.rt/kvm-make-less-noise.patch: Delete. - patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. - patches.rt/latency-tracing-prctl-api-hack.patch: Delete. - patches.rt/netfilter-more-debugging.patch: Delete. - patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: Delete. - patches.rt/pcounter-percpu-protect.patch: Delete. - patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. - patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: Delete. - patches.rt/ppc-add-mcount.patch: Delete. - patches.rt/ppc-add-ppc32-mcount.patch: Delete. - patches.rt/ppc-mark-notrace-mainline.patch: Delete. - patches.rt/ppc-mcount-dummy-functions.patch: Delete. - patches.rt/ppc-rename-xmon-mcount.patch: Delete. - patches.rt/ppc-select-mcount.patch: Delete. - patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. - patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. - patches.rt/preempt-realtime-powerpc-a7.patch: Delete. - patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: Delete. - patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: Delete. - patches.rt/preempt-realtime-sh.patch: Delete. - patches.rt/preempt-realtime-supress-cpulock-warning.patch: Delete. - patches.rt/rcu-preempt-trace-markers-1.patch: Delete. - patches.rt/rcu-preempt-trace-markers-2.patch: Delete. - patches.rt/rcu-various-fixups.patch: Delete. - patches.rt/rt-mutex-arm-fix.patch: Delete. - patches.rt/rt-mutex-delayed-resched.patch: Delete. - patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: Delete. - patches.rt/rt-time-starvation-fix.patch: Delete. - patches.rt/rtmutex-adaptive-locks.patch: Delete. - patches.rt/rtmutex-adaptive-timeout.patch: Delete. - patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. - patches.rt/sched-fix-rt-task-wakeup.patch: Delete. - patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. - patches.rt/sched-rt-push-only-new.patch: Delete. - patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. - patches.rt/tasklet-fix-preemption-race.patch: Delete. - patches.rt/tasklet-more-fixes.patch: Delete. - patches.rt/time-gcc-linker-error.patch: Delete. - patches.rt/tracer-use-sched-clock.patch: Delete. - patches.rt/write-try-lock-irqsave.patch: Delete. - patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. Introduce 2.6.26-RT1: - patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: Linux-RT 2.6.26-RT radix-tree: gang slot lookups. - patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT 2.6.26-RT mm: lockless probe. - patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: Linux-RT 2.6.26-RT mm: speculative get page. - patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: Linux-RT 2.6.26-RT mm: lockless pagecache lookups. - patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: Linux-RT 2.6.26-RT mm: spinlock tree_lock. - patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: Linux-RT 2.6.26-RT. - patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: Linux-RT 2.6.26-RT. - patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. - patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. - patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT 2.6.26-RT. - patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. - patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT 2.6.26-RT rtmutex: break out early on first run. - patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT 2.6.26-RT. - patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT adaptive spinlocks lite. - patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. - patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. - patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT ARM: compile fix for event tracing. - patches.rt/arm-fix-compile-error-trace-exit-idle.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. - patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. - patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. - patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. - patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT Cache calls to pci_find_capability. - patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT 2.6.26-RT just rename call_rcu_bh instead of making it a macro. - patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT 2.6.26-RT WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. - patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. - patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. - patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. - patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT 2.6.26-RT. - patches.rt/disable-run-softirq-from-hardirq-completely.patch: Linux-RT 2.6.26-RT Disable running softirqs from hardirqs completely!. - patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT 2.6.26-RT. - patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: Linux-RT 2.6.26-RT. - patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. - patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT 2.6.26-RT. - patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. - patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT 2.6.26-RT. - patches.rt/export-schedule-on-each-cpu.patch: Linux-RT 2.6.26-RT. - patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT Change bug_on for atomic to pagefault_disabled.. - patches.rt/fix-circular-locking-deadlock.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT call reboot notifier list when doing an emergency reboot. - patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: Linux-RT 2.6.26-RT. - patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. - patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT floppy: suspend/resume fix. - patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT rt: remove call to stop tracer. - patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT ftrace: dont trace markers. - patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT ftrace: define function trace nop. - patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT 2.6.26-RT ftrace: fix the command line printing. - patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT ftrace: record comm on function ctrl change. - patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT ftrace: trace sched.c. - patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: Linux-RT 2.6.26-RT ftrace: avoid lockdep recursion. - patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. - patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT x86: activate HARDIRQS_SW_RESEND. - patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. - patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. - patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: Linux-RT 2.6.26-RT. - patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. - patches.rt/handle-pending-in-simple-irq.patch: Linux-RT 2.6.26-RT handle IRQ_PENDING for simple irq handler. - patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. - patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. - patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT mm: remove kmap_lock. - patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. - patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. - patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT 2.6.26-RT. - patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT 2.6.26-RT. - patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. - patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT genirq: fix simple and fasteoi irq handlers. - patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. - patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. - patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT add rt stats to /proc/stat. - patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: Linux-RT 2.6.26-RT. - patches.rt/latency-measurement-drivers.patch: Linux-RT 2.6.26-RT. - patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. - patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. - patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. - patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT 2.6.26-RT. - patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/lock_list.patch: Linux-RT 2.6.26-RT lock_list - a fine grain locked double linked list. - patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT mm: lock_page_ref. - patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. - patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held lock's subclass. - patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. - patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT lockdep: prettify output. - patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. - patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT lockdep: show held locks when showing a stackdump. - patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT 2.6.26-RT. - patches.rt/lockstat-fix-contention-points.patch: Linux-RT 2.6.26-RT lockstat: fix contention points. - patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT lockstat: warn about disabled lock debugging. - patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. - patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. - patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. - patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT mm/fs: abstract address_space::nrpages. - patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to __raw_spinlock_t. - patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: Linux-RT 2.6.26-RT RT: remove conflicting rtc_lock declaration. - patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT 2.6.26-RT. - patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT 2.6.26-RT RT: remove finish_arch_switch. - patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. - patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT mm: -rt bits for concurrent pagecache. - patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT mm: concurrent pagecache write side. - patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT reduce pagetable-freeing latencies. - patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. - patches.rt/msi-suspend-resume-workaround.patch: Linux-RT 2.6.26-RT. - patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT map tasks to reader locks held. - patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT implement reader limit on read write locks. - patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT map read/write locks back to their readers. - patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT read lock Priority Inheritance implementation. - patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. - patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. - patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT softirq preemption: optimization. - patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT 2.6.26-RT. - patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT nmi-driven profiling for /proc/profile. - patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog by default. - patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. - patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. - patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: Linux-RT 2.6.26-RT local_bh_enable() is safe for irqs_disabled(). - patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. - patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. - patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: Linux-RT 2.6.26-RT. - patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT clean up the page fault disabling logic. - patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. - patches.rt/paravirt-function-pointer-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT introduce pause_on_oops_head/tail boot options. - patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. - patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. - patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. - patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT 2.6.26-RT. - patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT percpu_list. - patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. - patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: Linux-RT 2.6.26-RT. - patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: Linux-RT 2.6.26-RT. - patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT 2.6.26-RT. - patches.rt/ppc32_notrace_init_functions.patch: Linux-RT 2.6.26-RT don't trace early init functions for ppc32. - patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-init-show-enabled-debugs.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-mellanox-driver-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-net-drivers.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT 2.6.26-RT NOHZ: local_softirq_pending with tickless. - patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-tlb-batching.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-prevent-idle-boosting.patch: Linux-RT 2.6.26-RT Premmpt-RT: Preevent boosting of idle task. - patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-sched-i386.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. - patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. - patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. - patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT fix printk in atomic hack. - patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. - patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. - patches.rt/qrcu.patch: Linux-RT 2.6.26-RT QRCU with lockless fastpath. - patches.rt/quicklist-release-before-free-page-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/quicklist-release-before-free-page.patch: Linux-RT 2.6.26-RT. - patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. - patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT radix-tree: concurrent write side support. - patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT debug: optimistic lock histogram. - patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT radix-tree: optimistic locking. - patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. - patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. - patches.rt/rcupreempt-boost-early-init.patch: Linux-RT 2.6.26-RT. - patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT 2.6.26-RT. - patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT relay: fix timer madness. - patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT 2.6.26-RT. - patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. - patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT rt: PI-workqueue: propagate prio for delayed work. - patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT rt: list_splice2. - patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: Linux-RT 2.6.26-RT rt: move update_wall_time back to do timer. - patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT rt-friendly per-cpu pages. - patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT rt: plist_head_splice. - patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. - patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT rt: PI-workqueue support. - patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT rt: PI-workqueue: fix barriers. - patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT rt: PI-workqueue: wait_on_work() fixup. - patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT rt: rename rt_mutex_setprio to task_setprio. - patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT lock debugging: clean up rtmutex-debug.h. - patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. - patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. - patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT rtmutex - remove double xchg. - patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT 2.6.26-RT rwlocks multi downgrade write. - patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT rwlock: fix non PREEMPT_RT case. - patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT implement rwlocks management. - patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT add framework for multi readers on rwsems. - patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT s_files: free_write_pipe() fix. - patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT 2.6.26-RT. - patches.rt/s_files.patch: Linux-RT 2.6.26-RT remove global files_lock. - patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: Linux-RT 2.6.26-RT CFS: enable irqs in fire_sched_in_preempt_notifier. - patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. - patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. - patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. - patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT 2.6.26-RT. - patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT 2.6.26-RT. - patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT 2.6.26-RT. - patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. - patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. - patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. - patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. - patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT 2.6.26-RT. - patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT core: make asm/irq_regs.h available on every platform. - patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT 2.6.26-RT. - patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. - patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. - patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. - patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/trace-add-event-markers-arm.patch: Linux-RT 2.6.26-RT. - patches.rt/trace-events-handle-syscalls.patch: Linux-RT 2.6.26-RT. - patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. - patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). - patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. - patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. - patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. - patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: Linux-RT 2.6.26-RT [AT91: PATCH]: Use edge triggered interrupt handling for AT91-GPIO instead of simple_irq-handler. - patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. - patches.rt/version.patch: Linux-RT 2.6.26-RT add -rt extra-version. - patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: Linux-RT 2.6.26-RT. - patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT 2.6.26-RT x86_64 GTOD: offer scalable vgettimeofday. - patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT event-tracer: add clockevent trace. - patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT ftrace: cpu hotplug fix. - patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup function trace. - patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. - patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT lockdep: add +1 to radix tree array. - patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT rwlock: fix pi_list race conditions. - patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT rwlock: reset prio on unlocks and wakeups. - patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT rwlock: rwlock torture test. - patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT 2.6.26-RT. - patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. - patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. - patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT fix-adaptive-hack.patch. - patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT 2.6.26-RT Fix a previously reverted "fix". - patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: Linux-RT 2.6.26-RT Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. - patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-document-event-tracer.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT ftrace: document updates. - patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. - patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: Linux-RT 2.6.26-RT. - patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT ftrace: only trace preempt off with preempt tracer. - patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT fix-tracer-wreckage-wtf-is-this-code-all-features.patch. - patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: Linux-RT 2.6.26-RT. - patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT 2.6.26-RT. - patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT 2.6.26-RT. - patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT mapping_nrpages-fix.patch. - patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT nfs: fix missing preemption check. - patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT pmtmr: allow command line override of ioport. - patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT powerpc: ftrace stop on crash. - patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: Linux-RT 2.6.26-RT. - patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. - patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT 2.6.26-RT. - patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. - patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT rtmutex-debug-fix.patch. - patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT rt-mutex-namespace.patch. - patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT rt-mutex-cleanup.patch. - patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT 2.6.26-RT rwlock: be more conservative in locking reader_lock_count. - patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT 2.6.26-RT. - patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT rwlock: fix torture test to handle non-rt. - patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT sched-fix-dequeued-race.patch. - patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. - patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT rt: dont disable irqs in usb. - patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: Linux-RT 2.6.26-RT trace-do-not-wakeup-when-irqs-disabled.patch. - patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT ftrace: print ktime values in readable form. - patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt rt.- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid critical temp shutdowns on specific ThinkPad T4x(p) and R40 (https://bugzilla.novell.com/show_bug.cgi?id=333043). - patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: Use ACPI_EXCEPTION instead of printk(KERN_ERR. - patches.suse/acpi_provide_non_windows_osi_boot_param.patch: ACPI: Provide a spec conform OSI interface to the BIOS.- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes.- supported.conf: Mark fuse as supported.- Enable CONFIG_MARKERS- Enable CONFIG_SECURITY_SELINUX- Fix for using relative paths in /usr/src/linux-obj/$arch/ $flavor/Makefile (bnc#409982).- Update config files for S/390.- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO- rpm/kernel-module-subpackage: Removed Supplements handling entirely. Use preamble instead.- patches.xen/xen3-patch-2.6.26: Fix 32-bit build.- Update Xen patches for 2.6.26. - patches.xen/540-blkif-nr-segments-check.patch: Delete. - patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. - patches.xen/xen3-patch-2.6.25.1: Delete. - Update i386 and x86-64 config files. - config.conf: Re-enable Xen configs.- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). - Update x86-64 config files. - patches.suse/raw_device_max_minors_param.diff: Fix uninitialized return value. - patches.apparmor/remove_suid.diff: Also handle fuse. - supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos.- patches.kernel.org/fsl-diu-fb-compile-fix: Delete.- disable unused fsl-diu-fb driver- Updated to 2.6.26-final.- patches.fixes/move-crashkernel-reservation.diff: x86: Move crashkernel reservation before dma32_reserve_bootmem().- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch Fix oops in novfs_daemon_lib_ioctl- Updated squashfs to v3.3. (bnc#373285)- Update config files: Enable raw devices on s390.- patches.suse/raw_device_max_minors_param.diff: Allow setting of number of raw devices as a module parameter (FATE 302178).- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix.- patches.suse/kdb-common: Removed obsolete file_lock_operations printing.- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with - git5.- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656).- Updated to 2.6.26-rc9-git5. - Eliminated 2 patches.- Update config files. - patches.suse/netfilter-ip_conntrack_slp.patch: connection tracking helper for SLP (fate#301134).- enable PHYP-assisted OS dump (fate#304131)- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete.- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: add Gericom Bellagio to nomux blacklist (bnc#404892).- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: add Acer Aspire 1360 to nomux blacklist (bnc#216857).- patches.apparmor/__d_path-keep-connected.diff patches.apparmor/mount-consistent-__d_path.diff patches.suse/kdb-ia64: Edited to apply with --fuzz=0 - Added --fuzz=0 (-F0) to sequence-patch.sh and spec files- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config any more, the new kernel, kexec-tools and makedumpfile is able to extract that information from the running kernel and pass it as ELF NOTE (in /proc/vmcore)- add patches.arch/ppc-ibmebus-modalias.patch autoload ehea and ehca (bnc#394602 - LTC44938)- RT: Update config files - enable CONFIG_CGROUPS- Update config files - enable CPUSETs support: CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET - debug only: CONFIG_CGROUP_DEBUG- Updated to 2.6.26-rc8 - Eliminated 1 patch.- rpm/kernel-module-subpackage: Added Supplements tag copying and added coreutils and grep to Requires - rpm/macros.kernel-source: Added kernel-syms to BuildRequires- enable 64K pages in config ppc64 (fate#304100) - enable up to 1024 cpus in config ppc64 (fate#304180) - enable up to 4 cpus in config kdump - enable powermanagement in config ppc64 - enable cell be cpufreq- supported.conf: Update the list of i2c bus drivers. - i2c-isa is gone. - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will be removed soon, mark as unsupported. - i2c-voodoo3 has very limited usefulness, mark as unsupported. - i2c-powermac is new, mark as supported. - supported.conf: Update the list of i2c chip drivers. - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved to drivers/rtc). - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers exist in drivers/gpio), mark as unsupported. - ds1682, max6875 and tsl2550 are new, mark as supported.- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, both unsupported.) - supported.conf: Mark hwmon and hwmon-vid as supported. These are simple, software-only utility modules, it makes little sense to taint the kernel just because they are loaded.- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and disturbs the order of sound devices- genksyms: add support for checking against a reference ABI.- Updated to 2.6.26-rc6-git5. - Eliminated 2 patches.- Removed kABI reference symbols - Restored make-symsets check for ignoring/tolerating kABI changes.- Update config files (vanilla).- Update config files.- Updated to 2.6.26-rc6-git1. - Eliminated 2 patches.- config.conf: Suppress RT until forward-port is complete- patches.drivers/libata-ata_piix-macbook-fix: Delete.- update ps3 config, disable unused drivers - disable patches.arch/ppc-efika-slowdown.patch- Updated to 2.6.26-rc5-git5. - Eliminated 91 patches. - Disabled OCFS2 userspace heartbeat. - Disabled Xen.Build fix: drop patches merged into 2.6.25.5 - patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. - patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: Delete. - patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. Update to 2.6.25-RT6: - Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST Resolve conflicts: - patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. Add: - patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. - patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks and wakeups. - patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race conditions. - patches.rt/event-trace-hrtimer-trace.patch: event-tracer: add clockevent trace. - patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. - patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw spin lock for wakeup function trace. - patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to radix tree array. - patches.rt/sched-cpupri-hotplug-support.patch: sched: fix cpupri hotplug support. - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix.- rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored.- rpm/kernel-binary.spec.in: only generate symsets for kernels with CONFIG_MODULES=y. - rpm/macros.kernel-source: remove the ps3 specific check: we really want to check whether the kernel mas modules enabled, which is covered by the symsets check already now.- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: USB: don't use reset-resume if drivers don't support it.- comment out patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the series file as it is reported to fail some regression tests.- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: Convert novfs to open soure coding standards.- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore- refresh patches to apply cleanly- Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch - patches.drivers/libata-force-hardreset-if-link-pm - patches.fixes/input-hid-apple-numlock-emulation.patch - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch- patches.drivers/usb-sierra-option.patch: USB: update sierra and option device ids (bnc#374637).- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds for mcp65 (bnc#398573).- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: add retry logic to resume with respect to CTR (bnc#351119).- Update to 2.6.25.5. - fixes CVE-2008-1673- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing i386-rt_debug- patches.xen/xen3-patch-2.6.22, patches.xen/xen3-patch-2.6.23, patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: netfront (bnc#394575) and page table handling (bnc#396858) fixes. - patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical TOCTTOU bug in block backend nr_segments checking. - patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: Remove warning message about 'Breaking affinity for irq'. - patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt in the receive ring for the flipping case.- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() in ata_acpi_detach_device().- Don't clean asm-offsets.h.- patches.apparmor/apparmor-module_interface.diff: AppArmor: Update patch to properly set profile name_table size (bnc#396993)- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list (bnc#345699 bnc#389169)- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix resume of auto-config mode with Realtek codecs (bnc#385473).Backport: e1000e for montevina systems - patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: e1000e: remove no longer used e1000e_read_nvm_spi. - patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: e1000e: remove irq_sem. - patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: e1000e: rename mc_addr_list_update. - patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: e1000e: reorganize PHY and flow control interface. - patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: e1000e: Make arrays out of these Rx/Tx registers. - patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: e1000e: rename a few functions. - patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: e1000e: cleanup several stats issues. - patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. - patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: e1000e: Add support for BM PHYs on ICH9.- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. - patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA HDA-Intel patches from 2.6.26-rc4 (bnc#390473).- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop output (bnc#363987).- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init in use_preallocated_list_if_available (bnc#378095).- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on HP2133 (bnc#388540).- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix inverted Analog/Digital mixer switch on Audigy2 (bnc#396204).RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) - Update config files. Added: - patches.rt/adapt-remove-extra-try-to-lock.patch - patches.rt/adaptive-adjust-pi-wakeup.patch - patches.rt/adaptive-earlybreak-on-steal.patch - patches.rt/adaptive-optimize-rt-lock-wakeup.patch - patches.rt/adaptive-task-oncpu.patch - patches.rt/arm-fix-compile-error-trace-exit-idle.patch - patches.rt/arm-omap-02.patch - patches.rt/arm-omap-03.patch - patches.rt/arm-omap-04.patch - patches.rt/arm-omap-05.patch - patches.rt/fix_vdso_gtod_vsyscall64_2.patch - patches.rt/ftrace-compile-fixes.patch - patches.rt/ftrace-disable-daemon.patch - patches.rt/ftrace-dont-trace-markers.patch - patches.rt/ftrace-fix-header.patch - patches.rt/ftrace-function-record-nop.patch - patches.rt/ftrace-print-missing-cmdline.patch - patches.rt/ftrace-record-comm-on-ctrl.patch - patches.rt/ftrace-safe-traversal-hlist.patch - patches.rt/ftrace-trace-sched.patch - patches.rt/ftrace-update-cnt-stat-fix.patch - patches.rt/git-ignore-module-markers.patch - patches.rt/git-ignore-script-lpp.patch - patches.rt/lockdep-avoid-fork-waring.patch - patches.rt/lockstat-fix-contention-points.patch - patches.rt/lockstat-output.patch - patches.rt/nmi-show-regs-fix.patch - patches.rt/preempt-realtime-ftrace-disable-ftraced.patch - patches.rt/realtime-preempt-warn-about-tracing.patch - patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch - patches.rt/rwlock-implement-downgrade-write.patch - patches.rt/rwlocks-fix-no-preempt-rt.patch - patches.rt/sched-fix-rt-task-wakeup.patch - patches.rt/sched-fix-sched-fair-wakeup.patch - patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch - patches.rt/sched-prioritize-non-migrating-rt-tasks.patch - patches.rt/sched-wake_up_idle_cpu-rt.patch - patches.rt/trace_hist-divzero.patch - patches.rt/trace_hist-latediv.patch - patches.rt/x86-delay-enable-preempt-tglx.patch Removed: - patches.rt/rtmutex-optimize-wakeup.patch - patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch - patches.rt/rtmutex-remove-extra-try.patch - patches.rt/ftrace-remove-print-of-max.patchRT: Update IBM EDAC and PRTM - Update config files. - patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: Add support for HS21XM SMI Remediation to the 2.6.22-based SLERT kernel. - patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: Add support for HS21/LS21 SMI Remediation to the 2.6.22-based SLERT kernel. - patches.rt/drivers-edac-i5000-turn-off-unsupported-check: Turn off unsupported EDAC check on the i5000 controller. - patches.rt/drivers-edac-prevent-potential-printk-storm: Prevent potential EDAC printk storm. - patches.rt/drivers-edac-test_device.patch: edac-2.6.23-to-2.6.22.patch back-port. - patches.rt/drivers-edac-new-k8-rev-f.patch: edac-2.6.23-to-2.6.22.patch back-port. - patches.rt/drivers-edac-add-sysfs_notify-calls.patch: edac-2.6.23-to-2.6.22.patch back-port. - patches.rt/drivers-edac-new-amd64.patch: drivers-edac-new-amd64.patch (revision 108). Obsolete: - patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. - patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. - patches.rt/prevent-potential-EDAC-printk-storm: Delete.- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix macbook ich8m problems (bnc#395407).- Obsolete some KMPs which have been integrated into mainline meanwhile (bnc#357799).- supported.conf: Mark 8250_pnp as supported.- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay devices in dock stations (bnc#390822 bnc#395082).- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: Add i8042.nopnp for Intel D845PESV (bnc#386952).RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: - patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. - patches.rt/multi-reader-account.patch: map tasks to reader locks held. - patches.rt/multi-reader-limit.patch: implement reader limit on read write locks. - patches.rt/multi-reader-lock-account.patch: map read/write locks back to their readers. - patches.rt/multi-reader-pi.patch: read lock Priority Inheritance implementation. - patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 (native_sched_clock() booboo). - patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: - patches.rt/rwlocks-multiple-readers.patch: implement rwlocks management. - patches.rt/rwsems-multiple-readers.patch: add framework for multi readers on rwsems.- add patches.arch/ppc-efika-slowdown.patch slow down hot code paths to avoid hangs during install (bnc#374309)- Update config files: forgot to update vanilla kernel configs- Update config files: disable group scheduler for normal kernels for openSUSE 11.0, too (this should be enabled again later for 11.1 once after the bugs get fixed...)- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position inaccuracy (bnc#362775, bnc#364421). - patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise on VT1708 codec (bnc#390473).RT: Update config files: Disable Group Scheduler- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't be trusted on PMP sil3726 (bnc#393456).RT: update config files: Disable SYSFS_DEPRECATED- patches.drivers/libata-pmp-detection-fixes: libata: fix a number of PMP detection problems (bnc#393456). series.conf not updated. Fix it.- patches.drivers/libata-pmp-detection-fixes: libata: fix a number of PMP detection problems (bnc#393456).RT: build fix - suppress adaptive locking patches that are not upstream. - Update config files.- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if notify handler cannot be installed (bnc#390822).- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue.- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: fix remote-wakeup regression. (bnc#373128)- doc/novell-kmp/novell-example-1.1.tar.bz2, doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild because EXTRA_CFLAGS isn't taken from the environment anymore.- Update config files: SLERT compatibility: SYSFS_DEPRECATEDRT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) Add: - patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time lock support. - patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC for sched_clock() when calibration failed - patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns in tsc_64.c. - patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: x86: distangle user disabled TSC from unstable - patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks lite. - patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double xchg. Update: - patches.rt/rtmutex-rearrange.patch: rearrange rt_spin_lock_slowlock sleeping code. Resolve Conflicts: - patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex lock-stealing to include lateral priority. - Update config files.RT: Adaptive locking patches: - patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex lock-stealing to include lateral priority. - patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for runtime-control of lateral mutex stealing. - patches.rt/rtmutex-rearrange.patch: rearrange rt_spin_lock_slowlock sleeping code. - patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time lock support. - patches.rt/rtmutex-adaptive-timeout.patch: add a timeout mechanism to adaptive-locking. - patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock wakeup. - patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: adjust pi_lock usage in wakeup. - patches.rt/rtmutex-remove-extra-try.patch: remove the extra call to try_to_take_lock. - Update config files: CONFIG_RTLOCK_LATERAL_STEAL=y CONFIG_ADAPTIVE_RTLOCK=y CONFIG_IBM_RTL (disable temporarily to address build error)- Update config files (missing for rt*).- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, bnc#385473). - patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of 8 channel sound. - patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to OSS PHONEOUT mixer map. - patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops with usb-audio reconnection. - patches.drivers/alsa-hda-intel-new-ati-id: Delete. - patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. - patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. - patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. - Update config files.- Update Xen patches to c/s 524 and 2.6.25.4. - patches.xen/xen-balloon-hvm-min: don't allow ballooning down a HVM domain below a reasonable limit (172482). - patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb default size setting.- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: Add missing list terminator for acpi_rsdt_dmi_table[] and move to __initdata.RT: SMI latency fixes from IBM. - patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH 1/3] Add support for HS21/LS21 SMI Remediation. - patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] Add support for HS21XM SMI Remediation . - patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] Prevent potential EDAC printk storm. - RT: Update config files.- patches.suse/nfs4acl-ext3.diff: Fix compilation error when CONFIG_EXT3_FS_NFS4ACL is off.- RT: Update config files.- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: initramfs DSDT override support. - > Did not make it into 2.6.25 again... - Update config files.- Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff.- RT: Update config files.RT: update to 2.6.25.4-rt1 patch queue.RT cleanup: Remove unused/obsolete RT patches.- Update config files: update RT debug configs. - config.conf: enable DEBUG flavors.Linux-RT 2.6.25-RT: - Updated RT patch queue (not individually enumerated here) - Update config files: RT - config.conf: RT- Update config files. - patches.drivers/usb-add-option-hso-driver.patch: USB: add option hso driver.- refresh patches due to fuzz- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: bluetooth: wake up properly after ide timeout expires (bnc#390839).- update patches.fixes/tg3-flowctrl.patch do not compare flow control settings in parallel detect mode- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: Introduce acpi_root_table=rsdt boot param and dmi list to force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). - patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: ACPICA: Add acpi_gbl_force_rsdt variable (http://bugzilla.kernel.org/show_bug.cgi?id=8246). - patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: Remove R40e c-state blacklist (http://bugzilla.kernel.org/show_bug.cgi?id=8246). - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: CPUFREQ: Check against freq changes from the BIOS.- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: return to old errno choice for fix mkdir -p with ro-bind mounts- rpm/kernel-{binary,source}.spec.in: use localversion and set KBUILD_BUILD_VERSION (used for Kernel:Vanilla)- Update to final version of 2.6.25.4- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty - rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: fix release number changes introduced by bnc#271712 for OBS (bnc#378933)- add patches.fixes/tg3-flowctrl.patch revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314)- patches.drivers/appletouch_persist.diff: reset_resume and autosuspend for appletouch touchpads (bnc#388399).- patches.drivers/appletouch_persist.diff: reset_resume and autosuspend for appletouch touchpads (bnc#388399).- patches.drivers/libata-force-hardreset-if-link-pm: libata: force hardreset if link is in powersave mode (bnc#381795). - patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci can't do MSI, blacklist that capability (bnc#384559).- Update config files for vanilla targets- Update to 2.6.25.4-rc1 - lots of bug fixesCleanup RT: - patches.rt/*: Delete.- patches.fixes/input-hid-apple-numlock-emulation.patch: HID: split Numlock emulation quirk from HID_QUIRK_APPLE_HAS_FN. (bnc#381764).- Update to 2.6.25.3 - fixes 2 security issues (one networking, one sparc, no CVE numbers issued just yet)- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file for compatibility with external modules. (bnc#381259)- patches.drivers/open-iscsi-git-update: Delete. - patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes.- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: V4L/DVB (7473): PATCH for various Dibcom based devices (bnc#381632).- comment out vmware patch as it should no longer be needed- rediff patches to apply cleanly.- Update to 2.6.25.3-rc1 - potential fix for increased power consumption and other bugs- Update config file ppc64. - patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that allows you to access the extra ~240MB of DDR video.- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. - fixes CVE-2008-1669- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1.Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. - patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: simple cleanup of truncate.c (fate#303336). - patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: udf: truncate: create function for updating of Allocation Ext Descriptor (fate#303336). - patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: udf: replace all adds to little endians variables with le*_add_cpu (fate#303336). - patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: simplify __udf_read_inode (fate#303336). - patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: udf: replace udf_*_offset macros with functions (fate#303336). - patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: udf: convert udf_count_free_bitmap to use bitmap_weight (fate#303336). - patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: udf: udf_get_block, inode_bmap - remove unneeded checks (fate#303336). - patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: udf: create function for conversion from timestamp to timespec (fate#303336). - patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: udf: convert udf_stamp_to_time to return struct timespec (fate#303336). - patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: udf: convert udf_stamp_to_time and udf_time_to_stamp to use timestamps (fate#303336). - patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill udf_set_blocksize (fate#303336). - patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: udf: remove unneeded kernel_timestamp type (fate#303336). - patches.suse/udf-21-super.c-reorganization.patch: udf: super.c reorganization (fate#303336). - patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: udf: Mark udf_process_sequence() as noinline (fate#303336). - patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: udf: Remove checking of existence of filename in udf_add_entry() (fate#303336). - patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: udf: Remove declarations of arrays of size UDF_NAME_LEN (256 bytes) (fate#303336). - patches.suse/udf-25-fix-anchor-point-detection.patch: udf: fix anchor point detection (fate#303336). - patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: udf: Cleanup volume descriptor sequence processing (fate#303336). - patches.suse/udf-27-Improve-error-recovery-on-mount.patch: udf: Improve error recovery on mount (fate#303336). - patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: udf: Move filling of partition descriptor info into a separate function (fate#303336). - patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: udf: Move processing of virtual partitions (fate#303336). - patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: udf: kill useless file header comments for vfs method implementations (fate#303336). - patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: Cleanup anchor block detection. (fate#303336). - patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: Improve anchor block detection (fate#303336). - patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: udf: Silence warning about accesses beyond end of device (fate#303336). - patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: Fix detection of VAT version (fate#303336). - patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: Allow loading of VAT inode (fate#303336). - patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: udf: Handle VAT packed inside inode properly (fate#303336). - patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: udf: Mount filesystem read-only if it has pseudooverwrite partition (fate#303336). - patches.suse/udf-37-Fix-handling-of-multisession-media.patch: udf: Fix handling of multisession media (fate#303336). - patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: udf: Add read-only support for 2.50 UDF media (fate#303336). - patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: Fix bug in VAT mapping code (fate#303336). - patches.suse/udf-3-move-headers-out-include-linux.patch: udf: move headers out include/linux/ (fate#303336). - patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: udf: Fix compilation warnings when UDF debug is on (fate#303336). - patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: udf: use crc_itu_t from lib instead of udf_crc (fate#303336). - patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline (fate#303336). - patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use DIV_ROUND_UP (fate#303336). - patches.suse/udf-5--udf_error-static.patch: make udf_error() static (fate#303336). - patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: udf_CS0toUTF8 cleanup (fate#303336). - patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix udf_build_ustr (fate#303336). - patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS cleanup (fate#303336). - patches.suse/udf-9-constify-crc.patch: udf: constify crc (fate#303336).- patches.drivers/libata-sata_inic162x-update-to-0.4: sata_inic162x: update to 0.4 (bnc#385599).- update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes- Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums (bnc#190163, bnc#355628).- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify SIDPR access before enabling it (bnc#385535).- novfs: fixes needed due to apparmor vfs core changes (extended attributes probably do not work now...)- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: novfs: Add the Novell filesystem client kernel module. - Update config files.- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: removed fs.h changes, they weren't used.- Update config files. hopefully the build system is happy now- rpm/config-subst: add #!/bin/sh at start of script to keep future build issues (like bnc#382214) from causing problems.Cleanup: Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, RCU, KVM, mcount, PPC-gtod - patches.rt/ep93xx-timer-accuracy.patch: Delete. - patches.rt/ep93xx-clockevents.patch: Delete. - patches.rt/ep93xx-clockevents-fix.patch: Delete. - patches.rt/kvm-fix-preemption-bug.patch: Delete. - patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. - patches.rt/kvm-make-less-noise.patch: Delete. - patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. - patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. - patches.rt/remove-unused-var-warning.patch: Delete. - patches.rt/latency-tracing.patch: Delete. - patches.rt/latency-tracing-remove-trace-array.patch: Delete. - patches.rt/latency-tracer-disable-across-trace-cmdline.patch: Delete. - patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. - patches.rt/latency-tracing-i386.patch: Delete. - patches.rt/latency-tracing-x86_64.patch: Delete. - patches.rt/latency-tracing-ppc.patch: Delete. - patches.rt/latency-tracer-printk-fix.patch: Delete. - patches.rt/latency-tracing-exclude-printk.patch: Delete. - patches.rt/latency-tracing-prctl-api-hack.patch: Delete. - patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. - patches.rt/latency-tracer-one-off-fix.patch: Delete. - patches.rt/smaller-trace.patch: Delete. - patches.rt/trace-name-plus.patch: Delete. - patches.rt/trace-with-caller-addr.patch: Delete. - patches.rt/trace-sti-mwait.patch: Delete. - patches.rt/latency-tracer-optimize-a-bit.patch: Delete. - patches.rt/idle-stop-critical-timing.patch: Delete. - patches.rt/latency-tracer-variable-threshold.patch: Delete. - patches.rt/reset-latency-histogram.patch: Delete. - patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. - patches.rt/random-driver-latency-fix.patch: Delete. - patches.rt/latency-tracing-use-now.patch: Delete. - patches.rt/preempt_max_latency-in-all-modes.patch: Delete. - patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: Delete. - patches.rt/latency-trace-sysctl-config-fix.patch: Delete. - patches.rt/latency-trace-convert-back-to-ms.patch: Delete. - patches.rt/latency-trace-fix.patch: Delete. - patches.rt/trace-cpuidle.patch: Delete. - patches.rt/lockdep-show-held-locks.patch: Delete. - patches.rt/lockdep-lock_set_subclass.patch: Delete. - patches.rt/lockdep-prettify.patch: Delete. - patches.rt/lockdep-more-entries.patch: Delete. - patches.rt/latency-tracer-arch-low-address.patch: Delete. - patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: Delete. - patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. - patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: Delete. - patches.rt/mcount-nmi-notrace-annotations.patch: Delete. - patches.rt/mcount-add-time-notrace-annotations.patch: Delete. - patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. - patches.rt/mcount-preemptcount-notrace-annotations.patch: Delete. - patches.rt/mcount-fault-notrace-annotations.patch: Delete. - patches.rt/mcount-irqs-notrace-annotations.patch: Delete. - patches.rt/mcount-rcu-notrace-annotations.patch: Delete. - patches.rt/latency-measurement-drivers-fix.patch: Delete. - patches.rt/latency-measurement-drivers.patch: Delete. - patches.rt/redo-regparm-option.patch: Delete. - patches.rt/nmi-profiling-base.patch: Delete. - patches.rt/ppc-gtod-notrace-fix.patch: Delete. - patches.rt/ppc-gtod-support.patch: Delete. - patches.rt/ppc-gtod-support-fix.patch: Delete. - patches.rt/ppc-a-2.patch: Delete. - patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. - patches.rt/ppc-remove-broken-vsyscall.patch: Delete. - patches.rt/ppc-read-persistent-clock.patch: Delete. - patches.rt/ppc-clockevents.patch: Delete. - patches.rt/ppc-clockevents-fix.patch: Delete. - patches.rt/ppc-highres-dyntick.patch: Delete. - patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. - patches.rt/inet_hash_bits.patch: Delete. - patches.rt/rcu-1.patch: Delete. - patches.rt/rcu-2.patch: Delete. - patches.rt/rcu-3.patch: Delete. - patches.rt/rcu-4.patch: Delete. - patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. - patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. - patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. - patches.rt/rcu-tasklet-softirq.patch: Delete. - patches.rt/rcu-classic-fixup.patch: Delete. - patches.rt/rcu-warn-underflow.patch: Delete.Cleanup: Remove obsolete Adaptive-locking patches - patches.rt/rtmutex-adaptive-locks.patch: Delete. - patches.rt/rtmutex-adaptive-mutexes.patch: Delete. - patches.rt/rtmutex-adaptive-timeout.patch: Delete. - patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. - patches.rt/rtmutex-lateral-steal.patch: Delete. - patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. - patches.rt/rtmutex-optimize-wakeup.patch: Delete. - patches.rt/rtmutex-rearrange.patch: Delete. - patches.rt/rtmutex-remove-extra-try.patch: Delete. - patches.rt/x86-ticket-lock.patch: Delete.Cleanup: Remove ARM and MIPS RT patches - patches.rt/arm-cmpxchg-support-armv6.patch: Delete. - patches.rt/arm-cmpxchg.patch: Delete. - patches.rt/arm-compile-fix.patch: Delete. - patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. - patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. - patches.rt/arm-latency-tracer-support.patch: Delete. - patches.rt/arm-leds-timer.patch: Delete. - patches.rt/arm-preempt-config.patch: Delete. - patches.rt/arm-trace-preempt-idle.patch: Delete. - patches.rt/latency-tracing-arm.patch: Delete. - patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. - patches.rt/preempt-irqs-arm.patch: Delete. - patches.rt/preempt-realtime-arm-bagde4.patch: Delete. - patches.rt/preempt-realtime-arm-footbridge.patch: Delete. - patches.rt/preempt-realtime-arm-integrator.patch: Delete. - patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. - patches.rt/preempt-realtime-arm-pxa.patch: Delete. - patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: Delete. - patches.rt/preempt-realtime-arm-shark.patch: Delete. - patches.rt/preempt-realtime-arm.patch: Delete. - patches.rt/preempt-irqs-mips.patch: Delete. - patches.rt/preempt-realtime-mips.patch: Delete. - patches.rt/rt-mutex-arm-fix.patch: Delete. - patches.rt/rt-mutex-arm.patch: Delete. - patches.rt/rt-mutex-mips.patch: Delete. - patches.rt/mips-change-raw-spinlock-type.patch: Delete. - patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete.- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309)- update patches.arch/ppc-efika-mpc52xx-ac97.patch create /builtin/sound/cell-index, content == 1- update patches.arch/ppc-efika-modalias.patch add newline to devspec files- update patches.arch/ppc-efika-modalias.patch add devspec file for mac-io, it was created as a side effect in of/platform.c (bnc#374693)- use bzip2 instead of lzma as rpm compression method for vanilla- relax Conflicts for kernel-vanilla no version check for lvm, udev and apparmor- readd patches.arch/ppc-pegasos-console-autodetection.patch force speed 115200, device-tree has no current-speed property- patches.drivers/alsa-hda-intel-new-ati-id, patches.drivers/alsa-hda-intel-use-PCI_DEVICE, patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI ids for new ATI/Nvidia devices (bnc#370775) - patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 outputs- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack tails on quota files (375179).- update patches.arch/ppc-efika-mpc52xx-ac97.patch fixes for 2.6.25- Add compat handler for PTRACE_GETSIGINFO.- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary spec files.- Re-synced reiserfs patch set due to broken local repo.- Updated reiserfs patch set - Eliminated xattr interaction with AppArmor - Eliminated xattr deadlock under load between journal lock and xattr dir i_mutex - Properly annotated xattr i_mutex locking for lockdep - Code cleanup- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change)- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763.- refresh patches to apply without fuzz- Update to 2.6.25-final- Update to AppArmor 2.3 patch series- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental passing of -ENODATA to userspace during chown, and messages during chown and delete.- Update Xen patches to 2.6.25-rc9 and c/s 517.- refresh patches to clean up fuzz- Update config files.- updat to 2.6.25-rc9- update to 2.6.25-rc8-git8- update to 2.6.25-rc8-git7- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: pvrusb2: fix broken build due to patch order dependency.- update to 2.6.25-rc8-git5- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct file use entirely.- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use of vfsmount-less dentry_open().- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: disable ATAPI DMA (332588).- Update to 2.6.25-rc8- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires- supported.conf: Add new hwmon drivers, all unsupported.- Fixed up the rest of the reiserfs patch queue.- Updated reiserfs xattr patches.- fix merge error in patches.suse/supported-flag caused by me...- update to 2.6.25-rc7-git2- update to 2.6.25-rc7 - note that reiserfs xattr patches are now disabled due to merge issues...- patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534).- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree.- update to 2.6.25-rc6-git5 - refresh patches to apply cleanly- update to 2.6.25-rc6-git4 - refresh patches to apply cleanly- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. For generating the source timestamp, use HEAD as the branch name. - rpm/get_release_number.sh.in: Don't try to synchronize release numbers with kernel-dummy if the release number has been specified explicitly (tar-up with --release-string, --timestamp, or --source-timestamp).- remove patches.kernel.org/powerpc-needs-uboot not needed without mpc51xx support- disable gianfar network driver and unused freescale drivers- patch refreshes due to version update- Update to 2.6.25-rc6-git3 - Update config files.- Update to 2.6.25-rc6 - which deleted the following patches: - patches.fixes/hibernation-snapshot-numa-workaround.patch - patches.fixes/acpi-fix-double-log-level.patch - patches.fixes/acpi_fix_mem_corruption.patch - patches.kernel.org/patch-2.6.25-rc5 - patches.kernel.org/patch-2.6.25-rc5-git3 - Update config files. - delete patches.arch/x86-nvidia-timer-quirk as it is not being used.- remove patches.arch/ppc-efika-ipic.patch disable mpc51xx support instead- rpm/kernel-binary.spec.in: Changed to just match %ix86- add patches.arch/ppc-efika-ipic.patch fix a crash in init_ipic_sysfs on efika- post.sh: Fix a syntax error when creating the initrd.- patches.xen/xen-quicklist.patch: Delete. - Update i386 Xen config file. - patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. - patches.xen/xen3-auto-xen-kconfig.diff, patches.xen/xen3-fixup-kconfig, patches.xen/xen3-patch-2.6.19, patches.xen/xen3-patch-2.6.20, patches.xen/xen3-patch-2.6.21, patches.xen/xen3-patch-2.6.22, patches.xen/xen3-patch-2.6.23, patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25-rc5, patches.xen/xen-x86-no-lapic, patches.xen/xen-x86-panic-no-reboot: Various adjustments.- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit kernels and 64-bit glibc to avoid installing a 32-bit kernel with 64-bit userspace. (364433, et al)- scripts/tar-up.sh: Added --kbuild option to autogenerate release number based on branch and timestamp.- patches.apparmor/export-security_inode_permission-for-aufs: LSM: Export security_inode_permission for aufs (356902).- Boot loader: do the same during initial installation as when updating a kernel package (FATE 302660).- Update to 2.6.25-rc5-git3- disable unuses pata platform and ibm newemac driver on powerpc- add patches.xen/xen-quicklist.patch fix kernel-xen compile, readd CONFIG_QUICKLIST for xen- remove alpha configs as they are no longer used- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled after the next openSUSE alpha release. It is being enabled for now to let some kmp packages still work while their maintainers are working to update them with the 2.6.25 kernel changes.- refresh patches to apply cleanly- update to 2.6.25-rc5-git2- patches.arch/ppc-ps3-rename-wireless-interface.patch: rename ps3 wireless interface from eth? to wlan? for better handling in udev- Update Xen patches to 2.6.25-rc5 and c/s 471. - patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: Delete. - patches.xen/xen3-aslr-pie-executable-randomization.patch: Delete. - patches.xen/xen3-early-firewire.diff: Delete. - Update x86 config files. - config.conf: Re-enable Xen configs.- add usb persist for storage devices across suspend to ram. This is going to be in 2.6.26, just missed the .25 merge window.- Update to 2.6.26-rc5-git1 - Update config files.- update to 2.6.25-rc5- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding the release number with --release-string or --timestamp.- patches.fixes/hibernation-snapshot-numa-workaround.patch: swsusp: workaround for crash on NUMA (kernel.org#9966).- Encode the EXTRAVERSION part of kernel release numbers in the RPM release instead of in the version. This resolves the problem that kernel releases like 2.6.25-rc4 would result in a package with a higher version than 2.6.25 according to RPM's versioning scheme (bug 271712).- Update kdb patches.- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem corruption (350017). - patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user about a BIOS bug in asus boards (350017).- Update s390 config files.- update to 2.6.24-rc5-git1- enable CONFIG_GROUP_SCHED- enable CONFIG_HIGH_RES_TIMERS on i386- enable CONFIG_USB_PERSIST for vanilla config files- refresh patches to apply cleanly with no fuzz - enable CONFIG_USB_PERSIST so that users can enable this if they want- update the vanilla config files for CONFIG_DEBUG_RODATA- enable CONFIG_DEBUG_RODATA (Not really a debug option, something we need in all of our kernels.)- Update vanilla config files.- patches.fixes/parport-mutex, patches.suse/stack-unwind: Fix merge mistakes. - Update i386 config files.- Update tree to 2.6.25-rc4- add patches.fixes/fat_detect_media_wo_parttable.patch and patches.fixes/fat_valid_media.patch: detect FAT formated medias without partition table correctly (bnc 364365)- add patches.kernel.org/s390-defkeymap.patch Build fix for drivers/s390/char/defkeymap.c- enable ext2/3 acl support in ps3 kernel- Update to 2.6.25-rc3-git5- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld- rpm/kernel-binary.spec.in: Require udev >= 118.- patches.arch/x86-nvidia-timer-quirk: Delete. PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327)- add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function- add patches.arch/ppc-pci-bogus-resources.patch fix bogus test for unassigned resources- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage - update patches.kernel.org/powerpc-needs-uboot disable mkimage call in arch/powerpc/boot/wrapper- update patches.kernel.org/fixed-phy-select add dependency on libphy=y- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level.- patches.fixes/acpi_force-fan-active.patch: Delete.- remove obsolete adaptive-locks patches patches.rt/rtmutex-adaptive-locks.patch: Delete. patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. patches.rt/rtmutex-optimize-wakeup.patch: Delete. patches.rt/rtmutex-rearrange.patch: Delete. patches.rt/rtmutex-remove-extra-try.patch: Delete. patches.rt/rtmutex-adaptive-mutexes.patch: Delete. patches.rt/rtmutex-adaptive-timeout.patch: Delete. patches.rt/rtmutex-lateral-steal.patch: Delete. patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete.- remove patches included upstream patches.arch/ppc-ps3-gelic-cleanup.patch patches.arch/ppc-ps3-gelic-endianness.patch patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch patches.arch/ppc-ps3-gelic-fix-fallback.diff patches.arch/ppc-ps3-gelic-multiple-interface.patch patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch patches.arch/ppc-ps3-gelic-wireless-v2.patch- Update config files: Disabled CONFIG_INPUT_YEALINK per an old request from AJ.- Update to 2.6.25-rc3.- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. - patches.rt/0002-sched-track-highest-prio-task-queued.patch: Delete. - patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. - patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. - patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: Delete. - patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: Delete. - patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: Delete. - patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. - patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: Delete. - patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: Delete. - patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: Delete. - patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: Delete. - patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: Delete. - patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. - patches.rt/0015-sched-wake-balance-fixes.patch: Delete. - patches.rt/0016-sched-RT-balance-avoid-overloading.patch: Delete. - patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: Delete. - patches.rt/0018-sched-RT-balance-optimize.patch: Delete. - patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: Delete. - patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. - patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: Delete. - patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: Delete. - patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: Delete. - patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. - patches.rt/0025-sched-remove-rt_overload.patch: Delete. - patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. - patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. - patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: Delete. - patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. - patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: Delete. - patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: Delete. - patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: Delete. - patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: Delete. - patches.rt/0034-sched-style-cleanup-2.patch: Delete. - patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: Delete. - patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. - patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: Delete. - patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: Delete. - patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: Delete. - patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: Delete. - patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: Delete. - patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: Delete. - patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: Delete. - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1- patches.kernel.org/libertas-section-conflict: libertas: fix section conflict.- Enabled patches.kernel.org/ps3-lpm-include- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler build fix.- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix.- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires FIXED_PHY. - patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 with correct config option.- Build fixes for ia64 and i386.- Update to 2.6.25-rc2-git6. - Removed: - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. - patches.arch/acpi_autoload_bay.patch: Delete. - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: Delete. - patches.arch/export-acpi_check_resource_conflict.patch: Delete. - patches.drivers/early-firewire.diff: Delete. - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: Delete. - patches.drivers/libata-implement-force-parameter: Delete. - patches.drivers/igb-1.0.8-k2: Delete. - patches.drivers/always-announce-new-usb-devices.patch: Delete. - patches.drivers/nozomi.patch: Delete. - patches.drivers/libata-quirk_amd_ide_mode: Delete. - patches.fixes/acpi_autoload_baydock.patch: Delete. - patches.fixes/bluetooth_hci_dev_put.patch: Delete. - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. - patches.fixes/libiscsi-missing-semicolon.diff: Delete. - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. - patches.kernel.org/patch-2.6.24.1: Delete. - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. - patches.suse/squashfs.patch.fixup: Delete. - patches.suse/aslr-pie-executable-randomization.patch: Delete. - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. - Xen and RT currently disabled. - SquashFS may not work.- scripts/embargo-filter: fixed and renabled check- embargoed-patches: eliminate embargoed patches abuse.- scripts/embargo-filter: Disable check for non-existant patches.- Update kdb patches.- config/i386/xenpae: Rename to config/i386/xen. - config.conf: Delete i386/xenpae.- Update config files: update RT options for adaptive RT locks- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. - patches.rt/rtmutex-adaptive-timeout.patch: cleanup. - patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for runtime-control of lateral mutex stealing.- Update Xen patches to c/s 425. - patches.xen/sfc-network-driver: Solarflare: Standard network driver (disabled until status clarified). - patches.xen/sfc-resource-driver: Solarflare: Resource driver (disabled until status clarified). - Update Xen config files.- adaptive-locking v20- adaptive-locking v19- Update config files for dmraid45.- rpm/kernel-binary.spec.in: add PAGESIZE detection for makedumpfile.config from the .config file also for PPC64- patches.fixes/bluetooth_hci_dev_put.patch, patches.fixes/bluetooth_hci_conn_childs.patch, patches.fixes/bluetooth_hci_unregister_sysfs.patch: fix kernel crash after removing bluetooth adapter (bnc 359546)- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module.- Update to latest patch set: - patches.rt/rearrange_rtspinlock_sleep: [PATCH 02/10] rearrange rtspinlock sleep - patches.rt/optimize_rtspinlock_wakeup: [PATCH 03/10] optimize rtspinlock wakeup - patches.rt/adaptive_RT_spinlock_support: [PATCH 04/10] Adaptive RT spinlock support - patches.rt/add_timeout_mechanism: [PATCH 05/10] add a loop counter based timeoutmechanism - patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes - patches.rt/adjust_pi_lock_usage_in_wakeup: [PATCH 07/10] Adjust pi_lock usage in wakeup - patches.rt/optimize_printk_fastpath: [PATCH 08/10] optimize the !printk fastpath throughthe lock acquisition - patches.rt/remove_extra_call_try_to_take_lock: [PATCH 09/10] remove the extra call to try_to_take_lock - patches.rt/lateral_lock_steal: [PATCH 10/10] allow rt-mutex lock-stealing toinclude lateral priority- embargoed-patches: (embargo development RT throughput patches) - Update config files (RT config options) - patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock wakeup. - patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock support. - patches.rt/add_timeout_mechanism: add a loop counter based timeout mechanism - patches.rt/adaptive_mutexes: adaptive mutexes - patches.rt/adjust_pi_lock_usage_in_wakeup: Adjust pi_lock usage in wakeup - patches.rt/optimize_printk_fastpath: optimize the !printk fastpath through the lockacquisition - patches.rt/remove_extra_call_try_to_take_lock: remove the extra call to try_to_take_lock - patches.rt/lateral_lock_steal: allow rt-mutex lock-stealing to include lateralpriority - patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep- Removed unused OCFS2 patches.- Removed old commented out ocfs2 patchset.- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124).- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict.- Update config files.- Merged and re-enabled OCFS2 userspace clustering- config/*: Don't build i2c algorithm drivers that we do not use. - supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship them.Build fix for section mismatch check. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610).- patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610).- Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated - lots of other bugfixes - removed patches.fixes/bootstrap-memoryless-node.patch as it is now contained within.- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed with current binutils any more- patches.drivers/igb-2007-12-11: Delete. - patches.drivers/igb-1.0.8-k2: Update to latest version which is also upstream now in the 2.6.25 tree.- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete and doesn't do anything anymore.- patches.xen/xen3-auto-common.diff, patches.xen/xen3-patch-2.6.23: fix merge mistake.- Update config files: disabled CONFIG_BCM43XX.- patches.apparmor/vfs-mkdir.diff: Added missing case in kernel/cgroup.c- updated patches.drivers/nozomi.patch: mainline info- Update config files: RT@1KHz, sched groups & cpusets enabled.- enable bnx2 on ppc64 (bnc 359114 - LTC42106)- remove unused lockd patches: - patches.suse/lockd-switchable-statd - patches.suse/lockd-kernel-statd - patches.suse/lockd-suse-config - patches.suse/lockd-max-hosts-dynamic- patches.suse/usb_printer_no_auto.diff: Delete. Obsoleted by mainline change- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547)- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas IRQ to non-threaded IRQ. - patches.rt/version.patch: Delete (unused).- patches.fixes/mac80211-fix-hw-scan1.patch, patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware scan rework (bnc#307050).- Remove a legacy tweak carried over from the 10.3 Kernel, enable the affinity load-balancing sysctl.- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks for x86 (RT). - patches.rt/rt-mutex-i386.patch: Resolve conflicts.- really skip kernel-ps3 in suse_kernel_module_package rpm macro- Update Xen patches to 2.6.24 final and c/s 399. - patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: make tsc disabling optional (191123).- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). - patches.rt/series: Delete (unused).- update patches.arch/ppc-efika-modalias.patch use struct device_attribute to fix oops on boot- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT)- patches.rt/rcu-new-1.patch: Updated context against 2.6.24.- add patches.fixes/bootstrap-memoryless-node.patch slab: fix bootstrap on memoryless node- refresh allmost all patches to apply cleanly and have a proper diffstat (except for the xen patches, they were left alone...)- Update to 2.6.24- always skip kernel-ps3 in suse_kernel_module_package rpm macro- Update config files: set SYSFS_DEPRECATED for reverse compatibility with SLERT- update patches.arch/ppc-efika-modalias.patch simplify patch- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 merge (347712).- add defconfig for ps3 kernel - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh- Update config files (RT)- Linux-RT 2.6.24-rc8-rt1- add patches.arch/ppc-pegasos-pata_via-fixup.patch call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage- Remove unused config/s390/rt.- patches.rt/irq-flags-unsigned-long.patch: Delete.- Update to 2.6.24-rc8-git2.- Enabled 2.6.24-rc8-git1.- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch is not correct, there exist two cards with different chipsets but the same USB ID.- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove duplicate USB ID (350956).- sync powerpc vanilla with default .config to enable libata- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch provide module alias platform:mv643xx_eth- Update to 2.6.24-rc8-git1.- Update to 2.6.24-rc8.- Update to 2.6.24-rc7-git5.- Update to 2.6.24-rc7-git3.- Update Xen patches to c/s 372 and 2.6.24-rc7. - patches.xen/xen3-aux-at_vector_size.patch: Delete. - Update Xen config files.- update patches.arch/ppc-efika-ethernet-phy.patch move Forth code to fixup_device_tree_efika- Fix debug package build.- Update config files. CONFIG_USB_SUSPEND default- Update kdb patches.- patches.suse/stack-unwind: Another try...- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990)- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build.- patches.suse/stack-unwind: DWARF2 EH-frame based stack unwinding. - patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack unwinding. - Update config files.- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies to i386, and updated config files.- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: make tsc disabling optional (191123).- add patches.arch/ppc-efika-ethernet-phy.patch drop patches.arch/ppc-efika-bestcomm-ethernet.patch provide phy-handle property for fec_mpc52xx (347234)- patches.drivers/libata-force-cable-type: libata: implement libata.force_cbl parameter (337610).- Update to 2.6.24-rc7.- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable ADMA by default (346508).Bug 347708. port_info for vmw was being assigned to the wrong index. - patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: ignore ATA_DMA_ERR on vmware ich4 (258256).As the rest of kernel has caught up now, this one is no longer necessary. - patches.drivers/libata-fix-up-build-after-upstream-update.patch: Delete.- patches.drivers/libata-fix-up-build-after-upstream-update.patch: Delete. - patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: ignore ATA_DMA_ERR on vmware ich4 (258256).- Update config files for -vanilla.- patches.rt/timer-freq-tweaks.patch: Adjusted context.- Update config files.- Update to 2.6.24-rc6-git11.- rpm/kernel-binary.spec.in: Copy debug sources to a proper location.- Update to 2.6.24-rc6-git7.- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove all the other configs from config.conf first./bin/sh/bin/sh/bin/sh/bin/shbuild37 1286530277 v }  8 D x Ɋ ɋddddGI&# \g!!!  fj ɪ ɫ H ɮ ɱ ɩ G ɬ ɭ 9   ; <2.6.31.14-0.22.6.31.14-0.2.12.6.31.14-0.2.1      !"!#!$!%!&!''!((((!)***)+!,-,. /0/12222System.map-2.6.31.14-0.2-xenconfig-2.6.31.14-0.2-xeninitrd-2.6.31.14-0.2-kdumpinitrd-2.6.31.14-0.2-xeninitrd-xensymvers-2.6.31.14-0.2-xen.gzvmlinuz-2.6.31.14-0.2-xenvmlinuz-xen2.6.31.14-0.2-xen3com3C359.bintyphoon.binacenictg1.bintg2.binadaptecstarfire_rx.binstarfire_tx.binadvansys3550.bin38C0800.bin38C1600.binmcode.binatmsar11.fwav7110bootcode.binbnx2bnx2-mips-06-4.6.16.fwbnx2-mips-09-4.6.17.fwbnx2-rv2p-06-4.6.16.fwbnx2-rv2p-09-4.6.15.fwbnx2x-e1-4.8.53.0.fwbnx2x-e1h-4.8.53.0.fwcis3CCFEM556.cis3CXEM556.cisLA-PCM.ciscpia2stv0672_vp4.bincxgb3t3b_psram-1.1.0.bint3c_psram-1.1.0.bint3fw-7.4.0.bindabusbbitstream.binfirmware.fwe100d101m_ucode.bind101s_ucode.bind102e_ucode.binedgeportboot.fwboot2.fwdown.fwdown2.fwdown3.binemi26bitstream.fwfirmware.fwloader.fwemi62bitstream.fwloader.fwmidi.fwspdif.fwessmaestro3_assp_kernel.fwmaestro3_assp_minisrc.fwintelliport2.binkawethnew_code.binnew_code_fix.bintrigger_code.bintrigger_code_fix.binkeyspan_pdakeyspan_pda.fwxircom_pgs.fwkorgk1212.dspmts_cdma.fwmts_edge.fwmts_gsm.fwositechXilinx7OD.binqlogic1040.bin12160.bin1280.binsuncassini.bintehutibdx.binti_3410.fwti_5052.fwtigontg3.bintg3_tso.bintg3_tso5.binttusb-budgetdspbootcode.binvicamfirmware.fwwhiteheat.fwwhiteheat_loader.fwyam1200.bin9600.binyamahads1_ctrl.fwds1_dsp.fwds1e_ctrl.fw2.6.31.14-0.2-xenkerneldriversataata_piix.koblockloop.kocdromcdrom.kofirmwareedd.komddm-mod.konet8390.kone2k-pci.koscsiBusLogic.kosg.kosr_mod.kost.kousbhostehci-hcd.koohci-hcd.kouhci-hcd.kostorageusb-storage.koxenblkfrontxenblk.konetfrontxennet.konetipv6ipv6.kopacketaf_packet.komodules.aliasmodules.alias.binmodules.builtinmodules.builtin.binmodules.depmodules.dep.binmodules.ordermodules.symbolsmodules.symbols.binvdsovdso.sovdso32-int80.sovdso32-syscall.sovdso32-sysenter.so/boot//lib/firmware//lib/firmware/2.6.31.14-0.2-xen//lib/firmware/2.6.31.14-0.2-xen/3com//lib/firmware/2.6.31.14-0.2-xen/acenic//lib/firmware/2.6.31.14-0.2-xen/adaptec//lib/firmware/2.6.31.14-0.2-xen/advansys//lib/firmware/2.6.31.14-0.2-xen/av7110//lib/firmware/2.6.31.14-0.2-xen/bnx2//lib/firmware/2.6.31.14-0.2-xen/cis//lib/firmware/2.6.31.14-0.2-xen/cpia2//lib/firmware/2.6.31.14-0.2-xen/cxgb3//lib/firmware/2.6.31.14-0.2-xen/dabusb//lib/firmware/2.6.31.14-0.2-xen/e100//lib/firmware/2.6.31.14-0.2-xen/edgeport//lib/firmware/2.6.31.14-0.2-xen/emi26//lib/firmware/2.6.31.14-0.2-xen/emi62//lib/firmware/2.6.31.14-0.2-xen/ess//lib/firmware/2.6.31.14-0.2-xen/kaweth//lib/firmware/2.6.31.14-0.2-xen/keyspan_pda//lib/firmware/2.6.31.14-0.2-xen/korg//lib/firmware/2.6.31.14-0.2-xen/ositech//lib/firmware/2.6.31.14-0.2-xen/qlogic//lib/firmware/2.6.31.14-0.2-xen/sun//lib/firmware/2.6.31.14-0.2-xen/tehuti//lib/firmware/2.6.31.14-0.2-xen/tigon//lib/firmware/2.6.31.14-0.2-xen/ttusb-budget//lib/firmware/2.6.31.14-0.2-xen/vicam//lib/firmware/2.6.31.14-0.2-xen/yam//lib/firmware/2.6.31.14-0.2-xen/yamaha//lib/modules//lib/modules/2.6.31.14-0.2-xen//lib/modules/2.6.31.14-0.2-xen/kernel//lib/modules/2.6.31.14-0.2-xen/kernel/drivers//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/ata//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/block//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/cdrom//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/firmware//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/md//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/net//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/scsi//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/usb//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/usb/host//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/usb/storage//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/xen//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/xen/blkfront//lib/modules/2.6.31.14-0.2-xen/kernel/drivers/xen/netfront//lib/modules/2.6.31.14-0.2-xen/kernel/net//lib/modules/2.6.31.14-0.2-xen/kernel/net/ipv6//lib/modules/2.6.31.14-0.2-xen/kernel/net/packet//lib/modules/2.6.31.14-0.2-xen/vdso/-fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:11.2:Update:Test/standard/7ebdd44278fa497c6fb6010182ceee0f-kernel-xencpiolzma2x86_64-suse-linux}}k0r ?0] b2t1],v[bMRMwtȵ<ABT"] rz[N?I6DLS/Y$a1 ^I(Ą=S0 b}1QFU^؟25U $Q8FWt!4@:R]l/ ă}4ì{ bgJium%"wLZ9BZDiD2W>)8&aJl=[x*1 y؟<]aZmBzB.1v1&7 6 '?32Gqտ92pqb͎1k^E1./6JPXӕ2Zܾǔ`ܞvMs)}*#ŇCҾjM{4Y]4^[MnzRǖ,\lҭn{2[:Egu_qvvgN?|Ak 4H.ۈ3sg3FϿ\q,J{$ί/5S2Ş|W`i]H{#̚3}pz,S,v7F 7O8B,ؕIblrBsqU!r qv3Im8t+?J J7Q^z\'y( 6epʬIh %M*q3a5Z67Z%qPKh59猀6Uv ޟ}MS'O o ߱ ox|aﭥ(`g3r)Y" [Zmyba.W(y砀7rF6B] )Z? pO2F*Pg3F]*&9I;G`do9_B ~r;!W}b6wTKr IKx \ʱ/hT (-I^X#zclǠlw!2묻,t92 `, IaĂ @_@z5Uyߝ ;7vЁ'jaԖNG U8]v4UxMƭ0y&2(q9G:_F^E.eLz$=zyQ,ҮQ*ϑl?F Έ+mЂo:Qqߔ-ǿЏU;vO@tSL¥3$ L܁est41v{m}iC5(;RwdiSFIkܗx#^|/ߏeA2OjY?+ Ͼ*':!i^D)G)"LF?x U^y+-ig3x W11 a$p4\+3_0uJZKƓ 5>#Μ_SiXWIk] 7a,Z'PCUR ]w=IP`,[ZFMr94nfvx6#ٵtbXg " .qtm Kxcl=~:+n5eDGTgkҶrָ3: Հ=pr(L5m"O\`pELD ū/y}$o NIND&?!Y7& [@dW$BgFe"9ϧ㝮7}߾/G~;Al-XzX9 <"Tf%Ug_JpSwE#Z5.^Ū.V7~ 6bl%py8J fM |pNy6Q.; px-Yh@-Q{8jAPtM>50"@a~u#&k) \ڇ!h=eE2EHZM+fS?V)Pp]B^JgzE*Sxuv4&C"o˯lznx}V!C>$% 59q db劤Fsʢvo+`kx,KL_My:8:L ɪO4gO534iq!g]ՙ!Ԗ3Xti5&g A], R>yDh$zJJ31w[(Х1#Zs(0zj (s #½Yo,x syƀXDvd# ]BjKa5{UP&Hiq<~[VtKU(nD}k;fPӉܾ~WE`WEwF>:PZs s 5D5K܊<,r(+)< h{'0:3-z:3htU.hA2Lq >PP9u$ƝM~;h6w` ;|Bn3 PtmLQǹ'K;l:baҰ'Oc-ti]hlsB2(;7NY'Ő\~ߖ~U2zrGVeqZlFS8X٩ 4:Ö/#08nVL0>k[ItYD`i3R)Ԛxu4 irz[r2wmh哬d⯖=ЫwMGipzm8o eN iXL&WAuyxL !}'k\ye.fPOɅ 9yML˿8 bo{4 }C쬪N(@9J䔡2{%f #6.nNmC+gOfM?EЉ}e1ӱ|i Tt )KǮ^4s55!RB8 Iy斞oNk.dJvjK!ƿz񋂺t ]^Tekuvh1w-3ƶ +S +gtҷ Tq bJ7r)™!ip6 Vέ1FٔIo{шmim3?|;8/Qg,|I'9Hvl!ڑ/DV$,li7.X ~ G"VPY}2]Ǯ~LGsSzc[t!l^ `mSot;6}ҿ/iFcڽfēOBVeˢs!@IS"G|I-6j2Ku`(QT+g՜37Ia_9>+Vv$u!'JAQ]Wzodp4@&OW. §yv QP~@U~1F"Ѵ@zL t1cJkmib[ ӱAɮDEW4Mq#c I0 9x8q$gPnDm-ź'͗ Yօ{ n_ '1O鈿gMԐ 3/B=/oѻ)hzikPDxhgX˦.KnqsLgi8 Ck4EkGp)iO/jK8Tl)JVEYGOT£3&}&ȷ_ m‘S1eb+ Y3vu}ɉdG5Yi-R͌pLJ)Ҿ뚬_5Gi|CS?\{qj8ߔWٯIH`eOF^#h*Rŝuv+Jȏ%rlDQO@҂dӄ!_^Z!݄p %dhp +8<ёfq#r7(n(n=P`qTZNebCLq̐u< ; %RϹLE^6%[ew 媷p*±^’@㕬rf #B|  1T>(PE6g229n~D\Nl&^j>~787pqHk"Hߓf1W,]piHF?CtwާݒYBi–Gy>SjAdúK ޶+)&xs}a,$k' 2V?;vFlH^:4]+9jEPQeV*3>FI7}>_깑XT!ODʎxaIMHAWþTط>8Y )xMH:*X `uMJL3 J@hghqʳ]$%hta|@ 5,2MhaEEҰէܨ+N Y8!w«d6@F! ֕pFn{0k r2YuQn5q%C%Ru2Q%tv"%V/B +'J4!4ͿSD.@Ydׇޱ5:;h.h5Ċ;o"?םe_HYr>Q 24e 5N+ugIDBtE|Nc%*b쨗νG6}FVU![8H9Fr =l ; ᰺W] HS͇g5o3wKӇw^rPVް/݇*2gkE0QAтa-27C>T?٤yS6_WDRp9Ƽځх2x†Ri&Cn.dFb5V4 +5LN+*k8k~ʄ dEX$?MdZ(I#O{gTS^iD8p ~ =;d61]yyȍKR܌ԙ\J {ir!Nv&tu DOd;=ĶBi5ٵ/7KoTrӵʁg.m|,܉@#5-ݨ1R -=j{5EMT%ă-:Dhw%jk:G)'v0p,=0x,]9Q3\_ju#݄[2y ˿DXpS / +aI`3Ě<+کϔ{_^Y<鿳[ślڍ ;Ǚz"A ={ȲovvN@_kn}91?eKn+_ܕP+"/R Jр}nSokR<I嬨2|đN] 1gVI@c泪?Sa4 @b'S\nbDh9eG׺;D OZ?́Oh26dBl&:knv'hwު!4ά{,cr?}g?6=0g2ۊz V 7s]7sӞnBd?,:TU](E MVZdÛ_$%Z w:=ZUҘ|_iJT{<҄reW(\;"f:R Gu$9tB1-"|Q@Tdo|y}!w$@XT[bhZ#PDžV`zSyiԡM%!],ࢬ2jt$n  ׾{η7 z- JGPv؏fsx[r,n$? g™n6*.ej&g2v9@L/`Yd"a%gg-hRSO*doMVצ\% c{]oQ(',`NndLYSNQȒYMUr?{$ufO!Q&y2APk{&ޙd6mƫ1Ao̗"~Zafg@#[0d{6Fu*t6ޛ3E<8ަ5wIIYnd=7ѫ -I}\VI>D9~3t̀=>[NzH|.2Q~?R.U!V\PѰ7 DIp:P aWJVNqΥȤM }^7A2ƅyD1,9PfD?VϟKUFy\-_Ya =QMK'Ψ|ĐUMmgz_k+J]҉*qZ(D{ }(d:jo4ܭ҃`⠥>UJ"3[;T>'˜~O'Xo9_M,v+xg8?IMdyqT9"+dA]*=pBx{y%]aʇ1a;t=D(P%OfͥGD85:j(:b+æE>iLZ`3D\d1r7,R٭Q@At枢vZF݇Whgn (MQ ir\HK8AvġUqCG @zqXe|JVWB7&6`(XzgޔcmUJՄѥ^%~{ 8cf"xYSY2B&Khj=Rl&N5*RxI/ ]Z+dJQ p=Guh!ٷZ\ȶԼe5`7ULJ܃ !H".z9 $<-X n xE5vzߠ'|Ê`%V_m,bòb `,H?`GAGͯ>e\gʓZMfӟZS{P 8%ɌOsPR=evX(Y/͉ #;5ΌI_k!iqU/shL-cۗg}5 A_(Q)cKt2ीGK rɡ{PA(jma=+(w}i<,PUAF G*e  ù׌}up\27) pݾ86oMi5b/ qXOw {!Lw M^958=x:P4Xq x"C5!3\1+#=O˱w4wm],Ƴ3VNz[3?&W.Xo QU }Ngmw &!{} HLhB(MSi\~غζjؕϘ/g|S4qu[1]BQW$͋`tDo4x2 Wv`iDT=dpIo@O a.}'^gy1ͦx n5!s4 f)W}vӉm#2[aVndyI2s_&EV8K~W!Ixl&37l7 hj@)*35-?|w)UliqK%Nw|XCdX%T/cVa^  Fs n9$3U ApZ@sJ PD2'Tpֶ.eRV)~(:!Z^8g)]  != 4W)z}s!P “cԐ F81,HCk }X3 [ uc~x@i80[RHa)BzU-OdwXh0f{z J߂tK%Pn`TޓlF]64=JLk ,lU"Z}]h89:cm,rc gy ūFaH`3O'{M]^)C!od>S\)Fa1ks_ۯ`no(Fז[P LZ[DQtdmLϯ&*[ޅbXſiQ| "etڍ/u~'Τݲ,XTɣȟaz~yDww:l6)oLo?EXDu_!>+2$6F}x&ErZg+$`.~M]Ǜ~9[]%]eV'sJ᧰vYǭ^k; ^tCư Hgepai@B`Yc҅*;^wǁ\%v(\N_>v>a?dvqJN$K%Uu?zMKa `G΅717/6ӂI~֟ |plyf ˄hԘc2ǟN|0GNDŽRU~f2w6T#H_wbV"‰򕌯ً/6pOc`=$ eKq%%̲-WPvo>)ᐜ79o3c}cJmL$=Q 5Pgp%uJ}&\I> x:n>pقAYj:"ö_qk|*Sm~scQhHV ʳIuj‹A]Sz3cǵ TL ѵ.SWJ,y;u zf讟>](AmN-"  ^vZ=UvI"8c /X].iE~T$b϶b(`[`cp %F,c2GyOW4v׋(iȃ?!*m$˧JmYf:(Sk{pp' cUJj)4O?]e $>$HMxezAP֒£Ne)'ލ3-x\J5j>3r=k [TSͺWMjgz1c`3Vm)~O,b(-ke M oPc\*(hGz?/47T`֔tfX;̷ſ'{ܩִ )>r/U(DwԆA>-.?>oYa76R/=Pm6v  AH*˖ZQ `eѴSn#Ot0I;^7^ܵ?0g*7]F48z^+]H88"[h֒÷BLW~I[{_p7pcЗc?U _< LT&hV6禠IÉV`L'sfGGB̯]pOi\ޛN h,ZSǮ/n!3̓x!dȩ; -d*bȞ l#yKvY5ZһOwv&8e }><)hZPg7-RrZ5Q 21k81.qCbmkNs\Ʀ8KU'YTjfk˝f2c: =~xF8*cM7a]oCK07' ?vo)xZ%>gS s kgoI%6CQ 7J_4A;٧j$u.`1bL5oHsTI`} JJ&cY4JIaX5!|y6y߉`FVgLa==7G$ HK a8ݣ,Nv %gn6p Kpof}H?8'j^PkXF?K/(~Z\_1}^D~wYpXI'!SU3T}-g0{GWjɈRhzUζ(nUF@PB?|抔B棥`G|g/@BAFN+PUWڝتc*ou%эgc桶TyPH+,&F%(.lhbjա_ ;*&Hqǥvd"+#,a|;H_flVֈIkcÇR w<0RFͦQG#J%){gM +N[K`KH$wR<3.h/8c@*s[;AViqO]-bh?%ShecES6;|/SbSүsY6&^HhwCUě` k3r/~3P?tFSÁ}j6Z6:=b R4hYp.H8<ͱ~ JMB[#E5FU&j 80\dVJR&"w桯*ҲH ua@0UFzGx5<4tosicuSG*]_N-qK,'@Ox)8kjEÄ7$;WUԵ{# O R_5~_FN靘2ʊllxad?w50konؘS{R ԏYobL R*.hjp=n(r$ՖRC4:â~= O篧}Srٚ>h@uCiQ|z]  (< 3DP D4\RT@ASLk4J*fRj[ M)ػG ]*̫,i*kʢe" MVtυ=0g%O8DT&#|Ae q\e"J|0R`(vp›LZ&A_ؒDGA wKtۖwWr&v(L׍FPPL]i8J^`94j[`y;RI0)`lӼ4'Ģ)x:E2H_1$淅yxgQ+woU&wLwKnƗY"9!dxNPkr)"k0@( ukm[/e!­>m[yæ[kmdJCl&a0 |!p>gocjkQW aȠW Xuؼx=!\^j,9B)zt(2U. )P,Ǻ(΃2q1!e Ӊ:k'9oaD:#+&'B,eVB_S~ ߰/<+E. Gc]uYtno" ;cQƤ5|xSR¹A,l SE%_tѪy)M #!MH_=*:r{Cg5/YfPIiNG5h˽,= ]MFj"8B֘s! cFfY踯)!H-03okJR`u>)*XFdS×q9\\zo,>]0;^bcr]v,=.y.ykoQ)dT?]X,(/,vYR rPk\Z(=]#^RIQM`&z_\FCL:RUt-bO_RUŴŤk:Q{_$v_`ƢC5h 2ޚTy$Qccs9H=V6?A1fym#BjfvJ AH :CyBL-l} bTWl!=0'~ XzidOFt=(o6*"b#FY~5wJs 󏘁#1bLUzk*t)<M2hZ4s3Q*,(e#yة(v㇣'S$W7AM+CpóThhG]''lBO~9) &/B ?{ k_WUrF@=<¦#r{jjAaHU)e?yoJZ~n8u?=u5@u#5kx6 nD`#Mw~Y}'Sp -r`[As ^U\ĂhDg*h3xOIUezS8=iè& {. 8 Tҕ/;)|7v:{`DT|ց^ )&&dVn x8/7d-Ւ*a")Y߁6XskU-qaξwU/^ !7NcZʳ7r&O`Z]tgT%ne?_+ET.[ԥ0;|ɓϬ {8-p_ym{αo-8/N$ÆS6PL o>I*&=(p,6Y*P>}F{j1Ә;ځ u)Va~ oJ⎼/w bA~LhqLֽc`C(MA Y.y#e uWR'lu]؀EfdnGK[gJЅ5D9sT~8_"E/_-vVnM";cc {Hⶽ)[0hG4X#{ADoȉ;+z- /&Gm?-C7t [(nѧ5i`igQ 9wO?LxGVĝFovN$RpE@`f$-J=A:E| }][f}ŝʫ[Sjsj{Sÿ[ohyd6S| 1Ls+iߡ6Œ|&jsTW;f u*1C!\Mj?Ƞ{>$vDI&be~ 淲=AGkMVgHWLOt ț"zpl;C Yb<L@6GF?R=b_01BnBiT}(*ۆ7{$Q PYP_/)I%~뿖_ٳWnGa'=u'GqIoD&FF_KZ&>ϽoHJ{.W:k>B~14JG6MVebChuPϵV˾븁 "eʳҼH̠6}|\tmiV4A:3)gOdoڦcY`oω_YĴO -Lշ\^5a( b)4hKy{ PE4Ԗx#+b߷:0fQr`*JYO<9f^rEԬoZ-^|^aPf;߆F7*?Qrn_Q_Z1+ 20>yU}*Qs1skTz0UJpV1bTvZ U 5T> c>OJ|RFڧU@FB Qyb%gJuڲ>plg@Dk$4 LkbjF;56ə5)s[{:QaBW9)𔛳&þϨy k0C㱋PZI*i"_,%UǁJ./A7c,nܪNod…|<7J y/xP{>v9d= `̩ bDa}'X҂?| ox@D dh(^)P9=~S=5)ފYlu?آOBv@V,00ѓg{\pDMrLN0:pm.f/z Z8vkS$O677*Z\ iֲ?bGΜIf<:Vu}ȳK9ԔScD[:HWCK?6 hذOWnaZ~ =\ZU B)nI+n Ő>yM:]:kXq.:O_B4߼vwAk<_iŗ;qX .債'D;A+6.q#3уǚ!n# 1 j;4 |ōa盧k+t:JQb@\BɑE_`}uH;6n`5/k94ڸZHbI eW/d!4s\¯"Mʺ Z@>ۢT/kpYz9P=֎ xrE3#Rn("objTCB ~K Md^Seu|"fiu;V<Ɩ-3G/k`eJ$DfkUud{<;& N>P` =yzT 2_ldYoʀ(qݷÖN|8k:V 50Xͷ@j?1 3dfS?WΦa@cK)̈́5q)P8K( RJLfkUu%1+ŒPS%WF5=R> m$UY-0L~q㔁q#ռ5g3H7 ?ˋG+roc59}Ubi8CDRDך,O}of1wu0ߔA ⤀/#\7skD<h-1ygv' gC R+),=Pt-$h:q6)[ڑh,l_,WaZc@ӟ˺]u8X9FxŵI'3 ju5+^YK~cz aɘCJQ\۾}S'>D$HU|;LVyi9z,BH[RQ<Ӹd/Tʓ-3裘]4(̀E :oeo+-V=>!Ң'Z 磴GIPF* {]7μ4Wb=>#O0iiۙY),";M.x~4;s* T?4joT1))EմqѝdP~uL%H֋w0!8cQl/! tȶg` pӵLVcj6'GBQ=3Dɷ>3ONy!A$z}ABu/*c|xڰ;*=f8*t߂HB3:H p+ myU") LK!Q=/Uy}ʍܔ7!x.I 8ntBٟIL4.`A✌h;qc^b<7{I>A e:JUG)ɷJwɈ3+dc%(>ZCj1 $# o ]KI= w:NhZ9Կ2쯳hn;%4^r_?2xJB\ Uf\.T@FY韃ΑᯞuTYך²h6+=1] '7v5BjMcC;{\eQuP(tʶBR&Fu[ FlB q:/ڒrQ%zy*Zeh[P-XP|QeUVjeŴԞoW{8롢a"a@ME"&/ c \4bޫ] E]Qsxf zͤs5?O[ϊh ^QDM u#P˝}83E' ߬^jd#D5rk6׸_3֣5O#E8D 6g0ᭂʋ-Ֆ $Yj`5<3K[=Gc`.|W{GV$hyyFݰIƈA4yy@eDŽN>|q1p겲knm_i8&j?b*0AX`~Σ!BEʽWhgвAg+/2 sE\3% b޼]k*6'Z3M7YINe6cҝzjUe-Qs9MN--IGr(55uQRFNb/]߅1>瞮ON*H8&.}Vd V!JaRu\;.DT9\]z {iAH'T? sK)P?oN„k֛k Ĕ`X{%{vAbhxp_QEG >Cq OcX;9-.&hBy{pw+ޗڊD<}Bg0e"([ q!| /-˚dJJ#m_R-CWn"t2 8}y/)= +Σ<5ιKAu9q{z wA/5eҊnɡ睲r![?t:`&?}E*ƶoT,껃G*]D̈$13d]h܀*HzDQ\3p$47ڞ/e{VH(a&Gg͙=3&h.fͰ YQ.nXyYH3r+}ҁZPsl kt' ꋢM5't7cj&:颊&I<E1U3v7jbnj&\JQ۠6cŸ5eS˜ ,!-ڤRȱIx\ FWL, yoُLӼ M;~_Db*3'Puj/x T5V+qip NJr[5D d#0У6g]kN嫦mk21]Q;MWl tNh 'dSHtU ArWu7Y4JĐc:S?| {%u*.2.;Wm$FiIi9lnWϡO}M00fosGM*VY)t8`ėVSO -E&8{4 0 PG =/ћM^>Oml4P%~;6ɧ/$薢~n̻qg l󫮓8 I2@v d|iȓ5qjtOvV{~VxY~\ bTᓱf4MVMJ,̩l&9+ؖdC@]34n.b^p)V"dS۲ `BI.X?#ܡжHc.YMfnvm)/f 6.+t>s=z!}!bM`_;>yrJ"i˧bt.Z&k(C >&oN x]Z[9ay2Zч“;V<.z Sp?^ldGϟ2>khvD^8) ݵف4.a qs*å8XY~|esx: Dd7 br~ )ӊ -fL`+"=+"'`TFRMF} aۊ(S!Gb N:bp,*8[_].}_sH!iԻ&0(fr ^^ϰS_$ }S3 [4w4Rvu,cpֹ;П~eߌc0%DD/ʳ-̙dmRj Z\S>4 aɰHrO\ʸ}&/ }׆nl&8*dDt'ddh CuaxsIe5Zac&|ktHcZ`X{*h z<v͑H55D!4rI/j?@ՔFTDFSIPEb*Tw%d3qBN%S&PKCY_DG)8o8wmnA)('D70{L7$ݮ6ܽ4]u˲94~ec lŻ/Kjs\fJnȬp%֣'yAdn1Xw/0/޳؏L7*a^Re.58%EGA@L>qx5YϮȥR 8I&8gajs<ãCRGJD_(M(/o.VùBY͒WBZqbRg \hR{Jbq,~"ڼ^ /rEǞZdzi?vV퐛2*"0!K 5<5%ϱG~2-fC_'`S|a%`?\L_zlnB"'K+(wc'>bue'" ImXKDy 2FKI-C̖{rqЈi/x{?]&kBQdQX*|y}s"2AZ6؋;Q=EOppĹ7ËdP` &Ou1bf4Y|_v!Nl,S ĮKuw&Y{6Lz}()Ą;]"Iuv>g݃ jhKy4?0#v[}!Np*z2IЌ۔K!ڴLï]>  GssdlmY(gtW1=E{ f%{tKoZ\7}p5ݚkJ"2T jBJt.yd4>撾SV?DV5t2\NhNq5 ?c&hH ۶j{%_}aUu8k,N^5#p<\b{3*lIBIR(qBgqzs׊g??LN`uKsGqYE0%2T^q/3P|X\'>I42i,xK%y/"UL< M̰j-a8|P /$&H'6hac2Ρ >B'}"4M+v a @i y?R_y7Od9v4\>V7lGu/w;*-1s^mI5i%>L` sP̀o-Õ%U/z>lzR2aق.?g;?\nFt#z|&ˍ c[T[J[Ԓ@ G=$ #,  іj؏Q7EL]<ԓ\gl\ 7uIΔ{?a>9v kF"vy%R$bJCGlTP냿MLJ((tx9lgym]X/*Q:.-|F=82/I4/Q=F Mk,P,6"B5`Рjѳ D7Z[vy S3YW^i39rg dNK pu&yis ɴmn&!_Hg {w[T;ы'4;{fr#픃6d߁X3ΤRTjVɶLEA~u\#QaemLJEMCL$ ӌ=yt= 0~8$-P-nDt).MGM{+ .eӉp[;L$s@M2;&KiZ!yJ@ZxSDo[Ii YŠhh^}șDLށQŒ$L} XJiĤ͜Xf.ZF GB  i5CTJЙ2Bg#7`DO9S>Ih-c{\(yTmJ5Ѯ0}9բ@2 ھ2o4W mDf}IRMW%M9~'*h6z lv8bYૂ!Koev{+8jS` _$% ~H,Tcp`<<i!ŹR;\i Qm)١m{sj #]`2ne`Bxb3mG IE9wq U4?),H; Pz&q7UT,iQ߬.Ĺ@"o vu2ou)官MC^ۈ%[9sՇ׽1tgWD}p_q*/rT3#d)-Ŭ5/ˇp_+q߸ l+2xx*Ǽ/|V񣂫x|6)BR^]U#_ Z +h`JHE>U-ivz8`../?29([gV$0?s=AxyDtj /B,QVf~ Tm&Cy{A"mr ˎ-c[ȹ]W=+HikhGg] .cx޸M{2Ǜ^a=pAd{-8%&mZc"y?c> ;]2)L"F_>)F@f%T}e; k$gt~(JȉU1dva 4x^踘~ $CK?P&2o0j{8rGsU"C?Rt/) hOt^gWvԃ-X?+O^>D{70EB3@S cV (` j+ag|L~~MS>VPu@\3K)Bn7m1a.γiȷ 1KljSA68}PۻXTwd]5pCIHިWeږrj6NPto1"wqIV4? lʞ[ ڼI'OHIotEޫն<C0P%$=سqL8Ŏ`^}).0^RTY4$A?Zۨȧn [$6`)%G&lyC~uJ޶c_zE#_D=/0[gb]m|4)#3tݳGWt=zX9GEF6>rϖ?e9\fV||i<6F_HWKތC_SImڥ7-zʆavװp,sJ 8497ACkaSI wQ{zVqmk)<b"?a2s0ĘnE #CL ja8tY$|7aNӱq_Y.yJà`x}ك 'ʸsEjԖ &ER2TAUSpl\6k1EA-VO-΍yozHüZ{m'*^w؅l8n7maN 8WgvV<501EWX%␋yH{&>,36zebyZ`Lv1,I|ɟItI5X~ёT;)#7; WawM9mx4 K(܄}44s_k/uL6 01JA=?bEg ˥3쓷]hv@L}|T -]1c,3pW-QaOoa?5@h:kxބ풛/_3&:vM2r!sRq\(8rZe3c6Oʯ;ebLzMc'1'/XSJ9@(A2oL`14Ȅ>|Jg`>[ft#wHh;<9vp{|.O8>%xyz?XpWp O@d P6 Ç!FXHzG}kYyq .p<]?1J2]K2D#CeEn$2{`{Cha r(l銁t<\G0M:q!D|93CR=}ֽ9",e;15WI\N[W:߆`I;v,&[1/>قm׍bЄ<$swtz8 PN[cFCe@o0=(1q=7Y IFW/ Ltٸ7! 82hƆ~2yh7 F ԙx)0b=>f:{&csOʃ-L}$jXIy*([۲sYt`FhtYӀ`1)QOԩHRi +A  vp>=8GuJc9bD#T|R;o[bMv,CC}nfoo_hPDA뛾2'cR5-ҷFw *=R~i?yVK.Nިu,$ {;g^,qxXo!U\Mum8lMqs0_g雠qIv-jeAuUw~{QIв)&<~i}9#(6h _* \xܷ @Yph&"涬l<&,E'\Ca7(DmoxVH%])3IJeIs2unYzzA4GHeE')](=BY_t;,AvPkBY=z^m %?po[U[!myYuGU 27MkmJɺe Ζ3қ/On[sJL#hVrFRL-`#@Xø- 5gWdްV#;GecwIܴtmn| >tԔ=s9yez~{ĚtDr~*dMEuǛiNނkH-иʺX:g+LVgOSYǤUKI-op'PnU6|cf~(P4X«h \ݬn99n.;f=?Yb,ɘ+A&0k"L1?:'Ir'?'*I]6dOf]$7hS6 >0z&yq\֨/ldChAomAS{Hj@㨚o{1r7Q4Jg]^JVB*DS[վvAE IZѢ#@ܽ]^;QU ; 8/&{H~)1`r- gVO;mZ&ONA0SDǞ3J}\6<=>0͵r7ñN ^ S-_.fVSy. iU>/ޝ3JF$[5~dKA0&M۷DX{ ito+M5ⵢh3NL7lzijJrێiW.Ҍj7 ~U[۾JXp 9XDHiݝ73NgްJΩ3ڶZSǪV\icXCL2}_CnXܛ~xD(eG4g+16L$K?i,iR>qc'&EHCȦNYrP>:" S|:&lJTp}9t >|n?Zt[8KXIC:ӏA/K tWJbP`x;a"t|?~aTY-K2"?y7R#LOh;<ETnPqz=}}VJiU9 T" ~ 1K5v^yďw3@1#R;/B|\TVra)N\OMzʨl-34X lAԇbFO5 ==;Πy&0Om { #fH䒚A 5a)PeJ/1vP9C2j%_{qrrW< Q"0";T G.U+ CKZKW(؊9]oĞVr!X0U=~COcԀvʸ_a)s9wB>QxOBB0w-ZM`oJ[[ExY`s h }m4j`·}#Ct9A0oU?*E8xT% ҤR%\9+v\,V>quM|ʩ fH3KV2$H-6k3䜬W·h#\|gg^ZJح9@3=,?@znKKbj c @'+O:JETUGؽYI#&W|ٮoYQP=C!Ր[Nߍ/`[ ăQx^ϴS zGt ~:6Uf #Ds {"ᑑRa BKCv,쟱wMyB=[ecmtFȯJrXlopx"~H;F.CY=Mȧ.s"ZQGvxz?⚬oTKȡ4h 2,4*/ZZ 𗳺<ݸKך5V[i*M:3j84%&rSJO[Kg׌X zy0&d{ ^/YA#H9upslaM*´x"׌ƶ>^poIJ4P?QdNxH⡳])ԋ8IC&^e~FBMFDA['y<^.jHcB"=hir.dW+wwm*NTu:W~ܳp9TQ//aWW"|-fcw Rc5%{@s*Sp6/jji: /Yw݅$8emᇂ>PEme G~KkƇr5N*6m4U77"DA&|cf%.nБUlc<)2P`8,4~vs3\A3[6Owm AJ^ƭep|{ɫ _Șqa7(LqF s(+^7t WNiď}+SǘD;[P4wT 8iaB//F(W|ez6wnʧṬdka4$ޚ>z:mUNMJ~/(䐂t/J2H| \Im$֐45iGd:8hnFC"c~R% \6[q2LBY2jo%(<@GR0ޠB7.ll|b2 \P-dd4 ^wec,|K#abCL+1SVHCZ ŚH'(\u")+Ec3% "zʂ1~݀(nueCHb= K?n- 52JgxJ,QQ/,@ݜ8V,~k໻i!|@*XO[=ҭ<6/O@E:z2ɬU &q;c*%9];\ )2\g}GsoN7OW][0ZvgfHD1LH?EoH e{^'ɹC1>W1j9"+~ާ-,9H߽O>|23x2GbykVA-Ys.n:sqek]فa 0(ޟBC>.Wzxq =ӟ03i0md9P%Xؠ6wW"]M šOpt./IjH`20B} ʜ|'J#tvvXj|33/(8 2lҵ,mZ q#a[B1Y|/v*2m[kQg݀ZOE6SXg\> UۗϠ7akgy  " A,q%P-RO2&"ObpKb #拈éVa#"pSg z8N`bLm°gF"QǓW* \c}Uir}s6dĂMbϺД lN EED ɏHKL *8*V憩>O(L8H#ghahZ,g Y0)@ұw݌VCT|e=8,o[qn fXA i^}ܪo^ᗭy#LX̆T+" I)e;Ly *aMu%v& "*+gwO@ft}}Vx,>/_Ȭm' l{1D7= 1"j^WҶ)۲ĂNyb4^Nfhs7"ߗM1-|1bsZ?urckdGE>KLt!76d9)q!~׌w(jt?2;&bdG/MkwQYpA0Ub$_N IF$q`|<_TYɜњNL'67J5`/F,iD4$Ҵik b(-.'Ʊ2e<,|_7wV%V `gIe͸8CV 3~@ @Z$'jRu>DͮbAS.z-'Gv \ngE˧ljk_YԪF7KQYOLGwΠ(|*-Bz.\~MuNmgTq!V:,+Ib)DZ k&2sBD<#U'~*0Z Uwaxqwud6N23+^Y!x1޸T0YmR`dx:.m m"tLZ&ᕺ`SPɷx 띲̪浶(; Hiz՛5VÉ6N}me]:oHc4MN!"|PYT7xZ=f;F*vPeoa'4zW$7qi؋\C.(b@(I[1Maks Qz'^hg`oQfVVCsaH@@Bb`GBTQjnu/ڸUV^|@ɮo.`[+=vgF> f*n8J$g:d); H.'!zUޖ,kDFqzydIM,@Ba9q;<א)ܽMNA)4[̰_{o#⇋a5^%r Iw2&0'R] YjKQr˔jԱ}EuwďcgP0>i]Ʀ5ռaTFݼ5FDz[;. R\q h_*Hs'Bkz@GzmPWNŁ2wf>$]/8)moli гFda (,9l :K%C霈򓆲m0$`7L'9*%%ּ6yĄQx?sBm CD-,'t53*?%I0g(W*VЇeJ8A<\*ҕ8lV /Τ+ A7nkY?n?^41 `hy0#\N+: >޼!k}D- ls+ϒzy2-%\SȲFMewy,^{:He{mڙ.cE+sؔB[!TΉe^BV{S8WZZN ͯ}snM8Z2l1bS9iKUCFZyoCu=p蝀n:È.tpe!uɑM1>UXk%Udq3\&[pXG04ܖDI;dOa٫Aʰٵi4z׊'nn6[m5wI0df@  :;[%vvw VzqsBE4R`n8@ۭ,\ LdbGW_#R| ?'G٢B_wuEc_UTE*=T5RF^Ul+5=VStE:?MV4=ϔsLMX=]U'꟞dMI*MGS#<=axYv"ì[y(#"u'.&Xn3_xzU5^?/5Y3st 8][yk3E/ [CrLU2_J!/WT}l{:c.]@4*i1{ :K yVڇ6k6IA,О䱤%/}i ]̺ڑxZ20r=hO7,ܡU_[_{.djNd2CfyC?dW0pA=J( j+%pCԷ|Yz[,v1{^˻np"VkO' bV%PHe몴 4z vf6p=o6=Ŧ $xkLmlX`1Mwy k`Bڥ\ԯ`'i-(k4R}~t)a +L^U jcD+~rP5LVeFP*ш|%70T5= 0Li&Ð(pSUw뾜,xr Z}A'u\}vBSIG*ZBB!4""KӢ,e8 GnbڋZvuOt3W(vdrTRsUL UBl9.adBli>;Tj f-4-zCsK;?#2p1{Vg &)*O 2nEdZ$6oƸ ){u?2 o\Ů-Q =Tg 0 %YwPbss$nQNHސO !} 2vv;~)+ 5 HV^$Fʆ&0A wC ֭l]Xxj^YPY&̦X)JEAzk1j#jL*ʉVu_y۾0bDZP5~|͊8kǜ|RtmDuEmꆪo_c%o%hA]D0u;=,p?: mTIiǢf (j3B {#fۼ{=XMb)8л]8~O(m؈DAEQYF`O#Q>Ppc\4(JQLÓwiXi䫄;6d瀸u+ `/>wA&Dw@"Ku[F~.&&\l2|j31k8ڹ  PFg\ Qd5ʥ ?\17<_ا (f0aTfNŁ5-_Mt>rǧ'E\}?"FUK|3H~&8/~c$J16Ol3"iwy=pDY1btN Pjm$TH5y fhs݊zK6/0xvJ_էg8׈C +zO8`'5.jcirtFe}*n9ҐՄ=Cd%"U=Oq5ʍ}A1_N IG\Lз; ǹX.ăj?R kӾH{٘ͫCٴ`8aF Ά_n`~, P\CڦDHEhd/ʼnƐ +Rb_Y0l#gY[Z4!k]j˄U$e8lC .x%!!2L$1ti6 &&}=tnj&i9<=ny5]93R4S ן5!4AlO3?Z'\8E'FAX/*.<ح%r̜+f}CCBߊ#=kl!ٛnox_UKj;.{[C%{(mP"}қc>]G;&j_.97ⶨʐ]FhR,gkYT2ha8$"ҬTNabJ7w1l"$C k%M#.JA Ncɟ̠] `gV޾.ej!|T ZD3$9F0 P-3Q0- j;^XBW";CjتU+HI, %kcdJEDˑ"yEy]{Rꔑ0!u9js,o)TfsŸc sݴHV3۲6|;>_E09BkYy d$/BCp#%L: qFw)]X^WWHENnF1 06bUn<8[kKyit ֭q&S<('2`V/Xӟ$v͙N%yzJo\yο˥Zъy*oxeF urb3X)F+ ]}1uB99z|hD#oX7` 06nJĭ9{- q~>u$!O+t#OsFl6n⥼r)(S% gB-@^,M8,zOPAokYKF: <+%dH [~__&97YL)=q8t]P*KJy+dG}h#X Ҋ~(9AV( rqfzQVEo.^^pS#D3D\@y'vJU}8Eu>~T|Bm %%r$~qIy GΦm֝Y.@ĪOG?~(EvR'aG [jv}0'.IWgChbIsi0qlfO>H0'*L'9U*bw63"uW:C4W# RcZ{ 0H ؎ִ;cA8 8,틽FЙ_%A eCfDJF,(פAQ6+?ni(5ΑtD"=6C}5݊,~8{'bW;bycf5YOğD ?@0lk4Q @S ~28OQ-CQWƟv:ܶ~%t{s;0NU6<8G>{qwk| cN!)eB2h9T)ue++:tYkxBˮb "P)/`j.YQɄ'F`Ye |PeN>E&X9xd_[{rHEYYJ"ܳB!+lg"Rq/wl OE| |<}۱ګZY[\ <6(#QD>fL{AK;utzpMO-șIk/-)92l+ucٙG9~= ]1:.Ft|1+X}Muv0ѱbPC&8"1~eW{?6ԐuZ 攈8)mLGlh4'?T6YgVp9&8! IP Œ H<,?7P z.྆2lM30eMZ8_뛅upCRUQ -~iច>T@!l/ZTX )/兎cߪx0<2-9? 4Q QLj(eBfL2d̎ %g 1c`U+AVc2k;T]^E j@<$_~iٚm=ƨ?ģ2FhqxsV\B;  BaW+˚VUXp[Vٚ,~Y7x}搱%8FVl?elHJR 1T=B`?]w6'umtœ1 ;?7JrsjNLښA9f|)<)u<@ruV,ؽgGa(17B.ErqWaO-Q"O۹XCP*RI]53XϹ<{g`dd$\]U ,Zqul^KU"fz4d@7}O"@y#ѳ}1y*zs}a 6x҇ f=188 @RpLㅖUQ6mlU:gbDc鞜fXX?)dH( a߼ 7ƉM(a,[S}Lk|H+QQR?gTjhB8_7TxF]}lGNQQƒ^>ViskaJM&mQzBLT3m3$y-ٍ[XuT3a)Ɣ$Y}Vx%|yL* qRO1~qmsӖ7@{q>];#|- ֺH_<(r5NF,SqaF̂C2 H&aCSm/j 8 Q$A/WvC1h v6N]R\WbE=<\`_Ph{LU7.t=kf`$Z #'k:6^ 5vdxcyjI\ h/؃TFukI-T K l⡵lP/;R˝(f9.]w`|U,o>);Gbc_\G=9V#ĤR)Uy)~ܔk9v~.A5$YR XL ڹvH^7U?{l~ /,y5'sINS4W:2uӔ`a?JRt|=?ds뎚9rIG4إuXJt[z!`([8W;f nʒ>T-W7>cjI;!<_'-׶=yZ Au ׭+++A5]"I{¡?/_[[· 4e 1W3Hh ']*M_w2(@~ٸr4C0 ~IJHCzXT;/4p,s/*OFvRd>-P+ծLeҲ`#OFPhKIB"O 9D lz.4JEyl -geN6^:}mSxZ?;,:N2]aꇞ`|7zۏDd;/`!Aܹm0JP]pQ4ˣ#'K^CiҪF2ܵK6X~{QdbԾl|:=4)YO8[cf{bič;B~^I_!4K&B/񋋊2_u#>UM^" Qs\tHYX Bē)%ҧC YG$-DroQ${?n^!~ ~x\ lşp",=$a7e' v0 wãyuAeCo:JͳfHwJm#+ɣ~q^N[ݿ}7E*kW&բ M@@M+2r#&$xG=Tvp؂9 ( wgz\OZ~|w7hjbQw԰2ig$/4`A8 q#ƼzhAT&w-LxPQѯIU<˒P/q;HbL!8“FdzI ruLsY{߆~ASDlvtmn‘ 7l4/|ae#v$L#t5@y.ڌWI.NۿЯ͜1h@6aU44x9MQ cΠK'Kð  I0BGnZm< e.0eI!Gjϼ'qÔ[n=%efoPy u30~t5+䍏Hٙ4{G_*}1(S,.y&U}~3S8f+mc/iW۳_͸ g,=\ %ޫPJs 6#;UEz_ZC fL{kŁXp,vé-a~]֓'hqcS$9Qހ|Y&ݓPۿO>Bnħ,}rF຦K#ۄ ^7hiI;1~CEl\9#N0/!PAOΏe¨C[xTR}>~q?NrhnE``"J *KZ'Fw?<#E$ToD|UJ}W-^L/w3t+B"^F5Ogl`#|h9֛;F&h '#Z| VejK$osEfj{x*\4mT^1SjH7lHtwt+H[̥-'XBoM #>*bZY'Ϥ -}@6r3Z ";'U@z ~z=3AO?)iJ9go'ŋGPo;_s̐'C<GSAsF}eM v5:@.!TbhN秢`>b 8S$cE{d~dZ"3tӣqz7gX#kP|^<'eL١'dBg4K hOh-g,) k:pY)矐֟k4g" hI 3ϔje>%!V梨0[^_̶m@77CæuUb|OAJT=H=tf B9tc[>S3Qƀ/8.>_׭~zp+^ƣ.tl$m#w 24Ԝe.%-|m,v w :_L=Hׇh\x5~F}aQ(bbC(ao:4V3\8HJ\\kjsR?Ap}Iݲܻcr===i01)]m)?O9H,9M꧒-'(kSBPƻIPn4 }d+C?SKJ2ݛT.M7X9^jZ"uQ*"VBe{s wwq ?i(0"pinn@[]t 1X2-qZac-QQIaqNHU8n n^^Sv44 RሾC'A8Uت)Q& >ܚ?KԩѢ~{1笲;QjZO(/|]+hEiҫe)'&gdn["+yyM&iu*@'de9u{#>!YGiE%AvY8AlAW+iTXWkAG "ӘMq2GeHe'(ԔX%Ue)0_O.۔!>1JJaH52M TC%2Fpҩ]8s\ SPx;S(*df(cu>/V w=T~ `MSJGkq$E 6\S6Ne!0j &gtBU w%=r"MAtQnͅ:acH37t"Uj)([N؉jaA|)\M<U5b02NᨮV XeX`E~]ZrBJl- ťOB8 U"9MUf]mcvvօ K"-ֲ2`5Q۾\gNطQgjZ#ēGF\}@GwBFIm#T)]B O0&l">xlP 'S[`x|!S+wMϰ 0G2ϣKC?_`XGVAf4I0;(0+/܍x`./SHLR,?cJ"w;m0'Ct6/nD=˨g0&{G``QJ;nL!8e -3~^ e֬%DM Wm݆ uvQ8ϦRt?a:qz~P<7O+;d?(8ZghKu- |ᔗ] r1cL(ld -Gހ%I(p<n;"չ׀sJ.u./>5U ?Ua'B8c: XeP<Ɂ{9}E> rɏh#4@(<eh~T~ps(2ax;rs,.R{1FFkjHY^vHɌX(rIg_HedNĴLsܘ 4m-H4g?/AJx69IMkamѯgq,( QujVQ4mf %?42ډmDi2_s2ؽ;*urR3՜8 BS ahGҁ]f2gg/RfU<r %N0le17uv֢L@ \p^6&{|4 q@`^h@R>O>,_Ezܸz!6 Y?ܚsN(x l%gE HV* =JkZw ;kG/zco| ՛Xx847З}.Q( aclf-T6̡r{0մ-'87+ ܺpR&P`qo?t )~o@Ȳ +e.c_%fb܇W+rL34 =fSECB`n/ĆP+^b}~iq46FhdYJA !e4&~x%i)alXc;[- /Kϻnnc𤇽-*)>Z\ È撳 +{ e Rnw7vq2W:.$Im/,7 5@ ud/ۜNqXWO:yVAdC>%4a_[»Igxga҂;PI+K@zҴ0֤9*Y2A[,+BMګ퍿`\IWT^ !EX6v?|CiQ6,!ݏx!p4(|@Oށ3kՓoj_MJn{P4 ?2p:47;/v&Wd~?M :kOo2Vo<NܧAP\fGI~# %`/瀶u&&-|I۾Q9>z2FčBV<πR\鿡x}.+ChIYd,a10x١ ޅS̑uĴAw!5H6[EQ9M 7:`VCHZ`vD\V-wćJt_<,wMP{" $ _#ER{i(C~y19< á!9µR;pW`ԁiid/vJ,ݛ"mJtyh P34jɯB|b)n!d?l?/OmNuȚuwC'BVY1s}2nRKC u^V3 qK:KqcʷtȰ2 "r)sN1iO͚u0zCPSǂRG9ޔiiC !:Jb蛠z5oSU T>%}0e3t)d#UxhC簩͈O)͍6wګN[_hkc@b@*һ-t.2[Zqi=o·5L#́l6Z ~evT $ַU|E45rbL-i">i wGv/͚wȰkZ~Ӯ5NыHu{.aIQ;HPbEg.;Z/ig:2 A.5RL¦:e)f\FVhF%i|.tRZ~* $ = m+r_rm+hgmqںS/*)H(v ?3?sq#Y>R" Aݎ^+uZ:}Zbn>Y ~ae==[`6-dK*z"j; 2~jYqd@cҠdtdc v[[g+aPC#oYEgQKڜsu bwZÃjTNA֎]d3홄vdqf_[FršJoGqai3@@\*)*8B/V-+37Ng3XmS$F|hKCƽ?i^ɘCnnw *iH }\H-JaasRa3CtmLyYɅ!1q) Hyٻ%`.8+3y׮Q V//sǓ;KI5^++H[ZܟkF,.6x -|d~7ƞ[PC MEL-q a2W1g©6A,pZi#,M0~aޯcv=Xty 5{;ԅ{|@o+5޵Oqȋ&o >H#~ ^yXů+Afdt@ۯ߽cKuw1nwtdI(BcLjABDh4.8$ a /&J]n;YZҀ~U;'ʇ,.SPims&HNa=ɑQQQ&+b^!E!e4 wT_?;) WKazg%8!̤T$ieZ{+K\Q a5b!)K{)p[PeR5eX輓q ʺy<M.6]POݐ 4@M3QS$e^Qmq@{PY. }k1 jspk=w6k'C|^=w08ʮf1Fl@*"PqӇnÊͦרX/&-xBD$||:Ux/7xH= J%YDzU fMev[Lj*ƈ(i{0~8v~U- +ԔѵW`;ns89[e~?v)( P j3 uHJ v>R< `wTmmsvfNݞ)ڷ6  }iAd V E&eAE#"aky0~  0)U s5j::4x0.`$s͟ Y"nVVy@ia];vd 8/HJ3 GK0Mc6F0 jjقfdQ+RDcz&(6kZ[ұVLZCW8=@E Po4^8Bo QY Yh홺vc3|zɁzQj塢QF> ANYnӪ !Izn3*|gf#KE_FXSJ;%~ :XSs|IqT Z]G<$w6.oէOMCnZsDZɈ}lc9kǬk5!bN';W&ڷgdz'9nDbj&"bu_al]6ot/-f5d\Cv fw/UMꗭy*,i5n6my}X 1JP-ƦGGS5:Kw zM/ wɫ/h14>#ɸ O ׎'T4V1(+$ NڌP5>Y B򙋄0 Li ^ I=&?D~6Ȼ]bo(;Ȩ`6m 1+όZK$X*yyres&c.@V H߱<.0/+ '"t NcdR+5qA-v;띌TMCcU@~uu."MfmRk9O|Ҿ289؈\z|QBS/L/":!cI6y錷3C1z2ɽU86BYC+3n`DBeY;U $\#R8&Z2@ \)"VnP h vEBxxsS1i P*hb6ʄk;߁sJU z=OvH$.dB4b Vd/1h Ѕ\C>'7,WW\PL ncagYS]9*$C6"/X0Z}A6PױzX`Z @yʓtlt4v%A.4IP|#Dl&(t_bOx&Ǿ:y{D=Vz(8CNجph/̹?J{.tr @@4^y+9 n>ܬ80|h'Bɧst_|J2 m{<׍㲿r9JG"\r艙kĀjatJi~R[HO }@qQ>@$ YΚn[q S*W)MW:9x<'3iTh gѷ#ۋ4IRbԨT^Ո&IJY?;\S3>鮺n1cvA 0:oՋ6^FE̊AN6^Uزg \))  loͤ6߱'7!}]&Z[q.mڍJ lH@lx!؄ C݀ (Snxv )R eP~~r*G\eD~5)X7aMcu*kzXl}̀/GA!|EĈ.@VRW)}k3cng/<9<-" am,ӫ5/s;hkq -X\ԝ}%a=nNߖuޞ`~QImG"qrʪ*bܢmod-@9Qc[wαS^ ̫NA^K#JZ&Keg&@*n fAsp@3p6fCl|@*pb/4O4O |$QqAp_d{T͋q>PlbaZ*J}D(O=^{GpvV]sFF}H$5UU}wA#gL5puʙQڪِ)֫Mf b)}4]f<|=|8b:"d)-jdkQ ߓ>1=# !P]z YE6AA0` N$uB-+h÷ɿK"ޱ/Gl Ffg  ȧ1ץ*7;j͢*+А#ۚK`& J}LH3Ey X'hm_}UazSĄ =Թ㲯̐p|̎z؝؅qs;ܻ??0?uFs(sevL^6D-n0Ep;G]I=mceQZ 1dHItD:O= Sf㳱&^?sqo/RW 'K56Y\a^ۑ^ΩRРB-$Bp ]yxF+?>d#Fޡ=7aSZk6[*6l^OHQɀA}Ǚ\/A7N^ *:+w]q<#Hi`r#($i >\ڦ8ˤ/UėtWyZ7b0>z8?oɼʨ֐ ˠğ?8>&ǔ?ۄ v$ 74+6b *_șDrʼ!hYtG^ +xO r# 'Y 7^ |L}عܷGY%ک'?EHjY EX#23z-1%T6RU'j)c#RW?r;W5;ȗ0O<5>a)zq0cM j!陼)~+\&uVjZl~$vӷjSmxn UʑG Z //Hm[ĕf sӏQ SW f-/h|˙ljҙS<ׄ)NzgUWk/ k"DLJDse$+7;e9T EVftj}qndJjE GI\&_j@zlX(ZBd۪c{ᶺaз#(#9B&7N/b'V v@:Fώ)$-{p`F"@ó-9x??Zxj>Mv\[k j#Cf 2d;oPwUt+5 ^*`uu6 E̺P~.p |8aOuAK wȆ/tȑ;Cmu,_3 \AABC kp!ѧVi`ʫ*ڎ +7RMͮ GqL˸ ~4)֭yd9.yq2z.>K(W:/8dȫUkY,w@-2c2~\/H b7 .Q(\ XS F~ħ( X\Pa>-jPyqGE˺4p,7 0Yv/5c:1m3 ZH!khJO.'o'@ZµhX8]zFmPbEz/@,!e'TdqigG| ;\ DZJE|rpZ̆9[a/Ԡ|uR"dV(EWG䘒bp:D؝艋{6ǿ&3#|FI!}U˵PT87n! GNd UOL੢1) ,(s'VPBLQ">C$8`90cEe kʦԱ7dq3q-UH=yLɡEUMU$qTMV*VZ8=G3SQlPsgU or$ VkLjt 396IHc [t$m(^3t3; ځA\h{{TfL @Ciڇ|v!Ա:bo;FPRkjH6P'mlj=vJpۂq)C u*9M`JeSCRZ,}Hg̍X+ō%k  ^ &oLE|sb nE%ffe2mD1ADK&8Iϔ{#ϳp35=4ͮ῕߬ɪ/ؑL8ڢ!H?marmcsF9I=B;ԌoUr:G8-N^דaůYXZ=4shd|A~T7̦ˆ>զT?B8x |!_^aS\T25BL~ 4ٙ[NXmI<ER9bEq+HXaTnYUϸ3< ]KWϬGlD#b~'^3B<HV,ѐvk7z!Ei.FA n-˞a $(*oqHV6=뚏3eX,c›>mU䪧;߹P'g'#D,,/H 5-YmèNydN<3ăDw&9(QER E -PwlCHL"vNP#&60RՌk65X%[TcU{I0̯jEgU aEti`sB`wN)`iCmOxlE l~<$kCp$?@msAD.9^jQI;:Ҧ-l㋢;. 43_7 &!e`W@DN?2kVBK_K[?Qj{A `s$c)SO3FYB/"߳:՘\:F6I̅(#zK SEUWo^+!4Gs7W38m=[6'z᦯oR+g~<ڵ،9%j:(ĔkXXqM`k熏U6}V=Zqձ߶MZ.l~8\mÙOY!V5s@lOXOh߰u1՞BOH{M a9ZYɹlY1j8QAaĞ.( iM$/$')F Վwe"Q~pf;F,tqM TF#t4I^aރ,tIsHRIT?*MFA|z4 7UKs~9N}Xw8Z%?٬c4_u`/D*v]vOW/$I_]CHW4j'Vx|ϫ;D\qihPV5o: U'.a2a",WGh_Y9d`&1K+M/}SoDy%IQ]@ j, &q娧k.Fג eXcЀ1 L@(ᯟ=&QDGM'z=Vˋi 䓊cxwb.4,? F}v``a>cӓ8rdYpF݆رc126|: <[h ^!VK(.s'jbrqzTH<ژ$SZ>Rjt HK`rQoo]E`{@ھ;Ej]4k-^ Y6 -XH\H 2f">?_U0 @Bދ?%?E\^A ܄?2l(%rpd^p׎[H#qx1Ѳ^AySGydF7_tcm񛣛5ǻ" lq3 hӛFg77wM{WptOɖBXS~o5z~Tw{G {A2"B{30V(lg?R$R,0eeZTӣoh<^'R~Jmd35@n*!t77C@7`l=ŠꡀpUܰ~NMP\t+XFpU+jT{ki]ˠ,sn_bIE-O>uRD~ߊ827C+^\$ ǎTHSHkq˯j@JxGKF(f?*(竤-nqm~6l]:VH] a?0blQjAX2J ǤlP %ɝF!Îb=wn?Q;̐˻oBI¤C R"vN$pFZytFʏdM@8QB뚼v\B\b^~~;tfmloa_i'v $Hm̠;iݖ&:sR0]?K|sɝˆ\>c#>HuA]#ACBQ:!GѾR](>̥E嵥:PEL6 D(`3Xa,Z:C@vWpaMzӷvP| kgXGd̰ޟmޠv =~.r w(ƒle\*ioո[TQGXǣ0\:XC^?aZ3ܻxN\`*R L;F!y;) ^C/lʈUmWwcOjjfѾ<ZB,-0hb\jd.~+O$`8OЏ(6Q-dvS {~UKmLfpQ< pI#Tm$:mvJl(&6DՃZC*-A+f&Oԣ-KAڿc"FsN-]3V`Q?fbY{gEk |.<'ԯwN*(Y:Y^cTăQv+F{qP@̣)ivƧ̏oYsY71-X*V>%Zq|ѵb Ho )r&8ɪl"R?ia+-OaNe]4U6?;1]1wL3CP,I3;tUo˩B8p:&v\{G )ᶹ3iZzgU5:{+P Ak)X`$b7k+FJwdŸV\Dvt9$Md. b:QB)%f'J5mi7D7S|Dhk#@r H,glJ!c^!s`O!NXJ̫tT~y#DL8cHиn BMT<0zO9zvG޶-FS/f϶s?\1}༿шAMTp%*=k={oVW/j}BPw[w6Dq?ʑ9sX:4n Lb;~_VT8Lcd/a\X$ v~1rSQ^ߎHL{EC^_&r? '̛"D.-ʺ?)btxOu]cxj#V`8B|T%Fq'B{,lBm\KFDA^1[ ݦO1nkF)E] p{WLܒZ 6PH^z}#]NobΦCdM"M*td!N:i1O-‰re0$@տU$y#e^ƙj2J֡P˘+ `qEfw^XYO\Sq|/0# 0Ҽ `S80}̚ﵸNnFW2n)GtL(A=Go+eOwqRtHg +z`q5LX_)uV ZZ[Q):pgbGR=cr{#>XGA?R&]O+H7W=F\`{ȟmd&O$ "$$nd Qo(Bsd7ɼ-&?+]Qhء Mɺ 8:Ƴ֕۝i;cTk챨 =%[jG2QG- Fl윅A o2:/koSlfSd@kerυeJML*Ds 9pl>xk\_x~ʈOy- HtITE(^v˓Fc"jn.wk$>tyBɺG4]!rl3:퉩dC:mk2Q q?ϐ@J(DX9Pԉky!PgL$ճ, QبKg_$Hg`YV];7j=+GAqV .B1`,]4cL u\pprmob_Ni+y~,\qެOJ26  Oic&,_H qmm9em rIu[w;[+ Ϙ^!iJ 㦦؊KJW>YN_͆kwF/75{ vv7_Wx|A> qs, #B:ش<Kt ;t6TWKĠZ=4䮭Ҡ:5ct6I͎'=QN3p5\xk-ys-1 M LoU(P_cH=;qGuA6TV{0_;C-s70Q,ݴ]ޔ&KsY"VDYso!,:̘nhz>:^ךY F` {ޡ.G2yƁ& (8 y3`O!P* ֻ4m#C} R/#Y\ K61SX7r7rd )$`SWtp9Cph:$_H۴c B)d9Q[\` AŒz6!4߃33* 4JD?ڧZ&2,j\?E>}2zU)z DAN^iwo%4N+M>)e_ncPgj1!C^̕m9;Z)ȏ)k1/1+D&oݐ}[fcpON4ye[a9(n n>svx@ nc 0_b}4CODD/b:nK+A`hNߍ&bW=3BỌӵGaV1*W݌*=^r7Nn* ],Uf^`vX7.e9r_WfH`__Xڋ~t'/Zۮ?<ʵ뢍kPЈ/yq !:w+盕e)hګdØ$w% MBA;-IC2"Vxy,TוgHxڢ>9{V҉fB6j-tf k;Oi,V`/t#b3.MYC5B`&&`ڨBxL`t[q~<8YM2WU/9%@_t(sԂ#.vb)1Ti£xZ=/e*!Nz|+FއuOF ]jzkXl&+޳B?= % _hI':P?#K{Uq1YꆾTגjDfF+,<*KϽ3CJʉHcdccB\j ٷZ,dEaSƯ 7>p8ۙ )^$f3vމaKYst8M,?n *Bw1rKfbX=`\(gN@M:75 RJԍ 9:LLALoӋA:s+tvC:V Ǣ l잪CyJV;g@gNq@@#3 *J=4_C{߂9A wYԤu_x`"9B8,vHRPlm_WI&* ""'Glmd͙ĵf߱a4"ҡ~*Tlbvn\:&yh d\#զE+'9-:e7ξc@'mۈNtVyFviD"\z_L/E< S}Z#w|IZfsQS<?_((a1lw*{ IʊT nDaV,'8t&e3kiJg_Lʈ&Fu FU**3D ?>Y<=&'U\.ܒ "CJ@_gzeE޼ڠo\w*7٫7?pZ+*Z)BDTʇ"T'ƌ?uJz}CBykMXPZ.oI@RNb';x_ۮ?itrxǕim"ugPyֱ&鞾ӓv~rއTxbx#Ӥ] mP#4wHڬ[3Nbgi{Zc+tYDѽ,vҮFX5i$^hZ3`讅adϜA@z7 Z+[+K$:"`P̞dEE/.SGP[œzj`Dz;׾6*$.=D|2A3Ԑ. !ƶ!V'|`Kp~Ҽ?r& ],nRc./Z%m2RDI'&v8TA7G DZ[۠g+iĞM֦߰]{Dv[]3U_ ^DWmA'Eif] l6.n۶3y=M!oL޶ 0KVK}M2l͋Hz_dC Ո`@$c9G;2\gJ(>bZO6d#U)buͷ/بj`AŹ?/h{0ڬE|sul܈0VcsNBeC8!ϘE:dTah.98D^V'eC~>=hz zwlTnXۦN<.³oZ=k&o4P- ۥEoۦs[cn"G/@-hM;H ,QlrydY,Ff}A ŴD"Nߐ]x ⻆?+56;L\O!kd- לvv7F\emG``C )Q8D׸\ȉdo ?V#%XǢx:ݾDʡ4ayFˈ$9A@~zÑxh +*H{4~<'qDc'="sѐMj)7~W{R[ui,ѩ쨽zvnÊ5Cܦ߅ⲛNLW֚(m)W'=ڡhȱPge0dSH٫vR 0Ε\6V~(G[`Oə[xvjI]p5)1w"33& F@Ǟ!(Tnd ;>1q|C5:?4 c%Mvc:)nje7]֮\O8E+ g9K/`g0X.c[؂ P@nϮCHY3<7fƶɔ(qDҼZ6CT2J%`??.p0t|IVC(V+Bh?*ʋo]˫\47v@!^3-AluTaRos* ZiCNQ [|8.])Lt=Zz0pmySny|xF5N+zE[.KҭHR"#UX)0q #<6~CJ 0BH`/Cc2g=VB+C} ; P pX[<,hhxWg}a^6f. EKD`M:rȧ5/u;,ı4$"n w%sFб/v  =c^b α&1õ%{M(#2]c EGoamHxe݄mp*a[q`, n{d M¥ KJUwZS0K|o:n̤br: # a}cN0á"Hҟ>#^?sy)~4Gz"ӛːB@?~ [zIǿ3k{*3: xp Y_B`)a)ZK!LX,u&l}P= 2$]\gy !Xr*cHwidM@>=3K&jS ~/tRӡd+~ |W_I|`{ ˍЇG.aq=w@rT)dUe:稻֤dΚl.uUnIΑF@hK&#jP'AgJ&jOq[O 4fHҡ8/wl=|bVe$y[glGg)%!+ 7Ӌ}j< ^bϊAdG!αPT7q`$b=hꂇo44|!N]:$ӬN'wE).΁\,$]nR5+ w9l Tn%K DdѣG#NOO.8 ]wnŌبQ0b?T j ݊;V .:^. j={!1mm3#5Y}8lpH<mOu xbw>,F}roT-}tiCQ 4Gص3jUN.§ #Z?#/!U8!~!s_aFp'-'sW^`k&jrI>[>p 0R-04]$d=5K-ehc9)hٷаsq*af~S7aZfqEO'E\:4)eXw۫3 m*" Sjl9av$DM.6)BXv 0g KψP& KQ|NU ] i))~$#N M3<&GSh8AsI-c/5DTlUcHRֻs8n2->RA8 F"Uڒ |ۚchMSEóbO6„{B A>DӦN|Lj3,{x mxZveƜ9̰)Zw#9}/ԟl(bd~K3szPi.4 |{>#mO$bhIe8%9ė@ B?4EFMRF`c2X@g@l,L' - [|m%WP(xOo)MwˌIv ttPjl %9*h:w9}Hn},gX.1'Fܓf!^+{ 򁅺4z+'W?D(3^j{΃^G<`)zRT5mlR{  ziI7+y ŝKUoey!LЙ K`\skfu4¯4Hɏ `ƶ0]cs+g⏖5v<(Fi}Q$ńihx ;ĵgWFkqW7;.񋹁溝N|癒ŞakdҙVM/zNջ*/ 3<Ҧ ,"^ R~u6>(=DivmBrO]SA5FQqI Hfص'!R՝[lH9X&)}ĹD"XT/ɓqEI-PI 4'@Kpa"USO++SR4.pmcpƘ%WNZ]idY.|ͅzk!Υb(O,YN#{ςM 9u;~X5Y[dIuКB%` &#+.4"7QV>?RI<4or c·I܆61闈v.5T7ݾJKe>`XhH@?_lSjV,xO%ak[Q a@U :\m%{jŻpeyJ,9t^#|(b섁|tr4{m0$^re|wOzZtv>cUu* rd `ԨhǵomvhRQ@t뮪O"z4f䒲 v+GKF 9( &VNj:<N틯k$3Al_̘Iެ$̐ͱ;3/nJu[(C(&5FI&O\T1U-!r7?ff !7Pހ@`>f8X_^=FlnP~fU6W\<08%8IbG_|G}W*Uq!َFXt$t(Ν'7݋+94J1TC3LO%daYF@u}K h]XAxM!9E.qaax< )NxTV5EF !"Q ye/[bn[]Jzߥx@;r `-,L$JŪ`j79NFpXXM5~{quXCdʥL:a n {_ֱN&~m(3n""Ĩe\GpI$Ep`60 ]a0Vİ8m 2X^K6Ӿec`>9I32TٕsET '@SP Ѹ,' $Tܓ rY,tDXiW ܫUo?>',D4YHlBa]~+yjW}]p>¬  »Tٜ{Ɯ4\Hҭ7c.l5bhhbYlG:$@K楰>I7*07AV+1a2llҮѵ.^ʉIYzvy8COZaf2}&% Kd'T8֭z&xN/X"OOsԮ{Ļ!]ch3Uq=ublt&-10EpCw\q~Go=D畃9Jf;>ݕ`;oƏW6vB굿GdJ>8T,`(zԛ #YY@q)%хܤ&gDz}+^[WX.E" 2N[ͼf~G4R[ ޢ 47kϜG+P Y TTM!WStQ<e6GwɨY-S\iy퓅=]ٹÀ8:uqo kbhP69$vⱂҿl~t4{M2<ڶ'2:db'W C`6q^sJ`/,3D(Xafm瀕Vg1Ó){s$hX'z1YKscE*;"uMM(> 2\ݔ&tcNG[⃭Ô$ JEИ{6ټ;[XԭF_xco?WWN: >nE`~/NrRėg3N!C,ۘ,JQ,ԢyI7ܱ(-TOC ~ˍOA \A DV-7g ٺK@l`k .J}h_pZvUT0k kĸv0jٱlp F"8t#ǯEbE_n|QAO+K #Lq$cd4et$S/W&ĕ붰6]}*ܵ"E@_G\ywK:l_u.|jUK@F-"T6h<Hq$CpCi0&RDv|}CJTb.qp-!(7PT Xqzjz㌇e)aSd|WĀ)pCmAׁd] NQR?D#_ȵUX 3aZRLמn?+ۀRœۅ<۝5&|A:ziC8/C?a} ƍ%,w/u:|$!$Jg`B#3A}_XG\!,͌^ɥ/AfR! jv.qsBN' o Y-Cy*,O`>!<&.=24t05҂=NU5cWː Q|.ޢ\W* RS =b(Jďebա-Gz:Vޘ`潋 FOqY#-;TvfrCokmy5Am>3&"15EHv'nnf:csa,""(*%yzJ= i.LSi2M,G7 g.c49g;`8TBysQ%p?g}[SHQqU]KTl`(B'pꌍrp(~Svې/קT픞5_qFXf8FnJ!ugop=w0~؞: ,)z*#GL.Q.$̽ى|OKOC z~2RF|xs&J (=OYݢ"oPz^jNlB;) ff`/ q*>}~,8ͭ8a!Eo SHI0ߚyz#LKRtfG g,! Mmwּ[PX݀xջ<A`9}w*ctz3_wlRUE Sobym/TS:đ"#=T`dBšN :JxPP~:r|N2 ݿPQI[]RY)f8Dƈ9&XͳLBa .=?XXBtwIBMs/%Z?owN&Cg%QLN}D뼅^zۑʓwyzO-/nY-驁2jkst,)I]A] D7"3?82I-')y _/?e9-?ICΔx#ʞAM:wR0LKaH8;Nr.'3I~P91ԕu*<u{EO,qWj6}HQ4H>ZkSϼ@kH*_H:JEX+o+_5(a-`mTDKP9U"+l"4 Rm-#Hsdb|(1yc.j,y|y} 5hKTq(hgN؊Upc2_ǏeL6w<_4@V뼰*Hx8[_o`O"]JP\7m6,F0 %$\wi?%9hڬDPn:hdc_4JNan#a0H]<Ԣr.c]SQ-ֶѣ'˖XjSm9޲o4 u3G@WGpV-{%L\﬌p`mUlR}K Kt}F!LfW]-! g-#^cOteU56KȦ~|Ok0=[R)'2p„'8,,d8O#%N֮پ[;3o#`l:RW<;i@Wd0F .4$fQ=K atI1~$c;SVcU}b~瘼7heĩ`eu6ljpUv @I~>V4췞UNrR0 >r۷=)<d!b5a9 ˛+]+L>U'"V]'% gI`&)|Rx8=L$1@M7+_=59x_t"hF˟aO 1T 61U85E˄Լ 7fujG;_ecE0g|-0Bf*}3|IwWhF?f_-0pzf*ԒE#R['SuDC&3h[ל8ToT=X-qa$ÝݺS"J+T~Z!ͤ&=;~.ɪf@ãZN}4 s:qNo_?"e483i$z֕LA|8fZ~SsiڰX[E~xQmshV$,,myb߼ڒWn8 #k5"CXkCEBuUT|ۆib`{ 1`> CCdDŽpU|b,3o;g-1:=gAU]k\ +yHVd&_K<}HS:kxI?M:]y>%YۦeݭUY1<=jk6vUg3"w]RI82hlds3亖5͞8$꫱>t~Jymֽb ^R*q`$ 5+94'S" ;lzRBznN4XA*| Z*QЇ¬եd2%J+]EnMS`Obo2;izI?*-O.}hTd۩d#ٷ1y* ++lE&P?8b˘<" HW/"%_64iEae~0SXT%TB[}(!| V䌰~[c']A%n`灪j[gzT!jUkBQ6Ԯ ɸ0 ؘKq 7b" fuU)i:>ʢ~3XRӘ7OWNęd?BpEt/ eGevx©OxC}4|fv!kQ h}{KRr1Rp%Uu&D AEl0OɃdՈ&6*g"/'+"}vD^);k?IhE1sX~4 8^s<;oL|^ZFul!/oY-vG'WZWo*^q`!Vg{a٬K.Ri7K{=M`d:6z]{k"p_x uezaĦ}w!qP.ϰV "ΐs،6|DSeAj!l` EX gߍ̅ep2g.$KRM~پ7 plQV2~{Z`M`^37< 6jCkc1[aErd-u w{ۉbgvG[74" BA¨hϲ5?arR$1g|=wa6zCcj|c#P$/nLoa++ XF룟ӹ<%ZbI7؛7u62H/dau|u<]]Y]dLz>c۴թSw5މЇʚc_\+[.&4d碫/zUZt ̂ ~nŧ{Ώŕ₃]윜Ő<"@FClcuXOx&-<\S=ݠ*uAJd#,nr(`4u"ͷޤȻ@װցtُ! =~Ue;>&AKx 䅜n`0(ޱ"H t5ݠz%GFA\$:z4cP??5dhl׺|Y@obXUӰ4bcu,a)Mr" `妗Qv% Hg}R uy뻕5ۍeD97?R `WҗH`k0NVne߇=Nr\PKk)DV~l;sgÅJpZŅ)d^yJz;YyQ,ҥӋzV}t5X3&鏗[<ӧm%I As-*rk);' % {|۔=NjXI2zUEn!V[|BFt3oiUL8CIsNH++Do6FIaXfg0w6YGq~ڴl7\_톎[nsh8{2_WFnun0RJ)I F,6xqD=l BvUЮJ`9 H{A-K/HSS((0o2 "ebł[n' ls thwϿ1QV;i&t&m)uw%xU7x,$oRA fK͑8hB|%-pRNH#]fHp.t"XLUZFk'VbnG+;aS]'O\9 ;A 6R PWD'4i 4d0 =rjHHpSMٿ"$J*?t#yC~ !%BS{D{ wQڑqۥt61ʸ)nc-A·V^Jq(8♹4*-U dE7&3T фC]|"dxgH舔@'= Ț辇F5F挷߉ Il L'GnsV&H?OdɿTzheY(&l_'5, ɐhjaXH}=6χH$I sP-8cT"`AN4ꕈ,ݶ ۅ*aGږSGq;.E7ż'||5_*r#fJ~ס"̱ڏ4\vضu ^n`RsE읰Skoh  JzCz`>X^q[aR!,4yV*2t 3 D0./G350gȟ JiYrr+@uبU"7 U;T* ~Q$| G[篅>eaeogEN?(Ev+s,_b2z`?9I`6*J V*ɟ/IJsi6L ۼa'ma?t/t3IY T$2$ydy=CS*Βx2Ӌ' ybtm"Q3#sPoj]% 3:Q 2AC#JɧϡϦystc5A7*Bf/_<֏y,HQ,#oHw^CDbI|lzQۛҷ]y#~;ܮ\OyW!Єv|!m+&K3ꪆSV ډ痠7K c 0ٯ3YKO21,>:Ьr<[$B\\tCei`w/X/bz@SGzzbI`.,:yfyS@vN*G,Kњ+7CehoROU1s@V^%WƶwiU|X0slN Wndмt5 .-GaH«aK'}7=z QM ?r =Lwn͹xEeXk~8cCҁfNxjƄҟJ#UF v49i*t+t,*aQrG|52/)AКϗe5quKPqɻf[HTV `ywTKq2:Nú]W,.$u0( R t+U,셠G.4g/VaD{z@v `gKҝvGDM7r#h͜;,kl>\E-+Op7rE6^H4 `Ŗ.DS(~#?h:)r%(!dę8]ovΩ{_wdHjӗtܬ*&]ܡ?I~V;*p k Y{JSX7=1(]JBT Apվ:<:1{7Vq]^K W]tK!Uq i} k*iN84Vʡ$3#G[ ͥҀಅ -`gV)'aF?ߠ׮Я@РF@RS x|Vw~ K4F,©=HkEy_DrX/ gv!(?^^P% ttyFbcg]&0K)u1b{N;垒uo d7 BRZu6u3Uv̡#hVk=Â7΋p8[?y1ſl,֕}n`e5ApB/ߌx.itpyq$S68 @U w%Hv56Wё7[i1 $_s+$.anz^(\GIz tQZ#1-.u}0NT8C4j1HbQ\AM]tI"-]o<ޢ/!i)U/d )Ѿxr8'HIZ>C . @莯~H#HSͱ[^K&Ōr䳨R̘L+C=P68+n+4v .5pl@Yq5Rc5-,d(rʼnke(=ZC!pe)!S*Mg8.]"oRІnDVBx ī.3DNZBM[vI<0Jb}:,O5qnQ"_lLeRO(!<Wk}7# [Z'Tʎ6fe%z<YUN5ۈw 6Wc` &3tOc}1zJ1寲 j XP G/&:ˍ2]|^-PigtNbX2l5@UA"/Ĩܝ<Үl=jt9vhi@ST8s=):hPI(*|uWKox/mƀ=$X0 A*˯U@:Ri+ԟ8ї8oݜ_ApTHjgtjhMX+9 _HqYkzYBTtTG~Va*R|H9 I:)sEq XmVg̀`v˥g̕c |S~At|d,}{qPE}>U QV՜.7*\`{ 2ablH$eװa-">K~$# [X[@h8 d{[GURk M+[b>ԬA ՈbFd=x쩣piN>$+3G=SdCkFBb}mVK;a\@ux'{h1Hq`ݫ>vvl\xmӉ-fFK܂>'d#aV'S|e|݋>y7Uzk~H1?oLU%Jmh9!=FnS8H9ʓՇ"(gssj{#L;|ѕ7:>3#ʍ Xu >MuvŸXւZkFhvJCC+~ J ? S"VC)fKMn n/]dŖ)jb*{sEq s/Μ؍Hr)j?Pguj+l<КA< }0fg4n/(Ggv䮳FB︇pQl{Zy+JަnJ»/!5*L_X aliXNGꯕGJVjg6BK&JG4o}'dùvH-`z96 ktӼƤ*BnK3x-ݿz( (֬S`sv`Z>1]o{1G{)O0: kFL+יt^ubo nW:gkڮ YVsC(Ss5QZOW&`}#zEk iebnMreheV3[jPܡ-*Vd_+ om#k]!a=a{0 Ee|3C9mvSBsd3-D?v@{aσ HZw짣ăڿu֝q(s{5JJlygΞUWчP\꯿z9nrԳo?he23L}MWTAbON opM]b^\/3rX*O Rr$ |, 5HJl9zݑnjkG1S  zbLkM74Zuԭ}Dy  / 1`˘;-t(=dX%Bo1k⻬6<<2$<wZmڲw-zp5k?T؅tLF6,TwNvP6rO" T'*%IHϻ2wԵ.wߴ!U%[9߇RofbLxM9\j`PEKt0|{`9E& R :hyA YtlBܨc`Q-n77XR B́Hgko8yxdʚ"n2Ճ#Z1Pe~|Jm V0Inx!ԐLdYnTSa{[nQBؑhsP 4{U9Qp<՘U/99'xu),ƵWIJ-CW6 c=|^"T?-_FX!^BjL"=: ^0>b^g93u`Xx>F#LϫPҼL VHXD() |EU~m߂]\[ ߃0jEwnYQBLo/IuCgFtڏĚ(W/ v91UTǨVh3"lycEu: HtJC'_8L{G1ڹfC?B9M4p 9CfTK}Ne)KٕODĚa~.q\3`-4$aFȆ:ȵQӶoB,¼."-Ξ91`ޞ\_H_˙A]#EfCv_*Pęq A![dp5f!sXB fK)$,مh63Rzm4kclK%۴="u-sv#تYkʡ_˼+)wT[F"w"tYoIu|`SDҹL'mdGYj;aZ_c #>Y-fuRT꡿li^+o&v|pJ\r `(}Wȣ:[C'HX2yj_= (kNh7= xB QhUbnaha3KY?F8o7H dDmc`Tyʺ]g Geh- <]zV4DP:cds!-ɹ;FBeKmEJ_)N~0I&1MWwA#==>6c`u]lrW6E.Ix#Yg}$DzD ]ª`RǦ|~BW Rn^Pq> J 1qR{egme&-?Yv#o$TjcLhԕH H4vQ4~P:J4<⠞tpOdY,s+G+-|b/"nu\Ymޯ ~Nχ,r]ZėȬ)YCUCB. NWG@~oc}GתU&DVc;L`th7`l:RtdЖ #ܭH]PoZNNe?_[zX~'^NDzm/WZd([aIfs}ٷ[c BurqƸn>c&I4;%B}jc/sOuG5()ڂM:v ϫ' ̏DN8 As8"9$.1-ݐ`q@brq kAANK&KkD,sfb@” M>^/8@zaE|`DT;G1RnV+!.pZ2vsqYLæUk^hc tsCa sHO~jI0I ֧ʋQ$"/'p.\\s͌I;gkҟ5OVC͑:v}&k߁Xʑ27QH"owtS:#MxD^j Mxa9\N]&6Uuh^ BSJ>Cé= :}2̏ Hr`cGmqK sB 8v|XH湨hP2`&3^iH:L)yf-XW/gO` Fh20#Ϡ^su<6[x&YUlNgsQh Z: ?zi\u qWy l+lruj)5޵1HYhuj tXoǎޱEOh]4i7Mv퀄ŰcQŘA4p,izQAZ֔Nw5S|Z~#;;2O! 'L#BqK#P 0x~B'u_QdB b&mV<@#vYJL`je :6|\c~9a*Go*oE<'M& 9֎Ig* ͉!\a%"w;ZH,tE ,$3ONsvYPqdK5L7\H  o(s꒿ëqbh-E~V11OSSr|iYÍUgR {MiGiET𓯶GTGJ;w`&eGYL &X-O]y?ǶLq}[;.Jujy7mD6n@$ۋs 6K J89yz[{K:5O}?PA[p&; q4Spfżse>S 9e&./{_ScUL]Y5螕tQ03ѯ;Q%؛o5پJ1.̩ayɥV P1 oqf \4 o /ZF](i"ELjg,۞}9:bf=t96ZId9 vCs<ѼFmA/v9-'yG&HGlD/v&@9;啿 ZV-IN)gcauɤkq‘qԏEST-shS܀G0*/6Uyڰ=9nD% ђغJȊ8*S:JGedS5 6l>wq\N$a@ǟ]n "9= jر?4KKO$B>nWTj1{Z$KS]B(дQA%2q>Y^_ Xrfh(z?~\7rdi<*%;6͹jtp)<ϤQDރ )K¦W7HqhY݀C"Ʉ #AgA\C9udMi_ a钔eMu٫+rJ :C?Ŀ:BN^,!Jk>W8禟wh2BNE oF!MBUHbCK0{7VC3 Z\loUQ{rqa()¤4o?Ұ鴐 DpTRat ^G>EJ ҡ"$75XY3‰h,i Ams̾KRJ|֋CF}W8D<1)}FL;%|ְ9QBF5f,=M8 *Bz{ƒz&琐:[SW>]0tAaBwX!T`s4C:v(D8!PdrV3-_B.5*"^a\],WSA]%j"AAAD)h#E~l(Y 3t>2?&C(<^eW|FTm$W0|@b!q\̵;;TU{~tiQ"H*$K6_8aKYXr-33HF hN_2gS$")US舆͕T]Fhn>Ca5 1>Cy&4pe 3*h٥ pQX`+B3CUH'b.%Y`R'xٽD%aͥzBV 2Ƶ`Dfo2[*l1Kcx f酌+< #seB6ʞ?9D\z-k"FHʤ  y+4=ϖ@`gl9U XPSct<>7_=Yv$f^B#ʂ#S'4\\v~Dc9霂0 U 9MxAO0fZ`e@ rc٩P_$tdJK>o1kqMJ7pL/Ha E$>otb#gFEo73M$ C٦V_ab:IyP]dS FG,fR@h4!b<_p%dur#>xs`/OfB z"p`$yg*fK\^LUymN/mW*q^?dRv0gUA؀RBާR'~Q*U3@ZâjXm0l+8ӂ2%2EZAHj،D}}`$NQ@.f? ~|yG3gXH-8@Z*R5w >d`R^xy.9mA<:}u*2Jp o+ JFlf|6 9m oi-hf~}\O-}!PcNJSZCP8b8HƎd#C]Z>W >շg! UYI>Ch[`SC}b3B9`:Av'm; 6vHfḃk;j/c[Bs\`[Ax5b{z!PJ4Z?;I7  y`p3: $31'Xg˟ſRAR%7E:tX\Nݢ(uhb\EM j:Cu1^F'8Vsu~UG4r`rK[>-{,79,^ c٦iGNa4M}@ g~z"M6^6)^Gn?+r{C' υ9q)Έ?2Y]E y5;܄co90:]-ԢrWS~0hDT?YP ԫn{ڣ~.$Iɥ$Pw&M w8V(B?dn lp#kZ&X=LPx&ᾶ *TO x5M7BGy\MԅћU»S岳Ěr9*#θNFO[ P2a>^_A=.飢%@1ZEO'b$ϱZ0*tlO;K )DJ/Q>,Nm~DUr".k@䎾*L!6 QGJ{}HkZ͂ ן> {<}WrY0uo49z0B╿8ANUԠ£o]#[b& XG3K.SaS0XPlJݸ$"Qn3 y8^2~ZYoW7ōS^mšξhb&Vvg_ ٮ^W!F6߹UIҢ"$mKE\`a_76(4v)k"'>A`_ofeůYau?R2!Hn>Q _$iS $sXqT0-Ƒ`D?)]£ȍmAP|ARmyϸ["a.od%5ņy mB`͕L/LɁO LoĒ^>4rv=3ԻhZ(՛"g{uQvN]*qab.9ѨOdti+y^: :~T7*1=۵bzHђmtɳ(/dJ,r,h _V 57.^.}{#"۠x|ìG3dQZI1>g<"8ALI]٤0s8f ov8zP8#<3("dR6W"E# M-tO$TilqARfQO$V4޾ .x]tz:\v6&ztD R<%J+!}+$:,@hhX5Mpxf)Tڵ)_A&F X]EQ1P6 joAT^w\2Fka\6zM` [yG20*Q('~*j@ 6E5mٍD9ꭩ*旚6Bnn#F't#J9 6!WΨ@FGsњaj U'6թ]{FTVÂ:T 9T5_/h׃|:$,pX+:sݟD-Sswd]pIP!˨P5c\hu`%feK8PXJ`!vA+s.,ޮCq"TԑϠQJ0&|JFz܏pȐ\+NHѓ  anli6 Ng失[2l塁,|_\ǁ" wp= fh/n my+rDIx^?6y!lB.M/l8&+$t]gx_}MhꞘ;V:e>>T`Z6yVqw~MB(Z }0R0ǪQhFv6'zM_W* xUG'Ez, K  ١+|ökҮgm%GObIOeUE~22>mZrf"m lAĄ WҌct9޸ML;[nVd\RE $ˢ& 0]<٩WcHl[],ZV [ WzhVE+iU#`7I®JYd?04 b|v^VYʰbYh-'aexԉ0,ZXga~88aiE5k1'{Z^2g˯ޗZ,E 6s3* r|`bkJt!<8> E /d0$)qg.Pg2 wRbjC1!ڧ&Tq-ͅz٠jz1dw/'Ve cE3nj#!ȇW5j5&D3ewfsݙ&Fckded-4?~e͚˫Fb9y#ꚭ9{P٣W؟gSm 2AP' C4LoNOnDj3D:$(^29>5J)bK#)4xzwOBJbw2a"_"BӱczCV(A<2)W@L<|' y FNj>,yFB.ܢC=#q\f`|P7=^-\FxaZL΋cLz= T/6Vu^ iSG"D4!}GIӿ_ ԇj*unQ ʛp%>]BlȹbrwdF,:oLz+)bNK$bd(sp&ZhSFN!uکK^m%J=OfϢ 2T ?!@% fxfh-Rp9N͍p{ۗțni0?e\8կ)g~@ƌ9qMm}QݥAf.Ж+ 禣]rP3X kcΕ6 -±S;}>FG8Fv1n!EnIGזTTrF*+iDlpvA1LgE؃+aѹxgDʰى71]* 8K-h#=;OiD6ߗ?h~AIfȑ o!  r>@.M"Few.utr|ķ~_bl#׻7/5DnWG5m (9؅sft"̜1K1Xܢ^-餹:ecYmj@H]UI Mwަei 3Ϭ[*W0β :RS$?f-<ԙ}PF!-Enx5؍uw!tV4Evvv!GLXΗtP< AQ2SqHQ3oT!ưm"*uUx*> Y̲r1ک% D-IZӸ[ 8Jlaв~b96 zwPuӅB$Mfۙ@Gjh昖=eEq.m!Z4a!RК [ȡ:-;ՌEo: DrOXqr}IؚauI_U|2zm8<:.y),!eWˉ V @FrTAJ`IufC3W!:,ފ;`E"{ ;&ƨ7}6=w塬zjNduf %`X4nt0ݜI%]UdQɓ߶vLB\guG^B/JN>BAǀ[J.nvk٨BBf2?8~M¬s֒R(c?&!ybZrvD$5-?/ܳ1OWAQ*dcHh(ܧP5*1|ÓMY9pJM$9޿Q.ltțߘ`p9c۹cњDQnB-ஃo?";ء%.yv v7\n.XD:i}8#pS@P0?BRCcȺ%JWEGYO/~0ŝ"XzyTDqB,o[w=.8Mw fww݈ԖKz+qn23LaFHZtcOo([cHH;Vꊟ^pw caJ]7$l]!{Ir>4V?9 E.X/}RtT>9շ=Onc D'U+jg8UvFuF@q!q!g;T<?w㶗kҐokF'y<郈b|e^(Ƌ5h|.1yAg; K.ާ[*bEVSF.UJ\h('îGaլo{̗sF)hx`J^"Ɍ~WcX4eSѬ,@u "2)"KI8~h̅}Y¯UFY(;3t [ @r(Q)dT?`LF S_ ?]@VnMm AJ}XbUO<88c^DV ;;vJ?4TrI.Y딁t-',:,pRy8$uthQ Ssqe@2hW9)[';NR+R a8wnRjPYXo(\d۞91Ti CVzw5kql;!1j"%CgJx p[pjs{KvbETKz2΍sA8v,oS{)91νm]1(ԏN-^*uж!|,^L B(&nkکư_$8mUC"łNyԍ,<q_K2!uАDa3Y& 8_+)kL'-6m̹ ̦ U m9Vࠗ2ː#Zb I3 0Y` &{du@뱦鼇&A^ogƝEYL=w3fX{KK;o$aoA*& B=d1nJgYm!Ȗw,TEv~Pn]6H{:CJsǷ(`f maU~|DlApKӲ Tה(2nM_s4t st}8*(YUSJ8R2v+pC"C:\wtNKՏe/Һ*#'{Qwx`SBmI o66τ)ƷΌsm,o5ՕvU3d-$ 9- 4O7y[/M?I6ŸYN>^u,nc`nΠH:"Yו{}VH0o;FA\ދ:BPq @*nK,YRgÍ·QGD%B}ê;jد#.>VM0so({%aИ5 U92ܺ G64(J3 UKMpm)J?woy}*9ƕlѭ 64SRd tפ>ƭ-g> h֜*We.72ȥ}0iڻj($hwg?.B uo~Z4\%kj4G%ȲB+K6 R^͙ 3$ pb#Ť_9f̓r4{93c #|7qU=c+kۻJUכ9xRFo 8o5DxҀ9Τ33NGP֒^]5 ?.sFErf.j 3诐jsg -i7ѷ;iw o$>.NP0{߰:Zd)U@t>6 Ed;uy VOZWE8۔9t5?| F=ywwq?EIIFݮShS>JO68joT8b͊uC{HVg"s@Xym$~vPf2/-,x[VfK#2qZaέ!/Qkg&.' =|w *[wД>qB!brFJFSŐp,<2^\+dCw4 |R56P: -Zq2SJ;!sFOXc:<  78eO$jǹe$ :㕲j\:B$ԑ}}9}vMQ!VkћkUB!lP ,= &oˁslՠ{;}V~i6QßXM-=u7yԥqPNӬF JM K5FވԎ#;]HdrX ̊gqnH9q|CXb|Fkuc \\u{,Lo `#fb2 ^i>D]WT@ja| )}Ws?fȲ$̩y0J=3^m"Cp6pr?uN=T2 gRIUXtoG6^"D4"R&nwx[>$iFf 4oa3G+b>fnإuR]ut@0gyrgus#/2 [PY7SfAX^fm$Vm ~=滖i8K#M[M5\T] QBumzaa*!*b5ct҃$5hncKHa\L#XE\W"I:p#P+ 멿z u{o&[r)8ς;y)z,A>=%yd 0 Dp,GT~~,jC.ݚ$1y 9~i?;> ~=@b rz'Q&AW-Bѷb^A,e=թcY`(?Mܲ+5`|la$z휢_&6Ed_._<I v;u#=QRQΌOz,S3Rȉ~IM_QT˿iz`# ̭Nltog~'p‡M*H:??aJ\irg /4OƑ"LE$FnkβxaZs]TcB3d|h\Bl:Ecrpj0cfJ¿!]Jl3R­~2Yc %țֳ?ʚr4HJPEGa0bXPfa۔k=R[;ll#1dF ʮ{ɮY}cq\`\5 W3}| ASBT~{i2"x[ˑr0YeJ%ϓs(開7rg}{Sz c>fW/L,/bzh.zE;5@g6!(*uE5K$#w~MX+0 [:>ѭ$YRz35(]HwT R^7ƺ]ml=hq&0?"܍(ma.oO]Nƪ Y=dNޕc/'Gû{<4RJaxnQ fV.$GD*ADkIVd$./"l?ž|{W0SK1ḅE;aDD/BqǢ%8^K`'N9|m݈2UrhUUfygF!-}#B|8[\FqPR/wɳ]WƏ~!ԩzƅtaTD~)owrwt|ae2E·]i-#wAVYVCD5/9 >BXQe^6xw„XSE}V!Qw#K{Lkܽ$K>Gz텦[zd; Xn\07Md&sa(m:FF{gOЉ$-g2ɚA0 0J@tws5im9Mևʱ{CLƷkc& aP+ӯ/HSrd2@4e@݂N- UL Aga.yZs,JI/:nn/{I}h#0Rc@7ԟYu<>5݄d6XHPJ"({0>SsL>Rvc e$bxC잏[vؙ܇˳^dF ؓ|] 1%eҎP'YY펆OT,& ̂qJ57 ]Aa@ln0֒y^t&{ߞˋu9YWL۾ʳ\,PSyZ\rEy!@+Ncikž?OIxrፅ9 ^n> "{`YqG᎞劗%8Fnb0=;jH'V_1NڊXt'8HvV g虀7NfK! hWWhOavդ^ ˛#g>``3/9fYJ/~ࠪإBد e<̏18(AzNcQez>JP}<0p6QLgj./iS1ΚBw Y eG1}ɺ?,8_5'xeQ0Ɔ`y[R|7o!&f襨R/h3ަ-~Z[ uybkgLH#a"(r)*C`( E7 o]ȺomUvt6|$Y+|i^.1:F} ߃t>"4yZx猇#e]Ux) XbIOonH^$?4Kte F[˵.]O;!l &n%LgMcLH, QҁfeS 4#:seݳ̩ANȑ!nAd|yUjZlh؍)p|e_ h̯́k׃1Nh'?ob 5pۻ^S4_ްnH[ dHͶCIb?;oD ͇E~f +[bJ7Y@ِ^DJѤPy6j_"AN1ÕQ'n W wa0oOL.V.5o*mu@J$P)(`^ipzx-6q}ȞSB%^ L&10Fa.iOFv#Gmt99l$M+0}_.ƉTA6h* "`K(kXLGA˄I5ߨcIb,CxN@f`"#v-/mVqL!j(%~^LGP=K{ҁ %"OIszZHVa8xn V[,Kd.ɺKWѤv^8cׄ6,DDC)CT0i[hwp`pr9ys>lSLB!/kGgH"BgeCDCB`iLXfJRsgp-V =oJaG `(ҲzMReXSgrЂcc[eKF-UmטY`ix;賜 h DZf +L[fsv8&h;Խ4hk qT.QpBI5BLD9/Cz0 ٛ| -ˡKW̎8۫fx^(ϭx+3 _ WN_G&m_TRӅsmC87Cp"iwtF5v:ˑdlGͦ2\+@Nom_3aJeq4<ս8茝\Ku}WU)Z;H. :'#&6`"pe[#zr]_4AV;;Jy䠅ڿϷ/oπ&זqJN&k\fx(]|Iqdjqx^6H:z@zJ?$ Bi4Pg5~ף ' !ȭ߰Y @l<#4ΔMU8H1htw4 dE_~Lu-ߡ ԒcEa]60r-^Ę D.P)9 ܭy<,8hTwY!oLU[0tu/E}]0ފab3X+1mEڰ!دb~~vQ5>4?9&ny~ ~5rk<#D~c/?xP9ʘLt9E n) eMp?Z?w,^wTi]N%}idW\W;7zE( |$g[Py2'R#cu Glxy6c˩z,!g\|ʽ*U(r>8& Jm#*8p#2y!J H^cj*H&iOR wO=ezٻs:BsC8qyA4(ZTypH(;]G mmvUg8`/1"kTՊ2^xpb~G@ ]QֲK*S @z0'=zwT˄;%{S%@.I'==18`FOguw@ixMLOY,s^]U+VB% m3y]+XX [  *Ke}25|>#S[L8M,HMe+nyONo&Q0< ?diC+vWS(Yr'+sA #[!.h9#^ѕJffug;{R|Ue(uQDnJF .h)&FKy! ߋ1W!t&DdpO<:[OS)ȳ$3^hd -|#'5tH^8yb5Zuv b)AtֱO'T2Yt+# +wMӽ^3aOܙCo;Q*xߝ1ɮQA2B`NDhIyۙ_nLdNäP36 -VՔ'EʍtǍ0٥. %V`F 8 (6aH[wG`޹ cI+PT6aY f 2,Qbk~ዒIB?GB(-ui'Ew y(pi߸S8:}/Lnq!\mABl1Oz #Uvew!T paDd#۟N}շ+8PRKOS n2};lL?!nľ>g5ir=3z6՞S1G*fL0 F#ˀ0_E<*eJvԇ6 y>H̢tTz:xAx zsiKn)qA#(j7*Z>BuUU.frNO9ӟsAz~> IyʨկDP\XTw ~Vc_Sc6W*~giuC()%tj~0Y'&ryڱEή>֍v5{ȠBZ%YXu675 h2u0B,2<;oĂ;5IPSibxoɦ]JT sm߳AĜo ^&+5b黏\A;? y`LfJPsܝmpz!4ĝQ̃f- !׸4tT,|d Ӷ5.:QB!˹]Z>!JzHw҅x9 \t;K[@f(C[AQ=#'٤ *U-_<@2t_Y(0g] U$'WHˉ"p & 2F _  M)9Vd|Z&,T[Uo@v*mDLBtnN{'풜[T]!jwɁ#Ѽ'/`Y/BHDN.(ǬGFnbR`V`p!:Ze5dY So4` hQ;6Bn]{e^\Q<-+ a%ЀY a0+YC m7׃ct4=R̺ q}AT jjuǟyk,`Vz~ _0`i7,9LZ 6Xx>q pDm4tD6^^mۈ+,<*AG2 Ft&3[NnR|T GXoNf|e0UƳ b20 ^ -{%85luu㴷вyl7TE#wy_sz3uJhnV(`KF(/[Үvxy2@GMOGfōbh=$/]`WL1vNӲ^+|`MJF~E&.ֹ:{nP7JOdןI4}IN/RQqAYI!^! -h-)Xnsz.dɢhߩ! {Obl\?|Y`,rk{Ś$d5G4C_ UwhlVPKi?/ y-sf,3R5m~:nvjszDm=FXlAvĩÒ% U߶)_5Oj} N+C {sPR&uɹ> &xj?췂{J+(e'gSf V2bXIsj@^q;,+G%%B"%4޲d zxޜ̊tsz td3rN5,U#Va3+jfQ;$BϭHǾޠ3%#oE?J4@kR1/9v sq%ApEOMUBp/ێ8-'!GKط[O\Wdsf>!\jxU)6ڭ/d(ڵ̵wJ;; Rn4bFnaWF U)bĀ5Gd8ߏ {Z ? RjFg_hx<)}A ,HXX_ H%$3Ja{QÓKd]G!h7S/ɨXTyPGpq6~Ԑ![X%YV77*p{r.zj>LE~v >r#%T80-j|_Zy+x~:uC= }tU4[nm mRJ 2e1}3fU?^ٕΔIٍ}'?vǗhmwh$Ht8AF- ھJ#`Ċ N0->S:fD"$ J#8+`l*&룒ioo*I%F:t${~#[U~ު,al'6X?C=fB!4%(,YW]e>eq* RJ08erD/e_w%LQMxQ1$H.R{41햴u|~5O?? AY^ $:v(}'V_:1)up'؅W %01\TuP+vIX 㿻Ày4 ƚ?DD;gvKLP8_fM@ @Fvhhzw%lX!/nVViՍtmڐo~?(L`/n6xRX98%߷S(?̡(_P(3Lc&؈F#g-d{kq & R(B:wҵ}љsuNX(Fjӎ`FR .߂O7U(΋94um8mL沎v!JbfOa%vB<;߰2QR2bgD~v۩uT @G kKIݢ?1ٍҩNA9mfO7|5>#n*' r.`OSt1Sl]u%+2A-A2%5҅2!U+*i1?2{p ~q5}#QO`PԼ#AFZnrKVlL/bϓT/w~FL_G" Vnu?g6a[gjV!=ł[&b*B@a/Zơ^^#9;a$  $ҳ#–C@Q"2$np mm,%YC|z  5[l ! YJʤ h:ܚg]Zlrc]"^ę71W?`A[KCQmB?dif^ NHa Yմ ~ bY>Ou_/9)Xv}90NE!\ZZ͜/t3]ëfmI)Tࡑ2X6lXdrLL& #Gяk֚O0]bRa:|`NR#2>DƤѓϰR-LO$r .,\_X&l]WZYd3(~O&@( >Z =&\ŰπM3PIs+9Yt33{&$e>C\qlus rpSɤby1Qpd~-s$?[4"NG~~Ei8F棻]2Gӓ9K%a&һ^c!I;([vkP[4qf*^z+AH}.t HudZ }=[&5]#H 6)d=AZ+W(eaM))['p?G6&1;Jv\qK a9( 0U= }IYJs4ܟէ CAUXMxsQ%{'*S{Q^ a3U8<Nw/ 6^oA{Bc x?T&׽C^ o{IAZs,e1Lt )q'XLڳa]\pXE!_/@ƹ+fas@"vnT`Fm9K7PbF,LLQXNNźPL\6:kBȵ=;P:oϺ_5+h?G1FիhPC @6x Co9Ƴ"wՠs5g8 QC<%ΩeI%6o#r 9H\p:CΟi&pج0DO8O/tw3,,_ cYT*Ssxټ-޷۹˴ =iGi&FQ}/_OݝruJCÆ ~c\Aӵ>SnZu'Kvh73#GF =٪i Wf 9[Oܦk6=^V54cr)Q-dhFIwߵY=Bc?=Ӈ؛)x] d}.p7WʊQvOs {\|Z]hW% Z?w2Kr0hv@NJ :=r=rǓД? \L2⎫O&_C̈́FQpBADWwlzIbsV\/TF!wUO;zL? PC4w+H3g1[XȗN&:s331(F~Ñ1G3YGCf?hS;%,c^)ierWeYCh^e[(tW񁡳 3W0ΥtcVq(%`x&U ْ,.t{JTL0ᇷDĸz:E"|[`VJZQIJXf2R=:oϐ?3Ƚ? (AM"pmCBH̹n {ԺRqP;19uo]nV%fP̤ׄϱATÍBfCL"^uƶNJ^\5Жޣr f mTbcjxl~H̓U{{M/yz۽Q˘O|6Cj%568,f?'I1t;sI ]zu#<Þ(<њ3w^$M++-ߟ&$SkȐehGFlCwu}tv+_CA h~p&B]zA6g U|2>#ȫǍdtjع.a}\| VdZ(P i`a,)I[n`zoEy2~Ewܪg#J!}``^y6 c\FddZTo1Ǿq%`ti<[M5Z]\B]ܞ B|"IVR̸2f7.`'G` `bE#KQNiP׽X)sEL 2ێ+S+F5"#5鋤WF|A(QLm2z<y 05KS)rO@Ŋ6^!pJyf%,k 9*8ع9JN!QeiusU/e- _ GՏL[:ґ/`+ Mp@=VQLyBi(PjrvtҝMJ(װdR"+< e"WY#d#m6A%`!s=eG8ՈN{Tǒfԕ{ 3D}*ryL-ݖLS,ږ&8!ӺZ\U\[ю PG'^i'h8Z$Lwt}eejyq3I*k-T&El [4zcu%ڸd1VcCC.yBTI9v 'xV],3k@B*7wR$OgoZ9`$m$+@`B 1{V?sb=@-T;}R{8⎿}{2U3k:5Ë$7nd)v ܯ_@OW`$H|RN5d"5 ʫ}ݘwܙ!݅ mٳ%EWCڶ;YPfwn ֤9xdܬ!fNJ#kRY8Z/e]B Lsǀ > zZis,3A|/YWbKetmA4 A?f<{60VXh'% ](xwDxq \~^2+.gd|lL]7Dg "d u8*m<^Qd\:2xrn9IlFxrD@M*83H@/τ쾪vpC>/ J(V.ɕ\_ !oGT}V#צx~ }zJ1Y#~vŶGr̅b":c`i} /K۲98dif^۝>1'~+B _`dKa[Rt:&<ڄ5'㖯-|`7ջd.0X)kS=a[gD[mSKeOD+,qR~1 ;&tL ռXHƇ` (UaEŝs a;*\H^Ql/C?ìލ#g|s_+D_jzgխaEoK[1&[WodTn4*3b?q44eidI&++U*aN7(bԦ#e5؀bLnJx$ ȅN_*@饋D %O]1"YI1q'\aC'd~vh_."_9_WsN EA<KefQJluXڕ5k6ŻՃUu$DY5J0Cp&C%6ߑ³K̩YE|=49EMr1[PA(ڟۚlB=9:xGk@apoQGI,{:)V \nyS2tC ߹$01tJEU? qVsCʹڜʰ^ga2k-O}U >NO(ԧ2vfq7rINu8F~.|o?hp3>6# pUcɺ]!%t7׆GY_S*V":7eͯȶ\D*ZBg'ti_#p񏎮٠ׄߧP $!N۞e?w6`ƒnr^"][Aڈ#*qM贺QXYH]昽*r3O+u ֑P@p+(7)*fYBn!XnS荻%?[T3RJ>$c YuYK?/ vPB3]Yrz4S$%60@x+'nSLtj3Z XR2ΫuarAg]iW#fK#'b!b̀:[O6U:m0gFECIhTɖ8o*γ-m튯L%YE>~~GDI.?4t $)Amz*14@>7'i!e,uZQd),(A ː &S1{|^{Ll?m77߅bE)L 7 ֊7/,U Br; ݁@~BA}}5tHظal8G5Ph97t{6/t_=])"Wi:7;H_M.P8xU w|wݹgA)na)dȼ"c$|$fYlc#ʾy^&0XT_~ec F ^vaqlWsm; #8 ka CY 揽m62{ųԜa&㧸FLRlN`wAF4mK 2KFj.FlMH>l>_MW,U|'N-}6Fp5ߎ>-[JiW<֚s@ G3cTNbㄵ`U>v?FcqN63+U͉3Z֫z]R^ 'v쐥;ctWCC,ǭ)g2ǔAwt$.w>d7Xi\:VXoz~G8m0-, h@g=s?nޠuFtz"!9*]>5ײ+Cr Ѹpke:TRh=7xUL< iSHcɢw'Ks+-{ 99XN @0qy9 m8Y2I*[S_lR|Lv39pJ rOYB\M8]"s9W {/2FH4aE7?@ .tM)4OHn3TYW'5 mk @F0sICfIyڶEGŭ洫! h.@bx/8e7JS֢qK* !Aޘ|~IP, yPZ |8d}Y8 ͠i{x~Ui{:4fu^C:"a7z@5[Arӓ3VFEpOlj",^M[;D}S\D;6:Aޥz-eElN9kۙ@"e‹Cv緜qJk#9M\B{|ǡe簈顲ʭǰ^SV]Ǚ@< m)3%xVc" /?Vr- #SJ)=._NojywS z8xV$d.jZCsUJSA ,d@ъ- B =%T8 ?t"q5AIRF ]ڬ#Ec^ ]sXr8N+BO|ÓGV&0.R CZ'Է<)܃Űu\{1P=3H)X![t5bR'il.L-0\#4M o+ gHh '_E祋Ok>E !h$uط~"smlvx5F]Σ:0zZ+Lb*forb # F꣦=K䙦ɏڵ\ 4_q&f\~dJރJ&15# s e51ۤ1jPqh5b/QU_ns%\ V~ 'W7A>]5E'XJ&Q[XٜAi6v\SikM: 3=#lI[]> e2'OJ M,<΃'^'-Dz!8v@;2 LnSEH|3\fGIz{sbI=*9* }w#O*uWR=@z沝X0aQӘ\2& %2:PQA' &ks7)$0*߮OU Phߑ6rҗ;5 A/P}p{m8;4 uxUlOEF~,墭 <~o1[ e6|Z UAx(LjDQ@iQԷy 4ӍMO rKVm_boXުM> 9,&"nC1Oo€]˶}Ct7nCYR`-(Be_m{%x!쉈ȉ݅DHa @pMCRS%6R~^mGjV)N11,RU ")WC{(l*1ZSi%[ɝs7Q%*We[v@uU{荦7W#ïѣ sm'$8emC>"RCA J^O4Sf!g|1DtFcf;`(Z>ZZZEu^4sJ3lnda`~&ϾU#"f\^b1$vxWӗN $pڀǞ{ Z\+xkgkKå&$!Ԧ^A72$V49'PHы6N1FUNVȦNWDY%e*MM *rK[ܬүϻhyId(LsVW*Lјm;VV[y{ Wr|M;͞%an=Eێl\~!p?MnuĎk5@=ä>6,yƬ (@Jy#~Jl*[R÷8qy&-j*Wil͡(5* }o;P@I0kO&Yd\qT7Uh*˾x8AQ7$5yEt;W%73)w׶iݔκĒMC X~Q!Z"jR .cWG?ߖ݅H}GSNa℈mE]vp-3h^kLz%! )Cֆof,dXx@YC|ɷDDûMuOoPYX_͎(ךE(8@ecw -yPő"Wi)<^rDxyGc`fy} $~1c7 ŏ<M l9, LixViic.6ʊ}%LaCMLZ|E5^&OTQ)AHUyIe_/xN1{w`OއOf6p #`Z2]$'[}šq ' N"/_mGcmCf}^H]f>\wޗF,}IȆw󹸕}gMx¶*$_-xIpՓ^\RhPdܱ7B+BT66n8m?:b'(ߍs[M{E'%b֯ߛ/x,[JTY|\.W UD\LgKAK$Rl-Ghz06-2R #:2C6v :E^Exfp#>qj u" ^+3:YhQ,Kmq:~*jHv4OاM>|oϏ%<[Ӈ S{1{7m?d uس3|O"?U/רyߡ+&'>@MіEVܜ#Õg@~*Ag{5'R(-V[:\\ l6EٖtF{X4ۍV$3Wj!A 뒢/#/D.l=u.^TqsJK(0mQ8CA ^ ΖұLsh)wwܳ I*zG'6ylZ|S.SW.ɛ@6F,V(t*Kn|nn'Srx?(~^'YIwCWD e?m,CͯSu'!$"nHj0dצ[>,U*uL,ˇ^)&[.h#gPhmc>ds.19wCvݤ};JJ}e .}jHWE!A#DHߚvk?1ymFL{DCELohĉg+ MM"9Լ*"OqϟǛQ]>IWP6M_6'LF;{+YoT`6dS1=ƖeˡrneKr9ߺ˖~` WfEȂ^E $ήųvOgRYG H$!Q_nvu?4N\M[Joe~P8SNq ,XV_݊Y]rXzʷ );4 H=q z U;GP0#0\[Ks?'KA^B->P:Ck?QYi n*m~׷tnPђu nSqyV]K=1~.'4 t+=L^P=y9^:z;K\G3;ru*M@2;\/^sgҡRt{̕9A\6H@@3GcctCIp,j4[RIJ} `=7a`{R!D{le ;Uh j.)ii$C*A8,K2ʊ@4 >ls1<ف[&2 ܓ[)j~vh)<kb+;gzD.07l$Lo4EY R.utA mxqm$h߻4~:q;^ڡ7WN7,fJu/-ev4@== oI.OniD ԗ=~eG$Gb@:!g?(jVΎr 1cd T[ X=3T&=i1-I={V1hF,;#Ό[n} s`Že{~9%NM,b s˚Õ:f+lpM"cS 1 EGy2/R ʨ U$@Y\})kr=D?B*W>j s1ĉfO|f# ro#yqdj9j@"?`B?yGNIP]{Qm\.@{(78a̦>6Gw۽?dŋ -pߑ=oP:gq_0Q5opOtѽÿf+\vk/I^ڽGb1`j!˷ uM3 +.!m.9q4w}FWhRnx #5*mWuntMkT}t/*vr}a(DR\YlxOE|F1;2g&Ñ4$=nTO,p-;(P/OSՇ|&a5ڻm1!fw0Oe1#PQkK@A@; B]2;fSOeouPb/~$|*Wٕuo&+MI=6;IA)l-1fS?͍w.d]R@1r,j\dtGFaXR{N/w.#¾\v/h_@#9qt=Q'_P#/vO1|'c]c T}-zZ iPqt}Z{F[5&1jpXJ.wXw>y[7`X6rT 0juZi矨kT-ǔI!.z! B'Rn g0i\'}aU/Ѓ>ViЄpcc{'Yuń,7E>!2mu]>Dn"}Mm7XQ=^b<;ZL5wfdFGl*hn]L>Zu:rf$K14QOigΚ 4QDDgLJdryT([,.f5"R4Ьb)ٙb4IDepu5qB:[SK*阭.]z[a \D8p #Os!54r?5ca?s yYgR~MLr=#Y'[lHٓٺ\1}%#M}<[ W::R4;: i/'UEJ2S18yB&˔_8p!7h-Lk ÝQ ޸+57ZKLdk)'r?VsW71],̑@g_7i ':dϗfo՚4&3Hw+l`9 Ff}SSV[,THa٣/F)iP|3:}QbNSoEU LOD8F:" ePc޼%8 CApes,Rt3{GLM DYU:Z=e:]iÞyB=YbRDh.;Ro.MF-.n@h3 943c+r[ɼKaHTod:7[8 j!r#vj0 cA>n\~L^&' nT4T݊ ;;IŘr]'RԕCW ?B۱$P|,{WY$67l(Teȫ5"Cx/%L3\K[ L|N#n4)!|Fɵ"խ3% gd9@ k\P8 N>Xmq:~H|!xچܡ>GlȷFsڇ)6VVefrts=r{vZ0Uy⛖R"{g`,z<OeamMrQXR# ?tf#,X,BT!AcK'H:nt>N(Q !m=9?2hgH!!N<9G,2SMsPnx!B| h7O7g<CAMT]oQm#óp0cw;X}UE=$&F|c}،go*C[ d P$8#GVփ =r!LPNo[&f䣣D?c7b{ ީ;͋<yv!֖TRB!arZW6k(ѿݫCȴokt^.ZFZiv /2wfr-cDv$93O5R{?4Z<>梼-C8͑ 8[frZz՝S^_"SA0ɚ&L\Wo\+Y10dDn4ʳ-}XEJx3̜N 9c .h{T":V1AGtuûJhY5}|#d$&%Ao#e>:FrF6z{kL"PZ_i"ibdx0UqfI} z@e=2Wr83@ ῘSpNʳX>3MVNFv=c>E7V/`pb݃*¢i< `(ci@ͮrPfmMś* ԇLѡ fS7w^ & q"3tEdGMO8# BEQP۴{gQzᯚiKl^0if$ͧFR4s7 ɵ(b՛K);TgHH}wKϗaё[16LVdwʦѷ;_ !2n8nfc 8fq/hXh n J{Ks زZNhqB5$F?- g]˜|kҋ$6i@Œ9~S knS\ԏ{N7qo1G'7%.B|;vۿ5r.hQIfh5´I6W,.ݸdiL~s6XdfeiMG)L>\W֊{Yit$4ݚ|)VI>v}K aHCtr!Bw7&)ߴU Q,)"S-I僬MQ1yVu兽e2`O|VF]r#OHj; BZ`^TvVsq_:z7x>{m cKJՠ#Y2QLyV[SUjCkEtf}~Ұ *~[ `h5;}IVl3 Ag0 #'/[fO1Z1|HVע7S΅lרs<9ƚSddLD=9{F38OOp|BҷmpdY IQWY,95Xb'\ jWun(j  02syK3ҸF^ MDnP~,a1g dVTL =b=F'0 ]B%no_t:Iy8%쥪ߪJFAz[ǯR@<}KJMҲUQA2- ÞnpK>ȫ@QDә1K6%ґsd4Xεp W2n$)tK$-i&ֈlW]`hr##\(ue3md$gF鰷KR]!; \ | 4CTӒA%VUYwI@T !%`~$˚{4YC?-eengRSh>;}ܾ~=)2poLJ/tYYTw1R P1[ǭ0B8mi#&%=hŚ<'%z"HA#7X7W;Z.f:&ݍ)ȯlodb'!LiO52VZޏ@.U*5-Zv`bBZ%,r""E˝UDft^%"_uI cV15vTk$I g1FݦgXX&oTS~K ,VTgbTOx4NP-9CN )2\nSҼ2-VXr.l j70-M5ù>9H+jL~z[ 7v|E~]xQ4s]dfd| -/ǡܸt`!-.gm[:h]G CfW(vb 䬚N?kpp7WVT]0нg|) j7UzkOT~hRҳ.e8Y_4OiSns+|k,az@=nvT y%p *O&9D/230gskc% Ck,%&J2>܅ Vtpa,‼A E}KiSWU{0Z"c֔z`YaTh58dӻk閶2~Q:4,V"_?pHZc+e?ZU:@AGf01:<:xxD(28fM nTKT8y!@ ,bx/N>skR^/z:,$f!uO[ǿ2D6ll0<8Y')2@TXlo';N8`z @:լ*+,ތ4G*&br,4I&PVyG;>St s KNʳ=XV6~8XȺ=k.\[HY 9z%=ʕkESR:XcC3[ x 6Hvרm݄MLA=>0>ԅ E#q~s{ 7 }EoӪ;^h=LcH:uBU8|Zjl~0sUIE (v>Ծ2=R/">Clkcfx 84)$YLzcsP jLRa7*rMދŎ]y3r9ֶgcExȰ{5n?.)`ͥdaV3Y-"rk;KהKOqTtG_9I~Uܮ}ߵm5(U\HUquP[݉$4aqJ 7\K&%-w4P,Ed꣢*NH8 Ԩ(<";=qfi-7 W:& 1ulRlڙw W0B E j)W9D~2<']R+ [j)S5.w,IL$ώ!ImX!Bzn@ $&˰ZNw8'}!\fB8G8S|ngQEwC f/5P8:H,YY/PYҴm1VyaY"}m11Nh:dvm^^:޽D0 I}>ƅՇO}(62LDЦ*L2 ݼYC|`] dr2U+pn `0yU6zfa?\UIEgH㔚"RTYfdN<@ ")t6G'ц/t/d^(Ǹ*e`*ڀ3_=;Қ3:ixŻ2|K!|xm=];ee(oб0] lnNcftR U8<֝ǐ1v7OoK@h3䆛k^*\ݜ gHuEa.KO飓~&L.QZԙ91,Όv:EUӥ*1jeKUiNsr݋\k?`#D!R;5[Lޫ0~th(<; 0* !jhr 7 O )VuEAW,_1͂Z|d(?}Ҳ`˨ǎSߋ]gLK5X>=G$*z}CNp~;9ίm=^0 vɪ8a 4:}]|<@ J}*/aLh; nAC0D /mu!7s)yH1al7=]n˂m Dҙi E־ d"E͕3~ (<Ͷ)J~%PˤX$> !(j>-j#Mc&Zx?]X5^zܖ & E]G1}:"L1(fC&9,q^bM F1$AV9̔D{&MQV eTM*;NY$2f";"0xX<^> llFTt%ĝ8MY> qR2Rbρ Y(.U"C#Y;y%gu075 ~X'o<,oһ 7*tCsN&)5Ӛ]eb;x_j*D#n.Ahx#[ܽvo E*[dw)WsqRޮ![O( 0U/2;wQROۆI--n9jG؄0s~G$'m˺igkf779ls+[&k^/s^!u6Tjf\Zū"zak3h ۅQǶTXVfTA%VEV^}J $x/5(u"dcDYᵴqFsO\&tݧYKl]cB*Mf=SH?Ƈ)g!x^&,Mj jV Z%e =_d:"sh)jُ׼$ H"=f  fa,m<u|"π{6p@8아.&Ed)DFu~ޚ3_s]Hp,ܘ_N.TL&xż3t>סqr tؠNژmn롘9[ub5jXea֢*]3טvܵ\e !=MJ|t՛۟?W/T8Rj+2A$7&9gUXSOjn~7@x{ kw9/;Ml kEޭ7yhq3.~VvdM_fmRQJ7<Ҥg骅>MdSX,/5aJdM!k(8,d_ѵ F_3Gr*2}k: 0nyz5n*ms!`µѳb/25"\6{1 7~^zOkz0{\PхNDѬHLD.ZP,JBf_MP-JГ:Q+E' _F56E/'ugNLh|lkR]sKHV ~Y"ٶr?~Q{9Tv5]Za\R}i'ѵ#筱 Ro/{h']?7я6mM|55{BD-6wr{ ìi` VCLo"r^Mp$Q>"z%4XgBva nSSS|h.7NsTdr+4c8뽿mV>v!5u̹@s9JQS\CEꞺU6E _ꋆ$[dždhQW5nRu*/"?,xЮ}<33ClY04i&&YOn6MP&OcB 3)b`/b$VIZf_6­,β>]MŃ~hv71%,=¢v`p[3 mPx竐2>iD"[D83sr 'Vh|K&28$ezy4p\fHG(Z8"C&Lbvh|vJԞq\[ sDW4Šu}=fn1^?wz4BJQS|Y~\=Jv6y5Yݭ]adk @_3^UR!߃wAm)-B g]e?P04T34k;/8Zø<Ґq`]=#f QCvBpJ:pR S-9⭛c/v;GKMdbTXP;aAXRYZ0dKCeļtNv#e3uW J784lL^䨜^^N6*peYq!W6 ۨT?f9!rD*TrVIs"l$;+m+2p€B)eOΊm cen6NR"[jdN0lW>$̥HZQj>{shSu4~yӎ80Fx:RNX2S7:[1@szh%C1&)bXqR/mC(WMpv\r|rvrvɎ'Km{TVAB̵'J+惗qBe5E`b#yF19~8,s{(-Lęd:# 00uf̝:}^$XGxjG*Q~yc .Fm`oh'[U6$v~45~RIګ! i)XGG~HY*=yy*.>)ߤL0x:!3{(mO.=JBo?d_TLDPQ>T^ltSdh,&ygsڎL=]"~e>Z7@]V<~B$QΆAѬ.9U0?S9e4o 6WC20?u<3=@ Jleק?Wba,T>Ӄnǰ,q!"wKV %(y+S;)+8nMa-ҳ08y<'8Y滷CWvV~s(#mpK7 ÿOSNƱ-2dO 襜`ސ3^޸ QIq?s͕sy@4\F^Qaj AtKTjTD9W/*tq\@XrEu*2? O~Uc:U"vR$l1::EA{c/)~BW߰ISb_/X[ɀG& ~᜾6$H9䀨طs|{ӨT8pWzЇ={T#E(,-3q펦13 0{bY}#D,U0ܠLMydqs)/# {:7.< 0ɊwʸqZXC9Vj6(ZNeP*vpR QGVIih0 >dn!ܽ4q&F+zS/i9CF%kɻrp9ΙC%\լU$pa 8A^ U3X{ېr \ؼwj;2w9 07{3>m Fn\#w` ,s;(;K#]0]]dʀQ˶iFfERJ]D:vjZqExDt>`cWdS4yHx`l $uq;S,pA1xoWH6JxNW UShSȍվSEaI4qʆ&ea\<0a 1e;=v$>I*z"ԛ-  >&5;D5M~76#B_i2[ ^,f?/t8TW:A2rp؉m2㪴JzgJM|=kʖ2=rx63 ӤA2sk9KaC@ K͖kA4}Y, u Xkq Q-֩GYZWY_/IT fbso֙0wnzޟk!y8{ m9Ytv5 q3w:YxIQ挱A=Ղ? N&J#͇N#kLhռs#+K^Yߌ ;L0#:VS"63fS^e(_R&Jץԣp.3O9հu-/oN(jİ0w(X'2G ;$Ȋ_e/PHWE"e ,y,ÐTG,(DϨOk쁧;pv3O/LGm~ AjIpFX gR33ͫOVBjb.8߁1RQɤ(pڢꑼY7e)sr+0@I(_6I ͠tsڅ8%nU\50?TRDZE}>#u9 ]]G#-1!>Žd,iNNlA lA=pZA- 1D/daEiy1?lޛf$ ؊`N?s쩌3y}DAD͞?/ t GL3ؑLQZGQRQ3K嗎0i?FV@ܠz^ĚyŬ]5ۏTnK2 r!Qq{J#?8bįNj$tPNş"!!K l#Y6xR>ah\4|ɡmF/朶!UJS]ɚ!etdOyHJq̓ۃ>B͒"6sDln<Ly\Ҁ[1z:Si>O{Cz;,nRoO`L~[trxtA{X Uv:sq[GZdXAô'4CuP gh2wnl—~WfP(7GK}mqct;<$39;ixDoHJPW(ҽMS $#-n8n~jmWeQA'YG1yUC !{d؟ 5m*`d7x,<R rL`˖ bU_*@nf \(֓l .=4 Uw~i.7>9? #W>H`ڽs7c!Lgi*mPQ5 Ixmн."Fy1('̋?۩ Qk((g~;+r 8JD[ep%یEڲ> pJP7 qsҝ?  W 4r[-id)?\>u.+NN QFʚedԦ rPwYlD|2!2 : s?;M!@+Fdy3RqT9u&$sIN86WSG0 m3"Q@)Ƴ z6=;\zmE NLX:EǚHw?%e! UT ?itLKEnmܥӛX’d(w:V)Fhʱ?>Vwzo22 ?L`0NZ6]l3L>FwJ!s%~eP!r7-I#FM#4= ߴЎm i^LFK&V왹q R6>.]-tRw˓YBYxSw2<̧r?pYS3@͂3@kfX#@2ϛd3!=#WSZ?D~RxY\Lw'P*YnYg\Pc >[{DU+Pwz<Ҁ l _?! sP x9ͬ)@˿fQ?dcG,]Ff |dY9 Q{p莯ۇg@ A:º׫E& w, R襴m ^2'?R˅ڲ* !;Vqj!EHQV@۰Ϗ1J]VeIonpL\qp$p0hѻfM^5NTuԢ?><-mgW.t= _P88 u.["Bbʿ h[¤Ru }aUv@+.$X_ E4,1r3,CЁ3be8Mv.cTq=byӌ8\Ǔ $tX%Ozg#{" V!C _U):2i&Kf؇<ّb q^Lv0 Gi%ůO|*t+{5V_CPw}='ۜǎ7ei̇X_/;t |#y.+2&+'mu{"QGeŢt:[ɬdZIKj |'8_r-uDgCU\c+%J . e.#){{:7`dIym˿2 *')xnK1-J+EU*ȊLvDq4Μ) 1*gkJ"UrUY'LM# kb,Όߨ蠠նd-  ù^K]2G `| 5 dd\[[yl+DAo{Ц^#U+S)<v .C׼Bc0j 0Z}B;Gd%8䀑Xj~r흀QW#*CcK@􊫊W?q{ēӆ|?VTPbkw==RKIʵ'e }}e9 :=+HQOHʥ^0եmc\#Q5!\޸Õk=ުmXh&HW3Snr(ΤD4T:AD'i!?ЬytONL}:n=}hDBLKP5xxφEogE'@iY0sFH/h_VBgNa1 E>m{Wj]x ?7>{෌Zro`YҭTMC.NͯH"p [Ty4"GSڇz7G$]fRdAUhK}iebg#MS4Y w{Bx=fS=\Pnk+2[zG4Bk]J6ڲhP@Q1dH'<>.xf]B˺P%LXy0=koš 04P#8lp+Cؗ7o7ěG0 g揄>ǗAT&ujB<>s.A^ycP8D8ޥ~*]]MƖeKWW^%ڋo^ҹC{ނ&c. ~CM7\cUXHOoQ)/{mR5g>٪j/NYpww+MDUz#6v(㈚4xSpѸUjYSpyY\7XERpy!*1GGY$IxϹ6YB QKG#!ܾr=Bt~OUk fpmIyyg=?^JO&aKXYAXH.srt.eꓮ Ylw;Mnֽ'=8)Τ-]@]i<bf0ksaЛWd h1CWxuxyRݖiVșҾYSCq@7skfQvPb)?ʔ㘒JMv!Hpyt$m4x :0iDUiUϐrݲ6̈Nh7Éљ2袡DU+&:(xCf zmGQquy'tZpZ÷8}κ~z=@7tװ uV'GpoZ .l 4= o6v7z5s$#Zַ׳FG>g i8S=`25˥BIh\E]}j°pQ؉sGL"Z.4pqBrןaV" ㍞?\[?%%XlG$ {fU2"fɮ )Q P!)F36kQ<϶ Xym\'>3wxԅ:#7rͬ *T,L̕sL%-/b-Tg'qC-ާҒ Ac7:' p,5%+IQ @ @~R 9uFU9U9D)ifk16v4yV}>5r4jhoއ}*i`=Moد&c]Χi\mʍ:1oէKܡ4#yha6Q(ɨ݊U<o %T;qѸr0(FrèT"{X\߂BYdB=wT2Dzq[,TK / MbaE"&pq$+Yɺ|8xąIe x]䄁u{G.eRԜ↠4phnO O"\ ^w,FvW'lvN:5UեLEE7K9+m/Fk%bPuR/G6rV"&w_Dv*!v c,|VklŽLNIе ;<v⋰χ)Cot.~s,pa aP80Qk 4eV+>?;:/_~;ZU r7/;16Ta{J6ّR{ŏ*EoT)bC%x/n+!@83+U_gCVٯJSX(Μ`/D{>&fpVwZCʄ #]$GPP.5aF roJDhe~^f[FИKK_:|ng'rBN( 끶D̃BRhkGdR7)fIvZs 45obA3L_.z"VN%;Y{p,*v%i~{H9)̷I7 ̪K,֬l!KF!Ue&䦵j'ړy@O-G,EҪiwy>wʂx1q` CyƎvU P/o8b$Icq&ŎX9g5ܴU8NW;*0q}·S %B=.jrn>1՝12ҳ 3}S_?8vkLvwd҇V܏OX,!s&eGpQ}!zmnS w~?wE 5d^/_&?SeSOZ b3KksFszns(DT+_NXy#{K]rvqx)3Aa<v3nJXg/IzmgN(ggeԲ2>QΞh?K'N!sb$8h81zJj/t(LxOoEw Rb@4;P$ly3Uo«YGFg ^55ϩ_%/ɡVb^ }.!bÕo-`YkԯkEmJ@C+ovA|)UUڃ423x'2E|mAjoA=}u=(K`4|2z*X:c~YdPEF [=dU*yf$(8!*MK*#XX|1)FiMW@U)9W|R_'4aTS=<!s3X1SR5=l߻ &Id`,`Ҧ{zY'rp;x5S uFtJ+2+ _E"q CV?9Hzל袵PT% 㐕7˝ֲ929 Ě"%jO zTʝߋ*3;STZfó)QiiJyg."e 2zӴYbwj~q3{g/FcK\ Dj7O|N:y٫*)ҏDʵ 4D@y&Q[]w}μERXaČm_")օ '&]s0+(>^igf6C+rdyd }uM!S&_ؐ?̧sDduxsR:,fĤ25`-5wdwWM6Yfxf_\hJ0$`#)|Dl$^;p/5 [?HoiBJ|,XQ) K-/Og-_6>aUV=!N{vX*1 MwaL2+Q xFPnĤ_rrOX: ??aQLcĜ_@i^;jTNC5"O)yp P)@x˥Y@|^@'DtUa=>z9|7>7kh&/#5h ƱPOS|_'[dRr:;sQ!r؞xS]Eskt`ڕ!KѸM P2vhWb8- !Ilyt;b'sc[}+Y˩lcfoVdΪ Po ]1b$y 'w9G:G_t̕l㡱ϜA"8ϔ0lG#?蔡i6!""U)4~147nbdnhovB'ݩP`pћ1bQ&0 n5}fMNߜmC֤N(@ {2E6WgЩՖ_TLMڮv80($ݤ9qJO\C˕f ډ'Q-`s40~>סd)N1ܱ"vux\),@(l.؞#*{G/[9L8uWHmz^#. ,f(n^ʍ|1g L?ɔ0Qc#XF·<$o.4:N sK{`'bTK_/ 22z'415ǠJmS{26dr0it6]q;h} C&]~ ֞:p$߻&!*0͚vX߉\+dtʛ x*E1JV^ezb' zuimq\zЉ_NiSBĪc]/Ц˖p<CӲyul)d؜H"zqbF}6C 0E1t[*vY{jete"F9 Aߙh()4F!2oSJ/v~=D@S HG㚹lFq.F7eV~} @kҴox1On<@O<;ӽgpx`e CR)e; SnmBIIkk;4;_ ffO ల efLi>,93-.pH vT-uhhI!hd[DG?6Tn "7u;]xc5gגV6NQKݠ,{u\ʣ`QЦ,Yy 9<h*syhH^0q|c GǛBiցvFEUX_|9r}市<d& Png\=T{xk$MYyZ]Ar-SN 9ȿ(-M/E`W^s6φ \X@Џ꼗e3FGΜTfG eBmdm>JY1RݤJTPrfԾ.P~'TlL{xJK!Q_$Q/?cvFyd_b1|/wذOUpֶjRu#~I6=HvK!1HD@4\" =>Xu1P~EqKa8Z* CY4iQXUjITb2fLΧ\5pcf"F&R؇p97y=r%dԠMoО_XΆ!x)ph2cڡBqS ׀L/ fjgJ>F-)Rv.Iny'.oDQIw!~qAWM:ipQ)H&6b& cι|]-^f4e GkbSٍLr}(| 5R3*۝ drUwxA_>;M[ecḍrcfLR=@%EJQ3y9Ջv́sیݎ < M %۠Jd='k$-!c5q)QEM.bոWG$iXcNNDe:5~_?p'v3 ZNλ@܃4QMMKT9Շ8l:yPM20{ E*RL-G#2ƗXp iV k.F.9S- g3eI" g> [/1ذP'}\f 8SA)ʼXܵ|iׂ99 9L9V}¡RYN}ǀJALJj]R ̋T\nVyz4Bڴ#'>`} {}K2:eiZ0Lkߌ%iyq'O+tЙmlVYCwqʃw[dY ώb,40q_o'Y8sA{r7Ir2$$grO>30HpsStfl[Toz"\^ňgcO%G/0ӓFVBm*&ބ})| g?hƯmt+R\;|>j`NIeMu6pu.=m).aK:s!{ځ Aru ljD"F X;26KuōxӒ_y?mz6k)m '%J ~'~ SPT%rd%rkl \Տ[2ɡCA~۫ؖUdhl$S斝o>9BнEֿD4( X*wdxC sunVRB6@SM}@v!N@AMHvԆSdHzȩ Jz[/4~CCVMG31QǢyӿy.pw!=uOP3[hsנ 1Ѣ4Yaw駎+5ϴ.mi}÷J0K|㵒iU)F+h̾9T]*t{~V!XTPJdDpSx7ܮZLڐvسj+z AHMF$`W;ɞ&ݟCØ(g -C`]MKH[<*x_R!KE(nJjM vD?z}9/s\C~Nq5?Xk>Mw#h\%W"RHd2 =R^*B7MSb!,^'E@z{ *W>pѿlnֵ͡0y$;P^Ą2|iȑ,.EKo_7zd#Q$xe;z v&lUunb⒣Doh:<]HZޫZʦ Ozv`LAT49"3H0s1lkuNZ.?Hfx5tRp2́ >xK]4nRTz fHV~\m~J5K>Nu ȉk UÂ%LY pī'SL~4ŷB{Ri42.4ϕ#p mi<`ҪpSSWl*eCoM> yL2 dLnRyMqx"v i鲈/µMC՚D7<ս^<\O` :t @٪ܚ3"1XLe:kIG?O kɯV9Xƨ_+-3?4X$ߌY> G_li$&$՟.ԋSp(ؚbJؿfhocc wm&ۿNbx7E 6εQ9٤CnнJ'bcwݪ0+p,ĸYt<+p)v46 wM3t16N*$`eE5@!*vIDG-j>4Hx(qHo_4RN4M:?q4qC=gIq{/Q ^P[KȺ/{]`.:5p6 H#H붙&:Ut>^+s8˕d5 ⻳[yUCf\:Sk6TWmNed9@k Jø*N6h%/$ޡIUu&ŐF5vEZ* CB騴 {5b9y4;(z9xd %VuEw9. A~M M[遷)7,@ڜ&{:\vt;?\۰5F:}f )9csR`h2 A.lLxx1˥A'ֹvrǣ2'}ZyϪ3|_UWC|?hn ^ zi;.L&Y?u_g[n$c|2Y=? ՄDo)tn d`#T{:k:B`?b#]nr=CcèZwֻ_k{@Jwz !KAK[̶UQ'B! '|Qڶ _2 J9C3[a%*wDNUHݟ7aa1J_ܕ4,Ey^lS#dfe nqA)#a:SڷF=FP:c^=9T_윌};m%mq;k&\,ࠗhǘ$[Cb75+xjNEy["s>*'A _}O*t&ǔ58+jh0JuǂgBҤ7S {1ߛXoP/厓'܀̕\7V=b?fɔ~b/מeFc:tvˇŧ^LAs$wQ]ƸGhN:w8EzxMimܾTZ)b˞6褫d-xPdd^F4AK_hk%=cn|z=s[\<'\h ÒUF .sdDA (b$;~ghr廂\yuS%ee3T zk5RL:уRDK5'1G)]\jU$$"z=%bVSgy FĆ E{Jp_T4{"2*.kX{<I(; TnC&Ep2%_< h tLWLt;я7>eC_]6uBEV{vbNԗ'd+3m]ڕtݎe!?!{C):bEE:\P:ОZ.r8T,go'[&S/c%jpоc%ЖPiMp_U-/J-ײ?O8oCӤ<чFƉ%sGcgǠYsvvKtϫ(AZXOzޞ"#V)YԊ ;kMxstnC KҎWBȡ6ɻiTJXG¤۝:*"%%H%GX?\PXW/ͿDRE%Ձ@ʟ/x:>oRXRMu)DīOF {zz/rJd3ǰVF*fXW!g ze8t?c7Рr$c, F,CZk\|@.[zOC!WR[ : y= QI(CN9>/qjy}Oz[%G4¬J3kP^J)T+`qsM[[WD29"},F0{~X, Qi@HLM{/*&c):N,)?s[逎jGpl`uח~D FnN{`Ǣ=Z])8fcF{1ɟA.b3hN 9Vn96 Z\[wTmac75u~j.@ %C0q6ɥ`^ܼ黾Dn +q>.}zQP.k5/Ud/Rv*6v;R)jd/>ηkVي9h8zFhxY PYEQᡨyD ci"eM"H~boPG%.k!0DT›pt L-!qqGRg]P62AOE[3Vu]:.+yáUx"n}9j/ zU:bXP,jbaz~YX}<-.=+WJş'LI:b>N]oro q/iZ@MC%դ$J3Ы /.TuC %Ǵ-ac4v#Uq3R~-5 !'u4cGn&ф\"_PdquPtjTQ[ǬQOz1, v3Gʘt@][8̾fkXzf,ju- 4^_ E LԻ{ 4˃mr*5Ye/iZ`L%\%7-3([V,k&`ZG5ÄNUmXv=?l>S0..?y-1P3i+џz(IJKTdfrwቼM(W rjm1f|,ZL1=$S1nuDa|cu6:JD0{1ntA~vd}|iKf mgӴyCeLO n=^^;:֬ BNtK&fKR8_dX@DBڐ[ Y ' ؚsʛF]NLg9J+n) ϶Kwkl$XbÛȹuAh7OǛͅ1|)UY>I[>DE2e{_&ZU8aE$FBfH@Ѧa}<'Aރ;@ty6ӗHYIu/=O+?bf!BFc zv`1u҂Ń6)ķ6Pgh'3PU>pbZ3)+0^}RzTƽvU,$mBR3[vgj}g1hkx 1Fzp /#1jDT0_UGK-It̰0‚!3Ww) 9+zߧ?e&yG?Rjӡ YAր4[H]'yX_TRj1u{|Mi# =vYJb`}˦d;tŌfpbvB]np51@8~cNt4'^\qLiomn^>OS)VtI; +H9EۓF+7M|޿O`ʄW M{xYB^7]Eh [ {WZK2L}?igi= o:ʂ'gq3EEr0Tԭ>K>4|SZm]R)S)Oȋ9vҲX ؗ89VE(.=u)gն ECkBW 9+ )@ReE7˜u7$ :@ LS*ukL,9s.4 L`TSsYS5b3&1ܓ[?v,; j!is?߃?d岕P46J[|&g>](RWlB.Iөz4S<Ջuċ^=ly~<p;luD_j>vխh*鍇oaR=ywL=)#>qZ&\j:>_ՄFBK&_!{)f-ց-sSSt6& Þ4)t ~̐ȄCTY sV6) lw%eTT-wڰO;x!wY ho|Nrm[P"5DZX%:|:g,zM웫sI%!dRvV1,LH¶gt"3@AS2+|GVS^9`JQϻp\\΅S*ϡHldwJtR8.z+fp^sV_B&C19[I T'̃1t[ F.rϼ85@aUu79^Q?ryXS$(Z=HH7ooxV?yM|zO `CnP_ qR|(Pǐ/t %c +kͥA1d ,i?![|,ְ]+Z@La0.$#rQVeKV7 nZDZ\g`bZ#76TOÐKLn!h)ki48 pzUS>͟iHV8vZx@Qp;+OOZztIe2$@aOXR*(;(\@)Z$9QPG ~,ًy+1~MnLUj}tFV=C|lNҳL \p=#CP zJI, @j& N-Æ8;}XdۆZW7\~(ؿSkP`d#fC_9[ eJDcP$ZTB L\jpNJ(1NJur| V p?S$(㦃 s3>xAc3c!Ø冺O BBB03׼_kBmʒDD CLrA.(YQFиS3l6%H4&rq ¾A'#oچ2bid>yз!S,}NJDEikO>^,Պ#ŀf~kڝ݌\#BE* 0qbJ.o9^6{-pw6,w*Dwu2I:P2nܪYRLlugGRT_bJ}Js*8_}דWùR'5$ZDpf X٧`-~O͝VM.Ex ߝ8s%)'\UB>iQg DjݞsCU4@yEßj-N^0&{ ԈâͰ;@lt|s?6I˗\w%.=o_٬-Jy|J|D*57\Tky !ߤ],x!^ljbt'ѩڮ-XOw5ˇ3yDWQȚxfϘh(Y0"$/mlᖔ Kenf*;_ <B*c!\YL:՞~e-,Rc[@n֙ğ߸O ֻGK=rdH.6_ vm)9q8ĕ0zaΐ cq9?ı,\^zTx )H\zLE 7s٦AٿtkԪy R7@=~*C]x7.GɀC0জόU\ Ff1]09d.%yBbM>B--8#dilWRSq nɗÝIv9ɤqg}QAg0wyIݔW)++tdw MW)|M*LV-fȽ^Av" RK"FQeAL 0q (Vkj+фS.dx`%&5bZkjKk)j1ABM!̨Ojq; kt_yqPЖ1[X1gOC+:>7l"%Sjt$A+kUbCN!I,-d Q3wPm> q^t ,0sD'Mu&X"Kmp8Tˆ#dM  9l%(fVIJ@˭wQۉoX`Rv{@wM(Y{U׷@Oc҄qdv͓KgP@=6&.?I'nn.L]2>31&_HkBzH2(  c~XZDqQ!D7'ĉ_MG*oqZǰπ ~85JRȦ0kqh+^IDv]~MfgOz96!%$B:`(LB6ur;YxU&xY }:A-@9xK b哣&AhRR5ƋKܢh4qXE׵PmZ2w{kpcCigas﩯`<fC€-.Cv">ʹ\W8Z9~8K}P̧ex,Zhcj52Icruި ڦ4K*<ç|1Gl".xH}A͉;|(_Li#4 ?@4%J Q4t醊 _>{/SVDϫe^-RL8.K І,;]5e9 e_(3F.֍K?)k޷ޯض'K1wo˲@;l"yUQ hex1 7mQQ! &U gelHt~Pjyqvi"&ou6ǯAGwG`o`V䥅¶U*F"ufՅ9hf0,ßfYc!bH8@ޣ<>&UD% xt3f&<ƛ/: ؋(K'S6q!~)B3f%cv9s֤cMSQGO`z#Rr hs "MhgWs6.t9R 7}jOQh5B!l?Vd5+Vs-²;FM$,oӤV5Zgrš*q$PvF[[uJʴқ&76[Fnשs-;F!"ј!okR$% ӛp) J2ٶITxPQ D5b?d:Rr%@ L[kB~ 3j"jݴK/X- k=sjY9EM?|Ԕtի̒,&A.ϝ]%S G`]h?Awx/nO u_5`c1*{ +NRei$E9.VoƛYNdOQ.ʷsp:ğ-W݌ZTQg_*%JY]s-UC6GH!֚pI~-4GF;'ŭiȄ}p}w?`_ 83[)?T]FioQK?McڊQ6xYJ@"C^8]uwH|=F#Lå܏hzA&1Ie LCG`&j'k׵ZVNBlzHc.]tL}FTGP2Xs~"?%>I$jPXuU Ǔ@*XmD]%<"anj1v231[bڎD`py@ˀ˂K ب(X:)r@jl9nά"\7B2DF|t^ϥhE,,xP:࿯<9fg2K-9z_ P6s#Y''j! :qG,Ͻ7#e66>>?=ϋO'넾Ʃ#++ueUT$ZYȍ~x/MJMHp4ɚ$U(-ž[A6!"X'FbYC5Ԥ~u]i],+PK888WhY)6g:zԁ х펨I[Vaf+O)Zz^I ھ؜G=O"x&>̀yjE;ST}0Syy9 ̖Btg\_0A-LE`ryro"Rڦt %GSߎP]FNj`8A6[ iEʹ'%:dx9=׆b=xI!ݭxa-c+f='B7yOyJǡ b¾S\4TZvy&W©Wc[,]oH:WWږάȋ(i5lٮn Hc /Y)ֵ]tYܯJR^Ecu V[Nl/^\ !(_ѡA/$f ={|/%fg |qǑ3TZi7ER%ɑqBpkDq@SBvbJVڀ~ͲH_u#4,&2H؆؟ ١,T{=2\a[ ueL/C/IV/U>a1w_71U<M_^2 A.ŧ9?k@*= Sz 2kPj졺4)|sy?}V9 C*@ |'̓e7^ᷞKb6CzZKt Y5d•rU)V=CQ\RpN@bu 3j=}Jbr"bL'$ZY'V7:&b >.7ȁ.c3N*Cq>h!K3<((LOZ1/쨌Jvx 8qd 'ӎm-:*2fSῸ fѽeók5Ex)@%n8ǻ2>7Ǡ-୓PVRcڝ53Fb wF%cF60۠7i⮟؎++ AG;r#Ѫo13{ͿcDCKWZ-zw,Tvy&B4@fG>-^KoaELWz*Jֆh3/ ~H#ieAUKR9lJrl^$X 4Qk*amHv4?>-wWiұqN#=- =-iUXB"TlZ.կW=2ѓWق p8gO73u| l[ό:6))bZ+rĵ`3%FTRu@Dbvkq`MH,}W3A량ƹ>WxA$: C\lMFe|Vq!t"V푻ALfO H^کX?e3P._("F"r[I A0C;%%T:ht }Cc4t+kq g)H=qH=@y mb88{z0HhB'(WXL-+I/ w=f&l6s|aI JXiko߱rCi"((t5칉 3eL}&FFBtY\@;ÜVgh!J2nVniYɘ(!X@WbZ8&"cȨ&a%e.0jP8Rf-\6L~@2Yh3ByׯTmĐ_%*1SŅruRR*ӤԠo!ď) r⅄*kNэDKȊumpR2x`7e{[j@{u%)կ[.Jj ɸnuM$ ghm\ 㣈Gmb Uq@ E[IjR ⊦J`;St:1TM?ѳJ =;ru ߭e#Q:/ϝWOwJ: } 3۴pR^.o ?6L z,ݻWl7K{+}fnyf{w2}a"[/ 7+ebnOsFNH'rvo2.*7s, iSlђďz˼9S%&gF{%Zx8ݯG&DY)<#޹NUm̄2 `{<2 m̤Ժ3.ky ڲp!Ym(yYGĐ^zLqZnyuBSc-[@i N-hQGEզ swѡ܃rP4un{ܳ6yBKK<ӕANR]5T1:],մ鿊;epP#W  nj\fď u4'qq,6nCx;;HPt2PD{_)Z2|uT⧳vdhmg}ťX/Igx06gy* {#R>ZD;H#_ #H4-. /za 錌X5d/>8I9K ; qG@ pjJҎvD}6V˕eD{=y8/զ hhoà@rlg6[|^y$4#Q3X⤓oLKˑ+ Ygj~ҩuwIBK&(Tmχ6 -JHFbm"q=B^8GC.U=/+3xoJg8)z H ONSUcnjhfip'+m=:xG nEyaӏp WQg@k$c;{}9by޳留1*@ˋG2EHrQ?дaL\Bހa+g7qnB& 6Mg_==DZŮivuk/!d0qZκ30Q`7] ydW1QmMI w@\ro hs 5NA*كc_beėY|")mCTH&s.oU߈`*KV'\=qA^#SxDUS{#I7~K,s] צ75#}V`/W D;r(ͼZ)0&%vF7z̻ͤ~E1:QupkZ.UVЭB>S ww"JŦ7Yl͔DBn 9e Oߊ@xShݻp_Nr5] n%?y%, byɄ`Lf@ /'!M9vJQXB"AA"om$$R&q%nn&Q/5msBFϩYP9G&{I, ubzjO<5ѩOtmX6l.rn74h2|q4'WU( ljM# t|4d2:jow7qRN@A11c5lOkI'>bY YrRW9Kj6s4>,J}8(F1c; !NṰkd;2a ý%=a@4V\ۉrz~ypB2&R%V(\aOf+txPS\uV$9 8^AHu@-Ps1cVy+cWpfk.ඳY#El 4wf|" |U@*VKaV,PG۵SH-8%jvwpt&S ݳےrb*e]^ņ9y5Ax_U5DiI4ۋ|)!#-)CLt.RJ\'tPɐ:AI#g248U}1]9ըS6%\90,v|)^vHo;{m-(u?ȃʙh$v0NN;fYI,0* JFd'#V (MSFJ+$ .};}מճdﰍ̯MN$l]w c3\ TM(r]U1Z RK9i*9e[T̀ qˆsO#^ǘTVGlAly݋.h*RSotpP.Y7eDWI}ak;yip6<_RvQn;fڌ ʭغ EZa0sІ#n iDշhހ0UOW+tϩ9SI7;kD@̺LHj:^8%5Li{Yh(?nȈ?.n;_Lsf1Hg ~o~uP2%BQfn';mjmkDZ:#`Mç#QQJyE| ╛*ģaj큸* u+Ũc3MgĽc#QW0ORIo>}vUAZrƄ@Om񡐻 j>׫*_l,1ssJ$MJa"KqG']ׇK[ۊJ D7og 0Zy{ zV$Q&4߾vG6(AtvczK)& ӭ$mc)&=Y"ѣy  )d pRyL'GQsn4S92qR^>3YκQ븝F=5J ?y'د獨Y)1dяm ^I":Q2KAfqһXޙ&i\uæ,tf/, "5$^6D nc[-8b4rIz"7܊};0=0chGFwfQn}&O:yIz!/g?~<4W2=w@]zU'PkX*e/j9 `G]!ækE~-pCi,G~K)lΚ9y %U⚁m/C(O%߭Rs_jyRk}1$ʠ#JE*\-u4M>e;a#\ѹn13l?A8c@ɽeCƻB1EGҳTa(l; Rʗw'\}"ERogAeDdr8.|鈒Rm(ڽ ?%R9%(38p&s:Cj̽m7)sW +>xo<5Nxכ3)1}v} ,_&IZD ?[C4ReQ9{"$CQ2{#p'LǓ=QvŇ7A'*h18t]̜VHoyѝߖl6#&" mȶڱ/%PYD/9B~!LxC2ф4yo|٬hL5{)qu;RJ ;*pK"z7Bˡws@95Ш3|V:Q0x|V*!_ v_wYp Fs8TB,ᩁ#dQg<͕go# {L*aI'..V?Z㞸i'tL?kC89vyΨ-pӕ+qWV*_ djO.J9f4V0>_"+Yp*g߅][a_psMK{U {9lNf|q!G ,D-d ӃI;eJ f>fx2[n)Qe\c/̶+jƢcy(qtl[*Юm8Vg#ͪwf a8iF]Z`S~y(4#`߆Ta He# NfKɗc nЩ@M~)~DM73N5Roi@lq` zno-?l&Ld i`2<쯝r@l<&x)~紼[cj]!n"$w1!Z"dTK2?/ɝmIhƠx@tP)"}z$p L|sLOc96]Bku'@L˿$ayK޶|zB)gð#⪂{j(y3[1#AoE)ŷ5yv1Vwu1azpV+~yz=(hf(UxjR3.(;m_,[;Oqfz̵[(bR hs#˶~%j"P`WN2Fǚ2>oc.‰FrJߕdE޷L}8$zl2iP',bUC"}Ufi_0^ R(?y?^3g*'BibF·8VY& as7Gpr]DyBʬ9*m #[)[ؤԉ} SOU8U :eRrɨgEb8AxJ.UI(Uou.$9)&Hzkwꏙ'Ő/DOzCYN"b"΢Ge֕&*H5ZE=]{,jh<셯1p0*do0\=E8\4,'Bh A- f`3󰂜q;PWmQLLqm8-HR6s -]?oIvu-)w {ꐑ Ƞ̝TW;l6U_h dᕶ&5pY6u Q$!O:bmkX=ZHȋB0_MoS;Ui(I54GҦ,kKkr᏶acci 5=NKVR sz1eI$"('O?RȴL$T\L9Ö3!C%AR2, yNDz[jl Sy#;otHTdIaPޙ)8W}12MǭBAoáQJय40 -[^@瀔I=@,J>SAP8 ڢ݄duZ㿾5 aUg9!lԘBAw4󷘻LbRIӽj4SAo~:ߍ̚U\9kn'ٷΒ2rT@#;Q,J0V!bUdrx|2eZ-}1 zPPܫZS`710A2FHhB8dvTamU"Lw> N*h.鿻-1$b ,|pLzY,#Bb̛*t57V?|;N|!0mּt.y+K|i(=Ԓ#y)'I ac=>WdN`sA (B˜KCJi)[ET? %`uC?/MN{/0 J 7#a4k$g_c9||s΄]fi?km40,xKx"KOЅa9! &( I{:i8Qw3#Tc{C8X2;(j1B==)A),ٴ VfG!Le`B ny<;!vnR#NY65APaY$~23Z>:ol AEc;hCzh_nM+S=)$0[jD6Tm(5AB"M녁 s@sˈ:L̔LA % ##o \ͻDFP2ڋ}r֌p"tȫ&zƃVc_60 =1.wpU.b1AMԅ6xqthU^eSP0ȞĹr6h콹<^/|:֜Wv)ÅBID6r#q|?EP|cFy'LJM.,R۽4 ka\uPrs51҅cg)E>riD3WIGK%dr3b8yn>_6<%0U!.qUؖpl~ưUU%E.<Z+=u@o,3ބ6b;3rR~L<9qp\>OJ/ьY-Gfɸ!`1GK .%~wx2ʠLi-Ve D 6C*?хjOH9_P/z 0 nK|Xp)Lhې!Ailby"R-rpݕ6FeU]S}lkůx}8F{bgsmRNh5*|Csջ_\c$ݞҢų*{栶0dILmU!F \2@B8RQԿv^J3<~VhL"ҼDld %`uoP' ]^s«*=Zfzס |#t>ϪG:YN)*-ۂ+^VʥNYjUTHh+O4>KnP+}r}>̢ԕNN]P (}Ĕe) 8<%oI' B'BƥUkqCDTF_$0SR!Kc QʀFJ'y/ڽHO&Q-#|X }~HjCI 3'0i$mmʻL^|E¾ہ!PP~T1b~ }˚*'!r{A/4\>B C>l`ݤUգqk=pJXN4$I"BĐ7v  $'wb+[P3$ٖ.FgYyrLleQbI lVޟd:Z~Uf)Sx! ĭ\7뢃CܪIgY=WB˺rYu4(El͵K\kX& {fa},_)G1K7`t@@"%*El,Il-mRw*P8 ϴc[BG8e،kd|h}nN!C ƱMߍ[/'{*g7%cvf='`}<  vmޯI5' 0؈FwB5Ed:t}7ke`ǎ>TT*FBjd u~Z-CL (64i˧p[*|EbD o V_Xd<̼OTWZ1+BU=W|]oi*ȁČvy-8%d҄M5ilI0vZI8 1ոvEp,^5n49a,!+`wutӹFٟcFZdžLǫP!|)+ dݥO`y=4硤x W?>v:cK`}n1◒Pd"NMp4@.|87cr'9O1[nPD)= (079UV~E^@P b1 '"vNqxLLܨ4-!bfHCRLܚz>(0'9'<+gRx!y5/g ߰"N]8o̬S=VG]nN8::C^ 6ǻ 6Gf-Wj ds.=kzOs&D![V[V9(bdGKXbvS~lQ(Þloq؍F5鶓pw?׈+ND"`ǩ+GȩkR,ow"Yvl n(e}зXPX ͼ<>g;k2!]k ,+D ?[NgY[ % -m##VAw%&w₪XJU:GlF,?(b~?6W]ҙI,4jdibJb~u((?@˄CD+"gYEM$o|8 jlV'0Li o[Dr(¨ =[Bv>-&qAtHXg`Md;a` #5g_\vvjp!?3Ȃp2p\[ugDht7ўp{& #&"4k"kV;!jyxOk{YI?YsT0=>r0tMeǵWךvئ.Ԣ|oBh% JODz-2~w34XnיPH크 vpÑ;_46;. UU]`d pi~)!aKƁ7Ah+ }L3 ԇC<:@mZG@hPa!*ް,% xpr>Y E.*^/);憙Y/&l¬4\cՉ áC[Z/8c(3 Q;9C6bC DJ?4 Ys= AP%F9r^Dgnr}0Fe55<:{DA.IOZP R]C)_E2w]* RϷЀW\JϦ]p ?5T tGFQH@zOe=Q|1" DS(kNG_UH &A/J_@ƬDF [ 6a i}M8֍ǐ};iJ)鳐ʬT",b-@wbӲk$TFG7yM!\t9`%vɣR`ڂ፪nω0~J5unLv˸&~#{W6 DcHi%[w^CKkń w wTST+K%Ω;^íc-!?E;;u 儠 gNSUpo+5\xw^G滴{INAjXMK_Krx: B0!u|UN֡2gGx@#I(-a&qc/ߖL(AyevU~Q@3?G&C3 < vS{GlR-'8E'tlޘ~}RFbCn3h9jfX2~{HD3җ}?Ӳ>aƻn_BtuF*m1\G:nuKR;DM3W-ˑI#\UAf.I-zZ}L9RembFh79ٿ%O!{;P]ЩΖˎ`}2DO)I%R\Ǩ ܅QcMbal g2@{^#48yGX:۠3&7YNEu <87*pF7η:י,}x.WS ,Dvl[E48 {(SS;qgqVfm3$XrƾL&&yJ@JYd̟cj;ҏ6 wX#g;WAx`6Z"Ii)Y0ʱtb$\ޒ#a~OQ AzC`hjPH{~%IES,_~w_=LנX{ 9Dsm%VΌNw5N`_oVt<^`uۇ rS. rg`R50U?GNKИ: 64vIj!ݷ (wmO#qs'ŽA̤E *Ϝ;Yr.~vWpmQ"N3郞 .]X9c`+R6 ` r"F!焎V:2]|YDPݬD BhuTk2@YREc:S\) +p" MJzM\)#䰔Oo** 5xʽixZBZ+i+(8XAf, G <ȍQI5)߼ArPkxR8rzyc";w"8x5h>[.CM LC)\M,O$[RZ5ub^1K7?=;c\!St+:%ӺpfIP? _@zwnW7|­Hc&'rWV$^"Au[_ geN~s=6a=In~7E'sH#9a;$ ̋L8"4 ;dy`:J:S$=G;Sd`{CMo]֔k^&{*!ttT01`Kьylp 3bE/s -tѺXS97?#[pe`x5/+|$ /q7=F 'GvP)N¬q&TxH5S; O_r(GeƹX>Y9 p%Ů:Gi";n4}3ODBZca7=Sb'GC Mx5up,VcVb }uA^i X[^SPiՌ#Egu‹=ճUBVxϴ"_z&¢Ig"@}0_ 3Om.po8rOX ([)5%W#7PX8^ִ?&?AMҡѿXW:9v#%&G_HauZi[1#MnJ,[}7Z;KrQnb(+Q(CًF{Q}~jOi؊l\ Փ1c#P6ŽIE .t0*㹓Nw~5XRٞb*xldz*I\ eq;{'{eM `k`|JOkZ"pUCzx4Ry @v(s|_jtz1C(Lfp,AKP N0m:qb&[y3ؾ9O9^#J8Jz\,B8od,w>J6$@t-9ЁsF#*qKxh>wx='3@[^%'A38fhGJXh$R?|)FU҉᳭dCч湁JY9g&#O# 1B-~[|Zf6{~FS6 Zlef ^A!@zJN* >S Jv7q?bwDS ߓ8.,.eSQ3VMB-اk:qwH=rX<8Fa }&+sAW%%T9P,J~g3-9x\g;=~ΓqiS7Td.{s-j#"QǮ|I5ifeoהIhQbC&{[Eio fsjiqX=Wg^F]-6LneH ̮"a$3paZM'DXI0XR_ca(A{JH+T}F}_7rW28zm}!F#/ ;a¯pE B@OsR(g Md 5!'帀 ~+(adq=F0+c"$gf$4]BΏFyp)$5oN%:!P1| 3 #Dx8]eĹ4m6gȻr gNEXؒ**Q~WU7WFER Q`pV(w|=]F?G:$xK6{ȨzwpZ źP F,_v̭&bC)~pxRIL ol5QT,*i8Ŋ/Y#'C)],ZkYA-mY~ ̆ `ɔzɕXS]qGSs8A}Wq- IO$XAڵ?$y ٧euxϾTfi浅x?o\B׺]u 8yra]yxW;'70Ԏ!IS[w8ΘfWq:MwtX1~`iyY8A MQk=YJX.σ8aW||h~jR#s=EFDkt)b݁,tu3l(.ik X9$˩:Yfo`ͽ:RAq4^a? [kSP 'c6(9U,L'̩4A|< '"4za~Nn~IT+`UR|l{|Jذmuu 9kCӳy7_ O*dO2tᚁ| XGߵHnVm"^F/~RV(2מwprgj[pOpOx: Ue>z@b-܍t9@N3"jP_qr+Nb^6t޼aSĐpp/E4{[?Vڷ–Lshw;NCx mVu "ըUnLzT7,L]C5 ;@]2%Rmm lOèzIJA.{llQ3ɵ̞#Sřj:Js\ Ɲu F|.AUܿZ^92)L Yjy!A|\ٱp7xS_1=|<;_3(5 h{dP^c>/dl.gc_7Ӈ͘;֨0T 㶴I)fA9oJ1!//4@coB>:΍L|6ϟ|#+W$a_t: {š_g`Quh} ˖q)Z\I+bSѱ)1HT[j`wYR&KMe+oK.^q7r,98w+.=Yȣ:XFR&4s/ROBgI3 L~ 9j]~a  5D#^ёo à ˣ(g;l:&hXXS48;'n1`: /=Ҋ@mI 扸 + f5_\7yl~EFPP!-neY:/<(QM-$j]HUg9g#D$J?s :} 8h |vìX_ =n&7=g;zAI6QX,6ozbwh5FJO"[vBeuhAHͫQomPH``a΁vbڱy,!]Z+$m_'f͖TY5yItT~(7(Yipz8zҘ a^es4xa+̃oN_>!wS8 1_H18)Ej#J3,/lj=Ii s\hN)8I1<9g3n3PY_Y8ls'eE{'g` *=q` zNf{*`zgnYo&ʥ{]<4 W2LPKȰjҤI% 펋:4#|9m$'X" [R/;Q6(R=@hs٢ALv!4S^1;/Yl2 oNy'@"A=2MԜ\ύI4h1Wg>l=c-Yc>YJYUp໬΄PuO_[ISʭl7(~XfoMxV~9Nxw=^Vopekq|@BowlL9o@I YA'@M ]+%*^M C4!G/Ο.q=D\xc` ["V^3Đ9.34F!h.伜t֌y*'[~At>_BsU;Nu9AYA^-io"Tŝh APb:+MA GPQȷm %RjMh,l/QS:/VwFP/ρ_Xw%{&2Y+Om7 /6C}dhZB56miPyNlr!1y9bij*<*I44|?)̆SZ!k#[bG.&Et}SnI€o}&GEvz5<FgUAH@vv_#6Ѝݠ,k.McN2?L .sS4 ;,׺I)8_CA"G.%"o˜t:ZKѶaEGs\w=؅Wt_=ryFp?ܼlnv7uXhײCr]Kb;ZEd}j X*H3s$,<٘djzOiBxĦ^fVF!A .pzc-ѫZڪ?+T'G~5H(K9·(|[Kru^Ay8j٣{W`W @ۼBKWb {FTQ;?L.iѦ6sV3f -m iܟuoc/RFd:%p-Xɑ:2$?yp) B<+Yo,*;=!JQ,u`7HUsAǿH>\+~dOVXmOkuaڢsζlw~ΰTސhN#K)@, ³ D8lJs̫~CnS4猏7X0[PG#y22d8Z`Qvc8-ڳ CxNUM1O-kZ'I9 ͠JH =VP@/v2WTIu;B>aNOԎ9/qlj KċƐVY*:>J;uVX7۪=$T!J eFmx,;=x_)EqAa x,̏m[ЫndGaФ$O͚U{dSLxWUy_^?V8o; R@ގ'}V/͕# AQxq[Eׇ5t<׵q2&K=.뙻UCN9bR{Tg>Xrk=HJՐ/2l}iq]\ n4띂 ֋FZok3Sr]+k&C=.)B.&嬰 x!-MCX6>vӅt"ԥ*lMҪ*, НLaV/-8`HG>*E.[t[WF]h]n҇.T^q7xeqvcq"f,d*y1IMTy6A:Gz./^co^cPC*H̍:jк.&JB:)hS]Gtq4g,|eg/5~4ADĬPrʎ9}gԷjzO'ڴTbye;!AaDАRKkh=PZ1:s ˕S~)$ iʘ-& ;5L@G ]k}3K y>.|d|l8\Q!xqzy{l?qθhIPizJ JA3FlaOߤbJ%[a= ߺ-'kBJ\7vwOVj%y)G@#Þ6cJW]D27Mw[x[78I蛣3G3BBp\6^=2BjĭA+Z%H$26IB,jᒷy74 p e#Ѯ g?Szv_Hog`W)_lO+ eKz#v*^ YHZe퐷VCpL *o D~π12-+Sl ?n|lZM*ʬV.v7ewb+9+T(29bWbޠrr{rw :N$$"|M53!y$"q=S\7gy,DnW^Xob8H;'3Cl$Γx2V GKs֌ ?YA :t`J9?Ve/[Eq%8,*2mãvf8Km0$A/y97ksA5c$o9yYmW,uhs(tp} qI5eI/ LXqsߢBC_ @tNH쯜W 5Fx8Cy6p ' :z`x7)#B\F2y CrQFA`@ܾtgּ* ԰tJ}חst:HWҤZ$mByvMΗkAEx7}1 #X\ÜmJ9W~!)PT+LQ=8U 'D^]x<˛38+9SנW_Ȇ.Q:7\e%S[ ]V^)16lѠj!" |h(N @(hoswdrcůvᯣ G[Wl!һXu n;u (P`/|Lzo_AS{(&F_F^<1#ȝ\,S勰5J -AENA" ~CdlPq[v@ “I,ZD4ieM@SagU ޻Jէ$/8G$^0Kgg >_WW@gў,WU} o)~V~}b@RDžyTsm ~bMi@kC%U;8̒TY*6YqD}% oy'bծ[&!#$F|x)*27s9%w I!?2`dNHLKm[_=- HK4UwqΙgzP dDҗ5c: FR÷xp \!0-،*bPˤ `}!#f?5Rlq*wRk`w0(%P@'wO.1IAY86Ýv_A"k՗ J^)X$]3x / vtk R;O:Z T_󼂫HBw~B J0^:B+0<>`q;Ō۩9 T&4`m *u8 am8[_NҒh [V݅\|ސdwUD,I6&/ðK(ڕ.Kn*ن.'5Ae]m <=˿s ^qnI5ӜuB.p=jEiuVs)"|2.5,+a:P!^w\b:l8plt*R&r~*]{}տ)߉} nx B*ARbSjIŽ11o E_<F篲8 '6 %#+rϰ95?l-ְɳk$N"w7u%_z=@ԙ/X֚b4ԃ-2V :xY_zE-Ҩ닋J_>Xx~&=.u$HLl[g.s6J_cb,: x)-$ˮ o${4VM^n jqrLEihThi|"ZCiG=hYxS#O7 <(>TOd-(JjijL|Er] 뽱}مxg}2f̅/]5jNv`uLkνʤitF.3 Y\AF3Qm*Rb:}t9[TaGk,Qk?<$fxDZ#}9m;YC򀮢C7$˜ꕦN 8(۰tܝKI -p|Y8h/0>s"=fs;DLN^NVhs%megSv7g 1L=ۂ kHgSM \bD&f0$Fpڍ ǥZQޢf7iAnCjX >Fo̘e ` є>oV L)^H 9\[6&R|F#<lw2$ԢIHK6-|:9's OOsu-o6ܾZ mKwc+D,pcC~P:A[(p(SвޗՒv򩢧LdVqqޅԅ]`#é Ԫ3zp[#ĮJ6Z?ua}\ m˽o$e:'=T6bFLTpr+Ri(s,whAo[I̠߈NQ;wO߇wq7ǾE0V`D{D3%W}E?tȯ6T'CMqR3Tv]lq]=@^¿@.`Tƌgs}9 )}7*5Yfw/J)&)P&jcdu+G{YΈ&vjg(y9GijT 9kH8 o761Ða1X^kYƄ֯u0|hx(m:#SFJgI>YA5qQtUK,@nJ6JZN^@N  |zd Llzecc]+ө`;=+^ ,>I`9LDjlg)nu7zFNٻ=Fwjtۤ;>$]䧻aL\QT[YV>0 &ȊCp+B ;Om<9Ak|tŗI#Ǭv0-\y=La hJ3di[(trC{ixaDf[c' #gj($z`g -.wF.{\'D;̵R΁Gi_m,Lw# c_sQ|e;y3Ypt_ǧeg|;?tt:AH@A$O LwW݂ܾ_RfOۧ+ $'d- `!'%~&xI,Yj+r1:n {E|OR[c+-l++`86luu/ P̊O5$W!{5jA|NY\O>n|UGUL!,#\~|~isnȎ.h|*@LZ3~Y]`P `2eJX/ 3c]_ׂ"dbҶۅ5y\y./DreSg+i8\$.ʎ9{hI9!ʒ/V?H10̿YX*y#"gˁkN6A!8&I-H{@a(DXȟO'mBFta)SHC ,'`H| @h~ho.ڦ}{`@7Sk_Çh3B_o2wKu=%=u8hߦi5ĩ.T-jw/&}(w`1jVAЉ lU}M9~_JwAQiNXq`krSo靉:ش젂p 7]Լ̺ÎPE+7¥ -β"OxjsfSڳo\v55h -̶˽U* ʛ$E$4s;dU"Y_žbvR6WeWT:r]c^DoɈAs7oA>{FL-j{jqybYW@m䝺5~|fM^{}'}mrM|edmXX#YV5]E1 [ +bvT"ίR8?dy R. Fr0=wLv^M{뷵o҈&Ĝ(#7>Zav0(adEHi͓ b:U;KOp@~rPki[u;/攈WAkk 1ӮvkWک{{ώlwI1 (1 @'#W,duD,&,>?.hԻ i#`}8tm`u& ^ޏ2Pư~,Ͱ$Tz̚*A|r07DkIs7N쭄}iҌ7^^pC;m4/voafRHM(?aiFS$X}-da ic MWŮA9fH&O|! b.&z暬KRL*L,K 8QŤ0:SN|>t%g0!ɖVmw)EzME?e_Ko󽯗s_#Hto 9BۋUI P(c}Ѫߣ(}!qXo%Sh0&NA]"%M̔'%Jʽ":>Ͽ栾JO^EԴ8 .[j}ԄVM`H|E8-%,e`z@ مNU蕁,.㝻%rTz8G/M@.熻R nGƼ@\qoL$uʛSZh@T>C /gy!)5V΁3}JS86^aXBu(/'j8H\lB[NBΛ ໃh΃9Y6P.y:QF{6:؛W 7zg[ž_IQ72g4e,^oG'"Me >rJYRRE l2 Tt|Z\4|hB^;Y2pM6"9*QS+֮ -0l#3}]3'tɣ6/ o_17-Y ~RAb!E^waiPxvC8)KAlB_XV]3حl Ez%H/wY9 q(pBܢEWô([xFS4;ũ?t>o'mE(՝J}6 ťjFFz=>bOwe49p8x~V;i|.ըLn6Z5iwBM~S&$-z$h!,CqҠah52r/ <y}!.AB乁bv8y%PdaİT tpg#ӭyRz;i * nAc+|uPd*~?OWêӿo됶OghJ Knd)69ͪO1G l^:i6h:[TvFsHŏW%*ޕ}lx"Oٸ#roUs[OÖuKdQ<.xX5(G,C{SqQĺ4舌Z&7D b{kA+ߌ*wf l#8d~ KXITG /הKF’:͹!urޮx_)5fCf\9}wPFW9'5'Wabp< Զ;z)501fv)wn29JaR9 ouz9!3?+ik'5&aW !,`ip_A(#g+kRs9\rخYslYہ qҠj` Qs% g?+XN-9^ NhF`+Gr--n L~~8J\9㢍z~_mTZ{@TĤ$MPʶ6aA @Џ!Q}I#ξBɁ3{o `6c9AG @LpA{lK 9v.C y'G[ջqoGi#Fj`h 7Z6 Mu\%uo_ԗ5It ľ-D25;k4ޓ0Bjt'ti֫!,=n&?p tˡ{/A2CN$R9tx\A^4A2zƕq1̀ I;3k1-ÐpvuհLp0|. Fm#NjI Pp&ŝǚZϠinWbWKfWa&CXֈ~QEYz]oCш4E*Etie7 <2aY>E36K|_F!T]]$ #Pv1fykJ]X BZRN%רcϴXŮwuo6#WW \4 lIÒbCo^&.16ɮcـjjemg׋bki4YyFwrY\S\YwC5Zi9SS(3r=Jr+?P7׉g:nG!\fW8&gYb]uW \IB%̼Nd/5=njnJ0U^%EW!!֮H:]֞LiEX˵xN-ֿՄ;83]IT `yeoןCA^?hEL#KkP@]bޫ6-Pz>D.Р^?< ux 43tPQq?hZ= BqBqAR~`y+)4L5&cfB6p[DjBBތݥk|}wعRO:ڌ")<h64ɫӬ)b l;"E NA_? )F{?x(ɓ4(͑4ٲCٛlm I:e]|ۃQb*'=ǵYϕr¬'uEl L-zKF^$}:3\R5+oJ[,POpƯevzr093fYjyZnEŖO?9?xiEI僵M&.0ڷ7D #) "04_j Wm) iLc 6 maH45ImױP ?ۮLi>\ŀ_OkX;k]OWeIbNn٥Bn{57ǙZ у|S%tuŬ?n b<e4jJJE$Vk,vWĨ20D_TٺJLBC|8ܺIlk0wK/4ix1-9݉ͰiA~e?glΏlgog#1KڵRu$6t"E]ԶRb30lB,X0p޼D+^hO {($?,-V@Pt-<7HՂ۝ ocǣkY ^>i{,K1@N_炊ţ:!N}0=5JߴJNN)nxQj]=3ՃWݑ'H/CQ5)7_dzOI5#ENQ*m2pjlE󋔁'8w`O/MCA&3?d0./? 44܋ugipt|=ܵ48~f[ ԗ-)Gb>#<1H벷|T?"eVx(3܁@ٸ^)Ƶ9ҖP ]|?YkTB;ɧm심,S7gئ:Ty_hߕ녀B!^h,p)+o]3BFxQ.XEQZ+bu)ofQ}pBuZ)"F UZLMtHC^O#~rw@FW73Fhf׮cDytv՞篣J"ʚ7haXٌzƥ;Ve3DBG~׾3ޘ+DX28$x>e?WI,`,=ַx]#^|d$0?5(p-6%E,]c:bO#"s7ߴS9$Y$=<||3p;E֬Yƍ b]2p2ixEZWT߱),)YCdw::u[Hbox7n ѱ2:Xg'"p@< pn~DcL_*y2Y2f̩^hcU;h?H =Mh/$;!-BXm> _=:NCء'!|nj5J2x8Ѝ넹 7, X/$65YRsJF7z>|}=dKP47SR2 BhHAp&vMǡ̷"_'HxE)A չߧ,j<9 {De,Z_JTQs!CՏbyڕૣBiN_^m;u#<зc}+i*]^xnG(@S_T"-G y)#dnt¡X6U2s )?5”Xb$&j7IGXH,Ba]’c]WR;F690a) |}J<4բu争~9{<]26"eCy+. Ժ$&sb P7b2h0!O1Tc/_ x&_fuOPMp+Ώ dfcbqO"y݂NrNy:+3z}]˗B,t^.5ցZ8w2zWTN#p\:_I˸Pǁ(CBrH+4Y⻵yhȩ|jH[‚&\xx5I} bM.6XVɿ⦅ab^ # R|!YiHݏ3rcB!sYMbmeՆuuYBaPj{jH0cpf8m4j )ށAa DdpJ(H*r0g1]Nf#}5!+җd}@fmʕl:-,qR tNjiTVG6w("}lspe9 ߜ ϚmK7Wjpy$N~Z?_ó Gw~Yc"=C$,k ]j I_W S5IQb e?DipmP hԴgm6ުqDx['%u~UqN#G0dVl|+xģ\i%VOmQq WP\B~?btϹjc6KIϴ8'E2o]\>/)C@dʬ9sxojmM?;r꫺,<7XҎ^Yd௳rwk49S˅]SѰ%.+b>-zV t`^O+ Dj^ޢ Wl0Q YWiDO]++Ƹﹾ:F~澘xb7>uhx8LI${'i58ZʍIV ПxNVMAr_ +hYLP2.:Aٳ }zodb)aoΞ?{!T;C|71s;Go(%[Nf*J\)y$hLW쬺q*ꂈ;aɱ=P7;?vm0UB.t4?lk>$9|D^`Ʌ+ёd tqSJTUПenV](j1vBx#؞uqc{^=^¸`AnդmyN .}CXĝVZVU(_o}v2kdzVQe LMMtS,eA*α @|l]u,_RM}{ Ց,)LeL0%1 MIi|*/ X=WPf]xۣk+ֱ[/Qàq"6f.i`nMG]ֽXcʙ:Bwqg@˕8+.%*;fUe0ቆ̭z}^I6F{y1Bҳ7֯|EO*rîn(PE2n#s !!%ZWCN;ߚ#h č2wBNh`6 4q3jܿv,?85maQtz7c#LQ@[/ X؛/yƚaD9ăi#qro8.~\ Fnu H07ۅ?Vgo;#]R¤Kt rZC:rF6*? 9R# DJMfHN$G_FLLRtb>&z*BapY񉉼$ 5ћ=% ٬V.K*%}D'M9' <~/62AnI?Sv(3 EGMJFJVQLxԜ}0h^pmMs 6sJ+M65;]ֽp_]ljQ4>ƆF&,|kQ܍u\܃ñAD1>8h=X#m2˘c9T%6Tń l0Ba΁Q:d&"9M`Dy/KzV莋^AmЯk1ʟij4EK(!>k SY|0Ǭ=>C7=f?C.@?߀`I\3l~IսCm+k@Qg9uxq&=Hs+2C{CUz]cRf= Xb@-AraDwne?:3[,$2~*2i^#W~,<UV.Z +B6X+2IzYTYĠRmAPϷ{|ܐnŻ694#'W$K|x¯}?D~)Bb 2k .2ڮX#ӎX05D۞KRn-;Z[m( ]tObڦ۠FBUgV{?WAȷ. Ց+W>w -6i4)0r}HëO_ T5UG}uy8#@9ej/Ta(9\}6r]M"\3!}҉ʟo 2 Hzqb|ʵR/0ZdrXFs3pIkfDjmb94U&@K7Qij&taH .DE>jv7xT_f>fE?| Pkv-7NX%1oSԧSۖpQk G &ƨ40`X 4Xf$fwbO͑x$2|lwe[gVj֖ptD[C"fkwc:5d4r=n%&ZW84D'*c[g.DwAwsA7a7{r^{u~qg89#qa=N}\+t"uk9Uٱ=w?mgޕ߷$VRKB//Mnf[1Wh́Xyyф{KF$/7Z6UVջ+J!Jl@~ m(];G uZi3Ժ9E>aGNJ%;a 0WPa:]P};krv$' 9zzX@WmmӁ0lQ&NZђ?Ml)(7 ]MM|qYf9 J~W %@ɨ8{0 T^vOc~c/05ꉚEWJ-}XFgY6ݵBS!Uݞ4Pb8(- A},{Dڻqb QևXo]HUx Uc<NaYUślh6Wgk>> VYPr`u}kNIFVBJ['AQuѼc*5ΌW;%DKy7mc|s-H:=Y~!e#:LRzt|G+lV\l8\O;/+x%'OkS5&Ƨyn%UgA7/J٩(rK.f#L~Llִ kg/ڢNJ"WܒkP'%Y>eCiz{aj%g$3fkJ9JN՜WCu. š$I Fi]cJʅv^N,\Y$b~D 1EC~%w5i_IvT$*i4+mvΩvS/ni3L\%uuүY,Gi Ra-`^c^1ftX?YB"E(ԵHPbpgr$/% |_rA/!dgԉK.24lwɂC}o}.3KdϖoN{"\cvAݼ+kUvw(/fGe^ی1ǰ.% f>mFߦ+/Lc3YyϨ|Ebs+4Hc o!FqUSQߧ s0gQ&f 7{dF<ݚKrAs<;Q xoF2k-f4[y +fv,> DJTo 6i".:w'"S#nW6H=2yok|&Vb,g rĤ< TƩ+AL—"1dN8(qO1 =2``iw0Bտ*71R$ #(+ceebXu@Ǻ3ѣ5O+{ߣJ4rNn)]hwdbڬ!qM1@6__T<3v &F'`.+z2oU"5Q 9{ =ZË -f9aOYu{Ȯ#nT )ͩ޷oDz03K(P.$jFdu˴+]f.|i8oӄ=sV}}. P՟FdKq+f2})F_ TL}[!kKB¥]W< [5pK7_dlOnN>R!m'z2үgw\,cZ&pB>l69vz&" R$RI:@G,U=eBDka#Xʯ/eeN B9V0_8u1[-bjM Zi } c] iG%ݧ\ϼ.7!ki\h+6]R)iK22LnyV-at9qx_n+׋`spEAwʙɳ *Dl, +s *ɡXBg5+iMxZoN݃K8"P&{cm1d{MגY E)k"S/d3wQlG2,W+ 'W"2]@أ$)l3s{̇ zΎ+GPϖf>wT<D'a^h Iuk `<x"f;y枝$7>зZ6@'q|8!}gz%{U:su;|FghwJhwwU"lyڸ_hSs2=yRs,3ԈP&8Crt}E;xX徊l24)#. !x]|_Q^-ɔW_펪..ύ ':3]J(j5ucTc2GK?FF9uX +i]Lr1FX_/o' ٿ DgvyM˲k6fī`8qiEs3^W#ۏOtS?wMo,>Ys[cB=lО> 玾fM>?26QN1H!v"FJyl HzokؤyxiAo=ȲYxCit9MXe&C*uz/~(PCf6~\^"`dz:d0"iUEǓjMJׯDw. CZ5*a`v^ex *¡\͡ 4WMUk zo!8F[>(JP}% Wv'c0nj(.KE̐sb^ ̈QϨY c:m_([ ۪}>""3צ+V9G_m` :Swh?xJT] T tʧzͦh4Z lk#/ɕ6stĖLn&]a+iUb][@vo/ #ܗo&7E@~]f|(уP 7 PVc-erT+%>q==o '+J _( `qtTTrޥ#f!CSN{RưsB4N}J/ Oj͊$[u) X ]Mw1Z"@T"OYQA:3 PAp_B&pjdvMi} M2G:%Ҟ:/`8=Rk ;TT\E3߉I5 awHDcwoy 7˳ERPg4Z#FKb5݀T ȡDE4mJP/InVe֢-#3Y&>iTĒVZ`#[o1`rzG&bmM9%YCoVWz zMtjWezc)a4 EHp3"(0^NH87 ןN-^_,] aba-$d蝹TnAb/O'T4@6[T?~cw%r6l/MǽU\dN5^iyj!g\!wgc5D#k D58!/̃WFus3&v'?9UVGJnLw>Uz2S1kR39Id9=cY]]ю E&! s<-E&F02,N}EQX9'x6%n~$C4>t1"0B;zRT=nI6o7!AI%}܌b XrU7<c|x|qGLM?zq[ѨBx4|d3߃ NXgR솕-(Y.gP}Qa&oONrmZPLF7Z +]:: c^k} 4]YZGA_g0"ޡPel(e=鄁070(Auh!yngZ*ͷj1buxu%wWݡ`p9o&x!DrMp ?~Zt lȣƗj)cUMIW0+0[zdSH'x&Pγ<> gjW +e:,LIn,3u )luYv[ޝ~U@.H?e#fkS[?2CZZsmK|OHpii@8j%:$ɂE?0?(ST8i {A[)__T~Oޖ߉ Op7[q57AHA+ vh+e#?v̀9mk;2,9D[(טKp?)=4%)'wp`JFy=@,xC=|__IzAE{-(ig~h ?jwi?xYuD_*|t8}'!c{mw@5F<we]ozg2&n؛Jev [1,R-0ܶGh16 4zR6J=_ffq(SYJ[smʛ+;6ZQGu"څakسꖺLF|#2^NȔzPb@cI;ό_A![#Ks:|a}!#w],`׭HN✑T?RY=U6m-4%P5֔c_{x M@l1 Aއp?^\8-;F[ ^ц!1y⤞mC"k_G~e@n*S;J@!W o@2$F1;* #UcC.3TBZ'F%t@$,e~n^}ϧhF3I7G,ҧ@jyAvNT)SQ>O*qۑV3LF̙zTKyN0BV}e#!qU&An)(:bw)͂3h :%'bfʹE]}"7z*XKX~C86uVc,1%/ȣ}OmV)E'X$+ @o}׶?2{ ;Ò|rMo7ӶkKRz8;0Py8Cx%邨HRKڲ25<*f+rAAC60T"ʀ7;KC|駛UE1e-KN;cʹx+S ߓ$Jc"\omH !=!+ +l$a &ISljzinj(D_S.͠>  U Rnb5~Z 魳U2DL԰huB Mʴ0` @i=!0~$,c:Ϗ~^Q{z&vfqJj s!kz4]e?YLf-] -S5|6'p#6@NM3~"PN)I)؇Xw!b:na*4D1]ܭlD8U"%Ji4]nR,k(_B>+Liz/ HwOrwɮȰXD+Dgi b:ޕEҍsHh1f&WQR>|0TKSEBFz?_:^XI&?a/څ)vGBys@J hwdR(y)C ܧ.־\9Ddp^eG|ne|vǍQ8F嗶:J(ǛJ3k4 Hec]MvzE%XSXFRݟZN$l/}%\;s S]JQIL)bׯn,F$ʵG\̐|;ȏ93FQY+Ǡm3:O%,x@wrzWI药F_G9f?f'@QU|ƃ51xZuh2MFp:_$?5hfh}Qv' [J`TE.T>sNӶbT к/o*]x~J/)ynI4s(( y5j.W` üV@l %FOy:( "ƋU`eԼRߕ7Z9ʬ/lu{&kxn=-ĝ]j 1'ʛXk;֫XONH9 {0A&e7GZŴ@1/Lkϸ& LJ_}'(C-RGDw') sm;&Sd"]~/lVx)zswyN_s0_ {TSVlpKuQ0e.'F WBΖ . y ݁3p0oi&,030"~'$Hj_m -]8>cҺZ\ȗ\ϗ6lvqОIt8uh}:&O霂(å})m=Ug8Bt>?ETo־ 6v=]IC^YPU9:ֲpALru)[fHZ$QW0I60/e;.[0w8& MӰMBs8Ԋ~EEhrfESQu7i̿Rby-hXѣ7ʇyg+ {,I=V7ij4e=*ظ[1G # pYN&kh~jK$51/8Opgl둷Y# =U%=RS=eP WXn{71W(ޯ7<].5I2NX=0SZ0<9yw0pפBG$<2Wej$%KI$yc~p/#[S,1Z̰`wC1&vDhiCV͍( CsG&.=3K;5 lzX-};BrL_pIQ$#S2ZIc@٤eܾ3Equdo 1@-9ZyUbK•x !] sX^OD09ir}ap٧kG:5οTx-urFpÞih5M a1iB ̭I- Վ۰|vP /k#j|z ;D\vePSw09u]:Zߤqo*H gM* 1!3y`f&@v/$F-mvvV]d$?MZ{4}x0/q =UgZ=&R=v#eZeSk d/[7%IvV/X"!>x呆)DWMľ3sCt˩15z%~" O5{_> 3ћr;DK '>,^8E(&Bz8 \?29MNBD0O4{ѠUe[ _o O1UxRm$͠ DA PlЏ 깨phڗhCɑ_o>; TKHW0}*A0<ԫc%[aݫE:j||:Ҷf`'xd\|UKXY jI(#DJV rv|z׋%+ w5u6mȢ˔“S'gEKN =^bGLdÖc~B0hF+S읱; H\%Z:'< ڄZtU쓢_ OzJM}ݾ"!zÐD/2qK{+)"-9hGi s|O`.>Wq.Q٠rLǙDt¯hjQӋT3Z9Àv| eЩ]uv$-nIa::å^A> >UH\c `NJ. #{gDKvqmع3YP!tk1; rTGxc ˮ'k^!얾 G&׷L py7Ӄa;wVmP:$rpL4l9/kH] 68)ͱM"of'_>t<;5p_)hy aVctc:lY4XVɍnʫ3fj7@k%3 fԇ)6AU9.ށk)VʩpY?ǟզ֏Y^8XAzSqv 'CSzLA \>uqz nHH س \kFѰ+͉$הDTVbJQ?,E(+]fp~ѶjJ^pklm Ւd%Nd|jGfƆRKb~=,CuCM[B3,fUއ#yՎGHnP'f M $bha\v{K# 4qZ **X޲r.f.Sۥh,HD-k.޻xd|# 9z;f\uX2"_2\ w(E\y(gMnE8 pB'|6jت #_ JFPay;; MvT:x(o F9172tÉ.M|plS/\#jzM@Qj LlNj5_ 㚺 tEiMrџw{ھf;KtP1Pr xw/'糹-(U[ HslLl:.Up=4t |ifc}RZZQ|S΄yKQS OK$Ѿ`_ :mXқ5bYLn]~,'z;f\oge10U5O}kE1-1Sj)H7uA;{)'5@tkJ\ r7ϸ~=UPP4⥗.A5#oDN#a$,vma!qk}_7n Clg-H}ץ*`Ҍ3׿WYyHk?Ny̲l;' ]OIu\G=X֤NNUTho#j'[Α},*}S'kEw k'gC'߂9!? ¸,b3qc =AHTFs$X5m|,f:+xHIfQӭ" !H )' IJ2x6^LW>;ֺnSH9!C_Ux|<>a/RF}2{:1?myHPSz`K#Dxwe>?0P'e8N//k( l]}YZg-2|x?lwZRHk2m"xzLakn$^"q W5 /bC~UX}{cUPjt~ur$~$tǢ]O6{s_m 8Mv'4e[ڔ|u+?)HA3#Ϯ:F\+]eUhȒTal ]ue\ G*qmB ͯ-e u_ +S;vso1Vk4/w 9 kqpisSZӠpx8(JoV:;!Slnhڐ.译baV;}? :8.P)qI7dG2Ti&evx!N%g ڂ{ N'gJcOQb&J2,qc9(^y0:^6 pAˌo#+7S gy xZȭ$Ԥ >_*N城X%VxmkQ5( {H'䓉wd7؞z\6W& KyzP E_07:L=VBgǙr8$'$f5{&ρ$|KDІ8h /ߒx9\M8Nyl/\ HTDzt ',4M'P,c\5q)o<. {#!NFxk΅\0^ߢA 7iF}ʞŋ=}$=DTPW*krQйaGB肐ӻ6o5nWIedqL\>P*`ww"㉭d<\箍~^YaE䟓+ץ/VxV'U!V#k*?xOe"w8~CZ^ ~ NV(haW2 m@p{"۰R GaäĤk9ja_ Z *z?pю"WY/wHle]>bœ+T2<=\`2V,~D4lr+7ПK#g镀?'< Xiwc3ejfLoCv8\;ntxxf~ˠ?1'$hllzPJf8=3ʉ4pºV/:TXXHk8H~GtQ#wg"Vłoq̂ft%Rվ db蝬 ݟK|8 ڝ->rXMጿ^{gVS]x)"H6PMv p$=|q}֐95d=ֲs@&T4ruBqYK_A8qW-#A`6EgMnP Ï@_m=Ҽ2Sl};RAeeA;Uک7Mr^j7iKSXp9`w)iͿ ŞxÀ3{uc232^o$Lꊗ{tsf⍥fI:c*  ׫F/Y@Sȧc V>'s B[=N̑ZZo*\޵m#A"DDL!QU5KUYѩ[W}/V%13ޔrdtT?ti 0:5B#Z "N1w`AmX}@cڊuѫQ]c%mٙ?8h2[ԠԋcUM|nY"!w1D:I,FB*fa~|7.i\BKg6%\q%gyl8 wҿę> U+DAylUD>ڏICߔS.. 8A枃8gsj-l*SN!0mLI4j5-z ō_4nTGw6/:`\JY#jWNr[3 #ExjMjCmq臩]FkbckKݞz  TGa+@4XR mT JYٜpt5I("N9Y+Ouf_ }dp>exnuj D.E$5==g-?٥4bTa9C{C'<|l1ȗ=#Ejr--'ocF"53?\.9 LV=FXKn#ʇZtt,;8I1jgZȗUJy^17>QI6HqDQjUUכlhx͝WM}@=X3'YR̨ e?#+HXfK=BüKdYvIɇ]&a`aO/OL$W6+lhm߆FmUi6X+iCBԻH7`aΨѿ rII{Pey\%kF;:,tC ȨFRiN"3ߔF%e cE5\Krb7j8}1'R #_]KneQ~x^PrRNmx6`ψS/TlP_.LGӸ@FE"r#(O'CC?#Kƣ4cڲ`rBZ_X#cO Vm55D( u}).bk42h -]zAsc'AJ_$|th jntoCCmϚTWpvlm_](?d[*DMZKE Ym۪h8ΔJP[tT'[}`<i>~6%/[/n^cMLN{Z5힛w +ʪs!c@Pyk ԟi]]Iy7ŠCv27'2mi. /t`KÉ9/f&e8vDTRn:$ H@T"EnsW㫿)+&,͌Kda j F"`:~EF23fQǿ :ᥱ> h-cz7Wp5 " #e%*qkkV@^+-bO\SF3[B hbF&n3@d1cQ=c4_(WjlIQ3;uWs%QAoե}UPo8G,7`O0')q)Js/%9mv'} D^+slTv)̆5~ڞ#^:qO)@F*; 1&uUx .X}VC+cܵ%9Wc6oΣ孛+4R"ǰo4 ȸj#ׯↂtƑ:{aIO + D*qgqz:*x7F7/Y6)ljA U@lc8y-ҩ|0' 9jl})63AxM^8Gb5xE~3b{Sq> OAbhЩc~7qNaTӨ6kBp>m>k{N^pzZ8V;CxȹVie#pn#US*mu| 8:0i|+77/\me$3Xǃ,{n"c캤ւ>X֞5y*?ꕘMZ Zn+FV7Sq8gdLGv}nBַuu HbrHC3'5thTQ\Yy>mec(=V8YL3JT~|Ʉy0קɣ&N/k_oY/ t\.C%ӥCGߍĮ}n~^9 \<1y{3NbPz^5dLЅekކcS_/i4#xՔd퓮4&֘zL~'X?E 0gy)l&>mjͿnovD=$14LW8\x,D]R[@GKT4G.0?1Hö .+D}7Nw#x M| tߪ䞡(yHq鏣/+$TK_?+ZPlrZ$OPMni"ŒΚ` #/B; :6XɣеuFlI`,8ݹyy#4Ɨ'Uԣ +a?ːc?WU Y2ÓYG6㫦8]F\ZengkǒxTt9ô^=&hjt^)фdE?I@_Ixz3,R{(YV_k#;h'[)4+2o)>J8!K t0ŽDP%#XJd Q%Wc @42+DU%Юn2ұE2.U߹\2{PjY_ik-|ը_P J3: t螓4,]04>#$3Y'A7{)ɛK K,lp= sbGVGTD;YwO͌o,spΕ 03X 'h>9V]ԑƓ?Fic^fѵF! ~9b׳i7|zLfu  | 6Y!gNr(.B'૛1'K|tH>w^h Ͱ~BP8Yo:r10'MSK1xY{ZLͥY58 hi%46vs x1.6M?$.l= 1 +r“ ZM)Ŭǟ?'n.䌔4!?MyيF(vJ5k\mp=bm4WʰVw :#O5/,bex?W@X% v ڴ'Kad ܹ[ek+>KAf: %u#,L!B8qV9)I.kH VODEYͲicG%6x=RiG,ˆ-m=?V(E3c'^O' }%JXx'̄ G:'?RL tKlv_[5"f4DZ}6q B$z0' `BXZee-t2Ddr 6"<J?]F" $>=?p4nL0C051t2QBKHQ ҭHj{aԅHo.o8)~KѨ}fT&Rb0a]nQ UP.56tqF7BqYQaZڏz@ Uq)|:4I_sr]$L*EzS@lJhZ|$0-OX%[(ʿDv&%RhCF9}.{F;+bA&kueaIj)1SyՅ8}T{Am@C>ҶBf%Zr (xMzPՏ{H?9"-y=g`SBRy@V? [ŘbP7 "zphi؈u8{o$ n1_X=A明G󢀨 ?<r ,;s>G^aQTjH6OZb=#nnCz[?!:⏆KFfL?Lr^'ȴg `e,w{ud|ykLC&c%bB_Z"TPX6ڝ/%&-.bu0Ъ䇏."}_5@낁3,:?UW % #hӰ|o\#88a SYst{QYq@ZKm~NcSxSm]\3 ކֳgB#Br?nW:2$يH'j)xT6{=ϋ"@U8e1E !8;6D2G)*#;>3 r]2_ x(4HT%L`.øSyJJMN)j8eK}۶B uɓKX"}s?޷ڲߵ,-||͇GiIN)]ZΘ ѼHd3iqlgXGg6Mo!de݇l K9aq'Q<4[rDݍGzR8RZPpݨY* ̩8oQ ?X^9f[<}`+_r㝮xy8 "QY|'gHeSj)T:gNr-bݘ!"΢_.[]iϷJ[tFEnvweR]L̛n܁2a] -А^ZppMt㥐u1'twTdny6ڷdc˹#a(р~}KH-p mгMlRrc |s9"TH:K5DL9:?kf'M-:7v7hQ֘9|G|I t ]{kEǚ vmE+1#zsܮf9AOYgeˇ3@79qLqGIs!d-o=R=zva5~YaLR{`I @O!LSL] |)̎)ZlۑG U6jwvx\Eh65rp 1$ J| mqMG ?8% M-e,']Q'QP킙(:ɂ:ӨP/7)X6ru֭&F?:$@B#eYoRS>=30v4^̾Jѥl'x4lq2a5"&n߮dm[:6N֫̾2AE}%|;V7譁'D?z#|]EbiB $6~A5zsܙҜ>'Ir GZcO "Eh=`>fxZ~kT1J9{Cq,҈9BkM[㽥#uBTe#+nMB},Hc{Cxt孩Uj'BC. 1\g6Oz q2ε];}G8ST9T`K4읯}t>ovu0xX.Ó?s dnj75iKeNܫ̽u65-魶eԡ('6%Zm`:oKp&ajܟ0{;*1m.@# k;_وhP ϋD.ltkm^CG1.νk*Q9]MaU(F" R;h *Z aWspGd}>SEƌ=I|ӫPUŒo&TjQi,zoY@^m[U*Nפ33L%N\,Usf>}˄rUs/C./S_MɎpRwf=9'PMX|ja=yB`E~B eƅ@_$m|xõQ^,ʵ@( [y4Xv|&"(J\4#72˻ m m^ *r}1TFpl"(7k&La6uq5פyb=~dA9zQѷP ud /mb@y)v9hڮ pA /9& Rs:-a*c!WDIEO2W߸ I:hr=,[nFUILp0,Q+ˤy)%'[]X~"ߧ-_/[܂WgFF'WUu,F]Ii и{b*F{峾՝D$Ɇm  ['lC!x+zۓ6e|B6|&;M,ws xWNI2?G=jdmeB*ˑ0%APX%}ѩ-O/7vKYO-cJ-ȁwT \}})gM.Uɐ jqe5h}˻Idl! ظ_|7gRR 0e[1)X?W p^b[{|GFMR\d 'B1,"iHw_J4ơ(o-QPZEC#Y!6RqXR2&et~GS,dFXDR, 9G%#?tXn`z$ ()\¦Kʒf .g8H'EU/%$/hS _|6kVLHdqP稽zojEG}'/3y1+aK]>+ //\P؃x:<3^&+PEלRa ]njqyXZ,:=z2G8`\%lcŏ?d)-p>:k+I}r_\-IgsIuUvMABJ8yhˁCzD k,7Њ6}xj>s|H:̸HMӊMir 3` d#Rt侼<},Q=Ko$ly"@=[޳J7lT*?Fuc"#u]cCd %k-)z794tMx]^WN6 Bi3XHݥpEk9]^+Kʊ <Q{nY۠ۀ_sauhq) sJkSFߋ%YĂxnax+:1XٟSD)P E6b/%߄K]C ZNS'Jʇ:H-QT*@*FsU0KĤIzڗM M3uU:}g"G%hDYp!.OBJC0\z@ ̿2{*m.o[7z0\'!zxv-kl@WKFV@)lMY1*Y?eK`~ֻT #{ kcοA"cA2#^` vX_ /DyEQШ3CEK(tP)@KH;9J}Tq׵m-gΠ 0_1 $ai!AѹWHROVFW8{UFńoE'hfʞrl=q' 8x6Fc ~x^Hfu뮦n؞щUNE$rʷ_l#n/s)cS"z"݀n!2g_>uCEV AHC(WW}93}:c4mӫ)1m'T |h.|/?vWҞ ޹: 5 6~ZwPh\1Bv\3QV*m7rA_V\L32#9РI .G 5~x,뙒7i)['JQ,1% dzp["m#>OJ98-\g&`WClX;_6 [Sy yξRZx"ֳɧxD͛U뇗䗗 &qپ}݊4R}؟cM L=/'j mcpdS;A]Uʼn?=eT<Ȟ Df.no_‰B<1|!f^`(Vc:>_gaE H}+sC}I"|~Ώ3,cF)aew|tU*U 'gIH45#0}X ]{VH+TcjSLҧ{(&QϼW}[|bZ:3]U*>1 ^ڰ*: 6z@4凚hQ%O o*_:W'1b]~E)*}C-C=&5D!x"ǰΝ5`mO N/t*{}7ҷeK%qKኅ(y>ǝhuBII&?RB .T١927fg#n )uWE}lP"k uz0(HgCy&)nLlMq?ZxFb*ث~cS+˱]4;-*Ěq[)/,.qum5WVW?ĔQ0Bkrx0 QdIJ !wͥR {0*a/_ſA+ĞYLv]-9>DЀ *F!\d{5ԔT9)js3Kgc#"!4--0{Pcs2ڪ0pd^c<4L[hx>wK0\Z 9\ok%5bT*~oXB8?j7%2 ,媉w8^P`Q#~/9ұt-!9>eڶhޏGxS%b)akF@ڞGPT!SV!9)l㺁^t&O:Z1]Piv'5XhSK++2OMP˒σ-*ǢgdC/(ă/  c܉t9V"d 8d):dx+tSƈS|Zo%S {K^'=Xb\h_nŠmAmܕo͢őv)J]?yjαGTjP_w" Xm K}b=gDِ⛫˪UO3 c>WOX"X _)|CP';?Okl;.{׃4 RjIcnwR'ź9Fy OPH w) W{ @= @bV"G[{LI vu 0MZJEGU_\Q~/6$`N􏔝\%cJ7YB9yҪ8\5 `4V*:Nhz ÝK3ɣ~(Vukƶd {10s>~T'q%Fa/Km 82 l8X%KKCv FAA<NgGgwg;f{/jȂk)bh.}^z<Ũ ߸DiāJs !J= I#ԣ*FkEQ7XhWs6O~Oՙ"0c@5ZXY{88iYZF?*Y`R韁ϥR ;vVp zmnPrϪ2$1-^^HӇ1xTcI\.5YXsf MشPβ/iAj#9r*z\;`WCr nPVgFA?[iz11f9$Bz&҂p+^XC|V'MY͋ސ;.C ն|0sq=]LOY WxН  $BrkU`t,nt$q E҂u49O'W3;wT\]>E8f q3|?Gm6"Ǯ%`Pú2<8ھߎ_#x"Y ߚ9 x+W_M/ui 'g /K_53ME[nE½b4ѫH߫LOZrq"s<%OgY52FLσӆlWxNI*ZK ,77dc,:G DNHK.L.6+__?#P4}LojήsىvxW;r@,y5l :IGSv.͵H:<v_JBy(M. Ȫ^3!$Al~7X cG%$FUD*B \ϜUSıf?5woiTl1Mk C/6Z"U2?#?0vY jRz €ߵq06qL&Ǭ4ۓ]M$]}$q;~_9FBQw4|,DYUQ1p#G},˻EK]d>yS?,Ǟ bf0zeTyi"wgC AU1q|X/IRd]H- =x) #GA(VWEF.f$fu~xA")@/$hZU MC{ے vF'^#]HKuA?+7l!6XGc#.킂iJV|i]B u&~VYO(g^:Ōx`iBcw $ngWwF| Cpd܀+匤M+} Px\↩%o?{@XIIuSζʂ?\^ҲUĤtj *ko] ~*8⃎w{\0*b-~{Rp UCdŊFƫCRkjFh|1PʈJ [jjqMB!QKJ{hRw ,lFi(z!DzycB5R3 8Y$ޛLuArs\_ָg;G!G~vLp4$R+A|gDŽE~/:©@hD &wACq+R,`X 5K^h hW/gO=7k Jj3;K_IϴI;Čc4D^GE[Gz9Krxd>G0p0 @V,lnn"AG9=Ub! tk.!7aSVwiMI ;١GwaAzShCIDtGٷ)$A;c%kd 8ѺE_9Bj"ỈA*+Lz@86u eht,@\VD_\l(ϐ7BdQU#ے`dhs,@.OD)hy2qSXm=^>FJzɕP9A/2s9;oJ;nMP_eKpH椿i[T?{ ?O~VSF%^@-%WL"H @-n1]_iEBMxUm$tA\!\(QJ_;vEJw-c-u#64a$S3||ccPI35@D}3bt!+UeiL̀0jӘ(~n`8)lnX _}rGK@.C8UYZjzsdrӃ)ny1Oq7e7I P Q+4NFSA!q 5E!λB.ĕ۳ƭz3^ QLT9LG.Ni(,<'=YP$͟n#B߳,RB[K YDgK~ݬB1+OLb] mn2w`!7J` 6VXDA6u,ڲU"2ss_LeeX_F҄xŏMc9^WP(Y"167P:٘X:$A] l?Mk@1S8zt m1?/#< 3ǟ>Fo"QZMɴqYqaA菽bSTDhr:Km ;{U_.aL\p~#Nׁ&dL]Dd֠BR/eNC9SoZ}ل,rkKыj7M gzauR{Jb.+@4&=X)43n[b$R]'֑7D[Yg}$U3o2C3+o{PjS~Rwψ\Hk厦]]sZ ieN[6kH_ٚjc$+|xDXxFJ^<یڤ;;lf_ o$"3Z鍊Йji.g ĮN"C]$K/4gP e &VraI+tV{*"쵯`hj u(ך^lhC < ldYiT=Q.fK Np$Q *fOij#;#<} {sY)ò]~x{z^]) T8[rBb^,Ljݯ%iUcGl}`/}\lUKȍ'6hqwIqz/Yg8@PeO?m ݄/$[v`]fur~]v%^/BQy>iLXmF"_UٖLbKKRH߮&@Y@~)8xDmxY'0A~vgY9pUĻޚ ݐ-/>6yP%WcլC9k7(NG>; t7Ghttj!<րxʩ-IUb TQcϴ7oZg1UH톇PB;l"T bX~uzC. ohu<.=#\#`*Tk#\Q׌{>Ng7zɗP{hոn\u!|wFɊ%@+7^@yL}0f @&•FeCu}ܱƚVlX= =h >}rwS偞6cQc֬uQ QgaK%)?=h[jmT)7̡ɶ$ ˭~6 F|9Z*kXwXoo Ci)rnOmG] *P'Գ咾͖j`f;s4F2'˸F:7zֈkV 2e5RI|s~?ܺA6K|_ }zws׻5/kOS,ݺS )j+TaKⓨ͹;dWT<ꜻ˺HyC۾YrA@\$ EOC$U;>`" #QClH150b^R#HT7GBM UR.k?2[zWޏw 4ctl ^=<5ܹ>o>&w t, (wp+$ V"Zo]Yu>Pt$F<[15It6S%JԢ৵p5O.~ib֝`%{ 5'?uxrnF=i5Oz)Qk!:b>X.}ã-u:%Ftd6fY60?'d;luÈ1اS,™68A0rȀ\kF]S|- = V:' L wO')@FhW8on؜Da.4+s2Z"k|yژ6(;Yኍ&@38qmrX/zS@1 I!Ƒ"XFem XJHl˧ #_ TY|UutkWk!SGN)ƀ@⃸s*F U3N.!A@FF1> /Sr62_Ai:tK+hj` C;R:h qb*xJvߏ\ GE3@¶L;J <˘|1|1BR>=:K#sL @BfQ7V&S+y rA:4^3VA=|'俐Bh˭n(*@OPtE,zbPWfԽKG+! ;FXoy^o+dЏ#jHfDԣ( Mϙ䖈Ҋ3TΡ3\,IIz;wHNVmm6Sh6YIe4 μ/C82aQSrޕ ~3WDYO/CQCKYiu60r^$ZѦ<[:W < 4@Z >ySX{{ sDDpRTS+q̀- z]ߍl>VV Z2!|yM϶^҃.CMsA);}or7/G% ɑj#<ڪΕ#J<WSp{T70^[b0%DH]^=Wc8\[IV#i& UDȗ3*|6ǒ>%7&q Ӄ N1Z UG̣?S Hr$MuU>-qjD-q!&FuX՜ 3"t Zy9 <I 2&vLa'I#S. 9r.-}\%;n6n@ ǹMDO4'o]Zg۝_j 1c҃; rW35; -{ pȕ i8zMT+5Zc9_*Dn!dQv2jj34޿'O%9!fgTͣF_$z [Nb p#CA,R+tQD/D:@Mȼ~  b%ӊ֥EM.bVynA[;oluJ AkO?wSCWΉ$ ^ӒIzAͦ$& jxSqdM#S.Hw4}t=gHkE`SvP0^9J_@.,5ju|_TWPU,Y2+]=(Y?yo7 a rN;:ibcEeBixo|N Pr Ղb?}thf 4A*s c: :T^^@.}I;Ngk$gx _ocEzHh>ڇ_y;dyJFB㙊9DACUp̆&gB I)u'Zdf{۠] <0N\i\I_t%eZ'1Y%ݰHV%@|xMJjTq}LC\Hm~@BœJ財IN`"}]\9s"yX$}Y ˟.-:Ej# U\c#nBHNle0~2¶ɝ)qe&~ '|Rń:CC >:^m⮝/NAX\UoM}@v-q!2RC?BNN~86"sJ1F;rBÞҽ5$ޔ:lSȞaIiN 6-'sЍ.p Q"Z#C]e3מfHC$u/rc| ?0^ESo7e;M\ l#},j2k%+bjNH,Zf?Rv."4ȔFYĒ9e')XOu] m~:8un^(J@ 'T_vYJUᘁS8aqS} xAOs`nHeBAv$Eo >&vXfM<"nxtѮRDLgK Ӟ"I$Ь"zd } ?WB+~/xs :NCm8Ť6F4ީ.j;_ܥOX#Fm1a͒RE3|eNT43tӳ>#Hct S%0|-AGAa`n/FL'Yy !gG:Yr_ ɼxQB.Δb_%7|fV]M+yK|*C hB}HkY"UZvg_szDK37gOhJs9kydӭwi K ;'/VISe>승iYM*Jfy^r>>pMp(3[j ;xкxvg"T61+)QJ˸6-|s=gbfıt=TH6imb0V.v7Ig6;ุEeNLfNh 0㇭<d *V6 w^Y;E6 ( ,I"r`Fu3/ʆI5#L…F ivs_jsfHTe pW3΋.}pT;ZU j-rI^wҩ&x'9qnEΠR* Xa0=%,rH=H4߰ZHSBSEy~lb+qDZlx.4ý8Ϲ:zj dZ֣&vE]q2LcVD7N%-=F>;&R]ZdEJ/^X8YRvUr12bAFmM,b dXgqgso ΰTc{@5[ }$cFq pOr7{j1 1Wd) sj5H݉XcYzH"@p&k[WAϑ#oMhR( x&6xH߽\݇Z5p4 @Js!/"BNzp!p{5oib:M g9fTp-}[-ղD4*O(;@Cbnw[bsO[ ӣ59ڙ@o`BD78$y%t $H8{fmc4ai gnnfU\b(MB( :z-_I秉GՕD/}U~JDBL~!% [4 E1*k̃Psl䂗ccr(2(} #*QQJ n<1r">_-/,A7z!4%wԶѿ U$ 1 굡djpE3^э2 aP4zQ9 Χs.pglj[k8T@lψ6.cTbB*hz[ړwܨ0֋" cQHT} 'te@*7AmnvDN3BԌ ߠlŞI3EB'5_;$D! w[7*J VCa왑Ǐ%ԝ+܌tpkASsEJԦ4:~p\CyDs'\)-O7D,# hc@¸xpf2Jc4HBEZh,=b 5VѡÓ˒,Xv\ihz6+k>,ܤl،Q9  :gy;L`uqǜ&Oj˟ټ#h7U& Fuexk#Gb8Xq f?+|LE}/=C&>oܝPN`|s7|ʤHΎUKݝ k^z75Efv^7) ( :L %@n>/A Iwɫ6gc_5ٷT<  f&H:! *yQ@?OVe`yo4kMj=$.o3-ditBn,Q]nf v7OEX[-~ICBl_&Q>Tq_up |L;F{׵`'_.,"\ie#y ~JV@g1 l $<лf*p-5嚴 O:;z /Hž}r3Z>5u~AF%sY?`W$Z֐.34P*R8G.q.-͖wڧo K r3,1ل$iV\R'y ZUIK0Lbnq!E ϵ&cG6S G o]}ϊP_iqN>_ 4f%wr5^ .y):^Lލދ@vF9ID ^-/V; |& #"y{c,5C|>uʆvԡ/Yʺ`\Omd3!WfZ!r"Ӡ'U][sՏQl|C%.'B z47pe724#k vrˊ[ ZL8Bl-Aa :x#} b=ɶΰ#)4xsBj w;g.A,0+rDt46"Xq"~ Z슦nE=iAN f6$:7V{tE[64IW1kʪX%5̤ Y|3ga Y- Y1ڀ 0ӇU08vn'Zl5z9/l;~&MHKT¸<*j[POvd48N(@ -[7w&V}YԊ*BMGP/CV_CJwVbh|4ֻ)&+5BM*)a[ezv=˾SCurc:GUYbKT&9p,Huo"s"@dܣ1X jq?g$Iq8#~OUs&@# xh 0OF)U[14A+5ec wQ_$ֆt 5e7)s$Hus;zsKK@ycW fNWL٦T/宻9 dBQ`|LھҠ V75?hJ=$&6`1c` ߥ\/p^H?aqI+I'bL!J (/)d\8m٩AҾJPF﵈P?'m MĽTMDob(ƹҹW#mY|8Om U)z6k~@8*SYBu㪶Rbx47H ܥ¶"G\9iN| ) |3alynp7"6m~noNZ>}VM|GOOC4#[0>Pw>܅-HJPXJ}vU=M͚ٿH,cB='3Pl]bܣ>xX' bD99zUڠ RAT#ъBn涕3SN߈Q_"~ ѦMvvQ'GՕWxb4Ξeh^ I+C_7&*[#x2R2?!H}NjۺZ-n6ٙar_t l #H?qAu4 n0oO+Qvq~fO@񿱘$IieXQ{ i)1=)ծ!= k27˩gb[baEgwfy{}Mү{R*h p!珢D2q_r0|d, t)kH#8${[$9H Gm, &Ӱb|V{{ QSҙyR"s٣#\<k[j㙎(H4Il(i|^sy/Ceqom/ET|ɿGu@_Lv$8w}xbR@yLle|}D]@>ÏǏ'&Sf\3J}v$=%dC?*k,gXNBe,YWK >+R&J8 IFT&Aj|?JIᤴ}U@b_ ! eER5aֈxLafK<Ѭ⹏&|!Þdc02D95H6"֨pғ9X~ h*o]AV8F6g<˓jd3u*Ľmߑ~l]O:`YpZl2'SI{k!IONۛ,,Y A-;نz%k ,kczc*gvWy%FS p}Ѯ.{Ud )w[ -4[P]VR{|&`BjR8O2T ȟN*Oąb1S]c<5*< D\"bM?|2!x@<XWako$uxKnlauXEB˂1[v-1Namߋ܁^ߎ Jzqjf3zlK](F|58`0J+wJ{E6?nqshI@2ɐs5titƾxzB)FYpz;'qM>,h(N~֢A03Gb!j1$|kXj'JUj !YO3r4HUeIb:_.5`J5!t.SUr'ʏxxiˑJP5LD$_ˡʴ.꟥['b'.rS6e/I MTA 3A ^.S%޶E|3S+z;(3 xPuGl&h "mlN&L:8N+n-Lg?g,{i#yi!G\1`ď\ $:0:#U|LV7°]PƿgQMGxڪWqo2H7cMnkda^nloT9V^J c;8iAg(Q%)Y6BQ1DHE2)Dfa%HK.v;v&ti:c_H2X):_G!\c.٨?qnZ \ edUzZ_χAݟ7¦ ńHbRl/:E V)yE4PL'-%n!J>T iʺy>%.9*my)[ XO4Z1T tU}J enpE|";-0?CAl)3mva:҅6:?xG{s/D\lgZ`!vWbO/IcD1$=!E8/Bʰ֑3 v?rSYN( >B ӗEWY쮶jad(?y}pĦ{`NI [ރՕҺ[1,/!-1B&u:Is "o0=qPmg@+W( *6IeԦݦn~?0^;޶߼ ktR & mm|tr1]Y̠fRJ{W d94Qt*]ܲt5BF' M@0 }SPQ44cp +/qzA ͙U/+ ~De0 OR^s{=7(sUg0(ZUC&>$q >h g1E.[22SjeFX3kݭFs85-~Í`$4 $+B7`dv S %Fg6Kw-Ҷ$ ;M."Vx1t<{ɽa"T4Q4y/z Qr)/5XaⰩRvq:Ȳҧ:|Q#/2ð&G=i$nv-w~!M'iose?lAh >EƦԩīW(Nf;`ֿ$7 N=9seR"w1(l1:} PJh7hL^HxoW(.s`5ZK V굲M\s hԝ4<(vP 7@C5OWC(rQ.&DIEs0gm8vţ9(\i OS[R2|cv+ BJ?<ϋ!Va=2,Ob]>@ Ci×Km7QɇJ;&NT!-bTc+9 |:}B'Bn9uV"<eֳ-ij~fl5oH{_[B!hnS,Bl9 u̪F%@;s^r@o$2) 0Uj!&ގ*U1ugcr9~9n'PV kJqHPE-~mTJQH3z6ZxXPK[N *j?>lPR羠MT⦍Un =/ͤOo*տ&0AmedڇJ $"SDR}Vu9ꄮ EaHkov U]dJ%Ȣ:CL&F?;"zD\(D &8lwn[Dxv xR 73[Y84#hq @ʵ-)|)K!JjPZb$'rRPw1\. 1/I %}+c 6máyI}n P%J>;J.K#dCc'% ur哯f 0Iڛ'+Gj+YD+ɩIin ¹,e[wjQ[͐2 2{&%gE]zg.F(6X{GGIv4-Iz%+PZ*>A^Y@]_JgKmls^j:h5e?I@SUtvk Iә_@ś#5/-̓R:ãR ̫,Qƪ4|^tzR9 N &uek'lC3gPQ6>y͡_G+=kMEY 7i&{U4a17-Ϧ ??+Γvx b.%2ke @Xlb}tЈD.zt#nN[m;ױ1*q}$<&`7?b"s T?6,GG8mJ1)S@^ɚ5MGC.+#OG&xM2COq\d bUvPQ-J\/1S[st$0ءF0Tk-y0j<5GrK:,D}ʍqh3Z^'ܹ2ݬu1NT)|Jo]kC,TFFs*B/hjԗ(N׶#( ^W+l(yь{j%0V@n*-h-y|q(8&zWWxg6y btCێ\u= 4X9*K%ɂnl')|ɇS1{}E} &nb@8P2fu)f*}c?8-I{+t6y,Ũ3 ot0wbĹ! "F*3$_WL%8-@΃BF[dK|-]G~ڨK Hy_ۙ,Oy4ENf vP|1[*p% ۘaMj2b0I𢭴Y*_fGLrwҬΗ% ۨmbuuc l=NGi_>>h(x7Ӧ_9`j7sE97KƮx-F~Ka*lnm^APM"Sk$]"% Rr'll9H`!1J"ǀ:qUpeŃiݿk œ BHB ʟ#VrU3w4s8z[c"4)yvq}UxKK*)`Lb)4WG%! `WOʠ_G]]fb=t]][#:K 4`یa1X@ۑ0UiN>9AA}V"P:4QSh@ŜlDA)^\}2'K_eI9m?tEdP2:`%!E:G!@W=Z(t19[Lp=hIy~]uSOVレ>i3 2Lx! MnKQO# \6v޻ӯV*zX{}~+~E*QdBtɊ4K?׾1) \0XNZA9|kz(;l0l?"u] \FUP /ֻ%Z˅V_4)5jdkז!痟㡰 */cfVB'ia'Lm̱EŒ)ۘyv O?i"cf&e%WR>3;IDP%*+>~'ܦ'P`[fuyDvߺ-4mB#ltʤh}.'l8*7Փ3]yt ufW^DLij;J^^UpQuKt- ~)R_y߄(^L=9S)u@4!nwE=Om]4n5hoq`>͕By:a 5NɺST߯yYSW>:\v)_WQPIem}'V$3ifȎɧ6FD8o`O,!);T͔ХFŇ>td犿ۢ&V&2y*aR-}t~5t3.s2ʔd~:!=#ZŨݿP^؟P QC;50{#QLB=*bnc-/F#dH3k".S+Ҷǹ Z~gŸ5 G(",4k| [ן}=v'oqG% ~s͍F͛ ;f2{2>iXjeIB:Hoڵv."dUABM6WbKI ۖD@ .sϡ`įMF5oϗz]cr@C^N26L|t>7ؑZ%G&֜x*Wz^ L0+3&xBW Tmv!U/Jc)\.57x1L[܃Z- ,˧?ؼoM0 ki]ǷQO+NVr:8 61=RjM?o[#bVj?5%(ur4G3ievcP}8|#Lu< ip}Gl~oGLKz3 27]b ")yݺS)|/{}h9%~??GzQ)܂ ;c7ʯe%Y?ح?HAVe ,5c|,oKs\($J =3A,:鳆88`*? ~Xd@Rф  .n~`})/[&,*}_δBaݶ] ,A0M|)Tطh_ f1Iy\t#È?bA[|v-L`ly#-KP5Cޝ S Uv˺'ǥ$@~gY߽v6v4p9PljLTE vPHk!W2v枰cIمo|M:hP@Iv=RԾ/VDNZ=qϫc7SPp1#21 5,zh3ˋkdE crE9H&{E^0 &꒶ށ>wVd[4i҈ּO;SlDO&|l,c|瓉:uLi5h5O$Wji n)jcˉ]Byni4ٙFDKU1|\nѕY~| K)]yRhH|=nPSkr%:保-o ~cGi.oz»$,sen-1P?*zn^*͘qG{ɷ(Ss| H'2㷛^Rd#M_j]> -†f)\Df,xrQdz'nPyu5H?)bFV4d0O}kԩk}hXgGRMautEmt)Yy^l'c<?\1#?Z8 ?\iX]Ӗ1c* (zf^tOX3B nxPvЅ5Rч 8HDww0C}'J2iVe8K!j?Kk &-􆒱Srz&y>5`+R`"8.VL( 7e!>6Ma6ÞhPzZ#cHm*Tq%>g/^AQTJ2ܯ0 *ZP@I\2hrnSJ}oOr9- sm&NJnS C_Ø'60+IufUo&S{րQEy?kIީO5 !n(lLp?\2LeV d˨a^KDImeN)M[×^g=Qa=rsC{mKU%7SBWiZ|n%}YUGF-e7RsYg{2-;N4;aYK1N@\p%&xSV':L3?*ҿ*KsɽvبEPQ\ O, 7  Xtf 21SOF_%7n7~bܰR)<ْ g6Hj`E9 f HDYs)}$<.bcƸa;6 qYhzn,;ɡIp}f5Vm FlMS'y!] -뢸RwiZuںz];ix:XP}iqC%1!kA\Co+,eNV\RCd&4޾k&%a C[0wW-,3|Aذ9csmmAp=/:pKDDTB2rj\~yr W ! N̑?ԣ洼?G^} 1Mvqj^_!6bX=mU^[H 4Ts;7gB7VU 򛀒.0[ǜc-i.pHUuM{{\5KLA[?et?kփ9#GֽP}am#vU{+|4dߣq ˄IK;X{k5vN_ L{ͭ'0g<wnG0,d=O%$$^dqO2ăqc)Jf-[t1+34Z!Qt%IrCT߮T}ZjULFw@i/ Qz2vRv~m_Z& m҈-_t}|W+K`Ah1 #‰ BqWZfeajvı/çaO @uԊ_&bƹԐɥN﹵ VvL耄wu+#Kn9:хfM> [oz*I ^#׭̌$WgbMP7,@AA bx`Ҩ40AY_FF.?gh5 .;4Qx<5vb3 jŽF+՚&;K)/DUtk5u,DG#m`ސ=1  z ]^pzb_#+I㐭o;5^xF$}O"Rbs\v,(ɥ+|zԀޒ].;=izy̮1$(pI1\I\]GӲIЉKamyO6j3$Ȋ9ʚʼwskZб%P@gb#vD,~/%^!زd>-"\пC+KWrd.x }(҆\~ Y=x9V6].B5/ ET,\=߽ohhf&!fiHTLЃp;". fЩ9|%vӗCgviC LPo}cG &r0 U]BGi!IQkeJȇ<둝6%欨{l*((]:[⺿Z:Ѹ@?k9@F7!0x6G!>/}^$DvFKݴ&mU:qZ[&&@ȫ۸97Ӗy ᠧ^1xИ%n4Hϻ5SX뜽$1nSU_Ti Fr,{;Q?]*t^;{qXJHSCGLPMs7gdtI k93~X wzw]e%Qj1L,ɕ5hO!3f u`xꍧt::a/σW"2iFGGB&AaTfOe7r׻Cy>Xr* :B٦ bSBs)pmU9ky ډ#AV & | c)[1"{t9pɵ i9goԕ "|ш+C|2k*֦i$kD>%$KrI X5gԦ5-Vdy. *kUjF 5V$X ^v'ړ^{IΉ20A7[ߚ \ r2۳GIB Jɤd&WBhաYWftɃf HAψwEzKw=^FXlBL`}Yj~팇!9pNhZ yonG $"t9&rVyTT+:0kpaL+N:ܲU7sr mu}Hz q}<0w6`d*, zX@"aV71뢃JXT,$LU,+` Ckt2!.)Y6v6 3¦#ITW2 TQ qtcQXp@x(A%A^z&@a6W]Pd"QJb ҒiN0S/GxїAҗqpC+5" )Lw+ɮƁGNc*)&+(l',f&It[U+]c Hƫ5ID#dpaoD3Kd{6 3@ӧ|u )?,8#DIz% ?SAnӱTҺb$NCoJ_~~ pTњ2캤 0!p14D&W83 p{|Nͻ#"o3JJ #nl%TpH | $"Y a8@t WQzHR<>صW*zNJ0<C_9N{u s1gP$d &=OJl &7z.BVadtѤ;q :7R1T 2ye[j|B"O[U'3?/pj7 `/ɜJP.tJNK.m/Oh@kag14OJrΏd.m2D?4G9~_mGրuʪͰsB]nTQ#ϾX1-(XX4&;S)VuE:|mTc0W1$-z.79ĆoNIK -B63/?rQ kpr`EO5"($-t I\պq3UsBi+XfoTU؏TA})B5`m"6"; ­^pS °ugfFqo̫EpY. pT!fz[~2IWmڤiW&nb7f߾,R c2.n֋.-0C)"z##|;,,-bxsB6GPrr˻oc#kdUQ'x13=݅Q;VOxK7ci<](Vyy1 ,"$mRnӡ|qiYNc RStZ;9W_""=IY*l 8&J'x\__ '1K/@Xtt!1X;[zpsɥyr('z4ϞEb<:n L/MJם$4V`]"'Ƣ-pYr;wYBKu?" ) %3* WQq{VK_ FCb #*N8$ +RN myǜʛeЦQq6v$p9 =R"tJ zc0Q}Pbl,TQ+tF@|Jwr7hnod7aan;}'Ep`]+w0*B2_*9اD|mcr:7:fXTMQB]eH ˒ih@$ 2!B:kdT~=&֮ުB Ht)+h08P6> >{WryԱJ7{h;4ƆYS5',ƪ)@KtB!Ȯ>yԍG]+CIVY8P<Jĉ)LbhNvئoy=]n8נkWcI|W@쮱#8 9^e=<2 ćsF"c03(;R66_r{lŲ m;'D[y.v+Id+]lydW'AC)8fNt^pu^dO~/:^ҜV؝e:0vާTF7LѠF%9Ⳁ^ j6L+h(I\">2XJr3>eZ'~O0gsΘ(NSߘ-~P7# F*9Ά⺃R_$Q +j=!| {kbXﻰ6!&ݜg6IgdYhr7vR>Ud##Y G'`ldl:CFߜ1L(;^Xa_|wM4d/m\^ƛ˥vD]Jt%9+(ڵ}\K_;R$7^_wL50rpIF5T9ͨa1#& |۱=aCE*1FSf8C, ;Twi54m?WU^{hG_őkjgXpW _ غ`~_Й.~ܶRnM?k|Hǿ>?]We6.`~.;ϧe;/ 4ٻyF~WnH CfI6| _cE6^u7>+ɫ}"#uf> =!?qQ=-<02Tp~1iع|ҷ)ۧfF\7?0e}fWikڷYoϢ`[o/K@YCJ/ q1Pt$hz_2  D\CH p:M/( ,r6pb_.)-zbދkwn S[@A@xLke맕5>`#*@ .߮cb@ϐr[0j:?RpM >z7 3#R=3vlREeҏF~zGcb|$i贕ㆹXݲh\qwnEYMy]VEr1e=" _.q>\ˁ_NNe1k;<|m zPkԈNWS\s W:ki8HjPmըlKՄe|ֵ4mvMN;Ηe*k+Ϳr*[(QN+II9ޙ ;/)*Gb[6 7)b ՞=okfj֌“VWsAfe^*Wۉ.`Dz'RJ:N~]{7RTAmV(಑{ɦtDPD,Kh-i*MoڈqZxJޗӒ|)(cKg*u}]P향).-K1։\KƨpkGLK*nzڳ*?Kq,d4T9B+U k6-^eH b|ʹ%^?ߛeeX#&\ȼG }!8cgq_. ](y Suuc%80Z7ΖJuˍ$iڧljxm/kE:rmmP*W6C %|bhEhQ}_Fh#0Qֱ1a`جkƚ388}:8n ]$'(>:P:I<㊿h E(Q1 $ٍe";,m ttZJ2ҙDSy'_;Rc {ꓠ7ˆz78PIE}N EE$-3Rx7M n6Y{ۮm'j-|cTe;$41xS\e| NbdL6UES4jl?L4'[D] 's$(eNn [:-7( 0A{^5l)E1DQqעoZ_?kd S7E@/ɖ} [Ҩ>?EkE#<&WE]zﱋOFf)*{P^% f'M{Xe"U 'jjJXB=Fkkb0o½_{''TAIcƌȊg.hm.nR3wĶZ q,%W?Eطj\M@=efwPChxB%{zI WMU2i) |qdNz}u`'cDUߨ|SPYF*1:F+*9#tR|=6r|(!w}?ںp\b8Ƽe$JěJn5vuk"0Xi޷/~mq9j";{î"תLJ ۨFV֙-݅ZoW|FA T EAtޞ?x)x.P42,JˑsPF\o~1$UDkk#Cٿ.9bhָJe|` W.l^_n ֐ǁ9)3l)!xEOld^f36 o1bԥt;JCޭʃ T͂nAC҃,9S9rkiWo]$pfGSvH1ȀHѹY>BgK?)1gwž24 .s$++(لQLQ>;‰ V4~EbR4"nlk^p½x6͏c\~-s$t' ]cl0 lG0|`oX\#NK!ԙ [kL @Ap8m@[-B7!Y1[._KS uraI­mbx 37Ō<F.1-@Z) sOKIpEAKoU'Dn{c[t|(8<%fI9**ku2Ã, `gި6qE%6yu1 =4l2I`TZƖ1U+ngG7PwU4 L})aq &ƚ jXḽhNPc@{  @`~?o>z~ ~e*A3ao2l.re꺊#ƒY8^Tf*> r]'p;rVc @2]RL*G`זWLX4gYA̤6ڤ{Ada)BEW^)#:}z|:/L::aÞ fkIm*G{<#GP%xe{; qI-cZq '~W<\;c?M,UJ ū0id~zp7cNaonF^|qv9(C-ƌFKn.>\w81JTg M*fMu${-}| J{aFm!,)]hG oui{ئdK:׿=,e86:"vaHEc44AEc7\MJ_hpJ vݽ>nŨ \m%wi;iLi^f hNKE%-HRZ%#JNtQpKa\}Sޏ|ˬ/hid~tM|[㉄.t[.Gu&CnjU$'ƚbr4@A/T#*Ȱ8:^L睦pd_c~Q '<6"J6rDӫQrHӣZu82:g2F1KhO*:Q,UxcKtQ|J]rղCmc4 u,It4(@f_-Q%Kw^@&|/!y dSTϭuLO> zٷޔ(J3r[lv)Ut1*:IBo4&BbDbU ׶U 66n)WIwkZAd"$8=a:+zL4J˰TQj뒄0=`Xj+8hX /BqV_@.!J6=r1[YpY][HR< pi : ~VDbS8B95#.emqa֤`:갓 =6g=& d= &N@b2@KRM 0㫀0jh37٫y%T<v5]pmQ-`rW T&W%VDJ]"{ 5Ju`v]Gi{DL!lA6Q' P?{$-D#(DPRbgbYGɾhaO"+)V:.S6dR  Pi@I߇,0ʏ-oc,?yS3o>?S< n[\\߅[U̝^Hh }=w3%8Ptn77#A҆ ]~yU:аցM(a/}irQEvZq^1Іʔ4!F}_En -]1ƞ- ywۻƲo;@=i1KR HO%"h[eZXv%q 'X<=fjw!8F(mCEqe־2od$(/i78QUXIn4rct#|ܣ|$0'N!ƈeO6̤VA!~ID=lkx $}>n6'cfWPSWm'%B>;Bk1jfH" Ds^J|'m>hN+^}K%wn6>gNY:1x[QhUT.)tq@S@$raą, 2>I3NZ/# 58{ziji|8y> ggPڐhyJD74\XW; ZCsJv$\`zw( ?J)9jQR6~F[fs Qb4N-v9kN'@ϑȡYE"t|ϯ.kS`p"u=m׏>;{Qƾ>DwE]_;G-av,a3ƼlmO5Uӓx4Ϭ~CmqmSeY|zJ\+y[p+gSG!ǝ r:<&^Z>11w E\^C4+Q^s6m;ݴ- -@NX5)v;S-$_0pz,<3)Vw eE]G,Jp_IL:y"Ԇ!>+:fƾȺSPOnb~{. x(V85,,zw$U6ȷ*_բҨk)D1eaAhB&uF=qBZbH @ l+{X+%x=.֜RxzaNU@MCyxXAX{wl}\el&6 V*IۃԤɻ\JXdg1 ^<>M%@̑N;%2.el-+chjTP4x"쎂e7!6(HN)y@A3=B6Eieĸ+lakd?/hMqt+*<>{Q6nF&G,o3©u:%˥oa,澩II@R>wU5ng/ dVo1_H3vw}Q4P%p4`c:}r^;PVٳtۓV֏Ff ! by?WyU:ęGI3BreTucSQ?IXCa~{\ t]uȁnIW|8,k8T"{ZqvJz6"Ej'ÿ Kظ5\o^]_2f=l,W[If+L-O=BȯD֯/W>e4j|(K@3/31Gds{nGEw/(; pn!.?{hm ,{ͮYBh`ֆB{!le *GȽ T`Hzf~X?݄3z$[c(݂{Lϋسyk>ߊ_@~IN>Ev0] m9lg[Te#.zM*>(-4Jxނ&O >R8̊S@(]%s&,eQNt(տ5!^ I5!pv}bcK^t'!ٵANojb\k -$«qkYFX}Z|WuMդzg`*!\,`IMp;1>xȯ09?LE&qu |{72 D*>R73ni .d*ݏg:w+f HiłgpT|YF:M3vK3Wɰ{m$Y=KT7uwqx igY"c?=-ų*tŷ?!*mCaQFu!p?Iٶb}LqSKG%gKHf9$x!t'n+Q~UO 2n䚾+@ttUtY"zc7yն1q3Tk؍ofw /(M[Pbx pܽ޺/R.!2&N5P#`].UH?Ҥ]!k3ouQrez?Z˒sA,njK99'a(wC0@OPr R\ 4Q'Fd~BXadxCtaۡZ0dk#Q0%ĢN7$@AڙQPA؆ ѓg[]YʑeIp XYvFe;O~7 ޗ-h Ck0'%f?ѫRC44gAq%uQ*3Q. /%I: ,XF=H+mG--,kNY-Zl!t_&&PYv:Ztj pˉ9r7/_n{k]ŕ}BsE V t_U*@nSo&`5=kہmT447: -Mlb9i"r@1p}~?_!_ >?P i|tض .h >76NGl6,jgn25sƻ3s~¶Xղ$F&qr.ʎ/ i J4T]:uZMmDY{Dsy0^(uJːc\`A1^Z7ZT '*<[rY 9N'\44u֟+Weܳ;iZVaRP;%q\L*:/>UcJYkBˆ*-a嘞EBA' 2?r:޻BNP4yz76Py'BhXUD%"p&܃8lKiKO3K-y7w3HԋǙoYio&q2i6.惓liGgeH@wEr7bUDy߁I'3x1)2TL ܃A٠"vԫSt=}RaՕX~&KNB^He֪_\ L4UV*dEsyX[ޅ&J]Gk[uB$u-SOvTH9"qոO"+置#.|(_U>Q% _Bp^Q!`bʼ\aʿi?(B>cz Vy{wrpO9SS)-/~^{7Ca ޓ]!4!%yk8B369~2\ e ҍ!t+DS6';CczkJ^ɽ띛gOKƅq3+r uY= Sg  gU<^+?q"|rpΣQ̜۴DBǁD]7ewZ@3 Bz3qsX9|vUtB7fhǛzƖl(Kg6~tuTTp*xPWy9,߬V&Z\ͪA *ʓaJRgbzǚL0SȚ1KbWC7ޜey“bl| Eyc[O-e(v洗Gyi'SZ7bPZ{*_ҹ#91Pf;m^NpL*"* kޭ ﯿpd࣋gS֮SR؞1mN;lDTw_"~ywkR¤;W&Yark];2^Aq[(EKmǦL< a;]V˗L2 7Y0hO kYם-'͸EրI4񵙈æTeV(nMV̌6(y?(R9匍^a֕3n!|.vdQ[ڴ'sl kac۱R Sa+'iwMy:D̶kWGq žBr73b^j @+3!.| I9CN|ėCt ka6 :XWK&Lkhq迎Rn|b 4fYڸ)#7o>;V.Y8Zb.'uzAU]svv\T{ I##wΩ,hgM)fk"3Y*'PJ2rsЃPoLH2ʲS Ç2\M)ެGO"D0VkkP`Rɮ*JL !lcǬnju?7d׸j D=jިmMʄ7eG$UCU,7_u;VL^i.7 v}TI3,B6 K$ E^e׈ے+\NnѨn}0/,CMEs Z2jaFa[?B!{0]m^ v㲱~XbMmf$#@,7aPduvcgozDi j?Vp 6 _497,RB+8!.Ӟr\${';3Kى\9*ۦůkhևrmwر"@' ICsk2W:ט\.}O5Il@[ž$0Yra<ԬSܫWIQ˷Y ˥ szaW<PZN&L?n~!# $-+< J~^w*M⽎QWGgNuB `bPIeLQcs5mL&N{ %H6XI(2]FKe1HےbOg\_4\؃)5p{Ɍ|`9+ o`wwOMvZ~tyS0 abM66}(S #lv >xF>*/:1_0f ^NM:ƯRd1XoYN;/\R|~'l 1MMo*2ޡ|nOΔ/0F6n0 NdU:8+0}p[fЪ>K-A|/`@L ʍ۟p2#Ei/p?[c~[ lՖT(NyλU6z5g ҸScJK&S۠vyD "ٴK+֑E^,u+VJ3ai-Ƕӭ"37X=|-VJy[ayy%?nBeu&3-aJVC?so]MZiK-A+UA*zỷ?tֱvLN AIoQ/a(oImAaTV.G2$,\a O,g |2ZKۨ_'d$NՀta4T(hl(V@y=h^ ܙy&mE%â F5Rlq0T&]Ϛmd0AͶp8*9RI@MszcX(ZJ[++wss@xȮVۋ1,̷F@KixޡFV z+d*ӬN(#(YVtlQOl: `Xyخ[/X}Dbֱ?jljt eb^{iz31"A&?c>!k 8ǔ;ˈkHKu_]5mSHSAڊZRYpNtkrۣ˾pUE(jiaa_}m7!r3RVmr6|bhC'cP6~tu4|Ns5L q+mR\拉IÛũ"hOOo细{jr XuqϖeRUeпpɛ/'BnނMcD[ L+0,^)oRw~J0h7<&_9s4l~˧-e=HPsMOboj'NAJanT-R *݂Q X]Zw2sFjHUdD\lo50nM{QU3z#dٶ3͆ >W9<5LV:{6/7[BR+Cv|4eOLtGlDE8M ҷm\?^~|kl0KJqwt-;,^Q4=#9%H-09W׸eV Ǩ\D'J]a'WSluQ%lV ]4uJh0"c޲L&k3w:RP?UXj8_P,S.%t "w˨vk]),UAؾ kn$aхw[&$ \tĽ[9B-ZߺVƓ2 F-1+æ-EџU aV\Τv wH̆nIVx,'-ʒZ  |9(m=eeاxxqf[=˖H0ɓ$߫_C&hYځÃ3 $ѯwkQle_sOV>[W) fzm'hCNc1)W WnY)1LCw Hwޮj=m98 猳J *u!Z(O[ָgJvd|()UUW"< 2G!նNb`K֙n9T!{`pXU{w$d&A~ב5'J]$=l U)6RkWcRjk<.we9y ;Tz^F6tW[=C?j7[W)r)?KyV^ѣdAct,^ o5,?1|Fd>.ѯxnpKCR`[B ~A"GS17D +h1BV,M :="]dub3h9v,4KlIdL ƩgN]ǚ۸>`1Jj%<>2$ NuN<-.6Z1siT3nv~UԜp잩.ߏJm#\ Ug˿L/\xe/!ndp4ro KxxOyӲ3yA7] ANy t#u6M]GobO,REG;`0q8wforUg؝ӪwkUP7Sn@l>&\\w{SEd.7O\p:z{noyS ;c?ˍܿb}:[L`}[+ebfշ|w u>*v ,*໾3~FN G#6:ŔPI=&,+Y0 gE) :6rvyOcX)] "kJ|eH A-FoF DTz#]r,፳+rbFI^HHvDUS]sؕ2vbK_L)Άo*au^LxtujJȗ^cK` S3$R<%VlC(YЙ$xbϿd{;a303'㊭\0~/"mHFW뒈&aFCKab߫ %BR3+lbq=T>+Oet$ovir>6E$h_E?q<>P (s*W=?PYHv.\f ] Z)qsLPww~I5ᣵܿ!N~{63V L]V{]n|KӏD~>ȫp_RCHmiEMc+L`+CQԛ-"1jHh Q9e\ךz4uDK#mϹl\g|/0jeq9Y¸|p}jG#d9 )Ԁl8ju3T"=Ol4ȚP6f%8Fή]E|)p9U~[g- !]޳C, 99&CN12@uA&&eF)m+@; m>L f f{J{/Ł(Iѥ I0|ro䒒&Wf!4o$ aNb0S0KÌk Ƙ H5W;{݀۲+u61Ж&)&Eʋí^ Sj'&@bI`Z\s}2%Ii#r*޾`kwp!(%"UK8uA$t̀?ͳ "6!Z&ᖕlW$qtX^; Bj.ʣJ˛)ؘMgumZΰORBb d0w^fsR_0EPˊ7z"AbtpSߵԒt뒦s ub͉73m (}]3@"Y'}3pO!/DW| $`p3>qkXKjPho ^7e'ñ)KjN h,>L,\䎰G)``] 'MpWp#VhzmKg* +\Ɏ - lon}9G_IE0.U^׏d}@\ 9gruq|V  /bWY7B<\H>xm@ p 5ȲDj*`D?1-uOD5:tY|\w~M `⥚FrD ~…I:آcVogs%˓(gKI/4 ҳ0zΐBeHiM0BCin7[i 'A/0vV{ ȯ&0IUJueJVѾO-n__棪F(|@DF$F5xWn]DX>0OBm//!dy-NYR:Rpz RST>HO-*Gf 'h| 1Z,mXj ;PG I43viG7\kӫ6K޶`x-s"]K%riRWT9Y~l*:O >.C= k49LJv0 U`$;CE8U(lާ?Bb6ѯZˆrE02$3mY%H*6WDqEw'W^ۛ)ث]n|l$G}wo$AܲH8L)0&J5Q hOW.t8ѥ(fgo8a Wa_ x9|K̀uv@j76"<"/V}ahH鰌*qQhաXhpߨ1s:s$>kBv2~b bKSmtY_G۲h{X+>7ȜQMW_!U8\&#:bmdYC\A'Npfwa eU|@la)Gd-wc1wz+"is`h(=/hwu5O &Ó 5A[a2C^Fa,:7GaoϖxN˦ gogưv,mag$uQM:8ZhHmRr<7@wp2QhERT*{s&CdgUB NjCNQ2t/rcxJ 3PMAGy|[VXφcCC(+&%id[xzC) ]SvvDiEw`u Ԇ59Kǭ&BRAXSj 0񜍠4vVo ^Bgn][b@M mk˪B$x-VӚ j]agӗ2l~HK}EtI1Ud\[; ie֢ӤRF'7>w DI3-ƤB"C{r@AB"CE@ GB?]g X 㥉T8%'{C 4=חӹs[}6c@X#X|ЛRhѹf8'?I:RPh3OfcJ8ictZr8 1x-yAޓ=R5M`dėBظoWmUO@3mE7M UtLoI#&I0%dSP$`n;<0tRgDh36]I/ΉRbn\OdAP3t)Sm c5ع냚]@IV޶lB鐿]hSE4 Jcg? ZjHBxc iL?%XVG1s_XmAOM= L'ӫ@:vk/0=s3vw)1}hAa c2:>&q))1KfK|R8xEk To3feT O"涜J7!1. t tkV;~{9..t`ZuC z$iSb64"AC|zCe_GwX\I#]G~K$J9-d@'@lx]n߻ 1t,n@\ `n8~: ɌcBǼA@qRQ%x|6SvGBFAzc9B@kޟy#@T@'lj4G< %%'_oȨ63lVTTȩbdZϗqC} fw)Y)ӏHWJ6w:,a߭8"64J^*H3ez.?pﳤhF, Q(MHky]n6ab,ܓq'C!6%3qjP'e9.T1]N9MoEte#\G Te0Rj+LaP5Ηh$ΈVfTUlJGXl%U߸A&kWq*5CXTGoe:m[?5w]sT ]=\f/PJ $g}ǻmc:/.[_^quJBU*YFVx~?b-gQY ,>,݋>&\z``8S-L!+g-9*c7}C^i-;w[2p?i.vyHjJN$[*HwqaB<g$d*iԬ_M\FƦT4+YQlYg[]1VaUT ȸjrͥ)V&cdeHjN|&fdwv-873.K}$#}e̸:j7dK2g ` =.tS/f]r|].{ &p[^1܅piԕ~Q ->UK: 8t3+Ζb+Hi2P,;Ach4/r8H=deppSׇ-;xڙg\E[,J',^@%l'=qi\p9Sn;DZ8m(m6޹\hCr HE4D.B)dZ4`kLi5Hǰ /0Q6ori^g+ e8%7+@skC \~ lb&IBh`f=[j|PZmGښ2qd5_#`o^W]E)ˮ]Gc4Q dY ꔼ):]5Svj%=PzI99% =T$ÚQgw^2I`8qęۿ.K{{њx Fl17h[,:Cdgk?>6HOXbCkXXHs9JzY~k2C?@<}/N|99Kpl\Qw@pW:<+4>S,G.Fr@kR_l 튲z.%d0iiFj ѱjU,ߟT!P.bDzϚ]zj3l:-5PCr jzeǰdI}oo$hvgc$S)<%?X@j58#\p{]/M#gnKDVwߺK ~M@}-nN 끠 L*}Ƹ{ {sTX@[m+q(P))`jDi|{+0 ?j[jP[Nw!; Ձ7krOn R6N߉8T$TWA pG>2xyu \'ajMD!RqTGM‚/fa,MApÏb7U!Wپrg)|1Or _Sw\&ooy Aj콹MjLff_qwA %qR(6S+qC~UPУdƢ~ɓV^,UUɵj.L55u@ܭ-S;:[)0_}E^ږ09_oy9zɜrc7 EfxU XaYjCJU0X牆(܀ڱx×GsNN60?})cB XMwcj%m砯YdSoEzdy7$ ]P-+$@xS}bCi7W Aٸ+E?`Iďν^3Ђ6tܒB <$N uxcB(-aYahc,t0#/|N!V/]٤%N7PZO;|O( /lWcSn!S-pd>V]',=Q Iyy30gۈ~ o#Î"z-9'xS`X4kP#~~5=lBFx"$jT}x͖GYۥ"e֋f82rd%Hs1 ǥicT.C)BA 6\יaτ8|`PJ2h{TxM vwE4 0r2ʸ]M_P,@RV'r?!ټ2Dn%~pWQ#:g݇s<̈àrrƜllһ _Y<%'| 0[qDt FI0Ƃ{`HP.eY c$k&+=dYiz427,M<].6f2k4`b{.#yA= ԡw䤠f%#AN%QBУˈhI 䥯 R۲wMjNEM䨔wcr/Q^53ۚWo ˳G%q F,mxcjJZW޿"QE;R>;!9K2_F5շi<ʩ@tk(OG o]' 1' V4ƶ|:S[13\m>cF$C(xbkV V|yLdIP$rtGR2g(y0e'">x+I9 \! c.tKْ~'6.RR(*x%NQ$er3/$雭itOg֜Zۣ8g%+, e1z9o ov&1inA@֟EՋ(C-4$O@X鍋Ż>0]=$1Τk?UrUV*k4~>0pwL]l;3?VDbD(\X]{PBqcg.!co B7 8CF':UR/K]K$~ 5<_b&UC;%Rf L|b,[4aG|ao ƯQK snuc(e4XRZae$m@'FG&ud@f |Cˮ Y).lpSRNi.g%ϕRΐeL]J<:uU:,-*3ҟ % SldP/1Jf7}m=+8. ? w:@d$BZ,aW5w]b)vG"PLkS=t1'M3=F_L!7o哠(j_OT@[s?2JNj.NgxWn'y(jY_h+~oWg:NCsy{TIQ0[x1ߙؘ,ea۵ci<]-wC΂(@ܣ7vR遅DiUAaZ3/ ^3K˲{3x (GGhxף623e]fJEoJUE*@x-|ܪyx G¥EFjXE|0ZVnM7Ue[kW7n%MK^L8t6KDgxYxDlVo!)''k%}@Fni7l [+h|E.o2Y碽[I4{ YgƿkcUOAY*8Q2Hu<= vdQ.}*}2Y$f^ES+0yad4:"S1<=u 2&i ujM9a#g_ Xὄ+'o$mp𭖰lEBAt"p-T 2)=1 2I4wzNN|gzƎTzy6l=H((q|)KLF`{4eU4k`Ld+]N2%9J&*FN%抗;):>!S=Rv*K묦;8GHlx(/JvPp>&7E= 37 F>F7FR+jy(o#emVΌ߬H&_͏h @Բ UaBrْO7\|3E؆Phf m?0o"x}^7J˼(!>bhN ?VUtDNjXV6Dgio\ëׁ%B@qy,'iM.]b ۘ| UkZWF40*Wo%Ng\j>gZg岽@!镰-z`hoBndMg0A&kܬz^\E[TqcT M9#$1reNf{GNTY=DK{_o!gEdU+@5= Qp d" IW}7H4@SVaV^KuK1+UY@\*"V]׼# Wp :>t.7ȩ!,hIzm~}ȮOSWJGl2R+pQTX0( Ѽ( Fⓖu@iT*@r׈V|)^z ;zHaw?t=w+)b9T$+& Cl8I@XWV-SM- ^j ll+\w^̺|0WR)y[ VJ[}AKf ђWH-_dp>`B/Q#gjB w@j ڳmsݜV Ζ jjDbZU젥' yp;N[}bAU[X>HW1QFd\y>*vįiqA;aA=ݠA]A½t2|qaL,ˀc2gQe"zcQӍZZZ+[3^aRqҰ>CĻ?> LՌ*Sm6[mF.Uq,QK`'~\9)ӔK}9x+QpɌR%/j19}Pr`dGE\Ld9Mhlqnp,9fDG 6kGjLKtG,NSTb[ȅ:˷h>IυhVhufXA/Sg3Y3Af hHt#м_I lۤ'Py{K|oA-.r j!#H?z|dql .t<21 %1eW ʼv `>Vޘ$Z60~Ib 4 7,#9!oeom 4%_ݢ9`O za3Lg"aNWdnApQL'TɞwNHvH1gާn,C;%$V* ((8l@9JHCy $- dr]ݳwPRD* ,xR->ŵݛPI|qUl҆䥲Ej^Pz6j7v+4>th$I_ꨒ\sPC1y<sX? Jﰾi q%M8%D$[ w3Nt:nt[ˢ!ޛ+[ٳG=-5(Kj யG]p$"F)1JzFO6hicpZĦ!N7A~I9o e 6o"tP>]Hut r$*I Jt^/~!_ 63Vt\#Dl(Wb bC>Y?Xbqb8|IlTَ1|F75۰k3zo{ U]齾*M).!LK lJ0Zr4-.6zt :1ns8,}GX[Pb[~Co견}x ?\D5{4jV Ao5[$i/ޢ-QSKY$o8 qU0XBLnl Ie5qh8n”8cb7,g]%|opr[T>>0f~-Udp%%uhyhgt6hCêqZ~]8F,K[jcԎqem$[ [:J~t3պ bTǜOq_sK6R<ʏP YCF6ܯjG(M`Q*^X La""UVU!Сw%MU=ۃ"*C Dl 1`(h1קE I@TO:1]~B==ǵγ'(Vk.h R!Q#7uG\$5F}IAٿ4O3NN,ʡuHǝ75)_XK ]W*6 Ծ-%MsH[zv>2{A0qk7!o&u4=P28y; S-jr`!ox.gB xbzTeA)Od.!1"'Ib=Z# DfP %v@fu-h2^pz_ȫ.!ΏpL]tGfӯ:'Z!~m/I;C͝Czy̛|pؾ۸%YSrER뿦Hh0 2TiuFc!e] loaiЌM?|1(:_ly 8O !j~ i}{MD P4E5jG;̦*GYyZZW72 A T(O/5BXچd=?C*>i9o(_bTs z\9q9+:;{jpEV f>Hwc*{pJ@u8Lj!’+_QE!x >cq*.QH<FP<}n֬PYtat.bK.Rh7'`81a!ӗʾ]O?eubi(m|Ol??Ot{+Y_ ܿKIKCO^Qi2fx ٩+Hxa=xh{\ L#evNӺ,{/JU8kquwQL" şI;חuDvc x h~fJDyesMwAAhӣHJfT&oa(+ JDhwh9T0" 9]hh+zddR<.:%1bv|\ͣǤ*Ģh7eo>Y TE;|FKٳ:'7.6ѕ =wx R{+ڡ` FdVyX_T{E5IbU#trNֽ=P댤{s4KՠLHw9 7nͩޒbWEQs>r ({Q1X:ސinH]߫JSdюrn,x@nALL=lBV<=Px5g{L?p(Zޟ/[[1y0yCUM6莹߆HQ c|]IAw~:C.w)KGI..ڟuЫ)ӏ':B/X2 ]&cp.[*NxbSE5PP?W! gjE`L4C:!tttQhDhZ5QảSi&Q;~"~9n)JoZ8OVZVL@T%"kӨo+SH,4lNi*R4٠c/!!]%Np8o[v$\LR`a~aQ-#6&:en?2JB'_!Mj m7Wc.a ZsNmӯn`kP~b>Dz>jKB'Na2C^x u|k0Wi&ZlE|w`Cs5JZHѩ,7$zpE!3f 1;;b+D| G##9uf #6PKWZC1@3hbQ48' &/BRrDV\dom.5=m iOXepTF)^\AIlC,@--AcJޡ큼#ϓd7,yEGwWwL;ߪ{+5@b- ,t X(~j%!/,Jj{Ʌt๱-MEqMbDYB^ZbAQOLeؔJrkIt~C YӀAA+báO0pѺ61ѯgWlq'^3ZwN5Úy]Cu.?ga]ӦuBKjQ@ZIOEʶjڴF[c <0^ RlXxAtд nf7HL~ւPoƃZ.F8J!MrBQЍlfK2>\P|EOU8y7hf>V@3eHw+('R;pBV p/1Y.SM#R?]y3'P-CG[fNx$gf?1bOTUzbO(t8sh:)]%0"ۨ|Aeb26AUe|抬D{*CUʘH-P+ԋ($oIɞ|>,pY|ړN"Է"U^>2m8V~yf/f΁ZQ ⃔ jYo}qP(c:yTym*7z9ˡIo!B,}+#ƺl~ v [Y5a QWF]g~Gdd;CG& 2ݚjMOʍMzliCz~aa )*3^ KNr.j?L2NWWq۩hg v wSP[ة%l)B<ZQ'S潚j LJޜ0802v r4 M-S.}Am#יL􅦾/rQIާEj>VQF%[ZaFڀXvܘj1,G-:orLcgV,&zLOF(Up9תf/&n(>S N‹T`5>q5p ݞgx.RQ/O[1 Sˊ 57]O· 8Dx{X!5V| 7Vrm^u6@w&#T3fc ъ>iF4/缢\r~ #ێL"Zjue)O Iz = t6Waww0s vܰ'D  đ8P #P65Kl e#9u6R8bW ՛WbOۉR"Qd4Y;&3rOwgZh h_Gb#eH!FDd,BXvDΆkODZHgwz?@'1JPL:dDe&1٫5`+crzh<ٕ>#+'J BY GX`Fj+W"tcn6fn*OY1י; 86hIGk**u>Xo`Aǧ/ל{|=~Hw7bΌ >[qy~[D(;Q2l*.Y*I$E+WƾMؗ;F?4o1]7ިVGA"(X}9H[?ڼeKl<lAqΨP2Г _5fTZF0RmʷROEm we4M [6UF?vol3Q KJYU;3+{:>L5eWy6)XMoNKZ_w0R8m`Qb& t75M< š gfgmbs1EV4arsΰLlf ( ©pU"cC5LI)q`b08 i7qaC!@2O|zVԦ)oBY[u 2LM'MBٰZ4_SV5b*SK@#f sG*hGM %%OVZ(=bJfZ.T{ @ ,ECuH pW[dd3Ǔ-\d#X6XgDa"ƂgfjȐ3yCBt k;>؅!F&E|ikl&͖-U;%,oTW}02W:Z '=rgLBU];:EmSfQDAKHp wtnA ~+NYH`)# o~戛]BzJ1/onp%_J1Bu;i:(M7gs\CrnW13b#Pm"ekiuU8Di:bbnCpe :HANqհk eZ] OR~m) -]: YNkK9klRM X[F\`l P'[t * n_m@г=^x3_f;T/wAթq7ߑ&Ԉ5enf급>ϱѷ6jqV8]\}T>en`!dw =Pm3LKzs~D[RH,ל!\t*Z؉?ѺTJ !k(5[hG ʾPCWxn|L?Q'٪ڔ%LZJ IS41@Ș*NU%ո&rByYi>{Y(`_;/@"}`t%6]@aAs/(z_#߆K9r̠Xg M6v[$\0μφe\V}Ȉx-3і#Y+RLMs `jJWȈlq'75&iш1ϖt_ԟF==x4N=/jD>J;1l[kї"eδnR-{GV~9%dd[mPM[N KolTva7PـP|}q44 G'6i|Cfs3bZX\Xagf]eyy+qy`cy;wr{uOVWL,*Ls" 1 [o{p]J=M|ve;IX p@8x/$)}ҧ 3e5ȧj;*>:7X^YGZ2ku},XSmhzƷRa="15W a notӸKgEr!P4qE`7Ŝ&H/#ao.?=#p/qLҕ/P} 4'*%xUm~ѥm{㷝>֔'Co{N=B)OG &~>6ز[l^Pd}_[w+wDυq\u*IBpfa -5͇֤͐>sj*g|VB;kPƬIA.ASGбERpoyD[Ku'*uUҖuʾtjtn.z-}>[IBD\DImf`B+Mgy-#P[QtlmfZMBdYk]dk'# eN̖6#><8#@!ϧ,2P0Ԋ)h.UEdL{?O !"b$O_؜V&XFkoDиcsRtD I}}jyc[gp#t<*~cXiaG!Ž {ө}u6}PÏpB׼7΋2}4+Q)SDT4Z.@ä~ К`MI -K5Su_騵Sz xSg یW-N݌ȪL `"WlYbґBu8eaP{V0-aŒS\Db48HV4Lv ׉4u.pl0,l,JB$KqdlkݝL䲿m":N<a?8$NcC> NFVP9gx9Z;ߤU,;*q*`7{S@ku?=u"ovU"|DzA`GDoz_D<޿h\ IHxZo|Ozo2.Fo8v8 ^Rf)~ =T˭O@7c$kӒ9$)>"Mty;u@SݤWE_ӿN <,RQnrԠ"y8LNInHUHtF*/8<2CpS5'C,3g6+/(Jܷ\&}-}.0Hsv]-_OP OШF)g I3zF*[ѼPQd|RJ#q54ZmD XvW?UV}! Ź A$ggroN!mvT@2A3xzt$s՚9|zJ=X ^tiLli14!([1iS^ѣc.T)Ck_j/Hp+%"j 2qMPoвX*IqqM8M6F9=ON}k@7boTΝv:aIH9  Wף~߀KsꓥI,RbX1Ą6ځVo hoꥧGL+ڌmm3EjP֏rDn@kOiAF(be~MJL\#};Tq7OX6'GC%NGV)ޮ8$56ة@ #mwzWXK %*~SN'T%$qGC8K/)Q𹖨5cJ&Ot/v@?)4SR71rV^aKb$9*;{hSRcIXfD쓣2Uvc&`M= Ѣ.xuNhρ6%]mqkp`#N ^`U2orMYv$:IRą 9;F#Pgh GB$Fݟ#*YcƒV:a9fn$ @] Y =ZN`\Ĥ0n?L>:ue1azzi>j|່7݊ub99((Vx]﾿.8r7l^DngAobyxr*3@txu"ΣgAEM>&K?5R#J-xWQR~H `,h@@ˣ{vx|F anD5MFtcOʊP|&ؑAD~z$Y@GcbhU,x@A^hRlS?JhN 4Dnk9&\1z(V7N"u xׇ:iB %h?dy_AmA[)b(Y%KDz>djړ$&  T^["Ԋ'fW rU2Mxeڜ/4p(d[QB!O7ڤhGXfBdypUlsݏ!"\bТz^R,)hӛ0R:;"X"aMՎ8l%'.y7J{Bu[K8˅{G&P^65kBEi:؟.P<Vi|き $4[RFM>US2@˻lρ @91K݌_8}\?sZ7DZ > .'E{-b79_M++?kp~2ͤ䦪,F ,߆Pj34>Gls}T@Ֆ^)Y#rCGhtkfB\⳸l-2xe}SBGʩKo -%=لcd"0Ni+t&f U|BojAzlbXG צ 4 %[nڭ2Xq#`K{}Ƀc Hle=y|+.'2^ nX$x) ";viJFM*!p'VN(1aDoL8Zً5[X,ÑXA_paJnw^E#P}-W`$Fw&.ʥ T3Ui x1d @hP-zht#w~eTtgꛂTbYI?Bi5E>CY e(kR 5$CFT+ 9i %V(|E(G- Io"{C@8:+>h7XpG[PmfJ\]\PQ': 4kkA8VRz!|L s&1h/Fg I "_Huo NG_xX۝AC _eƄE-?#t >^e ̥c BYʿҶxW-00d}cZ ]eJiXƊEJrymr(k!vI>2MQyv^HCx8}PD(12>^hNWΊPXŎtۖMz%g@.IBB2՞ KmhC终o+FQVurpWudW7[M'X:_Ľ#e\n񻜢#MdʀPI*~Nmq5 YOT'r>0x2f">oOi{zC ᝼J9q2l;n<5L&q6&WPpNG3> Z/@ce֑ iܢ 6KW/Q/Wՠ 2F|6j|WE;0z0PG{ d)kvY+&)|DM0^-'<"WFR̈́ޅr;tI14 " ϮbGXa [B⚬_Bt3j13𤒼I1@3'P֚7&~7K&N jC)2p b0rȣ2rBP߆ZGai(,2PJ~2K0 -㨓b{;)0/:OsB&yﲷ[Nq“SWZ$jFԫ}.)tmƳiE\쵖 -go!ѹ=6qIu}n+5Y?: S$ CU^ssQ/V,/;;_b`vm@uL^Z[.6-EE# TpM`P|ww3.Kx!v;q RFv; XVbts#A~yy:ө&шצt F8.|RJF )+ 2.1BtAtL$.vU>yolٝ7'XWf"DU`((#-z/UcAʀp,AANתptꑢ؃53Ck=q@b{c~^@hyBLtS{Wߙ5CAP^%hdEhs["bn*ouV=7g=F @ٔ_TjXd_̖Qk+LSDrg29尤-+k2j'{)ڊJ3C@nT$t Z.Vc;bdu ^1S% o@:sMݥgZP'Y.C"uݤ4,~Vj0&oZxjcVh7L.Ƹ15qZ  $Dj >9疴4B޺cK9I*_V69z2rXq3ү*8I2I n͖}CmW;0~dTتvc7#?@9r CvHڔNtĥY>xq~jDb.lȢCn.цt>C98lS9ntA\9Vk;77 .269zU*|uȢDTZ7A`{֋ h4%dVǃ[꣆ń}ՒQDx3\,^Z./9,(bĻUTdk5.xN!0o(GM6ޮUA?" m_"th`܇G?F\*vEL f50&J-ȕWHo.Ob1k8lM"9l|.7J5uʴ 1!^so$t軞}i&Up3E4GeqDt^֥: ۩4xxXanǍIfAfSi0;Nz Jm`q*þd = ]I[$x؏#}o7 B. }pf9^oΣÿ,%h҉ x*kP^.He+ 8z+W8 ?4!8xP)S臟H2bYakÜG*c箈#/(, V35H*K,pW} z;d$|BuF}Y:Z Zv:!lVONK Ȑ89ˋVI&jkf0< b XlΥ 8 ҭ{Ck*b<߽ 9~%wؖ{Sz!m[)M;t*A /uQ+X/uSCF?vT.~ cm(?(w*׌C0(z(|R_ ҈U.d-ٍ֌xL~mƞ6g 1hw6Zi*|^ QXm$dCrk8>?} tk<f;aiTSg]U4ɫ^ΘC򓏻%դJq3B?<\ߨ_n;f\3cC3ăUlj[X>Ko:ve@a;JWM@_4Bx;n#&a7V64^]VrСo|]gE7̉4~)Vk[Ph_STr4U~à7Au4ί}2$#Gᓺ# b0Xj-e ڹ}b`4e98n id"yWxBջL>ZDH_rx5]ʑpnJ0جt9srW{y}Mյ{H%,iL.\= =Fa.g02?i/ 栀YscUQ0(⻸}Ec( ~HWY!iS߹?_I]`K>לS](c;Jc[YUW1W%}/cLsL#aAbj=+DK+1f`>p< NKKy*[P$:C of@.$Sm6aT燂iZh7q KToΰy _-H2B4g&9Xzg6B L[Dj'(PFk6AFrb ('1]ʼ.ag<ڋx2֔ПB&Y/PcD%2(vG~1jwgwӫ{熛Ԅt؈;юl:yS8P?VEW(2i~c87䔊a:Sq* *8 JG[VXz#J.fJ' N&pg*8#1#y2(O_ R@΍OeF#6 W#NXs݇{o5&Mh<8`nB#2od.<,mNOhɑsA`h͞i#KzMl6KV ɭA8 86j+)jߗR4;B%#ЭPKHullKefWu1b{kK30'̣=pۿ`)ςWx4 J^߀wJk#8oO5 0te ]2 )2dS|4i +nsn DažA2ķ]/a9*Q ZG  ׁd" fgmpX;X;ٱnyR e!spJBIZ 4A3箔blPSmqzPzmߎBȠ[i|̡ٚFΖZ:6{ȿ}?䅠$C{6 9CgY.Em.B݄C&yJ;![}rtn'=Plz/]>zGq͠_{NDC2oD"6#iFzW"2NT`5@9j9W M-Sfu`nA +00\Pg-LU<<j՞̄1*H#%zm^u hL<<=s=#(ÍTly~!x "Ii6`+xs#w I6DGׯ}it Hc=lm^w|Mi<"Yg.g:q+*,atuê(U4C Wm"#$wB ƣm&&ɽ5s+b DoEfpz8qdY0p^qzq0b!6 pɄ>~GY[&[8My3rNnM|h9Ki'ׂK~ݿf 0lm8\Y-&&āj1i(&> nTH\vOG}c  1DtS$VrMjh=顯K({̶+XslZ.P d31yh6\Э5,S9 hWLNl _ϲf4zKsÜ FE0@ك!"5V wz!e&gW%aM-\4?]4UXZntЉ9Tw+jw`Ө[:hFq=FJ`wc3ijPw߭ 1" ,^XT8[1h:J@V/U4  |čZg]TY>]JН)SP=~@ C= GϹ!~LRrg¨eV:J0-,*I."G~6䳱3QA6rv(ld3"<7gu.o6b|(مJ*= VSO[ʫ:+')❽Ik= 1igWua"riyGqtӱ)05wt #5Ydv@H) /t }z~?ᎰGgF=ˠjH|WnV;V r$eUs\Bt+! +6{yvV:DuQsc}[h2؏O)+`2sUˀ.Tη&pbЃCM:ksQ J] {lp:f;?)BuE&J؄rnfA,HJ2eBJ G+DQ5G[DSeA\+ql^> e;U9ӫnԓUxZ ODOx8Y}d%\F$ܽ s7㜘=cT\aF)ϚǠ!>hoec j'Mwb#XS%ivlaC :˵_G7\0qCGW?k72?իos %NZ~pl^eԴk q  SRA53&ߩt) ApdxLd,אIPm4`Bᥞ {F3 yY|(y5F8UL|J5#XJ{H9YDI s$eB`pڈx0^7nBksbLv )W=*if%]OU}{|zRuѺh(r1ԁiK8Wl4 8ْJB!/.б^zԈU|pj?#8 Dβ>lZGo( gc V!50Gu`83RނM]w~>mI'+`Ś8Vʰe>L0jzCIUJ}p(yK GOԸTKpA=k\o8=K*7aPaw~ kJԣ&_3T`bӬFUŰ* "qs-k^7ox?0QE@Z7 >AgcD_6IW MM/puO#P6"$;k$"bOsY?/!ﴤ8a @s,Pőr¶C;wk0N'+~q>=ӿpD1Ė _S x0ٌz=&CіÞc(Po CIIUq%P9+v ]~WAoKQ! `lǰO {Ls'Idu>q9`Fzg!Hƻoy)>#Lʼn҇ fT-\@}'<$zl[4,]$^|3zތ4~ΚBcaixW8uuhRK;ku`C:ފ` u9D1OcΟ$9RXtbZ,Qo=DݘW"}FaMW+8Qj{ b4܏&(cH[E3(gQuhy0>AT zy #71i?d5흿x`HܶJSϱmׄZpOqg6蝓#Mǥ7j;)T%Æ2XB5j:!u\G%4S ӓ(ߗj-!͐ 8*V+M!s*be?#F֋iUi,&#txXe_m?oK8Ȏ>ҩ<Ls|d*K VnORfQk:ky|(S aۜpl0X>+zߨ c b2?Uqa XNeXD3RieR^z&.ȷXuu#جq?GJܡѶ `z׈@=Qr~Y:;CTAx nؽ@:x(RPVuP(_21=KsPo_8(k E)_q԰.D 2mTa('≓M!#:>T+`oz]!_ m{5k,UkAPNr يZэllwASo3H(寗)O2d#4zL9/!L*[D񳲮3HIle*P5JIŪ>m>MtGs3kBNaQ\5[7fD]W~}Cg;W%+VW d m2C6?_^qɷg۷l0 Kъ&{Y<`<$q"C8Zޭv /}^7,w% 3nPetx_9Z>E9rm@q.m@1^z+' P (b{O7 hpV;-1 Kǘ誗-iV|l_& ٠Ek^輽_,+bS(~Wg7!pϦ T&&wJOi$|cY)v=f[,hݞ$#"h)h=]{K"рߴ|JO 3o WKt?3V2d|[2(*ݡт3dܧL ^58="X)8(e⡝"y)W՜= -3*e;#K+u/M OQs.$ŹgtNшFf ECj39  95bj3ta 㥜+h)PS JX8 ډ&J9lL*cuq^M4,@=XTOY˥ /dW,ic^6,|O A1 &yk!W9#?LaqՐuĄcfmX,bI=_Q ',W W+$j";mXo<]1kP"R&ӥ@s6G޽Bj#~#Ͷ.U樠Ɩ8?F&+Z\,Dқw*ؿeAH%k(p=lGJDbgyuMˌRRVD̥." ꢳT]7~q̷вJSx%0S]̺(~! *T&]@IRrkDKU^e hn2hx>&r*CGhIhr)iw~!ao\;tOęH(V=9Hn)n.}_9tqfnHX Mi3\ O?e;%o!)Hr%L0Lo"r@q<.n!Aj60w>̵:lTnD́0Y#!︰Ovae~r:VF0zkvs@*ŊP(9BM/Q["Cg6j=g|AeB3J MQ!םk͊\S(3G:tPtHs/# 蛷stR|B94&VB{mw4Ic(JvZ*Mp3n&lOYcnQpfG;s8+x/ܗRuг~G^F.W+8dؚ,ȪSVXSGt({A}ap^R&htfw KVMenq]˛"t^<1./OӋ̀&¥! XzUΆJ%+ܝrlD֦/8ymَjpF->k#]Wfaaiup#\~`,Jdlxe\o< Y,_&tzX;Wk)Ad/%>9Җ^v뱥ihjʐ¦qJf>Ap@6?6Ûn #NR #/Q5qX-3.ځ}&[ޟrX4^kmU{ h%0PZҁӠ41+3zjedfH:ł]b tZώaCQ3'fx0 @ϑW"w-y7jDcn)5X}/G'pB_ɔq*FFP{)Apt~.͐m'ΤNM{N$^KaJ %=Zo^j*KrvRoı ۡFn(a~$EЖ<;YD}[f<&nakWN.hxb޸*GBec+Yk7ZaCkorP\; 7x.ӪELmr6pW[E>\8`ft UBaF3%W] d4s.†oXV*/:}`oacÄ\Q3C@HK|ҚY0|#.յԂ>.5¶}Ā[m|.@SSvJ ʴ!B.s{D!h+"R%铹`ؕ:P{x1^nv%pڿg# \PLuۿ?%Sg@EN=3N8E( D ] P<ɪO9Ap4 IX.0C}773 OC6v "5S$uA̸^P?V:sU*U՜"YKvD}-WGQc"wЄ@ ɜ(Uq*DTk_Fͺp*'`anN(Hޙ!l1v)5/s]W3PO$&f#0DDqtQ;uP掏^vg4FsILtۮ|u+*Wwa /f}VcdH߃XvX\ {=ﴺD(<& $cãK ~ZLk;^Ϊuբ݄X>ԬʱH[Dk*&yy|ܕP]Q1}^ =A`A`&x{\x{I\@TC|c.gZxТfϤkI!}ܖNB`맖T&4"[_ $ib vJKQEXB$+ q?~Lduy*Nd[YWUVe#(BŠ0ī(GSg@1mU )Ltg2譙yh*mLkN*'hDh꿐,1 wqz7pat-u sLsWd| #,ϸmp9x~+b8j"M o6'ڮc/p@ތϙf\p+&0 ©Vn+ŮJFYr#'mݥq8͓/B\A0Rd6=)ȗA>8Qh@w)+@aRX,"ƩqʾH]#kw+ 0f0*| a 4qղ!I5oENws̅EEa﫸];)@~hcng(x+5ǚ/QY[rMJz$+σ,.q {kȽW`C ?5?yvpPVjәҙ38{Ju<2"L"Kg=[qZEW5]Z'TXݒ[SW-ՃL5gvgMhpyFm,6d$yE"6+=:R\,;sL4ﻥӭֽ rE+J|3>ȼLD6Y.3lVL5O.l7˨.dERUD~~ #to]Zi!_ jਹX} \0(>w耘5&pa_T+'2bC3# 0Co R:!{$(3T1<7BܫR _ؼl+/w{f!Nes㱨q(Y6ÔLyܳl:=S"bH5f[U sMgkLS" K088}^JJqu0sdp\9a}NیD金.8+*q=Iãs$TRvWfK91kXjzXJ *lU^9>5}Mmռׅ\2t#(Q&' 8=ʜBu]`*==dș*7s!oXӚ ̿}ó#C'Ta[t5NR}mQMZQ0[G7{ĺm0A$y. krϢPl*A1ټРB+~)bqO9k,< \P*CJ;}XBKcVoPJ﵋qBE^a| )AA=w^nW6=F @Ze4_AzV"Y*v%۰@B ?=?PǩZs-$i(Z?waYlxJt:6Kcw'D X=['տe.9#dj LM8 0TB'k̋WmG5:VfD [7~FdֻTY\K EVHys**,~'q] !A:t&5wY ?mmXƊx,b HQ֧Sw-d _=kSH$mTlQ˘=%dyմ*X_WI>;I8m7t;%jH `}Q\NĈܥZ-5T:kagwH%@>itEaJݔ=|Bqi(L#,Ѵ苀( )rʼnvx$JYIb08!ɌާJ~[)й#MEO2 Xmd7PѤHb`̤.R㣈1F5awtSڮӠ2SDd, N!x <7N:l!>XSIZ~Xzh_ڵ/CS!:Jb|;:qalr:~{=; u'YeBGXg~2"G񇈺T5{,_znlD_I(JgiV:6*MU>(M}ΔBE`_EwO]SgTGWo+r ]WxP5(EWUPnT݌;[FrZۓUk,3KxD:pw}*S"/仲5mU}9zVG8 geh$r^ b_@3iKr4VH/UPFg+~{oiBEt}*d;*/S\5 dT@?3ٍ:js5JQ,4=8kT-b`Z]vj~!^R5}V!@kؚ~eI݊,Eꪾ99i xáhxg]m kl>aF#v~) tZ5\o 9٤}$ߵ/}*͜Trsؠcq4@3v7->#ɇWAQdR$`ۤ'|EmFQ N9uY%d`x['v_/cǏ><Ž6%э@&!2 `"J~T.Z%@SZMۓ:zh}:(FB֏d l>P>t7q ^ Ku7BBx` Tƺ7 w:iw4cC$kI8'|6H Ck*hގs?SaQ0I |r3 ~CX1ݸOl+)I1OECbIq{?'؆S CF-8? ǵUA$1%3k&F!s2圑+#vp7#^b%hݚx[VP mCQ1ͽ"@JXT8)_w$`>d_p{ +!]V{TӻȇVQ .CD Ν׀ƒpE\K&i5:ƒEsꨜ,-$ }2*h5(@J ۯ3D/ibTZCzF|w RNt<!1ؽuͮ%{eaDh>&xd6vڦ_. {h ~'XhiBlySڗhJT Ĕin|Q'I) ,uj Cŷo69moHNÚ*HX-0F3_wE;:AD:BR xǞFɋTsi005KtՔ'1t;*4u@@O\Tp?"8 vvo G1Jf>`4cݳ'륲u=N]&L%z<sD6(k:Z7KiDɕQa`-n*iÌmșL)HbID@~"B'J/UT`TDUϹB=a=ϸ0Oŧ߃&n R($б7*B0dd(CR2W&w-rd#mnBQ;](Cbލ3f]bEΫrQrx•2"2l*tNrlʫH陓IȊ|0:}6L#( SLr spDd=Px(*C! y,,E#PW +AD"Yg}&fN@q#-j.__~mf&G!.4lx@8iڅ,X/vi7B HA.}*K\=7eTF ܋&P1+]0"o:ArTLs%>ǎٺ|tobuII^e{!qCvakuHHAu P#L!~s:+ݷh'$Fu5~ݑ"b|?K/̣wݗɄVQ٦5gwj4Lf[g>>&yKz#it2¢bO4 <㯡/#*9=&UMăjJj!t҃.\S3ea#Ŧل /qLϑN`#'UwHyWNʄ}6  EfHư |+FR=zlS一2@m&yf;:eJ :k`|Aȍ,'+M` Idj633(eGqAtgc '\"bȼz0[zkC蒄&5wM`'4^<̭N /< Mo(LKspĐݫѻi.AJ?'3 #VtM-, j,ETsbbžewX۱S#2\6Ű CU(Wvt\MVȤ([ H@} (wb0'.8kdJa_^ԞvtS1]%j>inrw[= qAů hRR Z:ZzN5%jm]Iη -Ya̧ɈX̢)ID[ r^?JYga ٺ~Vs)3mMJgs!H޴q`^dH//9&{S5B xu 8HhxI;~ k$I͔sA0-HG pOk#ԛ@a>b>K@+Ɉ.rw\7:fnC0!-?\u0,?4~;Nr z% !}acxun=lR]Rr4g :ͤ?0}ݡYVsr]bOD%mN:/;5fXI O!elo5sJ54`UBZD5O`F!;fd7ceI82>縎@UIXKEg_I{\\tԽXe\m`#ap×Y~͎_M+~ ?#q4rN6Pɛ \xr|rts@NNjмfdTAU0\`TJ*&qb.-ncRn>pz w\&T(|l\[7y9 w\rvsHRW*dq\BR,XJ7\,H{Eb4Vt)WGmw yJ$Z:@ԤC7iL>rې/_WZ'xu[AݰQ֡O ^ER{QnI'i~uU&% 1"aueeKq"(.IstY{1Ţ-)6:F')-0 k̈(xMD@\D*/y*]- ytyTmDTDL2HV_RY/]8lt`{q ~tPCIa+˳)*A[Goo̼hybYAWktrKfw +.3dd/qc k_HـVg{S39h%gorТJSx]سz4!2v-JikqY;lұjѣrt#(s@ȣ5MW>Jq*t\jsH4t ocbtË]Ry>9H jbUkf{ƞ;{.e =Ao"ňq/9<9C?zl+GqUI^scc&".▴2uQ;۽Ĭ||OV9`]&'@y?Ը7>7)eFv7+_CƴD>~*BzXρ_X2O8ͤv< M'$C;`EOԄ2`;Re ґPJ7Z>-eA`uZZ'tA Y+h=![t&kwvTS宀RHsKpQ8v7]w-—Օi| s/- 04겷$D}^f>y_yJ=GѨiQ5yg>$` JB+RBph"8|oϹ;`et,_2԰GT<]s!x1-۟Ckf1 F\]8fʨ]gIN*Rip򽗓Ήa Ɓy+51=:"\vrov%˝{@ILZ1zhxYff$:ZGT{6[s7*hSf/6gϺjN|xA9knαp`t=zA]"G==Ӌh+ɚ>ѡrұ/e)PYd /p+l6"kف !aߴJn!0̀s:g2o6ٌ 7`w4&C)YeB\-P1(Ʊ79lJ /znjUFLtd|ޔw&]w5H϶q 8Sv~$``AdQH՘Z-U~ZLrl UH9LG EDʝР/p 5d2HO 4ၰU5,s7Iu ?d!i6<htf#w-UW[Ֆx#ƼE#7 eE|G ߵM[Fmؖ 5"~"n} GiZ=:lPZK!N}XMd]Q;0+I^S#uNr r*<|cdl)t𢇮ԚV?WQ#l]T / bD jêZ -]VO2Rl{XEbqF0.co_Ko yh(I Z>~vb3Pwv7V ƂmYvTAf4" {wcjn;V+Cd(9t4$g_PMx1@p!ؼhtV,M%m? z`ԊH $KaQ{q*v2 㝷JA q0l 90z"MJ bJ""f ݩo;ӊ8lt}DQh ޕ?oZ'pMF)`eۧNSqnP!8e!$@U͂遤ü<+N9KF6:52ͺFTC}ps/hVbЀgghej={9']=^arJ"*'sV!i\2Nf^.X<b[1"l!$h'Tgϳ)Wkq8Tr8 @!~5d9fSFex |1Gݖ_BC$r܏CڳF\5]&6YOqS[,dOdiO7Ð~u613{p#Nj`|Zsk݊XnBL^W19hB8ϯDʝ\4q0OZ{T /Vbxf=JyƬsq8ș8TdOj σ've*Ru^HS'>죥87 PŻ0ܻd*Bu'^Hu @fnԤ&(<1FtB>zWsSa޺.&o3215x?YŬG/7"JL1ǭ7TP딀h|H[ފ?Hr&&c GaG$=I>"?Bz3n;yПf,!fg:lkEuOu-fWwlsn`0v3>Ƽ L1e30*>%1R*@^Tot Eb!>_Os붩lZsvOaL6̒}#|ԝ%@/ cMmy7=gLPFlMoSZe̤O# v;菀[Ů}#j]嬕cfGVA)zG5 B*޼Qyf,\aL sq5jr6Ѷf$ԦzZ yqYlx SRu7^~?fR|0KůyڶYOK)^-^T &XˠLou2!@]Q@B5WcXc_ęܸo`3}P̱3<|s!.|*!/P+ylN|xg~y굿rҳպ=A&fcXBWHǶIEh)K;NKLm>t`eI9ּDRM4CV=h{+ 2vPkEy,Qb T4|!fEէOp^PzQm'҆_?r¸Av4dck9/e!՚O%b|.?ᄇ] Wx$l i@e2T>|G+&A]TODj޷_GGK(ߏ]/Dr'X>h);[8iCZ!KRxvq ZAx gE]x!jr^֗6'yZR\m} 5  g\}b>h"v;m*_62Z鑦:h62+ v&B# .dJB+a6`vI h?l܉u29 EPFYiO_UW 1#&6Sch:2QJ5זF]"ddOo%Y3c`h=go.dȴ'~<t)+^ȨyN6?94-q1錰S"\13ΡD*|{mD)hJRr<|DS>9՘azpZl,_ X&tH%?AT~p' ?i*TCbNcXeϐshdՏZcHthZcP 6`(G/,2p}W2˾ FXΑk94",F-1S{ uZzzXv"RaCQndRJkV2h !ꂼ K`8wv9Z2` cuǤ'Ѣ0=ye BVMw2y3u|πұ`& yOWWRJMCMɌ }\28w`idhO tjr5PT"tO Ur ]bAӢ.׼Zn} ܭ0D|1gc ;`]{Dԯ;Y,5~ ɯYT݅z=]:9UIh e7R f> s"ywr< ńЛ<ã/ZL {Bj r(YuaJ459`,-o5,[7LEEfsjwe?Z;/{xZl;g0huQՎOzO3K~dj˙&)wVHa'r8댷 23}s8Ź厞RrcTedd$7/k>>V cA^%y{` rQVǰRS=jH9r~3Ɩ,H}Oo^d:mfx+8Ehay@du>Sm_D w GӓW@f`j1jZ{Їe?fq!`iQx V6Aj{xe~CQ֘Y=AHdVz%ͣe3]R2KVk£\!;N^Nf Q% b7*ͤAGحњ1pn=pi45S9ZV?:W<ȇj{?)ԼbgAJzxg9Ʋx e)?~ -ߝEM,136gy/6H{1>w^x4t O8ql UI>ENSoRʱԔ-X>BD>m4_ eLE 8!1axVEBP n,+<#%YZ' M` ~VKK@Qi@}{2۸؇7$HfQz2q)E5[6nR\rb ©m5L>Zv>8pJa|&kcD 0hNE[$ΐH5kư|6ei$ֻV !qev0 Sm??p%ڞLM%C/䪸S'˃;- %=捙S/[Ǵxf{$@3E2K̒䴡Zw+2kt6"rb &HޝS#IGI $=j?E.R)Dsj╼k6셁^6$Ǜ,q`2YL+3#xF!n0-?\¢^:@V 4lydyg%n^J~ D4hQ Y 쵢y4' Ɩb4EB]8T7ޘ!};_cYV^i#^4дByfz9$7C y5؝RĠ [LongzKaS7+޾$tЅ\ e+\ǜTTLk~Y9U:i]DvX&V~DЂ@OfQKRFB}7|[;Ԁ]se+zԉpա}Ob\02I;])۬dB'|(BO@s7T;l()R^`Kr` Ѻg_;Ue^3HWKw7e|wi>z}6|NsyqM#dcnJPh!4 ݳZ|8ERp5+ЃhcK[hO`Z RFEmx:&_QJ9_(#egh^@T2:vOzcB2{i|ly۝ED`uL"`O9I5kMMx #vq X&HtVo%nFc IgJ+(\mڐBĮPqET VS] hB[{UTe ɒU O/d8W7|/ s+۲1ТH&.viX/B3+QkNZ|銔]N%\'aPHhMǢsf9/ li +~`d J!oURO3ծug9{+/entFD8YmGGT<$ԢTN9|v~GjFwm-93H90/S2m|]2̧7![P9 y\= y#)vzuW6a~I]sŴrEF0bz G7fS[KTTL̿vJ"2"w<x:< 4ۍ82!(>md~sp::̸_y|DTÓL#BO$d=k `xf`}Kn"ťVJmFu hKoRUGdp?H? 4EJˠ> KN>Vv+gM&7^okՙ0G0?oo9T)JLhrQ'~ qqʹ\2%SS1Bv x Nrba9 ]|b*ǯA&1&ɽO8nrOqO\pBP=+G2JQJⱾNWCm~A]BgdZ;S緺z'et-rZG_Qy3ĿT8/ȱZ ᄻ&S,Lnl>6-3nXȇ0 v'&rjީp/ t0pU NaĂYab̤IP'lZ-i+̕S-i+[b40 ;HxAH0b_D>  WXQ:Ӱmw8%{ dz9@aoZ[;@ ',ue]-s@ŤK]82puQ+s4<*]v҆8 [q1dC$KJl1{@(=vPy;^uL4JD?*UE,@[FA[NAcISF蜒R,iC y[J[,ZbcSg4F޺^?7lV?)Uʄ' ]c:ht:r$^N:%){v_NR3Y2ٹ4>dmg+um!i lt.R-ovձx2fh3?%S5 vՎ@!ll^K/jᙊµ;8`%wN'ΖE..< ˂,+,b*GO.FMNhO ;RUr&P)k)$u^DY(+kij s JBllyŴd?{ '@cw"Z swRõ^-\A<AN;\k((mO}>ɂg2 9ֿ F'_3zoi-TeZCA5 2Dr5m2'spd{K{POfctbLV ƳPJ@8"5~Z6*lZ%os*49sNrI%iG Jj M~Vgշ^J x 6?[zDYiw.}<Vdo{-ycj1tH{wQQ&1eRn;*e#B&a2V|Ъ`mWF+gh:*Si:hiLy# ۹}u(N*Z+~më0_%U,C =1 m!NzZڮn l"اM`CƸ?t4i5q^OŚQKYWjE]|.7͒~,w[6%kvOߡ&o2|xKW5<#̷$U4;܎)OBD;gMm!rՓT(-ғ̂wf>w?6&zu (k➥Tף}_%gI|߈0bDwas,ATY{X9Tac G3& ZH,x%>G_uq(Λ!gs5~ dYSJ3tf$~AszUbVͦ;p.ulE5@@iJhs#'[ r[dix[5~b(jxXby z#.h;f!jܓ:[tx݄3hi~5&0k09$pT<mV7nV1I[);I %&Rd$^>3X>m<ؐ+kc^7lZW*Z-e6A+yk3{ünbmLפ]cC=}>Mhlgb}EWʟZdĠ+IŁkH HHQ~\ׁssϥDh̺Y3&ԇ +P ,\o;Kʸ_E? O- u&T0*c4Μdm&Sv6B6Xywqg:< OX8#byOMa=3:cy6La)>b\-ߧF@  ^ㄛF;;6pKQSxp~(~s9v8Hx2hV3!d{Ԕc?=|Ćg[—ܤQsبݤHm@ 9yꐌ.5Z"K?ih)y\ 䲥Fb&PqV٪Cq^)I_7WO^++3qAKH=.DL9\ B:p5wZ[_sl:s-ܱz0׳ ܵ'i=V8D>#]-M?lmU43E:)^o U-rX[秨e|YwpE$3Sh0 f, :65^h*Р6ڗ0t&| i0u205qﶏa淔д}&?}t*ƺf]z7>#}z1MYee  Ӳ* 7zOn0?wU)!+&҄A Y$^uKOOTJ-<z ;e7~v'k7UO[W'*($FG#4i%.ggs6DJhE\zDp)3`WŗˆKso@ubOjPA5B).87;ūԐY?SO #M&8T9(oy9ֺVj}|EI)Hp/TU,@[FH_zS9OH^i];A: Œ|Ϩ!ya2<=h:2E`ы5TAMZ_=$zv!AhvFĿ| nUK$0w|\{:fYL |솉Tky7+G"1xak {%31-BHLtɰ7#ɱ8;":Ar+7% LBR!vS#Mb0:[ 7ԍ^4xoSEe{h, е"ؙ{F9ƌ+lKK-t.ZՆ,/T=2]?H]H (L@6&'Ѱf t֑x~SȝܘT-CcQXXO(ҺMF O3"GWPX1ڇK3D98i N߁Zn+J@s5ڸwy: Wlj^zoE< Ox G νn=ёªY%GEbO ǝE3P&"J6`M0D "e ٣gD$w|Ga^nKWy݃٭Pr>Nsӈr bl s0'AkxCl !<o[%n|3g@MS/֖0]<~p$E+t`, _O}g5fs$J+e©_fG_009C񼲝[ڥ𑎯:¨ |f|)(F0;$E[ FVT;qB:BFCz_LhU)cE7i6A kQbŚurRY&Œ0L6Q+fwdP>"K,'٭( DuK΍(#b?B?or:m[ }=::PxNy~4P_BJmɐ2$ߔžmG0!z/+N1~'u^%]'#3z*(؆4'3p|AFSNZѭ |wr0xhU E %-Mh!45xF2Q H?7uTI]6Q1_ q-5#Hܢdem%B1M2 $QK˵O,>ˆ;:cc%"lOf_'+~wصe0͟Mk?m5W%X]Eϱ_*ڞybQL4A+U*A ڶEBJwI p#Zj:=អ^,y)cX Di!B:8K\M㦼~{4$o4QzUGJ<ѯx&oo1Jcsm@-a [V*9)|p% O(a hcJ='јx)f^| ]VOsvi<1;1^?]CRj'..e6_:5|%Jߒ}ȤWiJq'*vr1:( !V7Z(ߏ|LcHԗ@RZ`ƞs|үXq"m0Brԛ%,O!qL9X7da*p3&N^B:$V%;ʰS"UUb[1U.JŨ*o5m9F0zvӒMOӦ{T!km*Գ U~Ee$ naFJ'uebyF7?5UjTH;$t?U rHp l..-P~bV!Up񷖀Tzz?k *vƺص;I(q1HnwF"/ R/v ^7zԂ`,c{^*8'ug! mm.Y=+١u|2)Mv"7OZ@,dV[F>HS\iji/sA #?P$>*oҫ+,]sId7aMQMc,UVt6%. 3X=ko֧[;w,@\JP[3df vux-jNW\P pH\) l%6D:6.jt]:vDb]3d vXگ8|p)My mJ̔ΝWj~uΒ  ;O!, \+ye'S:qm[ 1?qG_qfcْqrl(mRF?H\S ڤx4CW2 HWJ*x(a`0gV޳֤Ӷ>ޙ6rRk|hM]GE_td8.=n/"oϻِ&Oίc-Yr |hگ)Ӣ]mx_cڜ%k9Y}0,ȪO!_í8Re63#*g JS?ƋcIfMD 4a`& w?$y3^q z@OpT*<%[|/9/y.2A770-dF4nC&9z3,hgvArE 2jV@gtЧ%vOtsJ#s^|N UI S8!s!s_ O:}@/G{^-TxY#69ڱֈN1r>²&3!REYu:ED3 7ׅv$ bCKdHὍu/69f@:nx~9X@%S۲ceX8| eS=n wa,=[jtZ`#hn"G+L5 ;99)xxSp'qsAϦ=i4 a΂ a7۰%N7~H,M\QXnzu;*`]cC夤xy܄R5XS90JfՃ5$h'pIa7_ V!{)< z)lgO2 έ:DNYo2ems?^=-nOge{dᦸ~njl[)#wPkus$Ovyr~Y$|[/K1VR $zJG}t"er{l>< +rœTO^v(!aTk'܋fHןXwaaP) 3yOA\UW֞wzb'IJQz0Lmp݁)wU+5MkDn "2Y1OC kZFZrkD3]Wi!Pc]c"| C5ā( ̊*8losw'Y0OtJ3]mO7W=\` C׶M'B5I@߮NfAaUJR3ae;ٞsj3d\%x+!= ]Dn#c'^a7r.Cu[ɾK48Jl&eq8ꦕhwa,5)2ͮ.ڡL@Is Vò@-Sv G"*`W0d%_o  $y|2YD"Y @ K@խy5lLѹO`o _4DBQGXR[5d!d+Rf{ػ[v C8d\'S" wǬ˜|%-[,*)%p.? _̂p?P!?by EK5#ɋ'8 kwzKMfy<ٛyۭXB`#tULZ7CkΉ>c"I4y>r(W@J%o&aE%k b54w!Yұv(1ٹu~1{@ŏ(^E3{pUZnR,lCxن/:ug4ҙzf=[g䡐ԎFo[beZ潘N )~^ 8+&2mdF$1zGg`I2g9xym3 wee"a)BJ#HҜRy=[7F|wxNt9v~+=|HM P^`F?_; T#[k t?@l(Ǘ@H'j+OMd %au_}BvE2={hįI~n!Iaeq_ltlzH۸qJV2Z7gKͫZ@0Q E>QZL j8ns_tKM&G<iI.2tQ]z;ϜWe£1 Pk$0~n3LgRb$Gں`I%n2`vHr1e>&V|#iq;{ ;E@"Q“GT#7 mBϼv.30lm\(T+0R\!%WmT-Kcd7ӈ#0ӰszE$CBEXoQ[ze pRQkjoZ9#-zF &VӓdY*ȕPi"08-+}>$W*C "mjDq]pcOCOVFQ=K^: ٙ\Z(.m @;ht0uIpa5^5tW2ꗝļh+ψ|;H/$`X'X*%a&$h)2%(PASqQ8cbTǧxxdgFstsHp YܺƜM΄#u\O1g,uc(= /VN-MU_o{_<"a qjb :Ysap+Wl@SXi\|é4[J*Tj10MS,]v"1߿dN =6χK[:inZ?OcfԑFDJd`e)_=Ɉ-qvL0糶(1yS gJAxZpF/rm5AG. $-NWv>^.!~6 &]WȻ"ZZ/6J4-FL[i'+zv8>((7t 9)e *((".~_gvޏs\w+Os1m\{17 se;E0n;0/7ߚe۷@gˋ@p-; 'ڵsAŜE]3@XvzID[̛Z|z 2mb^yZd!䳔 $vH4XxC}b- 51|pW>S)GjOk*li!5E|C}rzO3#پ$Gr2BcQ+!0t[c v=P厲uӟq/%rB8-aJ'*kPUGݹ.3+pz , e͵S@j[ @xtlb8@cZ .c'5x9Oki+ b8/@xoϊᏨZ8ޢ!7"f ZܕyOT$ ͫ茥"&`M*Xɛ|b;ʬ7-{<*L%Mt,Y m:izBfWb%B'|RO-u=L`.44Z/-U|>ATqg5Bޯ(Ayg:oEB#-^+NG,BUwy~zHW4wLo^T%yQ{8aCfoѶ VU 8Dڊ6K'b g7;y-,2ÆtJ9vlpn:ʪSP `;&`hL'h9NCqjb|I 6o~9]G%KmH!u " t' X Ãmdp0D2[?ԣ-VѾ^jGoz&zEXPkʜ-ube9VU=]`?(nO,6l_lsHe 6?`D|n,oYZnZM:C~V#t1yN I(гU%dȉZ{$\YzvI=ѣ:0"n~O!( r>2n$Ewf-]3tgw._bUUԈ\',Uի.sB T"RF!/2 :^cKJ_T-58T{F]'b"b.۞@\mY~xRWs( 'iMӐʂ.&uaNn:g@f!/2P#ڡj)xar()QpVnluY6`vL<6fIvf/kpə$/qK' /]ձ\!0ی؏O(==/<qi>m0 G2,#Vjr6x 8wt`f'_mqXeٷ?-F$kOnd(.̖G| 'B]0fd$ҙ+K3.~Qb2#d '26ϯ O߂~: W*L`*:m3Nj L{aobiƵR$ؕFǁ7+~Y΄jg3r腩(?ŕ& 2D^kӌ߾)&@7n*7fۯ7[H 0dֳ4o5Lmٿk6߮5R$^˪>}0]?9ު.[+\wW}'ަ>*7ރώ؊8"םe a׹+ɀ 9Ŋg áY'_F(zEK~{X=JS~yY;3b?s'U=R`5͵/9+TXϗ#cGujR>hG ːcnˇ@2ŅN#pcuve4CvWhrszTs7𯕩 5 b2ڏ[}NEAlkʡ}MyuDlI%#f](rn=|`ĵjbk3O͜K>Ioc tlRl| V c8U#O fvzrEK0+x+ {UǃNedrEKAoLeⴌu]NxG%*M DEԷ#Kws?6s2O,$$5Fg ENH@6426zx.4A+pc0E , 4Z6o:I ygwKJ xЖih %chw_:J^4زzR7'F I[Q)ZoR,6P26ݏR^C \p _PD,lf{䥆x KU3D/3%R<8,Hʠ] |+KwO?xno!S_PÕ2{(ꤿ}#X^&Fbz*3tGY,s[S%gkⱬ8@&Y>.ل!g&b_nDw4cX %P>J.O>g Uu1ざBޑ"ii{kvv矓Yl"_ ɵc1M $Ǯ|kD!P~H_W\aNr_cE8NIA}~P ܿ~$_x^:'ewe! WP-2R+U6_~9eI;I ~%9h^JXrRq"z$\,tKP\V1Ӏ.y]{Hv}˸d:Vh"HnPӴ鹺ŠX0ĵIvPA?{K{ 5ZÄ3e@ad'$2"5d>AP &$O-  WwM.F5ΨƖLNڜ~y\B6&7<zfL/{C ?z]ZloZC&H>cu|@T\.iRR3 @Yt  ̚TL 5665]DHM2.-9 ӠSVW]&\ &;2>-'gı߶;*^SˏUlsǐ-s)*\O $}q2@P1KBm,힁4\6f<zYR(:Exr!ȇ\:Pg\HϊAl eiMaWW4 QhzU)s5oḧkхw{@ ][8)>8v#Ix-goQ部 nrCJ=>;ZHOƈ\ Ч|z@ EjI^/ξlCD68w8M-)m`mHR")ASYT?pϦKG"v =7;Lۈ5xYd9 x$0A &g)L2l4|rֱv,Bz|Ka>b%N.: |&S MQ{j Z[txHLݸ§R37_qSnh pUe^,\3( OҒNܭc#P' t&TY@~2CKH{m_İi,ԩ$Fp^q)V;b , 9qhA5RFXZ$h[j3K(g% l 4tΕ.X%C3r򘆵?!:9mOeR+ROG ,[;AwU'eSnή:#Z SLZ!PXf:_C. Xĕ.>]-4Y*;pUOMV!0u>O6e(- N8+e2 >ֱH綆w~ˠDJ=#%d. -q3s\pŽBPఫ=E8*YoЌlNTH(7s 4쑱1`RF SJ1~k q[[JN:2ׯW9BP4L~g˦i. #j%.ebʒ/L7+sd`Wxð$>IBY͛b2FWJM`I'ǚV;5eŋa&#)KpH53@G u")zЊWp&7:SL2fsW+:' 7f5qdSI: IZ5C_ ?*f, )Wp,v^="l^M?>AԭQ~ bD-CUZq PgCOӮGWe{t/o:+֜.%"dfK*a wȚ dpItw|,F^Ң5髥f4ݾ=Sg/n6`o1! /0oʚ ,|@]oto^b$q!шP/]/c =ZƎ"u?F RJ k@UO^nZB߰ HZwA1X} ?vWdAP~3JG.4 q>/V+9zYe|fhT'Z!Oa)zybdHPa*.8BXX4P.D9 *GA 0ˡqu-\Jн7 6+،=_j荚fR `H ũ+*|q zOTG[^zbT;1YYF0)A_R( wڢU~}ܰӫR RI\pAյz[jB;r; ' Z:Gu_.!M1Knc~"/a\Ue]q")#lU/nnG4 &1<H!S)AD88!HC&9ay@1l}_ UhjhHͬ^,98-̱-Aܯ_&t"8C\H>q@l8+cxhsEg|^'{m {KÌK<ţ%IM.n|.^H+R81jKɡ:aG\hF7Ax*d7(Rl)_Q(W7zr i-b#0O]FJӻ$aJ2]7kPc%QyK P2r3Uu]gR'GqSQE(\Y:V(/b_+I!^녉zzef2t|zyB?.Naºrn2tc}a: ?jW@Pp]<4'PO٧s{?V8%~?"f |)f|Tj?RӘ )Ex[y/A+ a#( ~϶d/S%\Y#ALqT5[8HWvwg){kc:,4mYv]l!rԌr1RT'㍇J3Ih[Զ>o:kc m[k|>Mij貯]: Ldp.$}Cu,.9`q3W /ƊyO%!mF譀;v Z$o"GsdB*󦴎PLUmc(& he4 W4S"C)I B"M;Y,=EG_~` zͬM$Qգ6OmQA驷GhiqcPTlˈevak o?KYIyϢvIc}7S~; C1QGlh[Rl*ح9ʃaBYjZ t'Q˲z%a&21x]*t?A+oYC QT #AA֜|^r1zMOWD5 遅E=b3`XLG| &==(Ly`/E9ol8Sh`&9#%Y8u_Vo]~j CvP2N\$SsJde)㈞CNK&x-]݋!MDf@@]P8L ~/o68y^F ~/yLW¼}2 kqA=p7/7eTz)'OlD[ 1uSM°+6Fޖ"t3vG9\BOIWD.Cwh>F>VȸEE0cWX7ʹC )Fѝ{/4tNײq PV,G CP#﬛VgNXg&\hcri >)IΜ)7Od! sa(6.|V5 =: 0 qj8SK+B[.찾ZID`jL ds4CC@[MaSʃߥSa 4_jK%㊱M"QպϭLJ16zPza#R Cə9TyHlv e QЉo˥y)Wd `;pL]yr3>#i>x_Fa/uh743 AŒ/nSBޖ<%26PB'RT)SguY J6)?̠ S 6'BW7c6OVfFh@x }MMSEaܢ}\3[#B6 ;Tq+1e8fUW>>Ey'Rݛ񦖰nD@k~X ;I::Y]^p&uďf:Djj0>B!Uf/n`:k,i@"[Akzo΀qp*aηi $1[WSw7>G Q÷=37%`{^%[4s"ߔ7Ɵ4ǬUUiBŦYv׈]`x%P4S1~_bȇ)Ę|;ܘUי"=_>縩AG6"ri)Ќ#ޝS{uc∰32g1w"j@'2-"wVBNT еɁ06LQ^  nFiRdixȘxKqK:ZT+ON$04;