forked from pool/kernel-source
This commit is contained in:
parent
496d5722b6
commit
79c8e6153d
@ -1,2 +1,2 @@
|
||||
2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0074b04eae0f1a9a96dae795fb3e3fd44f0a20e0e194b241188f9e02a0b599b
|
||||
size 135320
|
||||
oid sha256:91cdc3000c42df19e72d945fd0867ec15a90bcf86ffd0a507c89e9c3900ccffa
|
||||
size 135245
|
||||
|
@ -1,34 +1,44 @@
|
||||
#! /bin/sh
|
||||
#! /bin/bash
|
||||
|
||||
IFS=$'\n'
|
||||
filelist=($(cat))
|
||||
|
||||
printf "%s\n" "${filelist[@]}" | /usr/lib/rpm/find-provides "$@"
|
||||
|
||||
# these two are updated by the spec file
|
||||
# these are updated by the spec file
|
||||
sourcedir=${0%/*}
|
||||
builddir="$sourcedir/../BUILD"
|
||||
|
||||
filelist=$(mktemp -t ${0##*/}.XXXXXXXXXX)
|
||||
trap "rm -f $filelist" EXIT
|
||||
cat >"$filelist"
|
||||
flavor=${1##*-}
|
||||
|
||||
modlist=$(mktemp -t ${0##*/}.XXXXXXXXXX)
|
||||
trap "rm -rf $modlist" EXIT
|
||||
/usr/lib/rpm/find-provides "$@" <"$filelist"
|
||||
|
||||
symvers=
|
||||
for file in "${filelist[@]}"; do
|
||||
case "$file" in
|
||||
*/Module.symvers)
|
||||
symvers="--symvers-file=$file"
|
||||
;;
|
||||
*.ko)
|
||||
echo "$file" >>"$modlist"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
# HACK: find out what subpackage is this and just print the symsets
|
||||
# computed in %build. We need to do it this way because the provided
|
||||
# symsets are computed from the modules AND the reference symsets, which
|
||||
# we don't see here.
|
||||
subpack=
|
||||
|
||||
reference=
|
||||
# TODO
|
||||
# reference="--reference=$builddir/kabi/..."
|
||||
$sourcedir/symsets.pl --list-symsets --modules=$modlist $symvers $reference |\
|
||||
sed -rn 's/^(.+)\.([a-z0-9]{16})/kernel('$flavor':\1) = \2/p'
|
||||
samemodules()
|
||||
{
|
||||
cmp -s <(sed -rn 's:.*/([^/]*\.ko)$:\1:p' "$1" | sort) \
|
||||
<(sed -rn 's:.*/([^/]*\.ko)$:\1:p' "$2" | sort)
|
||||
}
|
||||
|
||||
if ! grep -q '\.ko$' "$filelist"; then
|
||||
# no modules, no symsets
|
||||
exit 0
|
||||
fi
|
||||
if samemodules "$builddir"/base-modules "$filelist"; then
|
||||
subpack=base
|
||||
elif samemodules "$builddir"/main-modules "$filelist"; then
|
||||
subpack=main
|
||||
elif samemodules "$builddir"/unsupported-modules "$filelist"; then
|
||||
subpack=extra
|
||||
else
|
||||
echo "find-provides: failed to determine which subpackage is this" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ls "$builddir/$subpack-symsets" | sed -rn 's/^(.+)\.([a-z0-9]{16})/kernel('$flavor':\1) = \2/p'
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#! /bin/sh
|
||||
prefix=
|
||||
suffix=
|
||||
commit=52970fae
|
||||
commit=3b72ca18
|
||||
if [ "$3" = kernel-dummy -o -n "$suffix" ]; then
|
||||
[ -n "$suffix" ] || suffix=$2
|
||||
while [ "$suffix" != "${suffix#[^0-9]*.}" ]; do
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0aa8d17fe21194611f801fe1bf4cc0bf7f453989c132b1f147dd74818c1f6378
|
||||
size 2754
|
||||
oid sha256:56b2f77a53b39e0d30735640a876ee13d68fcf6e38f613dfa007d3fe321211fd
|
||||
size 4985344
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-debug (Version 2.6.27.8)
|
||||
# spec file for package kernel-debug (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch %ix86
|
||||
%else
|
||||
%ifarch ia64
|
||||
@ -212,13 +212,13 @@ Only use this kernel when investigating problems.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-debug-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-debug-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -273,7 +273,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-debug
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-debug
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -298,6 +298,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-debug ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-debug
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -437,6 +441,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-debug$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -563,28 +568,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-debug.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-debug.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-debug/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-debug/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -599,8 +627,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -704,8 +732,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -746,8 +774,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -775,8 +803,8 @@ Only use this kernel when investigating problems.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-debug-man
|
||||
%defattr(-,root,root)
|
||||
@ -785,6 +813,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-default (Version 2.6.27.8)
|
||||
# spec file for package kernel-default (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch %ix86
|
||||
Provides: k_athlon k_debug k_deflt k_deflt_22 k_deflt_24 k_eide k_laptop k_orig k_pentiu k_pos_ibm k_psmp k_smp k_smp_22 k_smp_24 smp kernel-smp
|
||||
Obsoletes: k_athlon k_debug k_deflt k_deflt_22 k_deflt_24 k_eide k_laptop k_orig k_pentiu k_pos_ibm k_psmp k_smp k_smp_22 k_smp_24 smp kernel-smp
|
||||
@ -230,13 +230,13 @@ The standard kernel for both uniprocessor and multiprocessor systems.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-default-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-default-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -291,7 +291,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-default
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-default
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -316,6 +316,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-default ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-default
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -455,6 +459,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-default$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -581,28 +586,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-default.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-default.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-default/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-default/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -617,8 +645,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -721,8 +749,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -762,8 +790,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -790,8 +818,8 @@ The standard kernel for both uniprocessor and multiprocessor systems.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-default-man
|
||||
%defattr(-,root,root)
|
||||
@ -800,6 +828,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-dummy (Version 2.6.27.8)
|
||||
# spec file for package kernel-dummy (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -22,7 +22,7 @@ Url: http://www.kernel.org/
|
||||
|
||||
Name: kernel-dummy
|
||||
Summary: Internal dummy package for synchronizing release numbers
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -36,8 +36,8 @@ Authors:
|
||||
--------
|
||||
Andreas Gruenbacher <agruen@suse.de>
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%install
|
||||
rm -rf %buildroot
|
||||
@ -49,6 +49,573 @@ echo dummy > %buildroot/etc/dummy
|
||||
/etc/dummy
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-kdump (Version 2.6.27.8)
|
||||
# spec file for package kernel-kdump (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-kdump
|
||||
Summary: kernel for kdump
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch ppc
|
||||
%else
|
||||
%ifarch ppc64
|
||||
@ -211,13 +211,13 @@ crashed kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-kdump-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-kdump-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -272,7 +272,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-kdump
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-kdump
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -297,6 +297,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-kdump ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-kdump
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -436,6 +440,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-kdump$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -562,28 +567,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-kdump.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-kdump.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-kdump/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-kdump/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -598,8 +626,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -705,8 +733,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -749,8 +777,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -780,8 +808,8 @@ crashed kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-kdump-man
|
||||
%defattr(-,root,root)
|
||||
@ -790,6 +818,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,5 +1,5 @@
|
||||
%package -n %{-n*}-%1
|
||||
Version: %(echo %{-v*}-%3 | tr - _)
|
||||
Version: %(echo %{-v*}-%2 | tr - _)
|
||||
Release: %{-r*}
|
||||
%(
|
||||
for spec in {%_sourcedir,%_specdir}/%name.spec /dev/null; do
|
||||
@ -19,7 +19,7 @@ END { print tags["summary"]
|
||||
print tags["group"] }
|
||||
' $spec
|
||||
)
|
||||
Provides: %{-n*} = %(echo %{-v*}-%3 | tr - _)
|
||||
Provides: %{-n*} = %(echo %{-v*}-%2 | tr - _)
|
||||
Requires: coreutils grep
|
||||
AutoReqProv: on
|
||||
%{-p:%{expand:%(cd %_sourcedir; cat %{-p*})}}
|
||||
@ -46,22 +46,25 @@ END { exit(! good) }
|
||||
' $spec
|
||||
)
|
||||
%post -n %{-n*}-%1
|
||||
version=%(echo %{-v*}-%3 | tr - _)
|
||||
version=%(echo %{-v*}-%2 | tr - _)
|
||||
nvr=%{-n*}-%1-$version-%{-r*}
|
||||
wm2=/usr/lib/module-init-tools/weak-modules2
|
||||
if [ -x $wm2 ]; then
|
||||
$wm2 --add-kmp $nvr
|
||||
fi
|
||||
%preun -n %{-n*}-%1
|
||||
version=%(echo %{-v*}-%3 | tr - _)
|
||||
version=%(echo %{-v*}-%2 | tr - _)
|
||||
nvr=%{-n*}-%1-$version-%{-r*}
|
||||
set -o noclobber
|
||||
rpm -ql $nvr | grep '\.ko$' > /var/run/rpm-$nvr-modules
|
||||
rpm -ql $nvr | sed -n '/\.ko$/p' > /var/run/rpm-$nvr-modules
|
||||
%postun -n %{-n*}-%1
|
||||
version=%(echo %{-v*}-%3 | tr - _)
|
||||
version=%(echo %{-v*}-%2 | tr - _)
|
||||
nvr=%{-n*}-%1-$version-%{-r*}
|
||||
modules=( $(cat /var/run/rpm-$nvr-modules) )
|
||||
rm -f /var/run/rpm-$nvr-modules
|
||||
if [ ${#modules[*]} = 0 ]; then
|
||||
echo "WARNING: $nvr does not contain any kernel modules" >&2
|
||||
exit 0
|
||||
fi
|
||||
wm2=/usr/lib/module-init-tools/weak-modules2
|
||||
if [ -x $wm2 ]; then
|
||||
printf '%s\n' "${modules[@]}" | $wm2 --remove-kmp $nvr
|
||||
@ -69,4 +72,4 @@ fi
|
||||
%files -n %{-n*}-%1
|
||||
%{-f:%{expand:%(cd %_sourcedir; cat %{-f*})}}
|
||||
%{!-f:%defattr (-,root,root)}
|
||||
%{!-f:/lib/modules/%2}
|
||||
%{!-f:/lib/modules/%2-%1}
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
667
kernel-pae.spec
667
kernel-pae.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-pae (Version 2.6.27.8)
|
||||
# spec file for package kernel-pae (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
Provides: k_smp4G kernel-bigsmp
|
||||
Obsoletes: k_smp4G kernel-bigsmp
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.27.tar.bz2
|
||||
@ -212,13 +212,13 @@ that support it, regardless of the amount of main memory.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-pae-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-pae-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -273,7 +273,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-pae
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-pae
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -298,6 +298,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-pae ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-pae
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -437,6 +441,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-pae$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -563,28 +568,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-pae.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-pae.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-pae/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-pae/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -599,8 +627,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -710,8 +738,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -758,8 +786,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -793,8 +821,8 @@ that support it, regardless of the amount of main memory.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-pae-man
|
||||
%defattr(-,root,root)
|
||||
@ -803,6 +831,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-ppc64 (Version 2.6.27.8)
|
||||
# spec file for package kernel-ppc64 (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-ppc64
|
||||
Summary: Kernel for ppc64 Systems
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch ppc
|
||||
Provides: kernel-pmac64 kernel-pseries64 kernel-iseries64
|
||||
Obsoletes: kernel-pmac64 kernel-pseries64 kernel-iseries64
|
||||
@ -224,13 +224,13 @@ Authors:
|
||||
Tom Gall <tom_gall@vnet.ibm.com>
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-ppc64-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-ppc64-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -285,7 +285,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-ppc64
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-ppc64
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -310,6 +310,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-ppc64 ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-ppc64
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -449,6 +453,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-ppc64$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -575,28 +580,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-ppc64.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-ppc64.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-ppc64/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-ppc64/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -611,8 +639,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -729,8 +757,8 @@ Authors:
|
||||
Tom Gall <tom_gall@vnet.ibm.com>
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -784,8 +812,8 @@ Authors:
|
||||
Tom Gall <tom_gall@vnet.ibm.com>
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -826,8 +854,8 @@ Authors:
|
||||
Tom Gall <tom_gall@vnet.ibm.com>
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-ppc64-man
|
||||
%defattr(-,root,root)
|
||||
@ -836,6 +864,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
667
kernel-ps3.spec
667
kernel-ps3.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-ps3 (Version 2.6.27.8)
|
||||
# spec file for package kernel-ps3 (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-ps3
|
||||
Summary: kernel for ps3 bootloader
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.27.tar.bz2
|
||||
Source10: preun.sh
|
||||
Source11: postun.sh
|
||||
@ -206,13 +206,13 @@ final system.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-ps3-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-ps3-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -267,7 +267,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-ps3
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-ps3
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -292,6 +292,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-ps3 ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-ps3
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -431,6 +435,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-ps3$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -557,28 +562,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-ps3.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-ps3.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-ps3/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-ps3/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -593,8 +621,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -697,8 +725,8 @@ needs to be as small as possible.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -738,8 +766,8 @@ needs to be as small as possible.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -769,8 +797,8 @@ final system.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-ps3-man
|
||||
%defattr(-,root,root)
|
||||
@ -779,6 +807,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
667
kernel-s390.spec
667
kernel-s390.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-s390 (Version 2.6.27.8)
|
||||
# spec file for package kernel-s390 (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-s390
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
Provides: kernel-32bit k_deflt
|
||||
Obsoletes: kernel-32bit k_deflt
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.27.tar.bz2
|
||||
@ -205,13 +205,13 @@ The standard kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-s390-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-s390-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -266,7 +266,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-s390
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-s390
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -291,6 +291,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-s390 ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-s390
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -430,6 +434,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-s390$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -556,28 +561,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-s390.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-s390.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-s390/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-s390/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -592,8 +620,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -696,8 +724,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -737,8 +765,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -765,8 +793,8 @@ The standard kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-s390-man
|
||||
%defattr(-,root,root)
|
||||
@ -775,6 +803,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-source (Version 2.6.27.8)
|
||||
# spec file for package kernel-source (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -29,7 +29,7 @@ Url: http://www.kernel.org/
|
||||
|
||||
Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: Development/Sources
|
||||
@ -42,7 +42,7 @@ BuildRequires: kernel-dummy
|
||||
%endif
|
||||
ExclusiveArch: %ix86 ppc ppc64 s390 s390x ia64 x86_64
|
||||
Provides: linux
|
||||
Provides: kernel-source = 2.6.27.8-%source_rel
|
||||
Provides: kernel-source = 2.6.27.10-%source_rel
|
||||
%if "kernel-source" == "kernel-source"
|
||||
Provides: linux lx_suse lx_sus22 lx_sus24
|
||||
Obsoletes: linux lx-gdt lx-hack lx-suse lx1162_1 lx1162_2 lx1212_1 lx1212_2 lx1213_1 lx1213_2 lx121_1 lx121_2 lx126_1 lx126_2 lx129_1 lx129_2 lx_large kernel_headers lx_suse lx_sus22 lx_sus24
|
||||
@ -117,8 +117,8 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
@ -135,7 +135,7 @@ RELEASE=%source_rel
|
||||
while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do
|
||||
RELEASE=${RELEASE#[^0-9]*.}
|
||||
done
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE
|
||||
case kernel-source in
|
||||
(*-rt)
|
||||
variant=-rt
|
||||
@ -162,7 +162,7 @@ chmod -x arch/arm/mach-at91/board-yl-9200.c # executable by accident (fixed in 2
|
||||
> .patches
|
||||
for patch in $(< .patches); do
|
||||
if ! patch -s -F0 -E -p1 --no-backup-if-mismatch \
|
||||
-i %_builddir/kernel-source-2.6.27.8/$patch; then
|
||||
-i %_builddir/kernel-source-2.6.27.10/$patch; then
|
||||
echo "*** Patch $patch failed ***"
|
||||
exit 1
|
||||
fi
|
||||
@ -274,6 +274,573 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \
|
||||
%files -f kernel-source.files
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
579
kernel-syms.spec
579
kernel-syms.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-syms (Version 2.6.27.8)
|
||||
# spec file for package kernel-syms (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -28,7 +28,7 @@ Url: http://www.kernel.org/
|
||||
|
||||
Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: Development/Sources
|
||||
@ -69,7 +69,7 @@ BuildRequires: kernel-debug kernel-default kernel-trace kernel-xen
|
||||
#!BuildIgnore: irqbalance xen
|
||||
#!BuildIgnore: perl-Bootloader mkinitrd
|
||||
Requires: linux
|
||||
Requires: kernel-source = 2.6.27.8-%source_rel
|
||||
Requires: kernel-source = 2.6.27.10-%source_rel
|
||||
Source11: arch-symbols
|
||||
Source12: guards
|
||||
Source21: config.conf
|
||||
@ -94,8 +94,8 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -152,6 +152,573 @@ done
|
||||
/lib/modules/*/build
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-trace (Version 2.6.27.8)
|
||||
# spec file for package kernel-trace (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-trace
|
||||
Summary: The Realtime Linux Kernel
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch %ix86
|
||||
%else
|
||||
%ifarch ia64
|
||||
@ -217,13 +217,13 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-trace-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-trace-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -278,7 +278,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-trace
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-trace
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -303,6 +303,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-trace ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-trace
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -442,6 +446,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-trace$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -568,28 +573,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-trace.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-trace.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-trace/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-trace/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -604,8 +632,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -712,8 +740,8 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -757,8 +785,8 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -791,8 +819,8 @@ Authors:
|
||||
|
||||
see /usr/src/linux/CREDITS for more details.
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-trace-man
|
||||
%defattr(-,root,root)
|
||||
@ -801,6 +829,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-vanilla (Version 2.6.27.8)
|
||||
# spec file for package kernel-vanilla (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch %ix86
|
||||
%else
|
||||
%ifarch ia64
|
||||
@ -227,13 +227,13 @@ The standard kernel - without any SUSE patches
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-vanilla-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-vanilla-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -288,7 +288,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-vanilla
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-vanilla
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -313,6 +313,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-vanilla ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-vanilla
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -452,6 +456,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-vanilla$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -578,28 +583,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-vanilla.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-vanilla.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-vanilla/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-vanilla/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -614,8 +642,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -716,8 +744,8 @@ The standard kernel - without any SUSE patches
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -755,8 +783,8 @@ The standard kernel - without any SUSE patches
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -783,8 +811,8 @@ The standard kernel - without any SUSE patches
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-vanilla-man
|
||||
%defattr(-,root,root)
|
||||
@ -793,6 +821,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -1,3 +1,963 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:25:12 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 16:13:09 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de
|
||||
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 15:28:56 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de
|
||||
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 13:03:36 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:31:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de
|
||||
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:39:59 CET 2009 - hare@suse.de
|
||||
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:23:55 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz
|
||||
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de
|
||||
|
||||
- clean up patch fuzz
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 13:00:35 CET 2009 - olh@suse.de
|
||||
|
||||
- update kdump config, disable some unused drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:58:45 CET 2009 - olh@suse.de
|
||||
|
||||
- refresh config files, no functional changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:52:20 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de
|
||||
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de
|
||||
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de
|
||||
|
||||
- Make kernel-source.changes incremental again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 10:15:08 CET 2009 - olh@suse.de
|
||||
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 09:27:28 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:19:15 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:15:34 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de
|
||||
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:37:22 CET 2009 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz
|
||||
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- Update config files (part of bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de
|
||||
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:53:32 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 12:35:13 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 10:32:20 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:55:34 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 09:47:10 CET 2009 - hare@suse.de
|
||||
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz
|
||||
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Fix ps3 config.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de
|
||||
|
||||
- Update config files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de
|
||||
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de
|
||||
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:56:57 CET 2008 - olh@suse.de
|
||||
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 10:41:52 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to final 2.6.27.10 release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com
|
||||
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:23:06 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 16:14:20 CET 2008 - hare@suse.de
|
||||
|
||||
- Enable 3270 console (bnc#457039)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 10:17:27 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de
|
||||
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de
|
||||
|
||||
- .gitignore: Ignore backup files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 15:08:44 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de
|
||||
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- import SLE11 RC1 reference kabi
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de
|
||||
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de
|
||||
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de
|
||||
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 12:44:30 CET 2008 - hare@suse.de
|
||||
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 10:46:08 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de
|
||||
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de
|
||||
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de
|
||||
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de
|
||||
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de
|
||||
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de
|
||||
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:20:40 CET 2008 - olh@suse.de
|
||||
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 17:05:16 CET 2008 - rw@suse.de
|
||||
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:52:27 CET 2008 - rw@suse.de
|
||||
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:32:34 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de
|
||||
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 12:37:13 CET 2008 - olh@suse.de
|
||||
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:33:13 CET 2008 - hare@suse.de
|
||||
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de
|
||||
|
||||
@ -10592,8 +11552,6 @@ Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de
|
||||
We add it manually when building the patch list. This allows
|
||||
the script to work with the RT kernel without having to remove
|
||||
all the other configs from config.conf first.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 21 23:10:38 CET 2007 - jeffm@suse.de
|
||||
|
||||
|
667
kernel-xen.spec
667
kernel-xen.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package kernel-xen (Version 2.6.27.8)
|
||||
# spec file for package kernel-xen (Version 2.6.27.10)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
Name: kernel-xen
|
||||
Summary: The Xen Kernel
|
||||
Version: 2.6.27.8
|
||||
Version: 2.6.27.10
|
||||
Release: 1
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -98,8 +98,8 @@ BuildRequires: dwarfextract
|
||||
%endif
|
||||
%if %build_xen
|
||||
%ifarch %ix86
|
||||
Provides: kernel-xenpae = 2.6.27.8
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.8
|
||||
Provides: kernel-xenpae = 2.6.27.10
|
||||
Obsoletes: kernel-xenpae <= 2.6.27.10
|
||||
%endif
|
||||
#!BuildIgnore: xen
|
||||
%endif
|
||||
@ -121,7 +121,7 @@ Conflicts: lvm2 < 2.02.33
|
||||
%ifarch %ix86
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = 2.6.27.8-%source_rel
|
||||
Provides: kernel = 2.6.27.10-%source_rel
|
||||
%ifarch %ix86
|
||||
%else
|
||||
%ifarch x86_64
|
||||
@ -211,13 +211,13 @@ unprivileged ("xenU") kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%prep
|
||||
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
|
||||
echo "The kernel-xen-2.6.27.8.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.8.src.rpm."
|
||||
echo "The kernel-xen-2.6.27.10.nosrc.rpm package does not contain the" \
|
||||
"complete sources. Please install kernel-source-2.6.27.10.src.rpm."
|
||||
exit 1
|
||||
fi
|
||||
echo "Architecture symbol(s):" %symbols
|
||||
@ -272,7 +272,7 @@ cat ../config/%cpu_arch_flavor \
|
||||
cpu_arch_flavor="%cpu_arch_flavor"
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
cpu_arch=${cpu_arch_flavor%/*}
|
||||
KERNELRELEASE=2.6.27.8-$RELEASE-xen
|
||||
KERNELRELEASE=2.6.27.10-$RELEASE-xen
|
||||
EOF
|
||||
%if 0%{?__debug_package:1}
|
||||
cat >> ../.rpm-defs <<EOF
|
||||
@ -297,6 +297,10 @@ make silentoldconfig $MAKE_ARGS < /dev/null
|
||||
%_sourcedir/check-for-config-changes .config.orig .config
|
||||
rm .config.orig
|
||||
%endif
|
||||
# create *.symref files in the tree
|
||||
if [ -e ../kabi/$cpu_arch/symtypes-xen ]; then
|
||||
%_sourcedir/modversions --unpack . <../kabi/$cpu_arch/symtypes-xen
|
||||
fi
|
||||
make prepare $MAKE_ARGS
|
||||
krel=$(make -s kernelrelease $MAKE_ARGS)
|
||||
if [ "$krel" != "$KERNELRELEASE" ]; then
|
||||
@ -436,6 +440,7 @@ for sub in '-base' '' '-extra'; do
|
||||
-e "s:@SUBPACKAGE@:kernel-xen$sub:g" \
|
||||
-e "s:@BASE_PACKAGE@:$base_package:g" \
|
||||
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
|
||||
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
|
||||
%_sourcedir/$script.sh > ../$script$sub.sh
|
||||
done
|
||||
done
|
||||
@ -562,28 +567,51 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n'
|
||||
) > %my_builddir/base-modules
|
||||
%endif
|
||||
# generate symsets and check for kabi changes
|
||||
KABI=0
|
||||
mkdir %my_builddir/{base,main,extra}
|
||||
# generate symsets
|
||||
mkdir -p %my_builddir/{base,main,extra}-symsets
|
||||
for f in %my_builddir/{base,main,unsupported}-modules; do
|
||||
if [ -f "$f" ]; then
|
||||
sed 's:^/:%buildroot/:' "$f"
|
||||
fi > "$f-br"
|
||||
done
|
||||
reference=
|
||||
if test -e %my_builddir/kabi/$cpu_arch/symsets-xen.tar.gz; then
|
||||
tar xzf %my_builddir/kabi/$cpu_arch/symsets-xen.tar.gz -C \
|
||||
%my_builddir/kabi/$cpu_arch
|
||||
reference="--reference %my_builddir/kabi/$cpu_arch/symsets-*-xen/"
|
||||
fi
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--symvers=Module.symvers \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/base-modules) \
|
||||
--output-dir=%my_builddir/base
|
||||
# TODO:
|
||||
# --reference=%my_builddir/kabi/$cpu_arch/symsets-xen/base \
|
||||
# --check-kabi \
|
||||
# --commonsyms=%my_builddir/kabi/commonsyms \
|
||||
# --usedsyms=%my_builddir/kabi/usedsyms
|
||||
# --severities=%my_builddir/kabi/severities \
|
||||
# --max-badness=%tolerate_kabi_changes || KABI=?
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/base-symsets
|
||||
%if %split_packages
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/main-modules) \
|
||||
--output-dir=%my_builddir/main
|
||||
$reference \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--output-dir=%my_builddir/main-symsets
|
||||
%_sourcedir/symsets.pl --generate-symsets \
|
||||
--modules=<(sed 's:^/:%buildroot/:' %my_builddir/unsupported-modules) \
|
||||
--output-dir=%my_builddir/extra
|
||||
$reference \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--required-modules=%my_builddir/base-modules-br \
|
||||
--required-modules=%my_builddir/main-modules-br \
|
||||
--output-dir=%my_builddir/extra-symsets
|
||||
%endif
|
||||
# check for kabi changes
|
||||
KABI=0
|
||||
if [ -n "$reference" ]; then
|
||||
%_sourcedir/symsets.pl --check-kabi \
|
||||
$reference \
|
||||
--symvers=Module.symvers \
|
||||
--modules=%my_builddir/base-modules-br \
|
||||
--modules=%my_builddir/main-modules-br \
|
||||
--modules=%my_builddir/unsupported-modules-br \
|
||||
--commonsyms=%my_builddir/kabi/commonsyms \
|
||||
--usedsyms=%my_builddir/kabi/usedsyms \
|
||||
--severities=%my_builddir/kabi/severities \
|
||||
--max-badness=%tolerate_kabi_changes || KABI=$?
|
||||
fi
|
||||
if [ $KABI -ne 0 ]; then
|
||||
echo "kABI changes of badness $KABI exceed the maximum allowed badness" \
|
||||
"of %tolerate_kabi_changes. Please try to avoid the kABI changes."
|
||||
@ -598,8 +626,8 @@ if [ $CONFIG_MODULES = y ]; then
|
||||
echo "KABI BADNESS $KABI" > %_rpmdir/%_arch/mbuild_subject.tag
|
||||
fi
|
||||
symsets=%my_builddir/symsets-$KERNELRELEASE
|
||||
mkdir $symsets
|
||||
find %my_builddir/{base,main,extra} -type f \
|
||||
mkdir -p $symsets
|
||||
find %my_builddir/{base,main,extra}-symsets -type f \
|
||||
| xargs --replace='{}' cp '{}' $symsets/
|
||||
tar c -C ${symsets%/*} ${symsets##*/} \
|
||||
| gzip -9 \
|
||||
@ -705,8 +733,8 @@ This package contains only the base modules, required in all installs.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun base -f preun-base.sh
|
||||
|
||||
@ -749,8 +777,8 @@ This package contains additional modules not supported by Novell.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%preun extra -f preun-extra.sh
|
||||
|
||||
@ -780,8 +808,8 @@ unprivileged ("xenU") kernel.
|
||||
|
||||
|
||||
|
||||
Source Timestamp: 2008-12-08 03:55:28 +0100
|
||||
GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
Source Timestamp: 2009-01-09 18:56:12 +0100
|
||||
GIT Revision: 3b72ca1832be37f939525cd763e4b94762b2d9cf
|
||||
|
||||
%files -n kernel-xen-man
|
||||
%defattr(-,root,root)
|
||||
@ -790,6 +818,573 @@ GIT Revision: 52970fae27749478e86a9558ba81c95a07653278
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 09 2009 mmarek@suse.cz
|
||||
- patches.suse/file-capabilities-add-file_caps-switch.diff:
|
||||
fix parsing of the file_caps commandline option (bnc#264075)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch:
|
||||
x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
|
||||
(bnc#464329).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.arch/ppc-cmm_no_kdump.patch:
|
||||
Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/cgroup-disable-memory.patch: memcg: disable the
|
||||
memory controller by default.
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Delete.
|
||||
- patches.suse/disable-cgroups.patch: Delete.
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
fix compile errors
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/ath5k-ignore-calibration-return-value.patch:
|
||||
ath5k: ignore the return value of
|
||||
ath5k_hw_noise_floor_calibration (bnc#446541).
|
||||
* Fri Jan 09 2009 jslaby@suse.de
|
||||
- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups:
|
||||
suppress bogus warning messages (bnc#460961).
|
||||
* Fri Jan 09 2009 olh@suse.de
|
||||
- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for
|
||||
the graphics adapter in some JSxx (bnc#461002 - LTC50817)
|
||||
* Fri Jan 09 2009 trenn@suse.de
|
||||
- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not
|
||||
derive IRQ from parent bridge/device via boot param/dmi list
|
||||
(bnc#437211).
|
||||
- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility
|
||||
for vendors to fix BIOS issues for SLE11 only (none).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/blk-request-based-multipath-update: Rediff.
|
||||
- patches.fixes/scsi-refactor-busy-processing: refactor
|
||||
sdev/starget/shost busy checking; break out from
|
||||
blk-request-based-multipath-update.
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10
|
||||
to 8.2.8.11 (bnc#464662).
|
||||
- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib:
|
||||
only call scsi_unprep_request() under queue lock (bnc#464155).
|
||||
- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix
|
||||
hang in starved list processing (bnc#464155).
|
||||
* Fri Jan 09 2009 kkeil@suse.de
|
||||
- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID
|
||||
for 5716S
|
||||
- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2:
|
||||
Fix bug in bnx2_free_rx_mem() (bnc#464130)
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/disable-cgroups.patch: Disable all cgroups
|
||||
(bnc#436025).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- Backporting block layer fixes (bnc#464155):
|
||||
* patches.fixes/block-add-comment-in-blk_rq_timed_out: add
|
||||
comment in blk_rq_timed_out() about why next can not be 0
|
||||
* patches.fixes/block-fix-blk_start_queueing: block: Fix
|
||||
blk_start_queueing() to not kick a stopped queue.
|
||||
* patches.fixes/block-leave-the-request-timeout-timer-running:
|
||||
block: leave the request timeout timer running even on an
|
||||
empty list.
|
||||
* patches.fixes/block-optimizations-in-blk_rq_timed_out_timer:
|
||||
block: optimizations in blk_rq_timed_out_timer().
|
||||
* patches.fixes/block-suppress-buffer-IO-errors: block: Supress
|
||||
Buffer I/O errors when SCSI REQ_QUIET flag set.
|
||||
* patches.fixes/block-use-round_jiffies_up: Block: use
|
||||
round_jiffies_up().
|
||||
* patches.fixes/round-jiffies-up: Add round_jiffies_up and
|
||||
related routines.
|
||||
* Fri Jan 09 2009 jbeulich@novell.com
|
||||
- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
* Fri Jan 09 2009 hare@suse.de
|
||||
- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac
|
||||
does not retry MODE SENSE on UNIT ATTENTION (bnc#464155).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Only check
|
||||
for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL.
|
||||
* Fri Jan 09 2009 jslaby@suse.cz
|
||||
- patches.suse/add-enable_cgroup-parameter.patch: Add
|
||||
cgroup_enable parameter (bnc#436025).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
* Fri Jan 09 2009 gregkh@suse.de
|
||||
- clean up patch fuzz
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI MSI _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe AER _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root
|
||||
bridge added (bnc#438941).
|
||||
- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch:
|
||||
ACPI/PCI: remove obsolete _OSC capability support functions
|
||||
(bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch:
|
||||
ACPI/PCI: call _OSC support during root bridge discovery
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch:
|
||||
ACPI/PCI: Change pci_osc_control_set() to query control bits
|
||||
first (bnc#438941).
|
||||
- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch:
|
||||
ACPI/PCI: Fix possible race condition on _OSC evaluation
|
||||
(bnc#438941).
|
||||
- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch:
|
||||
ACPI/PCI: include missing acpi.h file in
|
||||
pci-acpi.h. (bnc#438941).
|
||||
- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch:
|
||||
ACPI/PCI: PCI extended config _OSC support called when root
|
||||
bridge added (bnc#438941).
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/bnx2x-version-update.patch: bnx2x: Version
|
||||
Update (bnc#439679).
|
||||
* Thu Jan 08 2009 jjolly@suse.de
|
||||
- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp:
|
||||
Remove message for failed port (bnc#464466).
|
||||
- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add
|
||||
support for unchained FSF requests (bnc#464466).
|
||||
- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu
|
||||
topology support (bnc#464466).
|
||||
- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add
|
||||
'failfast' device feature. (bnc#464466,LTC#43066).
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix
|
||||
Oops with MIDI.
|
||||
* Thu Jan 08 2009 knikanth@suse.de
|
||||
- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid
|
||||
destroying table in dm_any_congested (bnc#457205).
|
||||
- patches.fixes/dm-table-ref-count: dm table: rework reference
|
||||
counting (bnc#457205).
|
||||
- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at
|
||||
unbind (bnc#457205).
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- update kdump config, disable some unused drivers
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- refresh config files, no functional changes
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
use separate table for module alias (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 tiwai@suse.de
|
||||
Backport fixes for HD-audio from the upstream:
|
||||
- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda -
|
||||
Fix typos for AD1882 codecs.
|
||||
- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA:
|
||||
hda - make laptop-eapd model back for AD1986A.
|
||||
- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk
|
||||
for HP 2230s (bnc#461660).
|
||||
- patches.drivers/alsa-hda-sigmatel-add-missing-terminators:
|
||||
ALSA: hda - Add missing terminators in patch_sigmatel.c.
|
||||
* Thu Jan 08 2009 bwalle@suse.de
|
||||
- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y)
|
||||
for ppc/kdump and ppc64/kdump (bnc #459119).
|
||||
* Thu Jan 08 2009 jblunck@suse.de
|
||||
- Make kernel-source.changes incremental again
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- supported.conf: rename dm-leastpending-path to dm-leastpending
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ehea-modinfo.patch:
|
||||
add alias entry for portN properties (bnc#435215 - LTC48564)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-abort-response.patch:
|
||||
Fixup command response translation (bnc#459383 - LTC50695)
|
||||
* Thu Jan 08 2009 olh@suse.de
|
||||
- patches.drivers/ibmvfc-improve_sync_events.patch:
|
||||
Improve async event handling (bnc#460567 - LTC50778)
|
||||
* Thu Jan 08 2009 gregkh@suse.de
|
||||
- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome
|
||||
DRM bugfixes.
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
* Thu Jan 08 2009 coly.li@suse.de
|
||||
- Fixes a regression from commit
|
||||
0f8e0d9a317406612700426fad3efab0b7bbc467,
|
||||
"dlm: allow multiple lockspace creates".
|
||||
* Wed Jan 07 2009 olh@suse.de
|
||||
- patches.arch/ppc-pseries-cpu-migrate.patch: Update
|
||||
default_server during migrate_irqs_away (bnc#460566 - LTC50723)
|
||||
* Wed Jan 07 2009 jack@suse.cz
|
||||
- patches.suse/mm-increase-dirty-limits.patch: Increase limits
|
||||
for starting writeback of dirty data (bnc#449662).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- Update config files (part of bnc#448412).
|
||||
* Wed Jan 07 2009 ghaskins@suse.de
|
||||
- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch:
|
||||
configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver
|
||||
patches for SLE11 (bnc#460775).
|
||||
* Wed Jan 07 2009 knikanth@suse.de
|
||||
- patches.suse/dm-barrier-single-device: Update Patch-mainline
|
||||
header. Patch is not refreshed as it breaks kabi (FATE#304489).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.drivers/cciss-driver-panic-on-volume-delete: cciss
|
||||
driver may panic if a logical volume is deleted (bnc#459553).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks
|
||||
(bnc#461747).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.fixes/fc_transport-devloss-callback-restore: FC devloss
|
||||
callback not called when devloss timer fires (bnc#463289).
|
||||
* Wed Jan 07 2009 hare@suse.de
|
||||
- patches.suse/dm-mpath-leastpending-path-update: Update
|
||||
least-pending-IO dynamic load balancer (bnc#444199).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-service-time-load-balancing: Rediff.
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: Rediff.
|
||||
- patches.suse/dm-mpath-leastpending-path: Delete.
|
||||
* Tue Jan 06 2009 jeffm@suse.de
|
||||
- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous
|
||||
BAU initialization (bnc#463313).
|
||||
* Tue Jan 06 2009 jjolly@suse.de
|
||||
- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth:
|
||||
exploit source MAC address for inbound layer3 packets
|
||||
(bnc#458339).
|
||||
- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid
|
||||
crash in case of layer mismatch for VSWITCH (bnc#458339).
|
||||
- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix
|
||||
unsolicited SIM sense condition. (bnc#458339).
|
||||
- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix
|
||||
broken memcpy (bnc#458339).
|
||||
- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework
|
||||
s390dbf usage (bnc#458339).
|
||||
- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework
|
||||
inbound buffer acknowledgement (bnc#458339).
|
||||
- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes
|
||||
when repeatetly attaching/detaching devices. (bnc#458339).
|
||||
* Tue Jan 06 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: update.
|
||||
* Mon Jan 05 2009 mmarek@suse.cz
|
||||
- patches.suse/modpost-filter-out-built-in-depends: modpost:
|
||||
filter out "built-in" depends (bnc#450085).
|
||||
- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch:
|
||||
refresh.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Fix ps3 config.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless
|
||||
pagecache barrier fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch:
|
||||
fs symlink write_begin allocation context fix.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- Update config files.
|
||||
* Mon Jan 05 2009 npiggin@suse.de
|
||||
- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294,
|
||||
fate#304191, fate#201036).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP
|
||||
version of lru_add_drain_all() (bnc#458380).
|
||||
* Wed Dec 31 2008 npiggin@suse.de
|
||||
- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap
|
||||
fix (bnc#449812).
|
||||
* Mon Dec 29 2008 jeffm@suse.de
|
||||
- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi:
|
||||
Fix oops with incompatible backlight interface.
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- update patches.arch/ppc-memoryless-nodes.patch:
|
||||
fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483)
|
||||
* Mon Dec 22 2008 olh@suse.de
|
||||
- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make
|
||||
max_requests module parameter more accurate (bnc#458499 - LTC50637)
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk
|
||||
for another HP dv7 (bnc#461108).
|
||||
* Sat Dec 20 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624).
|
||||
* Fri Dec 19 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Print more info.
|
||||
* Fri Dec 19 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable
|
||||
44.1kHz capture on CA0106 (bnc#447624).
|
||||
- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add
|
||||
power-amangement support (bnc#447624).
|
||||
- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix
|
||||
plaback problems on Intel desktops with IDT codecs.
|
||||
* Fri Dec 19 2008 jbeulich@novell.com
|
||||
- patches.arch/x86_sgi-uv-scir.patch,
|
||||
patches.suse/e1000e_ioremap_sanity_check,
|
||||
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
|
||||
patches.suse/perfmon2.patch,
|
||||
patches.suse/silent-stack-overflow-2.patch: eliminate build warnings.
|
||||
* Fri Dec 19 2008 gregkh@suse.de
|
||||
- Update config files.
|
||||
- patches.drivers/staging-add-rt2870-wireless-driver.patch:
|
||||
Staging: add rt2870 wireless driver.
|
||||
* Fri Dec 19 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read
|
||||
past end of bitmap when reading bitmap. (bnc#459557).
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Fixed ordering.
|
||||
* Thu Dec 18 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete.
|
||||
* Thu Dec 18 2008 gregkh@suse.de
|
||||
- Updated to final 2.6.27.10 release
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch:
|
||||
Use apic=bigsmp on specific xseries machines (bnc#440497).
|
||||
* Thu Dec 18 2008 trenn@suse.de
|
||||
- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch:
|
||||
Only scan the root bus in early PCI quirks. (bnc#57886).
|
||||
* Thu Dec 18 2008 jbeulich@novell.com
|
||||
- patches.xen/746-pirq-status-page.patch: Merge in c/s 751.
|
||||
- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling.
|
||||
- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons.
|
||||
- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8.
|
||||
- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9.
|
||||
- patches.xen/xen-x86-exports: export a few more symbols
|
||||
(bnc#458222).
|
||||
- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ...
|
||||
- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this.
|
||||
* Thu Dec 18 2008 nfbrown@suse.de
|
||||
- patches.fixes/md-disable-recovery-on-faulty-degraded-array:
|
||||
Disable recovery when degraded RAID1 array appears to be
|
||||
faulty. (bnc#447835).
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl: fix uninitialized variable
|
||||
* Wed Dec 17 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in:
|
||||
- add genksyms reference files so that genksyms can explain why
|
||||
did checksums change
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- patches.drivers/via-framebuffer-driver.patch: Delete. It
|
||||
oopses badly and is not needed for the HP2133 hardware, as
|
||||
it has switched to Intel chipsets.
|
||||
* Wed Dec 17 2008 gregkh@suse.de
|
||||
- Upate to 2.6.27.10-rc1, fixing lots of problems.
|
||||
- obsoletes:
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist
|
||||
- patches.fixes/iwlwifi_fix_oops.patch
|
||||
- patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.suse/reiserfs-barrier-default: Make reiserfs default
|
||||
to barrier=flush.
|
||||
* Tue Dec 16 2008 mmarek@suse.cz
|
||||
- addded symtypes-* files to the RC1 reference kabi
|
||||
* Tue Dec 16 2008 jeffm@suse.de
|
||||
- patches.fixes/ext3-mark-super-uptodate: ext3: always mark
|
||||
super uptodate before dirty (bnc#457043).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue:
|
||||
block: only call ->request_fn when the queue is not stopped
|
||||
(bnc#457041).
|
||||
- patches.fixes/blk-get-extra-reference-before-unmap: block:
|
||||
hold extra reference to bio in blk_rq_map_user_iov().
|
||||
- patches.fixes/blk-move-unplug_work-init: block: move
|
||||
q->unplug_work initialization.
|
||||
- patches.fixes/blk-set-segment-boundary-mask: block: fix setting
|
||||
of max_segment_size and seg_boundary mask.
|
||||
- patches.fixes/dm-mpath-send-activate-to-every-path: Handle
|
||||
multiple paths in a path group properly during pg_init.
|
||||
- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor
|
||||
and product IDs to RDAC device handler.
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037,bnc#458393).
|
||||
- patches.suse/scsi-check-removed-device-for-offline: Check if
|
||||
device is removed in scsi_device_online() (bnc#456747).
|
||||
* Tue Dec 16 2008 hare@suse.de
|
||||
- Enable 3270 console (bnc#457039)
|
||||
* Tue Dec 16 2008 rjw@suse.de
|
||||
- Update config files.
|
||||
- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch:
|
||||
mm: Do not disable memory hotplug when hibernation is enabled
|
||||
(bnc#438914).
|
||||
* Mon Dec 15 2008 jeffm@suse.de
|
||||
- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table
|
||||
in iwl_clear_stations_table function (bnc#457062).
|
||||
* Mon Dec 15 2008 jjolly@suse.de
|
||||
- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size
|
||||
check and fixed ddp page setup (bnc#449519).
|
||||
* Mon Dec 15 2008 hare@suse.de
|
||||
- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx
|
||||
driver SLES 11 Beta6 update (bnc#458186).
|
||||
* Mon Dec 15 2008 oneukum@suse.de
|
||||
- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix
|
||||
ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775).
|
||||
* Sun Dec 14 2008 gregkh@suse.de
|
||||
- Update to 2.6.27.9
|
||||
- obsoleted:
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs:
|
||||
ensure nonzero transaction (bnc#447406).
|
||||
* Fri Dec 12 2008 jeffm@suse.de
|
||||
- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount.
|
||||
* Fri Dec 12 2008 jblunck@suse.de
|
||||
- .gitignore: Ignore backup files.
|
||||
* Fri Dec 12 2008 hare@suse.de
|
||||
- patches.fixes/scsi-check-host-lookup-failure: Correct
|
||||
scsi_host_lookup return value (bnc#456532).
|
||||
- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths
|
||||
for multipath maps (bnc#458037).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch: hso: rfkill type should
|
||||
be WWAN (bnc#458625).
|
||||
* Fri Dec 12 2008 fseidel@suse.de
|
||||
- patches.fixes/hso_killswitch.patch:
|
||||
fix hso rfkillswitch type to WWAN (bnc#458625)
|
||||
* Fri Dec 12 2008 mmarek@suse.cz
|
||||
- import SLE11 RC1 reference kabi
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- refresh patches to apply cleanly due to 2.6.27.9-rc addition.
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- remove patches that were obsoleted by 2.6.27.9-rc2
|
||||
- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
- patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
- patches.drivers/alsa-hda-acer-quirk
|
||||
- patches.drivers/alsa-hda-alc888-medion-add
|
||||
- patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
- patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk
|
||||
- patches.drivers/alsa-hda-hp-mobile-fix
|
||||
- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
- patches.drivers/cell_edac.patch
|
||||
- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout
|
||||
- patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
- patches.fixes/cxgb3_fix_race_in_EEH
|
||||
- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch
|
||||
- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one
|
||||
* Fri Dec 12 2008 gregkh@suse.de
|
||||
- update to 2.6.27.9-rc2:
|
||||
- lots of bugfixes
|
||||
- some security updates
|
||||
* Thu Dec 11 2008 gregkh@suse.de
|
||||
- intermediate commit as part of adding 2.6.27.9-rc1 to the tree.
|
||||
* Thu Dec 11 2008 hare@suse.de
|
||||
- Compile in zfcpdump module for S/390 (bnc#446367).
|
||||
* Thu Dec 11 2008 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: one more fix to make kabi checks work
|
||||
* Thu Dec 11 2008 teheo@suse.de
|
||||
- patches.drivers/libata-update-ST-FLUSH-blacklist: libata:
|
||||
fix Seagate NCQ+FLUSH blacklist (bnc#458192).
|
||||
* Wed Dec 10 2008 nfbrown@suse.de
|
||||
- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page
|
||||
in swap_sync_page (441793).
|
||||
* Wed Dec 10 2008 jjolly@suse.de
|
||||
- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch:
|
||||
zfcp: fix erp timeout cleanup for port open requests
|
||||
(bnc#450096).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c -
|
||||
fix buffer_underflow bug (bnc#457898).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix
|
||||
an unchecked user ioctl range and an error return (bnc#457897).
|
||||
* Wed Dec 10 2008 jeffm@suse.de
|
||||
- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a
|
||||
minimum SG_IO timeout (bnc#457896).
|
||||
* Wed Dec 10 2008 mmarek@suse.cz
|
||||
- rpm/find-provides: don't fail if a subpackage doesn't contain
|
||||
any modules (such as the -man subpackage on s390x)
|
||||
* Wed Dec 10 2008 tiwai@suse.de
|
||||
- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk
|
||||
for HP6730B laptop (bnc#457909).
|
||||
- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add
|
||||
another HP model (6730s) for AD1884A.
|
||||
- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda -
|
||||
Make the HP EliteBook 8530p use AD1884A model laptop.
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- patches.drivers/ibmvfc-add_sync.patch:
|
||||
Fix errors due to inconsistent command data (bnc#456654 - LTC50451)
|
||||
- patches.drivers/ibmvfc-host_init_delay.patch:
|
||||
Delay NPIV login retry and add retries (bnc#456654 - LTC50451)
|
||||
* Wed Dec 10 2008 teheo@suse.de
|
||||
- patches.drivers/libata-pata_hpt366-fix-cable-detection:
|
||||
pata_hpt366: fix cable detection, (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-fix-clock-detection:
|
||||
pata_hpt366: fix clock detection (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366:
|
||||
no ATAPI DMA (bnc#362159).
|
||||
- patches.drivers/libata-pata_hpt366-reimplement-mode-programming:
|
||||
pata_hpt366: reimplement mode programming (bnc#362159).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- supported.conf: Mark xfs_dmapi as supported (bnc#457668).
|
||||
* Tue Dec 09 2008 jeffm@suse.de
|
||||
- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove
|
||||
debug code from arch_add_memory() (bnc#457526).
|
||||
- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory
|
||||
hotplug: remove wrong -1 in calling init_memory_mapping()
|
||||
(bnc#457526).
|
||||
* Tue Dec 09 2008 agruen@suse.de
|
||||
- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove
|
||||
a leftover hardcoded dependency on the kernel-source package so
|
||||
that KMPs can alternatively be built against a kernel other
|
||||
than (kernel-source + kernel-syms), such as (kernel-source-rt +
|
||||
kernel-syms-rt).
|
||||
* Tue Dec 09 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe:
|
||||
ASPM: Break out of endless loop waiting for PCI config bits
|
||||
to switch (bnc#449799).
|
||||
* Tue Dec 09 2008 mmarek@suse.cz
|
||||
- rpm/symsets.pl:
|
||||
- add --required-modules option to tell which modules this
|
||||
subpackage requires via dependencies. This is needed to
|
||||
preserve symsets when modules move from one subpackage to
|
||||
another.
|
||||
- add POD help and --help option.
|
||||
- rpm/kernel-binary.spec.in: make use of --required-modules
|
||||
* Tue Dec 09 2008 nfbrown@suse.de
|
||||
- patches.fixes/xfs-barrier-fix.patch: Fix propagation of
|
||||
EOPNOTSUPP when barriers are not supported. (bnc#438608).
|
||||
* Mon Dec 08 2008 rjw@suse.de
|
||||
- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure
|
||||
to enable WoL by default when possible (bnc#447371).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch:
|
||||
Check for valid hugepage size in hugetlb_get_unmapped_area
|
||||
(bnc#456433 - LTC50170).
|
||||
* Mon Dec 08 2008 trenn@suse.de
|
||||
- patches.fixes/pci_aspm_check_endless_loop.patch: Delete.
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- patches.drivers/sgi-xp-no-uv:
|
||||
SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442)
|
||||
* Mon Dec 08 2008 rw@suse.de
|
||||
- Update config files for ia64:
|
||||
Disable PERMIT_BSP_REMOVE. (bnc#386714)
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what
|
||||
subpackage is being processed in find-provides and just print
|
||||
the symsets computed in the spec.
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: use flavor-rpmarch to match boards on powerpc
|
||||
* Mon Dec 08 2008 mmarek@suse.cz
|
||||
- rpm/kernel-module-subpackage: skip empty KMPs with a warning in
|
||||
the kmp %%postun
|
||||
* Mon Dec 08 2008 jjohansen@suse.de
|
||||
- Update config files.
|
||||
- patches.apparmor/fix-complain.diff: fix enforcement of deny
|
||||
rules in complain mode (bnc#426159).
|
||||
- patches.apparmor/fix-security-param.diff: fix recognition of
|
||||
security= boot parameter (bnc#442668).
|
||||
- patches.apparmor/fork-tracking.diff: fix log messages to enable
|
||||
tools profile learning (bnc#447564).
|
||||
* Mon Dec 08 2008 olh@suse.de
|
||||
- rpm/post.sh: update board detection to use rpmarch instead flavor
|
||||
* Mon Dec 08 2008 hare@suse.de
|
||||
- patches.fixes/block-integrity-update: Block integrity update
|
||||
(FATE#304345).
|
||||
- patches.suse/dm-block-integrity: Block integrity support for
|
||||
DM and MD (FATE#304345).
|
||||
- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path
|
||||
selector interface (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add
|
||||
queue-length dynamic load balancer (FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-service-time-load-balancing:
|
||||
dm-mpath: add service-time oriented dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath:
|
||||
interface change for service-time dynamic load balancer
|
||||
(FATE#303862,FATE#302108).
|
||||
- supported.conf: Update to correctly reference dynamic load
|
||||
balancer modules (bnc#444199)
|
||||
* Mon Dec 08 2008 tonyj@suse.de
|
||||
- patches.suse/perfmon2-add_ioctl_interface.patch: switch to
|
||||
ioctl interface for perfmon2.
|
||||
|
@ -8,7 +8,6 @@
|
||||
subpkg=%{-t*}%{!-t:/usr/lib/rpm/kernel-module-subpackage} \
|
||||
echo "%%define _suse_kernel_module_subpackage(n:v:r:f:p:) %%{expand:%%(cd %_sourcedir; cat $subpkg; echo %%%%nil)}" \
|
||||
flavors_to_build= \
|
||||
kver=$(rpm -q --qf '%{VERSION}-%{RELEASE}' kernel-source) \
|
||||
flavors="%*" \
|
||||
for flavor in $(ls /usr/src/linux-obj/%_target_cpu 2>/dev/null); do \
|
||||
case " $flavors " in \
|
||||
@ -18,9 +17,10 @@
|
||||
[ -z "%{-X}" -a -n "$flavors" ] && continue ;; \
|
||||
esac \
|
||||
krel=$(make -s -C /usr/src/linux-obj/%_target_cpu/$flavor kernelrelease) \
|
||||
[ -e /boot/symsets-$krel.tar.gz ] || continue \
|
||||
kver=${krel%%-*} \
|
||||
[ -e /boot/symsets-$kver-$flavor.tar.gz ] || continue \
|
||||
flavors_to_build="$flavors_to_build $flavor" \
|
||||
echo "%%_suse_kernel_module_subpackage -n %{-n*}%{!-n:%name}-kmp -v %{-v*}%{!-v:%version} -r %{-r*}%{!-r:%release} %{-p} $flavor $krel $kver" \
|
||||
echo "%%_suse_kernel_module_subpackage -n %{-n*}%{!-n:%name}-kmp -v %{-v*}%{!-v:%version} -r %{-r*}%{!-r:%release} %{-p} $flavor $kver" \
|
||||
done \
|
||||
echo "%%global flavors_to_build${flavors_to_build:-%%nil}" \
|
||||
echo "%%{expand:%%(test -z '%flavors_to_build' && echo %%%%internal_kmp_error)}" \
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8d3e3491a7b6bb7d00580066cc617c1e126e806b6b2844f69b3dfa5e6fd108d
|
||||
size 128
|
||||
oid sha256:1c254a93008ce4bc96a142e264e608dd576e4468a2ee404a4e381ee77e2e26a6
|
||||
size 127
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e10887911815a5e2631600dbe8615e534fbc5aa9c15adbae421f86f639528ad
|
||||
size 59215
|
||||
oid sha256:8a115f4e748c9b9b6aef58644b092adedfb8a9c1bf05738af94d3e6e1e6695fe
|
||||
size 60241
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:845b030b1596df04c13c19b4a59f2956cbb00ec9ff59bf4f6660e384cf4379e2
|
||||
size 272095
|
||||
oid sha256:d4c0f173206d6a33a716c18cfdd55a14692c1606817be7e66917f03685b8361a
|
||||
size 297907
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d39a5bf280b07e782fa9d6447c259cf4a72436254fbae66b52c581d63bde7cab
|
||||
size 2898188
|
||||
oid sha256:065399fcb5e313d9cde08db421d919f8f9158d482745e6514ad878952fdf4dff
|
||||
size 3345558
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16f59d14d26f29473a0f1096e35236d916bf7eef7827aa9589b6121c5634fb0b
|
||||
size 131066
|
||||
oid sha256:1f7d1d1af0265255b5e5018dfd7781267bf88ad37e722dc5a5ea77ae58e4d24b
|
||||
size 148335
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:665116a431eca60dcabe6d722d239caf224d4588076d93d25bdd0da8131271a1
|
||||
size 133943
|
||||
oid sha256:670facc59b2dfedea1da21795723d0144f4c90b031ae49e1c30f3ee013def9c8
|
||||
size 163776
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2bfaed04cf73eaebf61d666212d80107bed7bfca2fda1ad4040287e12dec5fc4
|
||||
size 1609
|
||||
oid sha256:8733f15bbaed733c473f07cee22bf95c08f62b039b3c2691a92b410fb5e4f5f9
|
||||
size 1615
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1fd979554ab9759af72494a1e178508584d42ae1aadf1d072c9edb04841f169
|
||||
size 125
|
||||
oid sha256:a9de167722b7bc91f70054940fe354f75093f46e4aef3b9e3ce47ffd9a28809d
|
||||
size 126
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1cf568e46bdf7cc515dcd812a2003e96fdf6546d490d0fdc9b7a0549a263b3e
|
||||
size 1460639
|
||||
oid sha256:d8d3a81796342de61c919fd627e07bf784dc8bc183b960e94a131f2e414fa79c
|
||||
size 1475991
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68ecbae0489b4989c72d1560f7b1c6b75f9a33ed29a33902e1b21040ebb70f58
|
||||
size 63270
|
||||
oid sha256:d01f4a96e2c74003b9c16dddc446d563fe9ca1875c7604d2ce6a9a94204ac7f5
|
||||
size 63242
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6e8f9741a9860e49780a855a363228308ed02e722bd8d0dd6a0a2a568af664ef
|
||||
size 1508801
|
||||
oid sha256:060ef19ab5918829da18936f73a4efd7270177fddf68373f5dbe484dfa747d89
|
||||
size 1514663
|
||||
|
24
post.sh
24
post.sh
@ -3,26 +3,24 @@
|
||||
# On powerpc, the different kernels are for different board/firmware types
|
||||
# They are not compatible.
|
||||
wrong_boardtype() {
|
||||
echo "This kernel-@FLAVOR@ is for $1, it will not boot on this system."
|
||||
echo "This kernel-@FLAVOR@.@RPM_TARGET_CPU@.rpm is for $1, it will not boot on this system."
|
||||
echo "The /boot/vmlinux symlink will not be created or updated."
|
||||
exit 0
|
||||
}
|
||||
if [ -f /proc/cpuinfo ]; then
|
||||
case "@FLAVOR@" in
|
||||
ppc64|kdump)
|
||||
if [ -d /proc/device-tree ]; then
|
||||
case "@FLAVOR@-@RPM_TARGET_CPU@" in
|
||||
vanilla-ppc64|default-ppc64|ps3-ppc64|ppc64-ppc64|kdump-ppc64|ps3-ppc|ppc64-ppc|kdump-ppc)
|
||||
if [ -d /proc/iSeries -o ! -d /proc/ppc64 ]; then
|
||||
wrong_boardtype "OpenFirmware based 64bit machines"
|
||||
wrong_boardtype "OpenFirmware based 64bit machines"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
default)
|
||||
if [ -d /proc/ppc64 -o -d /proc/iSeries ]; then
|
||||
wrong_boardtype "32bit systems"
|
||||
fi
|
||||
;;
|
||||
;;
|
||||
vanilla-ppc|default-ppc)
|
||||
if [ -d /proc/ppc64 -o -d /proc/iSeries ]; then
|
||||
wrong_boardtype "32bit systems"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
161
series.conf
161
series.conf
@ -38,6 +38,8 @@
|
||||
patches.kernel.org/revert-scsi-qla2xxx-do-not-honour-max_vports-from-firmware-for-2g-isps-and-below.patch
|
||||
patches.kernel.org/revert-scsi-qla2xxx-return-a-failed-status-when-abort-mailbox-command-fails.patch
|
||||
patches.kernel.org/patch-2.6.27.7-8
|
||||
patches.kernel.org/patch-2.6.27.8-9
|
||||
patches.kernel.org/patch-2.6.27.9-10
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -83,6 +85,7 @@
|
||||
########################################################
|
||||
patches.suse/supported-flag
|
||||
patches.suse/supported-flag-sysfs
|
||||
patches.suse/modpost-filter-out-built-in-depends
|
||||
|
||||
########################################################
|
||||
# Simple export additions/removals
|
||||
@ -101,7 +104,6 @@
|
||||
patches.suse/self-ptrace.patch
|
||||
-RT patches.suse/rwlocks-enable-interrupts
|
||||
patches.suse/coredump_filter-add-elfhdr-default.patch
|
||||
patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch
|
||||
|
||||
########################################################
|
||||
# Architecture-specific patches. These used to be all
|
||||
@ -146,7 +148,6 @@
|
||||
patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch
|
||||
patches.arch/x86-self-ptrace.patch
|
||||
patches.arch/x86-tracehook
|
||||
patches.arch/x86-hpet-use-WARN_ON_ONCE
|
||||
patches.arch/x86-hpet-pre-read
|
||||
|
||||
########################################################
|
||||
@ -233,6 +234,7 @@
|
||||
patches.fixes/uv-xpc_create_gru_mq_uv.diff
|
||||
patches.fixes/uv-xpc-get_sn_info.diff
|
||||
patches.fixes/uv-xpc_get_part_rsvd_page.diff
|
||||
patches.drivers/sgi-xp-no-uv
|
||||
|
||||
# VMware TSC workaround patches (bnc#441338)
|
||||
patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE
|
||||
@ -243,9 +245,16 @@
|
||||
patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc
|
||||
patches.arch/x86-vmware-tsc-07-DMI-product-serial-key
|
||||
|
||||
patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch
|
||||
patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch
|
||||
patches.arch/x86-fix-kmap-contig.patch
|
||||
|
||||
patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch
|
||||
|
||||
########################################################
|
||||
# powerpc/generic
|
||||
########################################################
|
||||
patches.suse/radeon-monitor-jsxx-quirk.patch
|
||||
patches.suse/8250-sysrq-ctrl_o.patch
|
||||
patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||
patches.arch/ppc-pseries_pfn-mem-rm.patch
|
||||
@ -289,7 +298,9 @@
|
||||
patches.arch/ppc-memoryless-nodes.patch
|
||||
patches.arch/ppc-syscall-xer.so.1.patch
|
||||
patches.arch/ppc-cell-gdb-watchpoints.patch
|
||||
patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch
|
||||
patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch
|
||||
patches.arch/ppc-pseries-cpu-migrate.patch
|
||||
patches.arch/ppc-cmm_no_kdump.patch
|
||||
|
||||
patches.arch/ppc-spufs-01-use-inc_nlink.patch
|
||||
patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch
|
||||
@ -361,6 +372,22 @@
|
||||
patches.arch/s390-05-06-stp-etr-mutex.patch
|
||||
patches.arch/s390-05-07-generic-ipi.patch
|
||||
patches.arch/s390-05-08-topology.patch
|
||||
patches.arch/s390-05-09-cleanup-of-portopen-requests.patch
|
||||
|
||||
patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch
|
||||
patches.arch/s390-06-02-qeth-layercrash.patch
|
||||
patches.arch/s390-06-03-dasd_sim_sense_condition.patch
|
||||
patches.arch/s390-06-04-qdio_ssqd_memcpy.patch
|
||||
patches.arch/s390-06-05-qdio_s390dbf.patch
|
||||
patches.arch/s390-06-06-qdio_inbound_ack.patch
|
||||
patches.arch/s390-06-07-cio-attach_detach.patch
|
||||
|
||||
patches.arch/s390-07-01-zfcp-port-failed-message.diff
|
||||
patches.arch/s390-07-02-zfcp-unchained-fsf.diff
|
||||
patches.arch/s390-07-03-topology-fix.diff
|
||||
# The s390-07-04-dasd-failfast.patch is moved after the
|
||||
# patches.fixes/scsi-enhance-error-codes patch as the s390
|
||||
# patch is dependent on the error-codes patch.
|
||||
|
||||
patches.arch/s390-symmetrix-ioctl.patch
|
||||
patches.arch/s390-personality-mask.patch
|
||||
@ -378,6 +405,9 @@
|
||||
patches.fixes/grab-swap-token-oops
|
||||
patches.fixes/mm-madvise-fix.patch
|
||||
patches.fixes/slab-alloc_slabmgmt-fix.patch
|
||||
patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch
|
||||
patches.fixes/s390-lru_add_drain_all.patch
|
||||
patches.fixes/mm-lockless-pagecache-barrier.patch
|
||||
|
||||
patches.fixes/loop-barriers
|
||||
patches.fixes/loop-barriers2
|
||||
@ -388,7 +418,11 @@
|
||||
patches.suse/file-capabilities-add-file_caps-switch.diff
|
||||
patches.suse/file-capabilities-disable-by-default.diff
|
||||
patches.fixes/block-sanitize-invalid-partition-table-entries
|
||||
patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch
|
||||
|
||||
########################################################
|
||||
# CPU scheduler
|
||||
########################################################
|
||||
patches.fixes/bug-437171_1_sched_clock_lock.patch
|
||||
patches.fixes/bug-437171_2_sched_delta_weight.patch
|
||||
patches.fixes/bug-437171_3_rework_wakeup_preemption.patch
|
||||
@ -438,6 +472,7 @@
|
||||
patches.arch/0008-sony-laptop-fingers-off-backlight.patch
|
||||
patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch
|
||||
patches.arch/thinkpad_fingers_off_backlight_igd.patch
|
||||
patches.arch/thinkpad_acpi-hotkey-notify-fix
|
||||
patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch
|
||||
|
||||
patches.arch/acpi-dock-fix-eject-request-process.patch
|
||||
@ -455,7 +490,6 @@
|
||||
|
||||
patches.fixes/acpi_use_acpi_exception.patch
|
||||
patches.fixes/fujisu_laptop_fix_section_mismatch.patch
|
||||
patches.fixes/acpi-set-SCI_EN-on-MacBook.patch
|
||||
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch
|
||||
|
||||
# some .28 fixes:
|
||||
@ -471,6 +505,9 @@
|
||||
patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch
|
||||
patches.arch/acpi_processor_cleanups.patch
|
||||
|
||||
patches.suse/acpi_osi_sle11_ident.patch
|
||||
patches.fixes/acpi_irq_quirk_pci_irq_derive.patch
|
||||
|
||||
########################################################
|
||||
# CPUFREQ
|
||||
########################################################
|
||||
@ -492,6 +529,7 @@
|
||||
########################################################
|
||||
# TIOCGDEV - suse special
|
||||
patches.fixes/tiocgdev
|
||||
patches.suse/mm-increase-dirty-limits.patch
|
||||
|
||||
########################################################
|
||||
# Networking, IPv6
|
||||
@ -500,7 +538,6 @@
|
||||
patches.fixes/vlan-gso-size-fix
|
||||
patches.fixes/pkt_sched_multiq_support
|
||||
patches.fixes/pkt_action-skbedit
|
||||
patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch
|
||||
|
||||
########################################################
|
||||
# NFS
|
||||
@ -522,6 +559,7 @@
|
||||
########################################################
|
||||
patches.suse/ext3-barrier-default
|
||||
patches.suse/ext2-fsync-err
|
||||
patches.fixes/ext3-mark-super-uptodate
|
||||
|
||||
########################################################
|
||||
# ext4
|
||||
@ -552,6 +590,7 @@
|
||||
patches.fixes/reiserfs-prealloc-fix
|
||||
patches.fixes/reiserfs-commit-ids-unsigned-ints
|
||||
|
||||
|
||||
# Better error handling and reporting
|
||||
patches.suse/reiserfs-buffer-info-for-balance.diff
|
||||
patches.suse/reiserfs-consistent-messages.diff
|
||||
@ -592,6 +631,7 @@
|
||||
patches.fixes/reiserfs-varargs-fix
|
||||
patches.fixes/reiserfs-error-buffer-locking
|
||||
patches.fixes/reiserfs-debug-1036
|
||||
patches.suse/reiserfs-barrier-default
|
||||
|
||||
########################################################
|
||||
# ocfs2
|
||||
@ -599,6 +639,7 @@
|
||||
|
||||
# fs/dlm fixes
|
||||
patches.fixes/dlm-allow-multiple-lockspaces.patch
|
||||
patches.fixes/dlm-fix-shutdown-cleanup.patch
|
||||
|
||||
# Extended Attribute Support
|
||||
patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch
|
||||
@ -724,6 +765,7 @@
|
||||
patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation
|
||||
patches.suse/xfs-check-for-valid-transaction-headers-in-recovery
|
||||
patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero
|
||||
patches.fixes/xfs-barrier-fix.patch
|
||||
|
||||
########################################################
|
||||
# novfs
|
||||
@ -789,6 +831,9 @@
|
||||
patches.drivers/bnx2x-eeh.patch
|
||||
patches.drivers/bnx2-Add-bnx2_shutdown_chip
|
||||
patches.drivers/bnx2-check-running.patch
|
||||
patches.drivers/bnx2-Add-PCI-ID-for-5716S
|
||||
patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_
|
||||
patches.drivers/bnx2x-version-update.patch
|
||||
|
||||
patches.drivers/ixgbe-fcoe-bugfixes
|
||||
patches.drivers/sgi-ioc4-request-submodules
|
||||
@ -798,6 +843,7 @@
|
||||
patches.arch/x86_uv_early_detect.patch
|
||||
patches.arch/x86_sgi_uv_early_detect_oem.patch
|
||||
patches.fixes/uv-redundant-creation-of-proc-dir
|
||||
patches.fixes/uv-remove-erroneous-BAU-init
|
||||
|
||||
|
||||
# Add support for Montevina hardware; series mainlined 2.6.26
|
||||
@ -846,6 +892,10 @@
|
||||
patches.drivers/libata-pata_sch-slave-poss
|
||||
patches.drivers/libata-ata_piix-clear-spurious-IRQ
|
||||
patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend
|
||||
patches.drivers/libata-pata_hpt366-fix-clock-detection
|
||||
patches.drivers/libata-pata_hpt366-fix-cable-detection
|
||||
patches.drivers/libata-pata_hpt366-no-ATAPI-DMA
|
||||
patches.drivers/libata-pata_hpt366-reimplement-mode-programming
|
||||
|
||||
# Block layer fixes
|
||||
patches.fixes/block-use-bio_has_data
|
||||
@ -872,9 +922,18 @@
|
||||
patches.drivers/block-del-timer-after-dequeue
|
||||
patches.fixes/blk-leave-sync-timer-running
|
||||
patches.drivers/block-internal-dequeue-shouldnt-start-timer
|
||||
patches.fixes/block-integrity-update
|
||||
patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue
|
||||
patches.fixes/blk-move-unplug_work-init
|
||||
patches.fixes/blk-get-extra-reference-before-unmap
|
||||
|
||||
patches.drivers/cciss-driver-panic-on-volume-delete
|
||||
|
||||
patches.fixes/scsi-misc-git-update
|
||||
# The s390-07-04-dasd-failfast.patch must follow the
|
||||
# scsi-enhance-error-codes patch for dependency reasons
|
||||
patches.fixes/scsi-enhance-error-codes
|
||||
patches.arch/s390-07-04-dasd-failfast.patch
|
||||
patches.fixes/scsi-terminate-target-reset
|
||||
patches.fixes/sd-needs-updating
|
||||
patches.fixes/scsi-inquiry-too-short-ratelimit
|
||||
@ -906,6 +965,8 @@
|
||||
patches.drivers/lpfc-8.2.8.4-update
|
||||
patches.drivers/lpfc-8.2.8.7-update
|
||||
patches.drivers/lpfc-8.2.8.9-update
|
||||
patches.drivers/lpfc-8.2.8.10-update
|
||||
patches.drivers/lpfc-8.2.8.11-update
|
||||
patches.drivers/qla2xxx-8.02.01-k8-update
|
||||
patches.drivers/qla2xxx-8.02.01-k9-update
|
||||
patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update
|
||||
@ -914,6 +975,7 @@
|
||||
patches.drivers/mpt-fusion-4.16.00.00-update
|
||||
patches.drivers/qla4xxx-sles11-update
|
||||
patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update
|
||||
patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update
|
||||
patches.fixes/scsi-skip-nonscsi-device-for-dma
|
||||
patches.fixes/scsi-dh-rdac-set-default-ownership
|
||||
patches.fixes/scsi-dh-rdac-retry-mode-select
|
||||
@ -926,8 +988,20 @@
|
||||
patches.fixes/scsi-dh-rdac-initialize-passive-path
|
||||
patches.fixes/scsi-fixup-failfast-definitions
|
||||
patches.fixes/scsi-remove-scmd-timeout
|
||||
patches.fixes/scsi-check-host-lookup-failure
|
||||
patches.fixes/scsi_dh-add-lsi-ids-to-rdac
|
||||
patches.suse/scsi-check-removed-device-for-offline
|
||||
patches.fixes/fc_transport-devloss-callback-restore
|
||||
patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION
|
||||
patches.fixes/scsi-refactor-busy-processing
|
||||
patches.fixes/scsi-fix-hang-in-starved-list-processing
|
||||
patches.fixes/scsi-call-unprep_request-under-lock
|
||||
|
||||
patches.drivers/ibmvfc-async-events-oops
|
||||
patches.drivers/ibmvfc-add_sync.patch
|
||||
patches.drivers/ibmvfc-host_init_delay.patch
|
||||
patches.drivers/ibmvfc-improve_sync_events.patch
|
||||
patches.drivers/ibmvfc-abort-response.patch
|
||||
|
||||
# Remaining SCSI patches (garloff)
|
||||
patches.suse/scsi-error-test-unit-ready-timeout
|
||||
@ -935,6 +1009,7 @@
|
||||
patches.fixes/proc-scsi-scsi-fix.diff
|
||||
|
||||
patches.fixes/scsi-ibmvscsi-show-config.patch
|
||||
patches.fixes/scsi-ibmvscsi-can_queue_fix.patch
|
||||
patches.suse/scsi-scsi_transport_srp-shost_data.patch
|
||||
# bnc#362850
|
||||
patches.fixes/sd_liberal_28_sense_invalid.diff
|
||||
@ -942,18 +1017,21 @@
|
||||
patches.drivers/intel-ibex-peak-device-ids.patch
|
||||
patches.drivers/intel-ibex-peak-device-support.patch
|
||||
|
||||
########################################################
|
||||
# DRM/Video
|
||||
########################################################
|
||||
patches.drivers/via-unichrome-drm-bugfixes.patch
|
||||
|
||||
########################################################
|
||||
# Network
|
||||
########################################################
|
||||
patches.drivers/ehea.patch
|
||||
patches.drivers/ehea-modinfo.patch
|
||||
patches.fixes/tulip-quad-NIC-ifdown
|
||||
patches.suse/nameif-track-rename.patch
|
||||
patches.drivers/atl2-add-atl2-network-driver.patch
|
||||
patches.fixes/tg3-fix-default-wol.patch
|
||||
|
||||
# cxgb3 fixed requested by IBM bnc#446739
|
||||
|
||||
patches.fixes/cxgb3_fix_race_in_EEH
|
||||
patches.fixes/cxgb3-remove-duplicate-tests-in-lro
|
||||
patches.drivers/cxgb3-private-iscsi-ip-addresses
|
||||
patches.drivers/cxgb3-get_drvinfo-deadlock.patch
|
||||
|
||||
@ -968,11 +1046,14 @@
|
||||
patches.drivers/cxgb3-update-driver-version
|
||||
patches.drivers/cxgb3-eeprom-read-fixes.patch
|
||||
|
||||
patches.fixes/hso_killswitch.patch
|
||||
|
||||
########################################################
|
||||
# Wireless Networking
|
||||
########################################################
|
||||
patches.suse/wireless-no-aes-select
|
||||
patches.fixes/ipw2200-send-noassoc.patch
|
||||
patches.fixes/ath5k-ignore-calibration-return-value.patch
|
||||
|
||||
|
||||
########################################################
|
||||
@ -982,11 +1063,20 @@
|
||||
patches.drivers/open-iscsi-offloading-support
|
||||
patches.drivers/cxgb3i
|
||||
patches.drivers/cxgb3i-fixed-offload-array-size
|
||||
patches.drivers/cxgb3i_ddp.patch
|
||||
|
||||
########################################################
|
||||
# PCI and PCI hotplug
|
||||
########################################################
|
||||
patches.fixes/pci_aspm_check_endless_loop.patch
|
||||
patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch
|
||||
patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch
|
||||
patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch
|
||||
patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch
|
||||
patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch
|
||||
patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch
|
||||
patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch
|
||||
patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch
|
||||
patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch
|
||||
|
||||
########################################################
|
||||
# sysfs / driver core
|
||||
@ -1003,6 +1093,7 @@
|
||||
# USB
|
||||
########################################################
|
||||
patches.suse/usb-storage-disable-delay.patch
|
||||
patches.suse/usb_correct_config_ti_04b3_4543.diff
|
||||
|
||||
########################################################
|
||||
# I2C
|
||||
@ -1030,14 +1121,11 @@
|
||||
patches.drivers/alsa-hda-sigmatel-update
|
||||
patches.drivers/alsa-hda-via-update
|
||||
patches.drivers/alsa-hda-via-rec-fix
|
||||
patches.drivers/alsa-hda-hp-mobile-fix
|
||||
patches.drivers/alsa-hda-sigmatel-spdif-fix
|
||||
patches.drivers/alsa-hda-realtek-mic-automute-fix
|
||||
patches.drivers/alsa-hda-realtek-alc269-dmic
|
||||
patches.drivers/alsa-hda-alc269-fsc-amilo
|
||||
patches.drivers/alsa-hda-acer-quirk
|
||||
patches.drivers/alsa-hda-proc-gpio-fix
|
||||
patches.drivers/alsa-hda-alc888-medion-add
|
||||
patches.drivers/alsa-hda-hp-3013-master-fix
|
||||
patches.drivers/alsa-hda-dell-studio-probe-fix
|
||||
patches.drivers/alsa-hda-stac9200-missing-mux-capture
|
||||
@ -1053,16 +1141,22 @@
|
||||
patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix
|
||||
patches.drivers/alsa-hda-stac-hp-gpio-switch-fix
|
||||
patches.drivers/alsa-hda-stac-dell-m4-3-quirk
|
||||
patches.drivers/alsa-hda-dell-studio-15-quirk
|
||||
patches.drivers/alsa-hda-spdif-bits-cache-fix
|
||||
patches.drivers/alsa-hda-stac-yet-more-fixes
|
||||
patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch
|
||||
patches.drivers/alsa-hda-dell-studio-1535-quirk
|
||||
patches.drivers/alsa-hda-dell-92hd73xx-models
|
||||
patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk
|
||||
patches.drivers/alsa-hda-hp-6730b-quirk
|
||||
patches.drivers/alsa-hda-92hd73x-desktop-fixes
|
||||
patches.drivers/alsa-hda-hp-dv7-quirk
|
||||
patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back
|
||||
patches.drivers/alsa-hda-hp2230s-quirk
|
||||
patches.drivers/alsa-hda-ad1882-id-typo-fix
|
||||
patches.drivers/alsa-hda-sigmatel-add-missing-terminators
|
||||
patches.drivers/alsa-emu10k1-audigy-fixes
|
||||
patches.drivers/alsa-powermac-ibook-g4-mic-fix
|
||||
patches.drivers/alsa-ca0106-pm-support
|
||||
patches.drivers/alsa-ca0106-capture-no-44khz
|
||||
patches.drivers/alsa-caiaq-midi-oops-fix
|
||||
|
||||
########################################################
|
||||
# Other driver fixes
|
||||
@ -1077,15 +1171,12 @@
|
||||
patches.suse/raw_device_max_minors_param.diff
|
||||
patches.suse/no-partition-scan
|
||||
|
||||
patches.drivers/cell_edac.patch
|
||||
patches.fixes/v4l-dvb-avoid-writing-outside-array
|
||||
patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch
|
||||
|
||||
|
||||
########################################################
|
||||
# Other drivers we have added to the tree
|
||||
########################################################
|
||||
patches.drivers/via-framebuffer-driver.patch
|
||||
patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch
|
||||
|
||||
########################################################
|
||||
@ -1103,9 +1194,20 @@
|
||||
patches.suse/dm-barrier-single-device
|
||||
patches.fixes/dm-mpath-reattach-dh
|
||||
patches.fixes/dm-mpath-NULL-pgpath-in-activate_path
|
||||
patches.suse/dm-mpath-leastpending-path
|
||||
patches.suse/dm-mpath-leastpending-path-update
|
||||
patches.suse/dm-mpath-null-pgs
|
||||
patches.fixes/dm-table-switch-to-readonly
|
||||
patches.suse/dm-mpath-add-start-io
|
||||
patches.suse/dm-mpath-queue-length-load-balancing
|
||||
patches.suse/dm-mpath-tracking-nr-bytes
|
||||
patches.suse/dm-mpath-service-time-load-balancing
|
||||
patches.suse/dm-block-integrity
|
||||
patches.fixes/blk-set-segment-boundary-mask
|
||||
patches.fixes/dm-mpath-send-activate-to-every-path
|
||||
patches.suse/dm-mpath-accept-failed-paths
|
||||
patches.fixes/dm-avoid-put-table-dm_any_congested
|
||||
patches.fixes/dm-unbind-drop-ref
|
||||
patches.fixes/dm-table-ref-count
|
||||
|
||||
########################################################
|
||||
# md
|
||||
@ -1113,6 +1215,8 @@
|
||||
patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch
|
||||
patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch
|
||||
patches.suse/md-notify-when-stopped
|
||||
patches.fixes/md-disable-recovery-on-faulty-degraded-array
|
||||
patches.fixes/md-bitmap-read-do-not-overflow
|
||||
|
||||
|
||||
##########################################################
|
||||
@ -1176,6 +1280,9 @@
|
||||
patches.apparmor/apparmor-rlimits.diff
|
||||
patches.apparmor/apparmor-2.6.25.diff
|
||||
patches.apparmor/apparmor-ptrace-2.6.27.diff
|
||||
patches.apparmor/fix-complain.diff
|
||||
patches.apparmor/fix-security-param.diff
|
||||
patches.apparmor/fork-tracking.diff
|
||||
patches.apparmor/export-security_inode_permission-for-aufs
|
||||
|
||||
########################################################
|
||||
@ -1224,8 +1331,11 @@
|
||||
# cgroups
|
||||
########################################################
|
||||
patches.suse/cgroup-freezer.patch
|
||||
patches.fixes/cgroups-suppress-cloning-warning.patch
|
||||
|
||||
patches.suse/panic-on-io-nmi.diff
|
||||
|
||||
patches.suse/cgroup-disable-memory.patch
|
||||
########################################################
|
||||
# Tracing
|
||||
########################################################
|
||||
@ -1298,12 +1408,14 @@
|
||||
patches.suse/SoN-24-emergency-nf_queue.patch
|
||||
patches.suse/SoN-25-netvm.patch
|
||||
patches.suse/SoN-26-mm-swapfile.patch
|
||||
patches.suse/SoN-fix-sync
|
||||
patches.suse/SoN-27-mm-page_file_methods.patch
|
||||
patches.suse/SoN-28-nfs-swapcache.patch
|
||||
patches.suse/SoN-29-nfs-swapper.patch
|
||||
patches.suse/SoN-30-nfs-swap_ops.patch
|
||||
patches.suse/SoN-31-nfs-alloc-recursions.patch
|
||||
patches.fixes/nfs-write.c-bug-removal.patch
|
||||
patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch
|
||||
|
||||
########################################################
|
||||
# Staging tree patches
|
||||
@ -1340,6 +1452,7 @@
|
||||
patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch
|
||||
patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch
|
||||
patches.drivers/staging-add-rtl8187se-driver.patch
|
||||
patches.drivers/staging-add-rt2870-wireless-driver.patch
|
||||
|
||||
########################################################
|
||||
# You'd better have a good reason for adding a patch
|
||||
@ -1394,6 +1507,8 @@
|
||||
patches.xen/746-pirq-status-page.patch
|
||||
patches.xen/747-x86-undo-mfn-limit.patch
|
||||
patches.xen/748-x86-ioapic-cleanup.patch
|
||||
patches.xen/761-highpte.patch
|
||||
patches.xen/762-xencons-hvc.patch
|
||||
|
||||
# changes outside arch/{i386,x86_64}/xen
|
||||
patches.xen/xen3-fixup-kconfig
|
||||
@ -1416,6 +1531,8 @@
|
||||
patches.xen/xen3-patch-2.6.27.3-4
|
||||
patches.xen/xen3-patch-2.6.27.4-5
|
||||
patches.xen/xen3-patch-2.6.27.5-6
|
||||
patches.xen/xen3-patch-2.6.27.7-8
|
||||
patches.xen/xen3-patch-2.6.27.8-9
|
||||
patches.xen/xen3-seccomp-disable-tsc-option
|
||||
patches.xen/xen3-rwlocks-enable-interrupts
|
||||
patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922
|
||||
@ -1430,11 +1547,12 @@
|
||||
patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch
|
||||
patches.xen/xen3-panic-on-io-nmi.diff
|
||||
patches.xen/xen3-intel-ibex-peak-device-ids.patch
|
||||
patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch
|
||||
patches.xen/xen3-sysfs-crash-debugging.patch
|
||||
patches.xen/xen3-stack-unwind
|
||||
patches.xen/xen3-x86_64-unwind-annotations
|
||||
patches.xen/xen3-perfmon2.patch
|
||||
patches.xen/xen3-perfmon2_remove_syscalls.patch
|
||||
patches.xen/xen3-perfmon2-remove_syscalls.patch
|
||||
|
||||
# bugfixes and enhancements
|
||||
patches.xen/xen-balloon-max-target
|
||||
@ -1466,6 +1584,7 @@
|
||||
patches.xen/xen-x86-machphys-prediction
|
||||
patches.xen/xen-x86-no-lazy-tlb
|
||||
patches.xen/xen-x86-exit-mmap
|
||||
patches.xen/xen-x86-exports
|
||||
patches.xen/xen-i386-panic-on-oops
|
||||
patches.xen/xen-x86_64-pgd-pin
|
||||
patches.xen/xen-x86_64-pgd-alloc-order
|
||||
|
@ -738,7 +738,9 @@
|
||||
kernel/drivers/md/dm-log
|
||||
kernel/drivers/md/dm-region_hash
|
||||
kernel/drivers/md/dm-round-robin # Round-robin path selector
|
||||
kernel/drivers/md-dm-leastpending-path # Least pending path selector
|
||||
kernel/drivers/md/dm-leastpending # Least pending path selector
|
||||
kernel/drivers/md/dm-queue-length # Queue-lenght oriented dynamic load balancer
|
||||
kernel/drivers/md/dm-service-time # Service-time oriented dynamic load balancer
|
||||
kernel/drivers/md/dm-snapshot # device-mapper snapshot target
|
||||
kernel/drivers/md/dm-zero # device-mapper dummy target returning zeros
|
||||
kernel/drivers/md/faulty
|
||||
@ -1985,7 +1987,8 @@
|
||||
kernel/fs/udf/udf # Universal Disk Format Filesystem
|
||||
kernel/fs/ufs/ufs
|
||||
kernel/fs/vfat/vfat
|
||||
kernel/fs/xfs/xfs # SGI-XFS CVS-2004-03-08_06:00_UTC with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled, supportable?
|
||||
kernel/fs/xfs/dmapi/xfs_dmapi
|
||||
kernel/fs/xfs/xfs
|
||||
kernel/kdb/modules/kdbm_debugtypes
|
||||
kernel/kdb/modules/kdbm_pg
|
||||
kernel/kdb/modules/kdbm_sched
|
||||
|
218
symsets.pl
218
symsets.pl
@ -1,30 +1,145 @@
|
||||
#!/usr/bin/env perl
|
||||
=head1 NAME
|
||||
|
||||
symsets.pl - tool to generate symsets for the kernel packages
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
symsets.pl --list-exported-symbols modules...
|
||||
|
||||
symsets.pl --generate-symsets [--reference=DIR] --output-dir=DIR modules...
|
||||
|
||||
symsets.pl --list-symsets [--reference=DIR] modules...
|
||||
|
||||
symsets.pl --check-kabi --reference=DIR modules...
|
||||
|
||||
=head1 OPTIONS
|
||||
|
||||
=head3 MODE OPTIONS
|
||||
|
||||
One of the following options has to be selected:
|
||||
|
||||
=over
|
||||
|
||||
=item B<--list-exported-symbols>
|
||||
|
||||
List symbols exported by modules in a Module.symvers style format.
|
||||
|
||||
=item B<--generate-symsets>
|
||||
|
||||
Group exported symbols into symsets. Symbols from modules from the same
|
||||
directory end up in one symset. This option requires B<--output-dir>.
|
||||
|
||||
=item B<--list-symsets>
|
||||
|
||||
Like B<--generate-symsets>, but only print the symset names on stdout.
|
||||
|
||||
=item B<--check-kabi>
|
||||
|
||||
Check for kabi changes. This requires B<--reference>.
|
||||
|
||||
=back
|
||||
|
||||
=head3 OTHER OPTIONS
|
||||
|
||||
=over
|
||||
|
||||
=item B<-v, --verbose>
|
||||
|
||||
Increase verbosity.
|
||||
|
||||
=item B<--symvers-file=Module.symvers>
|
||||
|
||||
Load built-in symbols from Module.symvers. Only symbols provided by the main
|
||||
kernel image (marked as vmlinux or built-in) are read from this file.
|
||||
|
||||
=item B<--modules=FILE>
|
||||
|
||||
Read list of modules from FILE instead of command line. This option can be used
|
||||
multiple times to read modules from multiple files.
|
||||
|
||||
=item B<--required-modules=FILE>
|
||||
|
||||
List of modules that are installed by packages required by this package. If
|
||||
a module moves from subpackage A to subpackage B, this can result in a changed
|
||||
symset checksum in A. Together with B<--reference>, this option ensures that
|
||||
the old checksum is provided in the subpackage that installs or requires
|
||||
all modules from the symset.
|
||||
|
||||
=item B<--reference=DIR>
|
||||
|
||||
Load symsets of a previous kernel package from DIR and add them to the output
|
||||
if the symbols are still provided by this kernel package.
|
||||
|
||||
=item B<--output-dir=DIR>
|
||||
|
||||
Write symsets into DIR (B<--generate-symsets> only).
|
||||
|
||||
=item B<--max-badness=NUM>
|
||||
|
||||
Set maximum allowed badness to NUM. Meaningful values are 4, 6, 8, 15 or 31
|
||||
(B<--check-kabi> only).
|
||||
|
||||
=item B<--commonsyms=FILE>
|
||||
|
||||
Read common symbols from FILE. Badness for changes to common symbols is
|
||||
incremented by 8 (the resulting badness is 16 by default). (B<--check-kabi>
|
||||
only).
|
||||
|
||||
=item B<--usedsyms=FILE>
|
||||
|
||||
Read used symbols from FILE. Badness for changes to used symbols is incremented
|
||||
by 16 (the resulting badness is 24 by default). (B<--check-kabi> only).
|
||||
|
||||
=item B<--severities=FILE>
|
||||
|
||||
Read a table of kabi change severities from FILE. Each line consists of a
|
||||
GLOB-SEVERITY pair separated by whitespace. Changes in modules matching GLOB
|
||||
will have severity SEVERITY instead of the default 8. (B<--check-kabi> only).
|
||||
|
||||
=back
|
||||
|
||||
=cut
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use diagnostics;
|
||||
#use diagnostics;
|
||||
|
||||
use Digest::MD5 qw(md5_hex);
|
||||
use Getopt::Long;
|
||||
use Data::Dumper;
|
||||
|
||||
|
||||
our $usage =
|
||||
eval { require Pod::Usage; };
|
||||
if ($@) {
|
||||
sub pod2usage {
|
||||
my %opts = @_;
|
||||
print STDERR
|
||||
"Usage:
|
||||
$0 --list-exported-symbols ...
|
||||
$0 --generate-symsets [--reference=DIR] --output-dir=DIR ...
|
||||
$0 --list-symsets [--reference=DIR] ...
|
||||
$0 --check-kabi --reference=DIR ...
|
||||
symsets.pl --list-exported-symbols ...
|
||||
symsets.pl --generate-symsets [--reference=DIR] --output-dir=DIR ...
|
||||
symsets.pl --list-symsets [--reference=DIR] ...
|
||||
symsets.pl --check-kabi --reference=DIR ...
|
||||
|
||||
Install Pod::Usage for a better help message.
|
||||
";
|
||||
exit $opts{-exitval};
|
||||
}
|
||||
} else {
|
||||
Pod::Usage->import('pod2usage');
|
||||
}
|
||||
|
||||
|
||||
our ($opt_verbose);
|
||||
our $kabi_badness = 0;
|
||||
our (%commonsyms, %usedsyms, @severities);
|
||||
our ($opt_list_exp, $opt_gen_sets, $opt_list_sets, $opt_check_kabi) = (0,0,0,0);
|
||||
our ($opt_max_badness, $opt_commonsyms, $opt_usedsyms, $opt_severities);
|
||||
our ($opt_output_dir, $opt_reference, $opt_modules, $opt_symvers_file);
|
||||
our ($opt_symvers_file, $opt_reference);
|
||||
our ($opt_output_dir);
|
||||
|
||||
sub main {
|
||||
my $res = GetOptions(
|
||||
my (@modules, @pulled_modules);
|
||||
my $res = GetOptions(
|
||||
'verbose|v' => \$opt_verbose,
|
||||
|
||||
'list-exported-symbols' => \$opt_list_exp,
|
||||
'generate-symsets' => \$opt_gen_sets,
|
||||
'list-symsets' => \$opt_list_sets,
|
||||
@ -36,11 +151,14 @@ sub main {
|
||||
'severities=s' => \$opt_severities,
|
||||
|
||||
'symvers-file=s' => \$opt_symvers_file,
|
||||
'modules=s' => \$opt_modules,
|
||||
'modules=s' => sub { push(@modules, load_list($_[1])); },
|
||||
'required-modules=s' => sub { push(@pulled_modules, load_list($_[1])); },
|
||||
'reference=s' => \$opt_reference,
|
||||
|
||||
'output-dir=s' => \$opt_output_dir,
|
||||
'verbose|v' => \$opt_verbose,
|
||||
|
||||
'usage' => sub { pod2usage(-exitval => 0, -verbose => 0); },
|
||||
'help' => sub { pod2usage(-exitval => 0, -verbose => 1); },
|
||||
);
|
||||
# boring option checking
|
||||
my $opt_err = sub {
|
||||
@ -69,30 +187,18 @@ sub main {
|
||||
}
|
||||
}
|
||||
# get list of modules
|
||||
my @modules;
|
||||
if (defined($opt_modules)) {
|
||||
my $fh;
|
||||
if ($opt_modules eq '-') {
|
||||
open($fh, '<&STDIN');
|
||||
} else {
|
||||
open($fh, '<', $opt_modules) or die "Can't open module list $opt_modules: $!\n";
|
||||
}
|
||||
@modules = <$fh>;
|
||||
chomp(@modules);
|
||||
close($fh);
|
||||
} else {
|
||||
if (@modules == 0) {
|
||||
@modules = @ARGV;
|
||||
}
|
||||
if (@modules == 0) {
|
||||
&$opt_err("No modules supplied");
|
||||
}
|
||||
if (!$res) {
|
||||
print STDERR $usage;
|
||||
exit 1;
|
||||
pod2usage(-exitval => 1, -verbose => 0, -output => ">&2");
|
||||
}
|
||||
|
||||
# get list of exports
|
||||
my @exports;
|
||||
my (@exports, @pulled_exports);
|
||||
for my $file (@modules) {
|
||||
push(@exports, module_exports($file));
|
||||
}
|
||||
@ -103,6 +209,9 @@ sub main {
|
||||
print format_exports(@exports);
|
||||
exit 0;
|
||||
}
|
||||
for my $file (@pulled_modules) {
|
||||
push(@pulled_exports, module_exports($file));
|
||||
}
|
||||
|
||||
# generate symsets and optionally check kabi
|
||||
my (@ref, @sets);
|
||||
@ -113,7 +222,7 @@ sub main {
|
||||
load_kabi_files($opt_commonsyms, $opt_usedsyms, $opt_severities);
|
||||
}
|
||||
# records kabi breakage if $opt_check_kabi is set
|
||||
preserve_symsets(\@ref, \@sets);
|
||||
preserve_symsets(\@sets, \@ref, \@pulled_exports);
|
||||
}
|
||||
if ($opt_gen_sets) {
|
||||
write_symsets($opt_output_dir, @sets);
|
||||
@ -245,7 +354,7 @@ sub load_symsets {
|
||||
opendir(my $dh, $dir) or die "Error reading directory $dir: $!\n";
|
||||
for my $file (readdir($dh)) {
|
||||
next if $file =~ /^\.\.?$/;
|
||||
if (!-f "$dir/$file" || $file !~ /^(\w+)\.[0-9a-f]{16}$/) {
|
||||
if (!-f "$dir/$file" || $file !~ /^([\w-]+)\.[0-9a-f]{16}$/) {
|
||||
print STDERR "Ignoring unknown file $dir/$file\n";
|
||||
next;
|
||||
}
|
||||
@ -321,6 +430,22 @@ sub load_kabi_files {
|
||||
}
|
||||
}
|
||||
|
||||
# loads a list of filenames from file
|
||||
sub load_list {
|
||||
my ($file) = @_;
|
||||
my ($fh, @res);
|
||||
|
||||
if ($file eq '-') {
|
||||
open($fh, '<&STDIN');
|
||||
} else {
|
||||
open($fh, '<', $file) or die "Error opening $file: $!\n";
|
||||
}
|
||||
@res = <$fh>;
|
||||
chomp(@res);
|
||||
close($fh);
|
||||
return @res;
|
||||
}
|
||||
|
||||
# record kabi changes
|
||||
sub kabi_change {
|
||||
my $exp = shift;
|
||||
@ -346,9 +471,11 @@ sub kabi_change {
|
||||
|
||||
# check if all symbols from $old symsetlist are provided by $new symsetlist,
|
||||
# add compatible symsets to $new
|
||||
# $pulled_exports is a exportlist of modules, that are pulled as dependencies
|
||||
# of this package (thus also "provided" by this package).
|
||||
sub preserve_symsets {
|
||||
my ($old, $new) = @_;
|
||||
my (%symcrcs, %symsethashes);
|
||||
my ($new, $old, $pulled_exports) = @_;
|
||||
my (%symcrcs, %pulled_symcrcs, %symsethashes);
|
||||
|
||||
for my $set (@$new) {
|
||||
my $name = $set->[0];
|
||||
@ -358,6 +485,9 @@ sub preserve_symsets {
|
||||
$symcrcs{$exp->{sym}} = $exp->{crc};
|
||||
}
|
||||
}
|
||||
for my $exp (@$pulled_exports) {
|
||||
$pulled_symcrcs{$exp->{sym}} = $exp->{crc};
|
||||
}
|
||||
for my $set (@$old) {
|
||||
my $name = $set->[0];
|
||||
my $exports = $set->[1];
|
||||
@ -366,22 +496,36 @@ sub preserve_symsets {
|
||||
next;
|
||||
}
|
||||
my $compatible = 1;
|
||||
my $oursyms = 0;
|
||||
for my $exp (@$exports) {
|
||||
if (!exists($symcrcs{$exp->{sym}})) {
|
||||
my $crc;
|
||||
if (exists($symcrcs{$exp->{sym}})) {
|
||||
$oursyms++;
|
||||
$crc = $symcrcs{$exp->{sym}};
|
||||
} elsif (exists($pulled_symcrcs{$exp->{sym}})) {
|
||||
$crc = $pulled_symcrcs{$exp->{sym}};
|
||||
} else {
|
||||
kabi_change($exp, "missing");
|
||||
$compatible = 0;
|
||||
next;
|
||||
}
|
||||
if ($symcrcs{$exp->{sym}} ne $exp->{crc}) {
|
||||
kabi_change($exp, "crc changed to $symcrcs{$exp->{sym}}\n");
|
||||
if ($crc ne $exp->{crc}) {
|
||||
kabi_change($exp, "crc changed to $crc\n");
|
||||
$compatible = 0;
|
||||
}
|
||||
}
|
||||
if ($compatible) {
|
||||
print STDERR "KABI: symset $name.$hash preserved\n" if $opt_verbose;
|
||||
if ($oursyms == 0) {
|
||||
# this symset is fully provided by a package we require,
|
||||
# so do not duplicate it in our symsets
|
||||
next;
|
||||
}
|
||||
print STDERR "KABI: symset $name.$hash preserved\n"
|
||||
if $opt_verbose && $opt_check_kabi;
|
||||
push(@$new, $set);
|
||||
} else {
|
||||
print STDERR "KABI: symset $name.$hash is NOT preserved\n" if $opt_verbose;
|
||||
print STDERR "KABI: symset $name.$hash NOT preserved\n"
|
||||
if $opt_check_kabi;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user