From 94e7a4f3b662edd5a8580ad406f273e3c10e728905b52e8318d951d7914b6fb2 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Thu, 24 Jun 2010 10:15:44 +0000 Subject: [PATCH] Accepting request 41998 from home:coolo:branches:openSUSE:Factory Copy from home:coolo:branches:openSUSE:Factory/kernel-source based on submit request 41998 from user coolo OBS-URL: https://build.opensuse.org/request/show/41998 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=99 --- README.SUSE | 85 +++++++++++++++--------------- config.sh | 2 +- kernel-debug.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-debug.spec | 2 +- kernel-default.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-default.spec | 2 +- kernel-desktop.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-desktop.spec | 2 +- kernel-docs.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-docs.spec | 2 +- kernel-ec2.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-ec2.spec | 2 +- kernel-net.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-net.spec | 2 +- kernel-pae.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-pae.spec | 2 +- kernel-ppc64.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-ppc64.spec | 2 +- kernel-ps3.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-ps3.spec | 2 +- kernel-s390.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-s390.spec | 2 +- kernel-source.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-source.spec | 2 +- kernel-syms.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-syms.spec | 2 +- kernel-trace.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-trace.spec | 2 +- kernel-vanilla.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-vanilla.spec | 2 +- kernel-vmi.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-vmi.spec | 2 +- kernel-xen.changes | 117 +++++++++++++++++++++++++++++++++++++++++ kernel-xen.spec | 2 +- patches.fixes.tar.bz2 | 4 +- patches.suse.tar.bz2 | 4 +- patches.xen.tar.bz2 | 4 +- series.conf | 49 ++++++++++++++++- source-timestamp | 4 +- 39 files changed, 1989 insertions(+), 67 deletions(-) diff --git a/README.SUSE b/README.SUSE index ce6153bfe..ff3e7f8ca 100644 --- a/README.SUSE +++ b/README.SUSE @@ -1,16 +1,17 @@ WORKING WITH THE SUSE 2.6.x KERNEL SOURCES Andreas Gruenbacher , SUSE Labs, 2003, 2004, 2005, 2006 +Michal Marek , SUSE Labs, 2010 This document gives an overview of how SUSE Linux kernels are created, and describes tasks like building individual kernels and creating external kernel modules. -A companion Update Media HOWTO that describes how to build driver update -disks (among other things) is available at: +A companion HOWTO that describes how to build driver update disks (among +other things) is available at: - ftp://ftp.suse.com/pub/people/hvogel/Update-Media-HOWTO. + http://developer.novell.com/wiki/index.php/Creating_a_Driver_Update_Disk_%28DUD%29 TABLE OF CONTENTS @@ -32,10 +33,14 @@ found at http://ftp.kernel.org, on top of which a number of patches are applied. The resulting kernel source tree is configured and built, resulting in a binary kernel. -Internally, the add-on patches and configuration files are maintained in -a CVS repository. A script (scripts/tar-up.sh) packs up the files in the -CVS repository in a form suitable for rpmbuild. When building the RPM -packages, the following binary packages get created: +The add-on patches and configuration files are maintained in +a GIT repository at + + http://gitorious.org/opensuse/kernel-source + +A script (scripts/tar-up.sh) packs up the files in the repository in a +form suitable for rpmbuild. When building the RPM packages, the +following binary packages get created: * kernel-source @@ -51,6 +56,11 @@ packages, the following binary packages get created: packages are all generated from the same kernel sources, and differ in the kernel configurations used. + * kernel-$FLAVOR-base + + A subset of kernel-$FLAVOR, for use in paravirtualized quests that + only require a few device and filesystem drivers. + * kernel-$FLAVOR-devel The files used for generating kernel module packages for use with @@ -58,15 +68,12 @@ packages, the following binary packages get created: * kernel-syms - Kernel symbol version information for compiling external modules: - Functions and data structures that the kernel exports have version - information attached. When loading kernel modules, this version - information is used to make sure that the modules match the running - kernel. + A meta package that pulls in the relevant kernel-$FLAVOR-devel + packages for a given architecture. -The CVS repository contains the configuration files (.config) for all -SUSE kernel flavors. All configuration files are included in the +The repository contains the configuration files (.config) for all SUSE +kernel flavors. All configuration files are included in the kernel-source package (see WHERE TO FIND CONFIGURATION FILES below). @@ -103,22 +110,21 @@ following directories: COMPILING YOUR OWN KERNEL -The kernel sources are found in the kernel-source.$ARCH.rpm package. The +The kernel sources are found in the kernel-source package. The recommended way to produce a binary kernel is: - (1) Install kernel-source.$ARCH.rpm. Change to the /usr/src/linux - directory. + (1) Install kernel-source. Change to the /usr/src/linux directory. (2) Create a build directory for use in configuring and building the kernel. Using /usr/src/linux directly requires root priviledges and will cause problems if you need to build kernel modules for other installed kernels. - (2) Configure the kernel (for example, ``make -C /usr/src/linux + (3) Configure the kernel (for example, ``make -C /usr/src/linux O=$(pwd) oldconfig'' or ``make -C /usr/src/linux O=$(pwd) cloneconfig'', see HOW TO CONFIGURE THE KERNEL SOURCES). - (3) Build the kernel and all its modules (``make''). + (4) Build the kernel and all its modules (``make''). (5) Make sure that /etc/modprobe.d/unsupported-modules contains @@ -170,7 +176,7 @@ built in three different ways: The first method involves the following steps: - (1) Install kernel-source.$ARCH.rpm. + (1) Install the kernel-source package. (2) Configure the kernel, see HOW TO CONFIGURE THE KERNEL SOURCES. @@ -186,7 +192,7 @@ The first method involves the following steps: The second method involves the following steps: - (1) Install kernel-source.$ARCH.rpm. + (1) Install the kernel-source package. (2) Install kernel-syms.$ARCH.rpm. This package is necessary for symbol version information (CONFIG_MODVERSIONS). @@ -284,15 +290,13 @@ modules, please get in touch with Kurt Garloff . PATCH SELECTION MECHANISM The SUSE kernels consist of the vanilla kernel sources on top of which a -number of patches is applied. Almost all of these patches are applied on -all architectures; a few patches are only used on a subset of -architectures. The file series.conf determines which patches are applied -on which architectures. A script named "guards" converts series.conf -into a plain list of patch files to be applied. Guards decides which -patches to include and exclude based on a list of symbols. The symbols -used by default are computed by the helper script "arch-symbols". From -the kernel-source.src.rpm package, a fully patched kernel source tree -can be generated from vanilla sources + patches like this: +number of patches is applied. The file series.conf determines which +patches are applied and which are excluded. A script named "guards" +converts series.conf into a plain list of patch files to be applied. +Guards decides which patches to include and exclude based on a list of +symbols. From the kernel-source.src.rpm package, a fully patched +kernel source tree can be generated from vanilla sources + patches like +this: # Install the package: @@ -308,12 +312,12 @@ can be generated from vanilla sources + patches like this: # Apply the patches - $ for p in $(./guards $(./arch-symbols) < series.conf); do + $ for p in $(./guards < series.conf); do patch -d linux-2.6.5 -p1 < $p || break done The configuration script config.conf which is similar to series.conf is -used for configuration file selection. See the section WHERE TO FIND +used for configuration file selection. See the section WHERE TO FIND CONFIGURATION FILES. The file format of series.conf and config.conf should be obvious from @@ -324,16 +328,15 @@ script.) WHERE TO FIND CONFIGURATION FILES -Kernel configuration files are stored in the kernel CVS repository. When -packing up the repository, they end up in config.tar.bz. When -kernel-source.$ARCH.rpm is built, the config files are copied from -config/$ARCH/$FLAVOR to .config in the kernel source tree. +Kernel configuration files are stored in the kernel GIT repository. When +packing up the repository, they end up in config.tar.bz2. The kernel-$FLAVOR packages are based on config/$ARCH/$FLAVOR. -(kernel-default is based on config/$ARCH/default, for example). -The kernel-$FLAVOR packages install their configuration files as -/boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default) as -well as /usr/src/linux-obj/$ARCH/$FLAVOR/.config. +(kernel-default is based on config/$ARCH/default, for example). The +kernel-$FLAVOR packages install their configuration files as +/boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default). The +config is also packaged in the kernel-$FLAVOR-devel package as +/usr/src/linux-obj/$ARCH/$FLAVOR/.config. In addition, the running kernel exposes a gzip compressed version of its configuration file as /proc/config.gz. The kernel sources can be @@ -348,7 +351,7 @@ for an existing kernel is created, the kernel must be configured. In order for a loadable module to work with an existing kernel, it must be created with a configuration that is identical to the kernel's configuration, or at least very close to that. Each configuration is -contained in a single file. The kernel-source package contains +contained in a single file. The kernel-syms package installs configurations for all standard SUSE kernel variants, so for building only external kernel modules it is not necessary to configure the kernel sources. diff --git a/config.sh b/config.sh index 58f05d593..b53d0b00d 100644 --- a/config.sh +++ b/config.sh @@ -3,5 +3,5 @@ SRCVERSION=2.6.34 # variant of the kernel-source package, either empty or "-rt" VARIANT= # buildservice projects to build the kernel against -OBS_PROJECT=openSUSE:Factory +OBS_PROJECT=openSUSE:11.3 IBS_PROJECT=SUSE:Factory:Head diff --git a/kernel-debug.changes b/kernel-debug.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-debug.changes +++ b/kernel-debug.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-debug.spec b/kernel-debug.spec index 8445a1937..a1290fc55 100644 --- a/kernel-debug.spec +++ b/kernel-debug.spec @@ -56,7 +56,7 @@ Name: kernel-debug Summary: A Debug Version of the Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-default.changes b/kernel-default.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-default.changes +++ b/kernel-default.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-default.spec b/kernel-default.spec index 6de74ef50..a28363eb0 100644 --- a/kernel-default.spec +++ b/kernel-default.spec @@ -56,7 +56,7 @@ Name: kernel-default Summary: The Standard Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-desktop.changes b/kernel-desktop.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-desktop.changes +++ b/kernel-desktop.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-desktop.spec b/kernel-desktop.spec index 5af890a5f..1e2cc0e16 100644 --- a/kernel-desktop.spec +++ b/kernel-desktop.spec @@ -56,7 +56,7 @@ Name: kernel-desktop Summary: Kernel optimized for the desktop Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-docs.changes b/kernel-docs.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-docs.changes +++ b/kernel-docs.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-docs.spec b/kernel-docs.spec index c2b0f2e94..4d1f4ec0e 100644 --- a/kernel-docs.spec +++ b/kernel-docs.spec @@ -30,7 +30,7 @@ License: GPLv2+ Group: Documentation/Man AutoReqProv: on Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-ec2.changes b/kernel-ec2.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-ec2.changes +++ b/kernel-ec2.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-ec2.spec b/kernel-ec2.spec index 856a35bb4..43f1bc904 100644 --- a/kernel-ec2.spec +++ b/kernel-ec2.spec @@ -56,7 +56,7 @@ Name: kernel-ec2 Summary: The Amazon EC2 Xen Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-net.changes b/kernel-net.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-net.changes +++ b/kernel-net.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-net.spec b/kernel-net.spec index 0ce4b0ce4..9d1d2823b 100644 --- a/kernel-net.spec +++ b/kernel-net.spec @@ -56,7 +56,7 @@ Name: kernel-net Summary: Minimal kernel with disk and net support Version: 2.6.34 -Release: 8 +Release: 9 %if %using_buildservice %else %endif diff --git a/kernel-pae.changes b/kernel-pae.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-pae.changes +++ b/kernel-pae.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-pae.spec b/kernel-pae.spec index d30c92b22..557a8d542 100644 --- a/kernel-pae.spec +++ b/kernel-pae.spec @@ -56,7 +56,7 @@ Name: kernel-pae Summary: Kernel with PAE Support Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-ppc64.changes b/kernel-ppc64.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-ppc64.changes +++ b/kernel-ppc64.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-ppc64.spec b/kernel-ppc64.spec index ffed488ff..b83b23eed 100644 --- a/kernel-ppc64.spec +++ b/kernel-ppc64.spec @@ -56,7 +56,7 @@ Name: kernel-ppc64 Summary: Kernel for ppc64 Systems Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-ps3.changes b/kernel-ps3.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-ps3.changes +++ b/kernel-ps3.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-ps3.spec b/kernel-ps3.spec index 2712611ff..c1e1e416d 100644 --- a/kernel-ps3.spec +++ b/kernel-ps3.spec @@ -56,7 +56,7 @@ Name: kernel-ps3 Summary: kernel for ps3 bootloader Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-s390.changes b/kernel-s390.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-s390.changes +++ b/kernel-s390.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-s390.spec b/kernel-s390.spec index 9b5e1cd87..0f2dab199 100644 --- a/kernel-s390.spec +++ b/kernel-s390.spec @@ -56,7 +56,7 @@ Name: kernel-s390 Summary: The Standard Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-source.changes b/kernel-source.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-source.spec b/kernel-source.spec index 02c002b77..99f3437dc 100644 --- a/kernel-source.spec +++ b/kernel-source.spec @@ -31,7 +31,7 @@ Name: kernel-source Summary: The Linux Kernel Sources Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-syms.changes b/kernel-syms.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-syms.changes +++ b/kernel-syms.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-syms.spec b/kernel-syms.spec index 2ce1c5bd7..5d9e2137f 100644 --- a/kernel-syms.spec +++ b/kernel-syms.spec @@ -24,7 +24,7 @@ Name: kernel-syms Summary: Kernel Symbol Versions (modversions) Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) diff --git a/kernel-trace.changes b/kernel-trace.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-trace.changes +++ b/kernel-trace.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-trace.spec b/kernel-trace.spec index e6f19c51b..9e511bdf4 100644 --- a/kernel-trace.spec +++ b/kernel-trace.spec @@ -56,7 +56,7 @@ Name: kernel-trace Summary: The Realtime Linux Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-vanilla.changes +++ b/kernel-vanilla.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec index 4bc4eab8b..7f5ea46a8 100644 --- a/kernel-vanilla.spec +++ b/kernel-vanilla.spec @@ -56,7 +56,7 @@ Name: kernel-vanilla Summary: The Standard Kernel - without any SUSE patches Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-vmi.changes b/kernel-vmi.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-vmi.changes +++ b/kernel-vmi.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-vmi.spec b/kernel-vmi.spec index 573404293..ac2c5d4d9 100644 --- a/kernel-vmi.spec +++ b/kernel-vmi.spec @@ -56,7 +56,7 @@ Name: kernel-vmi Summary: VMI-enabled kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/kernel-xen.changes b/kernel-xen.changes index cbb27c5fe..652d8a71e 100644 --- a/kernel-xen.changes +++ b/kernel-xen.changes @@ -1,3 +1,115 @@ +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + ------------------------------------------------------------------- Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz @@ -453,6 +565,11 @@ Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de - Update to 2.6.34-rc3. +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + ------------------------------------------------------------------- Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz diff --git a/kernel-xen.spec b/kernel-xen.spec index c0e344eea..9e89d1016 100644 --- a/kernel-xen.spec +++ b/kernel-xen.spec @@ -56,7 +56,7 @@ Name: kernel-xen Summary: The Xen Kernel Version: 2.6.34 -Release: 10 +Release: 11 %if %using_buildservice %else %endif diff --git a/patches.fixes.tar.bz2 b/patches.fixes.tar.bz2 index b639862bc..068449c1a 100644 --- a/patches.fixes.tar.bz2 +++ b/patches.fixes.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ae1a3ff25ab9c1fce327920b8a256d37597940e9ea5305eabdada22100a1555 -size 43076 +oid sha256:b2b1129055fd314e950b0f0adec1077e8e419303c724a9a4f359ef044434cfc9 +size 118300 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index 5c104d1b0..cb4345678 100644 --- a/patches.suse.tar.bz2 +++ b/patches.suse.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bb472aaf40dd6663774b280238954c57f80edceb9257fa45db86ba01e26939d -size 851646 +oid sha256:823e3cd8207ad01dc8c4014573f2a0560386a7f7dca05ead34a22766fa4d50c2 +size 851687 diff --git a/patches.xen.tar.bz2 b/patches.xen.tar.bz2 index 09fa50641..0ab59378d 100644 --- a/patches.xen.tar.bz2 +++ b/patches.xen.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b3912e5f77878d7db3f6dc084dd2fda381686dd1b06a1fbb354874420f5c992 -size 1951741 +oid sha256:54b0f4647eabc34ce0c3e07399031991c4a73b7426a070218e7987293f0e6964 +size 1951135 diff --git a/series.conf b/series.conf index 8b3332b20..4f263ed77 100644 --- a/series.conf +++ b/series.conf @@ -352,6 +352,53 @@ # ext4 ######################################################## + ######################################################## + # btrfs + ######################################################## + patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions + patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes + patches.fixes/btrfs-link-block-groups-of-different-raid-types + patches.fixes/btrfs-kill-allocate_wait-in-space_info + patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized + patches.fixes/btrfs-kill-init_btrfs_i + patches.fixes/btrfs-introduce-contexts-for-metadata-reservation + patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction + patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation + patches.fixes/btrfs-introduce-global-metadata-reservation + patches.fixes/btrfs-metadata-reservation-for-orphan-inodes + patches.fixes/btrfs-metadata-enospc-handling-for-tree-log + patches.fixes/btrfs-pre-allocate-space-for-data-relocation + patches.fixes/btrfs-metadata-enospc-handling-for-balance + patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function + patches.fixes/btrfs-add-basic-dio-read-write-support + patches.fixes/btrfs-do-aio_write-instead-of-write + patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running + patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming + patches.fixes/btrfs-rework-o_direct-enospc-handling + patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io + patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode + patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct + patches.fixes/btrfs-fix-block-generation-verification-race + patches.fixes/btrfs-drop-verbose-enospc-printk + patches.fixes/btrfs-allow-unaligned-dio + patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode + patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs + patches.fixes/btrfs-fix-fallocate-regression + patches.fixes/btrfs-uninitialized-data-is-check_path_shared + patches.fixes/btrfs-fix-remap_file_pages-error + patches.fixes/btrfs-fix-null-dereference-in-relocation-c + patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn + patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item + patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree + patches.fixes/btrfs-btrfs_iget-returns-err_ptr + patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors + patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs + patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr + patches.fixes/btrfs-should-add-a-permission-check-for-setfacl + patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used + patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction + patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr + ######################################################## # Reiserfs Patches ######################################################## @@ -599,7 +646,7 @@ # device-mapper ######################################################## patches.suse/dm-emulate-blkrrpart-ioctl - patches.suse/dm-raid45_2.6.27_20081027.patch + patches.suse/dm-raid45-26-Nov-2009.patch patches.suse/dmraid45-dm_dirty_log_create-api-fix patches.suse/dmraid45-dm_get_device-takes-fewer-arguments patches.fixes/dm-mpath-reattach-dh diff --git a/source-timestamp b/source-timestamp index a72ac5a53..53ff939b2 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2010-06-21 21:12:08 +0200 -GIT Revision: 96535165dc4662f8c01ab98adfb37ab157f08ecb +2010-06-24 00:46:11 +0200 +GIT Revision: c017d10f702e41594808c71ece72eff2c49c21f6 GIT Branch: openSUSE-11.3