1
0
forked from pool/kernel-source

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
This commit is contained in:
OBS User autobuild 2010-06-24 10:15:44 +00:00 committed by Git OBS Bridge
parent a201d7d72d
commit 94e7a4f3b6
39 changed files with 1989 additions and 67 deletions

View File

@ -1,16 +1,17 @@
WORKING WITH THE SUSE 2.6.x KERNEL SOURCES WORKING WITH THE SUSE 2.6.x KERNEL SOURCES
Andreas Gruenbacher <agruen@suse.de>, SUSE Labs, 2003, 2004, 2005, 2006 Andreas Gruenbacher <agruen@suse.de>, SUSE Labs, 2003, 2004, 2005, 2006
Michal Marek <mmarek@suse.de>, SUSE Labs, 2010
This document gives an overview of how SUSE Linux kernels are This document gives an overview of how SUSE Linux kernels are
created, and describes tasks like building individual kernels created, and describes tasks like building individual kernels
and creating external kernel modules. and creating external kernel modules.
A companion Update Media HOWTO that describes how to build driver update A companion HOWTO that describes how to build driver update disks (among
disks (among other things) is available at: 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 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, applied. The resulting kernel source tree is configured and built,
resulting in a binary kernel. resulting in a binary kernel.
Internally, the add-on patches and configuration files are maintained in 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 a GIT repository at
CVS repository in a form suitable for rpmbuild. When building the RPM
packages, the following binary packages get created: 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 * kernel-source
@ -51,6 +56,11 @@ packages, the following binary packages get created:
packages are all generated from the same kernel sources, and packages are all generated from the same kernel sources, and
differ in the kernel configurations used. 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 * kernel-$FLAVOR-devel
The files used for generating kernel module packages for use with 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-syms
Kernel symbol version information for compiling external modules: A meta package that pulls in the relevant kernel-$FLAVOR-devel
Functions and data structures that the kernel exports have version packages for a given architecture.
information attached. When loading kernel modules, this version
information is used to make sure that the modules match the running
kernel.
The CVS repository contains the configuration files (.config) for all The repository contains the configuration files (.config) for all SUSE
SUSE kernel flavors. All configuration files are included in the kernel flavors. All configuration files are included in the
kernel-source package (see WHERE TO FIND CONFIGURATION FILES below). kernel-source package (see WHERE TO FIND CONFIGURATION FILES below).
@ -103,22 +110,21 @@ following directories:
COMPILING YOUR OWN KERNEL 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: recommended way to produce a binary kernel is:
(1) Install kernel-source.$ARCH.rpm. Change to the /usr/src/linux (1) Install kernel-source. Change to the /usr/src/linux directory.
directory.
(2) Create a build directory for use in configuring and building (2) Create a build directory for use in configuring and building
the kernel. Using /usr/src/linux directly requires root priviledges the kernel. Using /usr/src/linux directly requires root priviledges
and will cause problems if you need to build kernel modules for and will cause problems if you need to build kernel modules for
other installed kernels. 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'', O=$(pwd) oldconfig'' or ``make -C /usr/src/linux O=$(pwd) cloneconfig'',
see HOW TO CONFIGURE THE KERNEL SOURCES). 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 (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: 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. (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: 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 (2) Install kernel-syms.$ARCH.rpm. This package is necessary for
symbol version information (CONFIG_MODVERSIONS). symbol version information (CONFIG_MODVERSIONS).
@ -284,15 +290,13 @@ modules, please get in touch with Kurt Garloff <garloff@suse.de>.
PATCH SELECTION MECHANISM PATCH SELECTION MECHANISM
The SUSE kernels consist of the vanilla kernel sources on top of which a 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 number of patches is applied. The file series.conf determines which
all architectures; a few patches are only used on a subset of patches are applied and which are excluded. A script named "guards"
architectures. The file series.conf determines which patches are applied converts series.conf into a plain list of patch files to be applied.
on which architectures. A script named "guards" converts series.conf Guards decides which patches to include and exclude based on a list of
into a plain list of patch files to be applied. Guards decides which symbols. From the kernel-source.src.rpm package, a fully patched
patches to include and exclude based on a list of symbols. The symbols kernel source tree can be generated from vanilla sources + patches like
used by default are computed by the helper script "arch-symbols". From this:
the kernel-source.src.rpm package, a fully patched kernel source tree
can be generated from vanilla sources + patches like this:
# Install the package: # Install the package:
@ -308,12 +312,12 @@ can be generated from vanilla sources + patches like this:
# Apply the patches # 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 patch -d linux-2.6.5 -p1 < $p || break
done done
The configuration script config.conf which is similar to series.conf is 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. CONFIGURATION FILES.
The file format of series.conf and config.conf should be obvious from The file format of series.conf and config.conf should be obvious from
@ -324,16 +328,15 @@ script.)
WHERE TO FIND CONFIGURATION FILES WHERE TO FIND CONFIGURATION FILES
Kernel configuration files are stored in the kernel CVS repository. When Kernel configuration files are stored in the kernel GIT repository. When
packing up the repository, they end up in config.tar.bz. When packing up the repository, they end up in config.tar.bz2.
kernel-source.$ARCH.rpm is built, the config files are copied from
config/$ARCH/$FLAVOR to .config in the kernel source tree.
The kernel-$FLAVOR packages are based on config/$ARCH/$FLAVOR. The kernel-$FLAVOR packages are based on config/$ARCH/$FLAVOR.
(kernel-default is based on config/$ARCH/default, for example). (kernel-default is based on config/$ARCH/default, for example). The
The kernel-$FLAVOR packages install their configuration files as kernel-$FLAVOR packages install their configuration files as
/boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default) as /boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default). The
well as /usr/src/linux-obj/$ARCH/$FLAVOR/.config. 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 In addition, the running kernel exposes a gzip compressed version of its
configuration file as /proc/config.gz. The kernel sources can be 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 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 be created with a configuration that is identical to the kernel's
configuration, or at least very close to that. Each configuration is 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 configurations for all standard SUSE kernel variants, so for building
only external kernel modules it is not necessary to configure the kernel only external kernel modules it is not necessary to configure the kernel
sources. sources.

View File

@ -3,5 +3,5 @@ SRCVERSION=2.6.34
# variant of the kernel-source package, either empty or "-rt" # variant of the kernel-source package, either empty or "-rt"
VARIANT= VARIANT=
# buildservice projects to build the kernel against # buildservice projects to build the kernel against
OBS_PROJECT=openSUSE:Factory OBS_PROJECT=openSUSE:11.3
IBS_PROJECT=SUSE:Factory:Head IBS_PROJECT=SUSE:Factory:Head

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-debug Name: kernel-debug
Summary: A Debug Version of the Kernel Summary: A Debug Version of the Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-default Name: kernel-default
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-desktop Name: kernel-desktop
Summary: Kernel optimized for the desktop Summary: Kernel optimized for the desktop
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -30,7 +30,7 @@ License: GPLv2+
Group: Documentation/Man Group: Documentation/Man
AutoReqProv: on AutoReqProv: on
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-ec2 Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel Summary: The Amazon EC2 Xen Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-net Name: kernel-net
Summary: Minimal kernel with disk and net support Summary: Minimal kernel with disk and net support
Version: 2.6.34 Version: 2.6.34
Release: 8 Release: 9
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-pae Name: kernel-pae
Summary: Kernel with PAE Support Summary: Kernel with PAE Support
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-ppc64 Name: kernel-ppc64
Summary: Kernel for ppc64 Systems Summary: Kernel for ppc64 Systems
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-ps3 Name: kernel-ps3
Summary: kernel for ps3 bootloader Summary: kernel for ps3 bootloader
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-s390 Name: kernel-s390
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -31,7 +31,7 @@
Name: kernel-source Name: kernel-source
Summary: The Linux Kernel Sources Summary: The Linux Kernel Sources
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -24,7 +24,7 @@
Name: kernel-syms Name: kernel-syms
Summary: Kernel Symbol Versions (modversions) Summary: Kernel Symbol Versions (modversions)
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) %define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-trace Name: kernel-trace
Summary: The Realtime Linux Kernel Summary: The Realtime Linux Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-vanilla Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-vmi Name: kernel-vmi
Summary: VMI-enabled kernel Summary: VMI-enabled kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -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 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. - 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 Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz

View File

@ -56,7 +56,7 @@
Name: kernel-xen Name: kernel-xen
Summary: The Xen Kernel Summary: The Xen Kernel
Version: 2.6.34 Version: 2.6.34
Release: 10 Release: 11
%if %using_buildservice %if %using_buildservice
%else %else
%endif %endif

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5ae1a3ff25ab9c1fce327920b8a256d37597940e9ea5305eabdada22100a1555 oid sha256:b2b1129055fd314e950b0f0adec1077e8e419303c724a9a4f359ef044434cfc9
size 43076 size 118300

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8bb472aaf40dd6663774b280238954c57f80edceb9257fa45db86ba01e26939d oid sha256:823e3cd8207ad01dc8c4014573f2a0560386a7f7dca05ead34a22766fa4d50c2
size 851646 size 851687

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8b3912e5f77878d7db3f6dc084dd2fda381686dd1b06a1fbb354874420f5c992 oid sha256:54b0f4647eabc34ce0c3e07399031991c4a73b7426a070218e7987293f0e6964
size 1951741 size 1951135

View File

@ -352,6 +352,53 @@
# ext4 # 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 # Reiserfs Patches
######################################################## ########################################################
@ -599,7 +646,7 @@
# device-mapper # device-mapper
######################################################## ########################################################
patches.suse/dm-emulate-blkrrpart-ioctl 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_dirty_log_create-api-fix
patches.suse/dmraid45-dm_get_device-takes-fewer-arguments patches.suse/dmraid45-dm_get_device-takes-fewer-arguments
patches.fixes/dm-mpath-reattach-dh patches.fixes/dm-mpath-reattach-dh

View File

@ -1,3 +1,3 @@
2010-06-21 21:12:08 +0200 2010-06-24 00:46:11 +0200
GIT Revision: 96535165dc4662f8c01ab98adfb37ab157f08ecb GIT Revision: c017d10f702e41594808c71ece72eff2c49c21f6
GIT Branch: openSUSE-11.3 GIT Branch: openSUSE-11.3