2900f392d656f69ebc3b46fb65fbfcfe8ac0d758
[linux-2.6.git] / kernel.spec
1 %global __spec_install_pre %{___build_pre}
2
3 Summary: The Linux kernel
4
5 # For a stable, released kernel, released_kernel should be 1. For rawhide
6 # and/or a kernel built from an rc or git snapshot, released_kernel should
7 # be 0.
8 %define released_kernel 1
9
10 # Versions of various parts
11
12 # Polite request for people who spin their own kernel rpms:
13 # please modify the "buildid" define in a way that identifies
14 # that the kernel isn't the stock distribution kernel, for example,
15 # by setting the define to ".local" or ".bz123456"
16 #
17 # % define buildid .local
18
19 %define rhel 1
20 %if %{rhel}
21 %define distro_build 19
22 %define signmodules 1
23 %else
24 # fedora_build defines which build revision of this kernel version we're
25 # building. Rather than incrementing forever, as with the prior versioning
26 # setup, we set fedora_cvs_origin to the current cvs revision s/1.// of the
27 # kernel spec when the kernel is rebased, so fedora_build automatically
28 # works out to the offset from the rebase, so it doesn't get too ginormous.
29 #
30 # If you're building on a branch, the RCS revision will be something like
31 # 1.1205.1.1.  In this case we drop the initial 1, subtract fedora_cvs_origin
32 # from the second number, and then append the rest of the RCS string as is.
33 # Don't stare at the awk too long, you'll go blind.
34 %define fedora_cvs_origin   1462
35 %define fedora_cvs_revision() %2
36 %global distro_build %(echo %{fedora_cvs_origin}.%{fedora_cvs_revision $Revision: 1.1532 $} | awk -F . '{ OFS = "."; ORS = ""; print $3 - $1 ; i = 4 ; OFS = ""; while (i <= NF) { print ".", $i ; i++} }')
37 %define distro_build %{fedora_build}
38 %define signmodules 0
39 %endif
40
41 # if patch fuzzy patch applying will be forbidden
42 %define with_fuzzy_patches 0
43
44 # base_sublevel is the kernel version we're starting with and patching
45 # on top of -- for example, 2.6.22-rc7-git1 starts with a 2.6.21 base,
46 # which yields a base_sublevel of 21.
47 %define base_sublevel 32
48
49 ## If this is a released kernel ##
50 %if 0%{?released_kernel}
51
52 # Do we have a -stable update to apply?
53 %define stable_update 0
54 # Is it a -stable RC?
55 %define stable_rc 0
56 # Set rpm version accordingly
57 %if 0%{?stable_update}
58 %define stablerev .%{stable_update}
59 %define stable_base %{stable_update}
60 %if 0%{?stable_rc}
61 # stable RCs are incremental patches, so we need the previous stable patch
62 %define stable_base %(echo $((%{stable_update} - 1)))
63 %endif
64 %endif
65 %define rpmversion 2.6.%{base_sublevel}%{?stablerev}
66
67 ## The not-released-kernel case ##
68 %else
69 # The next upstream release sublevel (base_sublevel+1)
70 %define upstream_sublevel %(echo $((%{base_sublevel} + 1)))
71 # The rc snapshot level
72 %define rcrev 0
73 # The git snapshot level
74 %define gitrev 0
75 # Set rpm version accordingly
76 %define rpmversion 2.6.%{upstream_sublevel}
77 %endif
78 # Nb: The above rcrev and gitrev values automagically define Patch00 and Patch01 below.
79
80 # What parts do we want to build?  We must build at least one kernel.
81 # These are the kernels that are built IF the architecture allows it.
82 # All should default to 1 (enabled) and be flipped to 0 (disabled)
83 # by later arch-specific checks.
84
85 # The following build options are enabled by default.
86 # Use either --without <opt> in your rpmbuild command or force values
87 # to 0 in here to disable them.
88 #
89 # standard kernel
90 %define with_up        %{?_without_up:        0} %{?!_without_up:        1}
91 # kernel-smp (only valid for ppc 32-bit)
92 %define with_smp       %{?_without_smp:       0} %{?!_without_smp:       1}
93 # kernel-kdump
94 %define with_kdump     %{?_without_kdump:     0} %{?!_without_kdump:     1}
95 # kernel-debug
96 %define with_debug     %{?_without_debug:     0} %{?!_without_debug:     1}
97 # kernel-doc
98 %define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
99 # kernel-headers
100 %define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
101 # kernel-firmware
102 %define with_firmware  %{?_with_firmware:     0} %{?!_with_firmware:     1}
103 # tools/perf
104 %define with_perftool  %{?_without_perftool:  0} %{?!_without_perftool:  1}
105 # perf noarch subpkg
106 %define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
107 # kernel-debuginfo
108 %define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1}
109 # kernel-bootwrapper (for creating zImages from kernel + initrd)
110 %define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 1}
111 # Want to build a the vsdo directories installed
112 %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1}
113 # Use dracut instead of mkinitrd for initrd image generation
114 %define with_dracut       %{?_without_dracut:       0} %{?!_without_dracut:       1}
115 # Temporary variant: framepointer
116 %define with_framepointer       %{?_with_framepointer:  1} %{?!_with_framepointer:      0}
117
118 # Build the kernel-doc package, but don't fail the build if it botches.
119 # Here "true" means "continue" and "false" means "fail the build".
120 %if 0%{?released_kernel}
121 %define doc_build_fail false
122 %else
123 %define doc_build_fail true
124 %endif
125
126 # Control whether we perform a compat. check against published ABI.
127 %define with_kabichk   %{?_without_kabichk:   1} %{?!_without_kabichk: 0}
128 # Control whether we perform a compat. check against published ABI.
129 %define with_fips      %{?_without_fips:      0} %{?!_without_fips:      1}
130
131 # Additional options for user-friendly one-off kernel building:
132 #
133 # Only build the base kernel (--with baseonly):
134 %define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
135 # Only build the smp kernel (--with smponly):
136 %define with_smponly   %{?_with_smponly:      1} %{?!_with_smponly:      0}
137 # Only build the debug kernel (--with dbgonly):
138 %define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
139
140 # should we do C=1 builds with sparse
141 %define with_sparse     %{?_with_sparse:      1} %{?!_with_sparse:      0}
142
143 # Set debugbuildsenabled to 1 for production (build separate debug kernels)
144 #  and 0 for rawhide (all kernels are debug kernels).
145 # See also 'make debug' and 'make release'.
146 %define debugbuildsenabled 1
147
148 # Want to build a vanilla kernel build without any non-upstream patches?
149 # (well, almost none, we need nonintconfig for build purposes). Default to 0 (off).
150 %define with_vanilla %{?_with_vanilla: 1} %{?!_with_vanilla: 0}
151
152 # pkg_release is what we'll fill in for the rpm Release: field
153 %if 0%{?released_kernel}
154
155 %if 0%{?stable_rc}
156 %define stable_rctag .rc%{stable_rc}
157 %endif
158 %define pkg_release %{distro_build}%{?stable_rctag}%{?dist}%{?buildid}
159
160 %else
161
162 # non-released_kernel
163 %if 0%{?rcrev}
164 %define rctag .rc%rcrev
165 %else
166 %define rctag .rc0
167 %endif
168 %if 0%{?gitrev}
169 %define gittag .git%gitrev
170 %else
171 %define gittag .git0
172 %endif
173 %define pkg_release 0.%{distro_build}%{?rctag}%{?gittag}%{?dist}%{?buildid}
174
175 %endif
176
177 # The kernel tarball/base version
178 %define kversion 2.6.%{base_sublevel}
179
180 %define make_target bzImage
181
182 %define hdrarch %_target_cpu
183 %define asmarch %_target_cpu
184
185 %if 0%{!?nopatches:1}
186 %define nopatches 0
187 %endif
188
189 %if %{with_vanilla}
190 %define nopatches 1
191 %endif
192
193 %if %{nopatches}
194 %define with_bootwrapper 0
195 %define variant -vanilla
196 %else
197 %define variant_fedora -fedora
198 %endif
199
200 %define using_upstream_branch 0
201 %if 0%{?upstream_branch:1}
202 %define stable_update 0
203 %define using_upstream_branch 1
204 %define variant -%{upstream_branch}%{?variant_fedora}
205 %define pkg_release 0.%{distro_build}%{upstream_branch_tag}%{?dist}%{?buildid}
206 %endif
207
208 %if %{rhel}
209 %define pkg_release %{distro_build}%{?dist}%{?buildid}
210 %endif
211 %define KVERREL %{rpmversion}-%{pkg_release}.%{_target_cpu}
212
213 %if !%{debugbuildsenabled}
214 %define with_debug 0
215 %endif
216
217 %if !%{with_debuginfo}
218 %define _enable_debug_packages 0
219 %endif
220 %define debuginfodir /usr/lib/debug
221
222 %define with_pae 0
223
224 # if requested, only build base kernel
225 %if %{with_baseonly}
226 %define with_smp 0
227 %define with_kdump 0
228 %define with_debug 0
229 %endif
230
231 # if requested, only build smp kernel
232 %if %{with_smponly}
233 %define with_up 0
234 %define with_kdump 0
235 %define with_debug 0
236 %endif
237
238 # if requested, only build debug kernel
239 %if %{with_dbgonly}
240 %if %{debugbuildsenabled}
241 %define with_up 0
242 %endif
243 %define with_smp 0
244 %define with_pae 0
245 %define with_xen 0
246 %define with_kdump 0
247 %define with_perftool 0
248 %define with_framepointer 0
249 %endif
250
251 %define all_x86 i386 i686
252
253 %ifnarch %{all_x86} x86_64
254 %define with_framepointer 0
255 %endif
256
257 %if %{with_vdso_install}
258 # These arches install vdso/ directories.
259 %define vdso_arches %{all_x86} x86_64 ppc ppc64
260 %endif
261
262 # Overrides for generic default options
263
264 # only ppc and alphav56 need separate smp kernels
265 %ifnarch ppc alphaev56
266 %define with_smp 0
267 %endif
268
269 %ifarch s390x
270 %define with_kdump 1
271 %else
272 %define with_kdump 0
273 %endif
274
275 # don't do debug builds on anything but i686 and x86_64
276 %ifnarch i686 x86_64 s390x ppc64
277 %define with_debug 0
278 %endif
279
280 # only package docs noarch
281 %ifnarch noarch
282 %define with_doc 0
283 %define with_perf 0
284 %endif
285
286 # don't build noarch kernels or headers (duh)
287 %ifarch noarch
288 %define with_up 0
289 %define with_headers 0
290 %define all_arch_configs kernel-%{version}-*.config
291 %define with_firmware  %{?_without_firmware:  0} %{?!_without_firmware:  1}
292 %endif
293
294 # bootwrapper is only on ppc
295 %ifnarch ppc ppc64
296 %define with_bootwrapper 0
297 %endif
298
299 # sparse blows up on ppc64 alpha and sparc64
300 %ifarch ppc64 ppc alpha sparc64
301 %define with_sparse 0
302 %endif
303
304 # Per-arch tweaks
305
306 %ifarch %{all_x86}
307 %define asmarch x86
308 %define hdrarch i386
309 %define all_arch_configs kernel-%{version}-i?86*.config
310 %define image_install_path boot
311 %define kernel_image arch/x86/boot/bzImage
312 %endif
313
314 %ifarch x86_64
315 %define asmarch x86
316 %define all_arch_configs kernel-%{version}-x86_64*.config
317 %define image_install_path boot
318 %define kernel_image arch/x86/boot/bzImage
319 %endif
320
321 %ifarch ppc64
322 %define asmarch powerpc
323 %define hdrarch powerpc
324 %define all_arch_configs kernel-%{version}-ppc64*.config
325 %define image_install_path boot
326 %define make_target vmlinux
327 %define kernel_image vmlinux
328 %define kernel_image_elf 1
329 %endif
330
331 %ifarch s390
332 %define all_arch_configs kernel-%{kversion}-s390*.config
333 %define image_install_path boot
334 %define make_target image
335 %define kernel_image arch/s390/boot/image
336 %endif
337
338 %ifarch s390x
339 %define asmarch s390
340 %define hdrarch s390
341 %define all_arch_configs kernel-%{version}-s390x*.config
342 %define image_install_path boot
343 %define make_target image
344 %define kernel_image arch/s390/boot/image
345 %endif
346
347 %ifarch sparc
348 # We only build sparc headers since we dont support sparc32 hardware
349 %endif
350
351 %ifarch sparc64
352 %define asmarch sparc
353 %define all_arch_configs kernel-%{version}-sparc64*.config
354 %define make_target image
355 %define kernel_image arch/sparc/boot/image
356 %define image_install_path boot
357 %define with_perftool 0
358 %endif
359
360 %ifarch ppc
361 %define asmarch powerpc
362 %define hdrarch powerpc
363 %define all_arch_configs kernel-%{version}-ppc{-,.}*config
364 %define image_install_path boot
365 %define make_target vmlinux
366 %define kernel_image vmlinux
367 %define kernel_image_elf 1
368 %endif
369
370 %ifarch ia64
371 %define all_arch_configs kernel-%{version}-ia64*.config
372 %define image_install_path boot/efi/EFI/redhat
373 %define make_target compressed
374 %define kernel_image vmlinux.gz
375 %endif
376
377 %ifarch alpha alphaev56
378 %define all_arch_configs kernel-%{version}-alpha*.config
379 %define image_install_path boot
380 %define make_target vmlinux
381 %define kernel_image vmlinux
382 %endif
383
384 %ifarch %{arm}
385 %define all_arch_configs kernel-%{version}-arm*.config
386 %define image_install_path boot
387 %define hdrarch arm
388 %define make_target vmlinux
389 %define kernel_image vmlinux
390 %endif
391
392 %if %{nopatches}
393 # XXX temporary until last vdso patches are upstream
394 %define vdso_arches ppc ppc64
395 %endif
396
397 %if %{nopatches}%{using_upstream_branch}
398 # Ignore unknown options in our config-* files.
399 # Some options go with patches we're not applying.
400 %define oldconfig_target loose_nonint_oldconfig
401 %else
402 %define oldconfig_target nonint_oldconfig
403 %endif
404
405 # To temporarily exclude an architecture from being built, add it to
406 # %nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
407 # don't build kernel-headers then the new build system will no longer let
408 # us use the previous build of that package -- it'll just be completely AWOL.
409 # Which is a BadThing(tm).
410
411 # We don't build a kernel on i386; we only do kernel-headers there,
412 # and we no longer build for 31bit S390. Same for 32bit sparc and arm.
413 %define nobuildarches i386 i586 s390 sparc sparc64 ppc ia64 %{arm}
414
415 %ifarch %nobuildarches
416 %define with_up 0
417 %define with_smp 0
418 %define with_pae 0
419 %define with_kdump 0
420 %define with_debuginfo 0
421 %define with_perftool 0
422 %define _enable_debug_packages 0
423 %endif
424
425 %define with_pae_debug 0
426 %if %{with_pae}
427 %define with_pae_debug %{with_debug}
428 %endif
429
430 #
431 # Three sets of minimum package version requirements in the form of Conflicts:
432 # to versions below the minimum
433 #
434
435 #
436 # First the general kernel 2.6 required versions as per
437 # Documentation/Changes
438 #
439 %define kernel_dot_org_conflicts  ppp < 2.4.3-3, isdn4k-utils < 3.2-32, nfs-utils < 1.0.7-12, e2fsprogs < 1.37-4, util-linux < 2.12, jfsutils < 1.1.7-2, reiserfs-utils < 3.6.19-2, xfsprogs < 2.6.13-4, procps < 3.2.5-6.3, oprofile < 0.9.1-2
440
441 #
442 # Then a series of requirements that are distribution specific, either
443 # because we add patches for something, or the older versions have
444 # problems with the newer kernel or lack certain things that make
445 # integration in the distro harder than needed.
446 #
447 %define package_conflicts initscripts < 7.23, udev < 145-11, iptables < 1.3.2-1, ipw2200-firmware < 2.4, iwl4965-firmware < 228.57.2, selinux-policy-targeted < 1.25.3-14, squashfs-tools < 4.0, wireless-tools < 29-3
448
449 #
450 # The ld.so.conf.d file we install uses syntax older ldconfig's don't grok.
451 #
452 %define kernel_xen_conflicts glibc < 2.3.5-1, xen < 3.0.1
453
454 %define kernel_PAE_obsoletes kernel-smp < 2.6.17, kernel-xen <= 2.6.27-0.2.rc0.git6.fc10
455 %define kernel_PAE_provides kernel-xen = %{rpmversion}-%{pkg_release}
456
457 %ifarch x86_64
458 %define kernel_obsoletes kernel-xen <= 2.6.27-0.2.rc0.git6.fc10
459 %define kernel_provides kernel-xen = %{rpmversion}-%{pkg_release}
460 %endif
461
462 # We moved the drm include files into kernel-headers, make sure there's
463 # a recent enough libdrm-devel on the system that doesn't have those.
464 %define kernel_headers_conflicts libdrm-devel < 2.4.0-0.15
465
466 #
467 # Packages that need to be installed before the kernel is, because the %post
468 # scripts use them.
469 #
470 %define kernel_prereq  fileutils, module-init-tools, initscripts >= 8.11.1-1, kernel-firmware >= %{rpmversion}-%{pkg_release}, grubby >= 7.0.4-1
471 %if %{with_dracut}
472 %define initrd_prereq  dracut-kernel >= 002-18.git413bcf78
473 %else
474 %define initrd_prereq  mkinitrd >= 6.0.61-1
475 %endif
476
477 #
478 # This macro does requires, provides, conflicts, obsoletes for a kernel package.
479 #       %%kernel_reqprovconf <subpackage>
480 # It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
481 # macros defined above.
482 #
483 %define kernel_reqprovconf \
484 Provides: kernel = %{rpmversion}-%{pkg_release}\
485 Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\
486 Provides: kernel-drm = 4.3.0\
487 Provides: kernel-drm-nouveau = 15\
488 Provides: kernel-modeset = 1\
489 Provides: kernel-uname-r = %{KVERREL}%{?1:.%{1}}\
490 Requires(pre): %{kernel_prereq}\
491 Requires(pre): %{initrd_prereq}\
492 Requires(post): /sbin/new-kernel-pkg\
493 Requires(preun): /sbin/new-kernel-pkg\
494 Conflicts: %{kernel_dot_org_conflicts}\
495 Conflicts: %{package_conflicts}\
496 %{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
497 %{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
498 %{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
499 # We can't let RPM do the dependencies automatic because it'll then pick up\
500 # a correct but undesirable perl dependency from the module headers which\
501 # isn't required for the kernel proper to function\
502 AutoReq: no\
503 AutoProv: yes\
504 %{nil}
505
506 Name: kernel%{?variant}
507 Group: System Environment/Kernel
508 License: GPLv2
509 URL: http://www.kernel.org/
510 Version: %{rpmversion}
511 Release: %{pkg_release}
512 # DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
513 # SET %%nobuildarches (ABOVE) INSTEAD
514 ExclusiveArch: noarch %{all_x86} x86_64 ppc ppc64 ia64 sparc sparc64 s390 s390x alpha alphaev56 %{arm}
515 ExclusiveOS: Linux
516
517 %kernel_reqprovconf
518 %ifarch x86_64 sparc64
519 Obsoletes: kernel-smp
520 %endif
521
522
523 #
524 # List the packages used during the kernel build
525 #
526 BuildRequires: module-init-tools, patch >= 2.5.4, bash >= 2.03, sh-utils, tar
527 BuildRequires: bzip2, findutils, gzip, m4, perl, make >= 3.78, diffutils, gawk
528 BuildRequires: gcc >= 3.4.2, binutils >= 2.12, redhat-rpm-config
529 BuildRequires: net-tools, patchutils
530 %if %{with_doc}
531 BuildRequires: xmlto
532 BuildRequires: asciidoc
533 %endif
534 %if %{with_sparse}
535 BuildRequires: sparse >= 0.4.1
536 %endif
537 %if %{with_perftool}
538 BuildRequires: elfutils-libelf-devel zlib-devel binutils-devel
539 %endif
540 %if %{signmodules}
541 BuildRequires: gnupg
542 %endif
543 BuildRequires: python
544 %if %{with_fips}
545 BuildRequires: hmaccalc
546 %endif
547 %ifarch s390x
548 # Ensure glibc{,-devel} is installed so zfcpdump can be built
549 BuildRequires: glibc-static
550 %endif
551
552 BuildConflicts: rhbuildsys(DiskFree) < 7Gb
553
554 %define fancy_debuginfo 1
555
556 %if %{fancy_debuginfo}
557 # Fancy new debuginfo generation introduced in Fedora 8.
558 BuildRequires: rpm-build >= 4.4.2.1-4
559 %define debuginfo_args --strict-build-id
560 %endif
561
562 Source0: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-%{kversion}.tar.bz2
563
564 Source1: Makefile.common
565
566 %if 0%{?rcrev}
567 Source2: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/incr/patch-2.6.%{upstream_sublevel}-rc%{rcrev}.bz2
568 %if 0%{?gitrev}
569 Source3: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/incr/patch-2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.bz2
570 %endif
571 %endif
572
573 Source11: genkey
574 Source14: find-provides
575 Source15: merge.pl
576 Source16: perf
577 Source17: kabitool
578 Source18: check-kabi
579 Source19: extrakeys.pub
580
581 Source20: Makefile.config
582
583 Source30: Module.kabi_i686
584 Source31: Module.kabi_ppc64
585 Source32: Module.kabi_s390x
586 Source33: Module.kabi_x86_64
587
588 Source50: config-i686
589 Source51: config-s390x-kdump-rhel
590 Source52: config-generic
591 Source53: config-x86-generic-rhel
592 Source54: config-s390x-generic-rhel
593 Source55: config-x86-generic
594 Source56: config-s390x-rhel
595 Source57: config-powerpc64-kdump
596 Source58: config-nodebug
597 Source59: config-s390x
598 Source60: config-powerpc-generic-rhel
599 Source61: config-ia64-generic-rhel
600 Source62: config-s390x-kdump
601 Source63: config-nodebug-rhel
602 Source64: config-powerpc-generic
603 Source65: config-framepointer
604 Source66: config-i686-rhel
605 Source67: config-powerpc64-rhel
606 Source68: config-debug
607 Source69: config-x86_64-generic
608 Source70: config-x86_64-generic-rhel
609 Source71: config-debug-rhel
610 Source72: config-generic-rhel
611 Source73: config-powerpc64
612
613 Patch: Fedora-redhat-introduce-nonint_oldconfig-target.patch
614 Patch1: Fedora-build-introduce-AFTER_LINK-variable.patch
615 Patch2: Fedora-utrace-introduce-utrace-implementation.patch
616 Patch3: Fedora-hwmon-add-VIA-hwmon-temperature-sensor-support.patch
617 Patch4: Fedora-powerpc-add-modalias_show-operation.patch
618 Patch5: Fedora-execshield-introduce-execshield.patch
619 Patch6: Fedora-nfsd4-proots.patch
620 Patch7: Fedora-nfs-make-nfs4-callback-hidden.patch
621 Patch8: Fedora-usb-Allow-drivers-to-enable-USB-autosuspend-on-a-per-device-basis.patch
622 Patch9: Fedora-usb-enable-autosuspend-by-default-on-qcserial.patch
623 Patch10: Fedora-usb-enable-autosuspend-on-UVC-by-default.patch
624 Patch11: Fedora-acpi-Disable-brightness-switch-by-default.patch
625 Patch12: Fedora-acpi-Disable-firmware-video-brightness-change-by-default.patch
626 Patch13: Fedora-debug-print-common-struct-sizes-at-boot-time.patch
627 Patch14: Fedora-x86-add-option-to-control-the-NMI-watchdog-timeout.patch
628 Patch15: Fedora-debug-display-tainted-information-on-other-places.patch
629 Patch16: Fedora-debug-add-calls-to-print_tainted-on-spinlock-functions.patch
630 Patch17: Fedora-debug-add-would_have_oomkilled-procfs-ctl.patch
631 Patch18: Fedora-debug-always-inline-kzalloc.patch
632 Patch19: Fedora-pci-add-config-option-to-control-the-default-state-of-PCI-MSI-interrupts.patch
633 Patch20: Fedora-pci-sets-PCIE-ASPM-default-policy-to-POWERSAVE.patch
634 Patch21: Fedora-sound-disables-hda-beep-by-default.patch
635 Patch22: Fedora-sound-hda-intel-prealloc-4mb-dmabuffer.patch
636 Patch23: Fedora-input-remove-unwanted-messages-on-spurious-events.patch
637 Patch24: Fedora-floppy-remove-the-floppy-pnp-modalias.patch
638 Patch25: Fedora-input-remove-pcspkr-modalias.patch
639 Patch26: Fedora-serial-Enable-higher-baud-rates-for-16C95x.patch
640 Patch27: Fedora-serio-disable-error-messages-when-i8042-isn-t-found.patch
641 Patch28: Fedora-pci-silence-some-PCI-resource-allocation-errors.patch
642 Patch29: Fedora-fb-disable-fbcon-logo-with-parameter.patch
643 Patch30: Fedora-crash-add-crash-driver.patch
644 Patch31: Fedora-pci-cacheline-sizing.patch
645 Patch32: Fedora-e1000-add-quirk-for-ich9.patch
646 Patch33: Fedora-drm-intel-big-hammer.patch
647 Patch34: Fedora-acpi-be-less-verbose-about-old-BIOSes.patch
648 Patch35: Fedora-rfkill-add-support-to-a-key-to-control-all-radios.patch
649 Patch36: redhat-adding-redhat-directory.patch
650 Patch37: redhat-Importing-config-options.patch
651 Patch38: redhat-s390x-adding-zfcpdump-application-used-by-s390x-kdump-kernel.patch
652 Patch39: redhat-Include-FIPS-required-checksum-of-the-kernel-image.patch
653 Patch40: redhat-Silence-tagging-messages-by-rh-release.patch
654 Patch41: redhat-Disabling-debug-options-for-beta.patch
655 Patch42: redhat-kernel-requires-udev-145-11-or-newer.patch
656 Patch43: redhat-tagging-2-6-31-50-el6.patch
657 Patch44: redhat-updating-lastcommit-for-2-6-31-50.patch
658 Patch45: block-get-rid-of-the-WRITE_ODIRECT-flag.patch
659 Patch46: block-aio-implement-request-batching.patch
660 Patch47: kdump-x86-add-CONFIG_KEXEC_AUTO_RESERVE.patch
661 Patch48: kdump-x86-implement-crashkernel-auto.patch
662 Patch49: kdump-ia64-add-CONFIG_KEXEC_AUTO_RESERVE.patch
663 Patch50: kdump-ia64-implement-crashkernel-auto.patch
664 Patch51: kdump-powerpc-add-CONFIG_KEXEC_AUTO_RESERVE.patch
665 Patch52: kdump-powerpc-implement-crashkernel-auto.patch
666 Patch53: kdump-doc-update-the-kdump-document.patch
667 Patch54: kdump-kexec-allow-to-shrink-reserved-memory.patch
668 Patch55: kernel-Set-panic_on_oops-to-1.patch
669 Patch56: redhat-fix-BZ-and-CVE-info-printing-on-changelog-when-HIDE_REDHAT-is-enabled.patch
670 Patch57: redhat-tagging-2-6-31-51-el6.patch
671 Patch58: redhat-updating-lastcommit-for-2-6-31-51.patch
672 Patch59: redhat-fixing-the-kernel-versions-on-the-SPEC-changelog.patch
673 Patch60: redhat-Fix-version-passed-to-update_changelog-sh.patch
674 Patch61: mm-Limit-32-bit-x86-systems-to-16GB-and-prevent-panic-on-boot-when-system-has-more-than-30GB.patch
675 Patch62: ppc64-Fix-kcrctab_-sections-to-undo-undesireable-relocations-that-break-kdump.patch
676 Patch63: net-export-device-speed-and-duplex-via-sysfs.patch
677 Patch64: scsi-devinfo-update-for-Hitachi-entries.patch
678 Patch65: x86-AMD-Northbridge-Verify-NB-s-node-is-online.patch
679 Patch66: redhat-tagging-2-6-32-0-52-el6.patch
680 Patch67: redhat-updating-lastcommit-for-2-6-32-0-52.patch
681 Patch68: redhat-fix-STAMP-version-on-rh-release-commit-phase.patch
682 Patch69: redhat-enable-debug-builds-also-on-s390x-and-ppc64.patch
683 Patch70: s390x-fix-build-failure-with-CONFIG_FTRACE_SYSCALLS.patch
684 Patch71: procfs-add-ability-to-modify-proc-file-limits-from-outside-a-processes-own-context.patch
685 Patch72: modsign-Multiprecision-maths-library.patch
686 Patch73: modsign-Add-indications-of-module-ELF-types.patch
687 Patch74: modsign-Module-ELF-verifier.patch
688 Patch75: modsign-Module-signature-checker-and-key-manager.patch
689 Patch76: modsign-Apply-signature-checking-to-modules-on-module-load.patch
690 Patch77: modsign-Don-t-include-note-gnu-build-id-in-the-digest.patch
691 Patch78: modsign-Enable-module-signing-in-the-RHEL-RPM.patch
692 Patch79: net-Add-acession-counts-to-all-datagram-protocols.patch
693 Patch80: redhat-tagging-2-6-32-0-53-el6.patch
694 Patch81: redhat-updating-lastcommit-for-2-6-32-0-53.patch
695 Patch82: redhat-fixing-wrong-bug-number-536759-536769.patch
696 Patch83: redhat-adding-top-makefile-to-enable-rh-targets.patch
697 Patch84: redhat-add-temporary-framepointer-variant.patch
698 Patch85: redhat-add-rh-key-target-to-Makefile.patch
699 Patch86: infiniband-Rewrite-SG-handling-for-RDMA-logic.patch
700 Patch87: x86-panic-if-AMD-cpu_khz-is-wrong.patch
701 Patch88: x86-Enable-CONFIG_SPARSE_IRQ.patch
702 Patch89: edac-amd64_edac-disabling-temporarily.patch
703 Patch90: redhat-tagging-2-6-32-0-54-el6.patch
704 Patch91: redhat-updating-lastcommit-for-2-6-32-0-54.patch
705 Patch92: redhat-create-patches-sh-use-first-parent-to-use-the-right-branch-history.patch
706 Patch93: redhat-Rebasing-to-kernel-2-6-32.patch
707 Patch94: redhat-updating-lastcommit-for-2-6-32-1.patch
708 Patch95: redhat-introduce-rh-kernel-debug-target.patch
709 Patch96: redhat-update-build-targets-in-Makefile.patch
710 Patch97: redhat-include-missing-System-map-file-for-debug-only-builds.patch
711 Patch98: Fedora-updating-linux-2-6-execshield-patch-2-6-32-8-fc13-reference.patch
712 Patch99: Fedora-updating-patch-linux-2-6-nfsd4-proots-patch-2-6-32-8-fc13-reference.patch
713 Patch100: Fedora-intel-iommu-backport.patch
714 Patch101: Fedora-ath9k-backports.patch
715 Patch102: Fedora-KVM-allow-userspace-to-adjust-kvmclock-offset.patch
716 Patch103: Fedora-drm-radeon-fixes.patch
717 Patch104: Fedora-drm-radeon-dp-support.patch
718 Patch105: Fedora-drm-nouveau-fixes.patch
719 Patch106: Fedora-drm-i915-Fix-sync-to-vblank-when-VGA-output-is-turned-off.patch
720 Patch107: Fedora-agp-clear-GTT-on-intel.patch
721 Patch108: Fedora-ext4-Fix-insuficient-checks-in-EXT4_IOC_MOVE_EXT.patch
722 Patch109: Fedora-perf-Don-t-free-perf_mmap_data-until-work-has-been-done.patch
723 Patch110: redhat-updating-config-files-based-on-current-requests-12-10.patch
724 Patch111: redhat-Config-updates-12-15.patch
725 Patch112: block-revert-cfq-iosched-limit-coop-preemption.patch
726 Patch113: block-CFQ-is-more-than-a-desktop-scheduler.patch
727 Patch114: block-cfq-calculate-the-seek_mean-per-cfq_queue-not-per-cfq_io_context.patch
728 Patch115: block-cfq-merge-cooperating-cfq_queues.patch
729 Patch116: block-cfq-change-the-meaning-of-the-cfqq_coop-flag.patch
730 Patch117: block-cfq-break-apart-merged-cfqqs-if-they-stop-cooperating.patch
731 Patch118: block-cfq-iosched-improve-hw_tag-detection.patch
732 Patch119: block-cfq-iosched-adapt-slice-to-number-of-processes-doing-I-O.patch
733 Patch120: block-cfq-iosched-preparation-to-handle-multiple-service-trees.patch
734 Patch121: block-cfq-iosched-reimplement-priorities-using-different-service-trees.patch
735 Patch122: block-cfq-iosched-enable-idling-for-last-queue-on-priority-class.patch
736 Patch123: block-cfq-iosched-fairness-for-sync-no-idle-queues.patch
737 Patch124: block-cfq-iosched-fix-style-issue-in-cfq_get_avg_queues.patch
738 Patch125: block-blkdev-flush-disk-cache-on-fsync.patch
739 Patch126: block-cfq-iosched-simplify-prio-unboost-code.patch
740 Patch127: block-cfq-iosched-fix-next_rq-computation.patch
741 Patch128: block-Expose-discard-granularity.patch
742 Patch129: block-partitions-use-sector-size-for-EFI-GPT.patch
743 Patch130: block-partitions-read-whole-sector-with-EFI-GPT-header.patch
744 Patch131: block-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
745 Patch132: block-cfq-iosched-cleanup-unreachable-code.patch
746 Patch133: block-cfq-iosched-fix-ncq-detection-code.patch
747 Patch134: block-cfq-iosched-fix-no-idle-preemption-logic.patch
748 Patch135: block-cfq-iosched-idling-on-deep-seeky-sync-queues.patch
749 Patch136: block-cfq-iosched-fix-corner-cases-in-idling-logic.patch
750 Patch137: block-Revert-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
751 Patch138: block-Allow-devices-to-indicate-whether-discarded-blocks-are-zeroed.patch
752 Patch139: block-cfq-iosched-no-dispatch-limit-for-single-queue.patch
753 Patch140: block-blkio-Set-must_dispatch-only-if-we-decided-to-not-dispatch-the-request.patch
754 Patch141: block-blkio-Introduce-the-notion-of-cfq-groups.patch
755 Patch142: block-blkio-Implement-macro-to-traverse-each-service-tree-in-group.patch
756 Patch143: block-blkio-Keep-queue-on-service-tree-until-we-expire-it.patch
757 Patch144: block-blkio-Introduce-the-root-service-tree-for-cfq-groups.patch
758 Patch145: block-blkio-Introduce-blkio-controller-cgroup-interface.patch
759 Patch146: block-blkio-Introduce-per-cfq-group-weights-and-vdisktime-calculations.patch
760 Patch147: block-blkio-Implement-per-cfq-group-latency-target-and-busy-queue-avg.patch
761 Patch148: block-blkio-Group-time-used-accounting-and-workload-context-save-restore.patch
762 Patch149: block-blkio-Dynamic-cfq-group-creation-based-on-cgroup-tasks-belongs-to.patch
763 Patch150: block-blkio-Take-care-of-cgroup-deletion-and-cfq-group-reference-counting.patch
764 Patch151: block-blkio-Some-debugging-aids-for-CFQ.patch
765 Patch152: block-blkio-Export-disk-time-and-sectors-used-by-a-group-to-user-space.patch
766 Patch153: block-blkio-Provide-some-isolation-between-groups.patch
767 Patch154: block-blkio-Drop-the-reference-to-queue-once-the-task-changes-cgroup.patch
768 Patch155: block-blkio-Propagate-cgroup-weight-updation-to-cfq-groups.patch
769 Patch156: block-blkio-Wait-for-cfq-queue-to-get-backlogged-if-group-is-empty.patch
770 Patch157: block-blkio-Determine-async-workload-length-based-on-total-number-of-queues.patch
771 Patch158: block-blkio-Implement-group_isolation-tunable.patch
772 Patch159: block-blkio-Wait-on-sync-noidle-queue-even-if-rq_noidle-1.patch
773 Patch160: block-blkio-Documentation.patch
774 Patch161: block-cfq-iosched-fix-compile-problem-with-CONFIG_CGROUP.patch
775 Patch162: block-cfq-iosched-move-IO-controller-declerations-to-a-header-file.patch
776 Patch163: block-io-controller-quick-fix-for-blk-cgroup-and-modular-CFQ.patch
777 Patch164: block-cfq-iosched-make-nonrot-check-logic-consistent.patch
778 Patch165: block-blkio-Export-some-symbols-from-blkio-as-its-user-CFQ-can-be-a-module.patch
779 Patch166: block-blkio-Implement-dynamic-io-controlling-policy-registration.patch
780 Patch167: block-blkio-Allow-CFQ-group-IO-scheduling-even-when-CFQ-is-a-module.patch
781 Patch168: block-cfq-iosched-use-call_rcu-instead-of-doing-grace-period-stall-on-queue-exit.patch
782 Patch169: block-include-linux-err-h-to-use-ERR_PTR.patch
783 Patch170: block-cfq-iosched-Do-not-access-cfqq-after-freeing-it.patch
784 Patch171: block-dio-fix-performance-regression.patch
785 Patch172: block-Add-support-for-the-ATA-TRIM-command-in-libata.patch
786 Patch173: scsi-Add-missing-command-definitions.patch
787 Patch174: scsi-scsi_debug-Thin-provisioning-support.patch
788 Patch175: scsi-sd-WRITE-SAME-16-UNMAP-support.patch
789 Patch176: scsi-Correctly-handle-thin-provisioning-write-error.patch
790 Patch177: libata-Report-zeroed-read-after-Trim-and-max-discard-size.patch
791 Patch178: libata-Clarify-ata_set_lba_range_entries-function.patch
792 Patch179: block-config-enable-CONFIG_BLK_CGROUP.patch
793 Patch180: block-config-enable-CONFIG_BLK_DEV_INTEGRITY.patch
794 Patch181: redhat-tagging-2-6-32-2-el6.patch
795 Patch182: redhat-updating-lastcommit-for-2-6-32-2.patch
796 Patch183: redhat-force-to-run-rh-key-target-when-compiling-the-kernel-locally-without-RPM.patch
797 Patch184: redhat-run-rngd-on-rh-key-to-speed-up-key-generation.patch
798 Patch185: redhat-make-the-documentation-build-j1.patch
799 Patch186: redhat-remove-unused-config-file-config-powerpc64-generic-rhel.patch
800 Patch187: redhat-fix-problem-when-using-other-rh-targets.patch
801 Patch188: redhat-reverting-makefile-magic.patch
802 Patch189: redhat-remove-gcc-bug-workaround.patch
803 Patch190: redhat-run-rh-key-when-the-GPG-keys-aren-t-present.patch
804 Patch191: nfs-convert-proto-option-to-use-netids-rather-than-a-protoname.patch
805 Patch192: scsi-fix-dma-handling-when-using-virtual-hosts.patch
806 Patch193: dm-core-and-mpath-changes-from-2-6-33.patch
807 Patch194: dm-raid1-changes-from-2-6-33.patch
808 Patch195: dm-crypt-changes-from-2-6-33.patch
809 Patch196: dm-snapshot-changes-from-2-6-33.patch
810 Patch197: dm-snapshot-merge-support-from-2-6-33.patch
811 Patch198: redhat-add-vhost-to-config-generic-rhel.patch
812 Patch199: virt-tun-export-underlying-socket.patch
813 Patch200: virt-mm-export-use_mm-unuse_mm-to-modules.patch
814 Patch201: virt-vhost_net-a-kernel-level-virtio-server.patch
815 Patch202: virt-vhost-add-missing-architectures.patch
816 Patch203: s390-kernel-clear-high-order-bits-after-switching-to-64-bit-mode.patch
817 Patch204: s390-zcrypt-Do-not-simultaneously-schedule-hrtimer.patch
818 Patch205: s390-dasd-support-DIAG-access-for-read-only-devices.patch
819 Patch206: s390-kernel-fix-dump-indicator.patch
820 Patch207: s390-kernel-performance-counter-fix-and-page-fault-optimization.patch
821 Patch208: s390-zcrypt-initialize-ap_messages-for-cex3-exploitation.patch
822 Patch209: s390-zcrypt-special-command-support-for-cex3-exploitation.patch
823 Patch210: s390-zcrypt-add-support-for-cex3-device-types.patch
824 Patch211: s390-zcrypt-use-definitions-for-cex3.patch
825 Patch212: s390-zcrypt-adjust-speed-rating-between-cex2-and-pcixcc.patch
826 Patch213: s390-zcrypt-adjust-speed-rating-of-cex3-adapters.patch
827 Patch214: s390-OSA-QDIO-data-connection-isolation.patch
828 Patch215: redhat-Build-in-standard-PCI-hotplug-support.patch
829 Patch216: pci-pciehp-Provide-an-option-to-disable-native-PCIe-hotplug.patch
830 Patch217: modsign-Don-t-check-e_entry-in-ELF-header.patch
831 Patch218: redhat-fixing-lastcommit-contents-for-2-6-32-2-el6.patch
832 Patch219: redhat-tagging-2-6-32-3-el6.patch
833 Patch220: redhat-updating-lastcommit-for-2-6-32-3.patch
834 Patch221: misc-Revert-utrace-introduce-utrace-implementation.patch
835 Patch222: ptrace-cleanup-ptrace_init_task-ptrace_link-path.patch
836 Patch223: ptrace-copy_process-should-disable-stepping.patch
837 Patch224: ptrace-introduce-user_single_step_siginfo-helper.patch
838 Patch225: ptrace-powerpc-implement-user_single_step_siginfo.patch
839 Patch226: ptrace-change-tracehook_report_syscall_exit-to-handle-stepping.patch
840 Patch227: ptrace-x86-implement-user_single_step_siginfo.patch
841 Patch228: ptrace-x86-change-syscall_trace_leave-to-rely-on-tracehook-when-stepping.patch
842 Patch229: signals-check-group_stop_count-after-tracehook_get_signal.patch
843 Patch230: tracehooks-kill-some-PT_PTRACED-checks.patch
844 Patch231: tracehooks-check-PT_PTRACED-before-reporting-the-single-step.patch
845 Patch232: ptrace_signal-check-PT_PTRACED-before-reporting-a-signal.patch
846 Patch233: ptrace-export-__ptrace_detach-and-do_notify_parent_cldstop.patch
847 Patch234: ptrace-reorder-the-code-in-kernel-ptrace-c.patch
848 Patch235: utrace-implement-utrace-ptrace.patch
849 Patch236: utrace-utrace-core.patch
850 Patch237: sound-ALSA-HDA-driver-update-2009-12-15.patch
851 Patch238: s390-dasd-enable-prefix-independent-of-pav-support.patch
852 Patch239: s390-dasd-remove-strings-from-s390dbf.patch
853 Patch240: s390-dasd-let-device-initialization-wait-for-LCU-setup.patch
854 Patch241: redhat-kernel-enable-hibernation-support-on-s390x.patch
855 Patch242: s390-iucv-add-work_queue-cleanup-for-suspend.patch
856 Patch243: s390-cmm-free-pages-on-hibernate.patch
857 Patch244: s390-ctcm-suspend-has-to-wait-for-outstanding-I-O.patch
858 Patch245: s390-zfcp-Don-t-fail-SCSI-commands-when-transitioning-to-blocked-fc_rport.patch
859 Patch246: s390-zfcp-Assign-scheduled-work-to-driver-queue.patch
860 Patch247: s390-zfcp-fix-ELS-ADISC-handling-to-prevent-QDIO-errors.patch
861 Patch248: s390-zfcp-improve-FSF-error-reporting.patch
862 Patch249: scsi-scsi_transport_fc-Introduce-helper-function-for-blocking-scsi_eh.patch
863 Patch250: s390-zfcp-Block-SCSI-EH-thread-for-rport-state-BLOCKED.patch
864 Patch251: uv-x86-SGI-UV-Fix-BAU-initialization.patch
865 Patch252: uv-x86-function-to-translate-from-gpa-socket_paddr.patch
866 Patch253: uv-x86-introduce-uv_gpa_is_mmr.patch
867 Patch254: uv-x86-RTC-Fix-early-expiry-handling.patch
868 Patch255: uv-x86-RTC-Add-clocksource-only-boot-option.patch
869 Patch256: uv-x86-RTC-Clean-up-error-handling.patch
870 Patch257: uv-gru-function-to-generate-chipset-IPI-values.patch
871 Patch258: uv-x86-SGI-Map-low-MMR-ranges.patch
872 Patch259: xen-wait-up-to-5-minutes-for-device-connetion-and-fix-fallout.patch
873 Patch260: xen-support-MAXSMP.patch
874 Patch261: mm-move-inc_zone_page_state-NR_ISOLATED-to-just-isolated-place.patch
875 Patch262: mm-swap_info-private-to-swapfile-c.patch
876 Patch263: mm-swap_info-change-to-array-of-pointers.patch
877 Patch264: mm-swap_info-include-first_swap_extent.patch
878 Patch265: mm-swap_info-miscellaneous-minor-cleanups.patch
879 Patch266: mm-swap_info-SWAP_HAS_CACHE-cleanups.patch
880 Patch267: mm-swap_info-swap_map-of-chars-not-shorts.patch
881 Patch268: mm-swap_info-swap-count-continuations.patch
882 Patch269: mm-swap_info-note-SWAP_MAP_SHMEM.patch
883 Patch270: mm-define-PAGE_MAPPING_FLAGS.patch
884 Patch271: mm-mlocking-in-try_to_unmap_one.patch
885 Patch272: mm-CONFIG_MMU-for-PG_mlocked.patch
886 Patch273: mm-pass-address-down-to-rmap-ones.patch
887 Patch274: mm-vmscan-have-kswapd-sleep-for-a-short-interval-and-double-check-it-should-be-asleep.patch
888 Patch275: mm-vmscan-stop-kswapd-waiting-on-congestion-when-the-min-watermark-is-not-being-met.patch
889 Patch276: mm-vmscan-separate-sc-swap_cluster_max-and-sc-nr_max_reclaim.patch
890 Patch277: mm-vmscan-kill-hibernation-specific-reclaim-logic-and-unify-it.patch
891 Patch278: mm-vmscan-zone_reclaim-dont-use-insane-swap_cluster_max.patch
892 Patch279: mm-vmscan-kill-sc-swap_cluster_max.patch
893 Patch280: mm-vmscan-make-consistent-of-reclaim-bale-out-between-do_try_to_free_page-and-shrink_zone.patch
894 Patch281: mm-vmscan-do-not-evict-inactive-pages-when-skipping-an-active-list-scan.patch
895 Patch282: mm-stop-ptlock-enlarging-struct-page.patch
896 Patch283: ksm-three-remove_rmap_item_from_tree-cleanups.patch
897 Patch284: ksm-remove-redundancies-when-merging-page.patch
898 Patch285: ksm-cleanup-some-function-arguments.patch
899 Patch286: ksm-singly-linked-rmap_list.patch
900 Patch287: ksm-separate-stable_node.patch
901 Patch288: ksm-stable_node-point-to-page-and-back.patch
902 Patch289: ksm-fix-mlockfreed-to-munlocked.patch
903 Patch290: ksm-let-shared-pages-be-swappable.patch
904 Patch291: ksm-hold-anon_vma-in-rmap_item.patch
905 Patch292: ksm-take-keyhole-reference-to-page.patch
906 Patch293: ksm-share-anon-page-without-allocating.patch
907 Patch294: ksm-mem-cgroup-charge-swapin-copy.patch
908 Patch295: ksm-rmap_walk-to-remove_migation_ptes.patch
909 Patch296: ksm-memory-hotremove-migration-only.patch
910 Patch297: ksm-remove-unswappable-max_kernel_pages.patch
911 Patch298: ksm-fix-ksm-h-breakage-of-nommu-build.patch
912 Patch299: mm-Add-mm-tracepoint-definitions-to-kmem-h.patch
913 Patch300: mm-Add-anonynmous-page-mm-tracepoints.patch
914 Patch301: mm-Add-file-page-mm-tracepoints.patch
915 Patch302: mm-Add-page-reclaim-mm-tracepoints.patch
916 Patch303: mm-Add-file-page-writeback-mm-tracepoints.patch
917 Patch304: scsi-hpsa-new-driver.patch
918 Patch305: scsi-cciss-remove-pci-ids.patch
919 Patch306: quota-Move-definition-of-QFMT_OCFS2-to-linux-quota-h.patch
920 Patch307: quota-Implement-quota-format-with-64-bit-space-and-inode-limits.patch
921 Patch308: quota-ext3-Support-for-vfsv1-quota-format.patch
922 Patch309: quota-ext4-Support-for-64-bit-quota-format.patch
923 Patch310: kvm-core-x86-Add-user-return-notifiers.patch
924 Patch311: kvm-VMX-Move-MSR_KERNEL_GS_BASE-out-of-the-vmx-autoload-msr-area.patch
925 Patch312: kvm-x86-shared-msr-infrastructure.patch
926 Patch313: kvm-VMX-Use-shared-msr-infrastructure.patch
927 Patch314: redhat-excluding-Reverts-from-changelog-too.patch
928 Patch315: redhat-tagging-2-6-32-4-el6.patch
929 Patch316: redhat-updating-lastcommit-for-2-6-32-4.patch
930 Patch317: redhat-do-not-export-redhat-directory-contents.patch
931 Patch318: x86-Remove-the-CPU-cache-size-printk-s.patch
932 Patch319: x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch
933 Patch320: x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch
934 Patch321: x86-Limit-the-number-of-processor-bootup-messages.patch
935 Patch322: init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch
936 Patch323: sched-Limit-the-number-of-scheduler-debug-messages.patch
937 Patch324: x86-Limit-number-of-per-cpu-TSC-sync-messages.patch
938 Patch325: x86-Remove-enabling-x2apic-message-for-every-CPU.patch
939 Patch326: x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch
940 Patch327: block-cfq-iosched-reduce-write-depth-only-if-sync-was-delayed.patch
941 Patch328: block-cfq-Optimization-for-close-cooperating-queue-searching.patch
942 Patch329: block-cfq-iosched-Get-rid-of-cfqq-wait_busy_done-flag.patch
943 Patch330: block-cfq-iosched-Take-care-of-corner-cases-of-group-losing-share-due-to-deletion.patch
944 Patch331: block-cfq-iosched-commenting-non-obvious-initialization.patch
945 Patch332: block-cfq-Remove-wait_request-flag-when-idle-time-is-being-deleted.patch
946 Patch333: block-Fix-a-CFQ-crash-in-for-2-6-33-branch-of-block-tree.patch
947 Patch334: block-cfq-set-workload-as-expired-if-it-doesn-t-have-any-slice-left.patch
948 Patch335: block-cfq-iosched-Remove-the-check-for-same-cfq-group-from-allow_merge.patch
949 Patch336: block-cfq-iosched-Get-rid-of-nr_groups.patch
950 Patch337: block-cfq-iosched-Remove-prio_change-logic-for-workload-selection.patch
951 Patch338: netdrv-ixgbe-add-support-for-82599-KR-and-update-to-latest-upstream.patch
952 Patch339: netdrv-bnx2x-update-to-1-52-1-5.patch
953 Patch340: netdrv-update-tg3-to-version-3-105.patch
954 Patch341: scsi-scsi_dh-Change-the-scsidh_activate-interface-to-be-asynchronous.patch
955 Patch342: scsi-scsi_dh-Make-rdac-hardware-handler-s-activate-async.patch
956 Patch343: scsi-scsi_dh-Make-hp-hardware-handler-s-activate-async.patch
957 Patch344: scsi-scsi_dh-Make-alua-hardware-handler-s-activate-async.patch
958 Patch345: block-Fix-topology-stacking-for-data-and-discard-alignment.patch
959 Patch346: dlm-always-use-GFP_NOFS.patch
960 Patch347: redhat-Some-storage-related-kernel-config-parameter-changes.patch
961 Patch348: scsi-eliminate-double-free.patch
962 Patch349: scsi-make-driver-PCI-legacy-I-O-port-free.patch
963 Patch350: gfs2-Fix-potential-race-in-glock-code.patch
964 Patch351: netdrv-cnic-fixes-for-RHEL6.patch
965 Patch352: netdrv-bnx2i-update-to-2-1-0.patch
966 Patch353: mm-hwpoison-backport-the-latest-patches-from-linux-2-6-33.patch
967 Patch354: fs-ext4-wait-for-log-to-commit-when-unmounting.patch
968 Patch355: cifs-NULL-out-tcon-pSesInfo-and-srvTcp-pointers-when-chasing-DFS-referrals.patch
969 Patch356: fusion-remove-unnecessary-printk.patch
970 Patch357: fusion-fix-for-incorrect-data-underrun.patch
971 Patch358: fusion-bump-version-to-3-04-13.patch
972 Patch359: ext4-make-trim-discard-optional-and-off-by-default.patch
973 Patch360: fat-make-discard-a-mount-option.patch
974 Patch361: fs-fs-writeback-Add-helper-function-to-start-writeback-if-idle.patch
975 Patch362: fs-ext4-flush-delalloc-blocks-when-space-is-low.patch
976 Patch363: scsi-scsi_dh_rdac-add-two-IBM-devices-to-rdac_dev_list.patch
977 Patch364: vfs-force-reval-of-target-when-following-LAST_BIND-symlinks.patch
978 Patch365: input-Add-support-for-adding-i8042-filters.patch
979 Patch366: input-dell-laptop-Update-rfkill-state-on-switch-change.patch
980 Patch367: sunrpc-Deprecate-support-for-site-local-addresses.patch
981 Patch368: sunrpc-Don-t-display-zero-scope-IDs.patch
982 Patch369: s390-cio-double-free-under-memory-pressure.patch
983 Patch370: s390-cio-device-recovery-stalls-after-multiple-hardware-events.patch
984 Patch371: s390-cio-device-recovery-fails-after-concurrent-hardware-changes.patch
985 Patch372: s390-cio-setting-a-device-online-or-offline-fails-for-unknown-reasons.patch
986 Patch373: s390-cio-incorrect-device-state-after-device-recognition-and-recovery.patch
987 Patch374: s390-cio-kernel-panic-after-unexpected-interrupt.patch
988 Patch375: s390-cio-initialization-of-I-O-devices-fails.patch
989 Patch376: s390-cio-not-operational-devices-cannot-be-deactivated.patch
990 Patch377: s390-cio-erratic-DASD-I-O-behavior.patch
991 Patch378: s390-cio-DASD-cannot-be-set-online.patch
992 Patch379: s390-cio-DASD-steal-lock-task-hangs.patch
993 Patch380: s390-cio-memory-leaks-when-checking-unusable-devices.patch
994 Patch381: s390-cio-deactivated-devices-can-cause-use-after-free-panic.patch
995 Patch382: nfs-NFS-update-to-2-6-33-part-1.patch
996 Patch383: nfs-NFS-update-to-2-6-33-part-2.patch
997 Patch384: nfs-NFS-update-to-2-6-33-part-3.patch
998 Patch385: nfs-fix-insecure-export-option.patch
999 Patch386: redhat-enable-NFS_V4_1.patch
1000 Patch387: x86-Compile-mce-inject-module.patch
1001 Patch388: modsign-Don-t-attempt-to-sign-a-module-if-there-are-no-key-files.patch
1002 Patch389: scsi-cciss-hpsa-reassign-controllers.patch
1003 Patch390: scsi-cciss-fix-spinlock-use.patch
1004 Patch391: redhat-disabling-temporaly-DEVTMPFS.patch
1005 Patch392: redhat-don-t-use-PACKAGE_VERSION-and-PACKAGE_RELEASE.patch
1006 Patch393: redhat-tagging-2-6-32-5-el6.patch
1007 Patch394: redhat-updating-lastcommit-for-2-6-32-5.patch
1008 Patch395: redhat-add-symbol-to-look-on-while-building-modules-block.patch
1009 Patch396: stable-signal-Fix-alternate-signal-stack-check.patch
1010 Patch397: stable-SCSI-osd_protocol-h-Add-missing-include.patch
1011 Patch398: stable-SCSI-megaraid_sas-fix-64-bit-sense-pointer-truncation.patch
1012 Patch399: stable-ext4-fix-potential-buffer-head-leak-when-add_dirent_to_buf-returns-ENOSPC.patch
1013 Patch400: stable-ext4-avoid-divide-by-zero-when-trying-to-mount-a-corrupted-file-system.patch
1014 Patch401: stable-ext4-fix-the-returned-block-count-if-EXT4_IOC_MOVE_EXT-fails.patch
1015 Patch402: stable-ext4-fix-lock-order-problem-in-ext4_move_extents.patch
1016 Patch403: stable-ext4-fix-possible-recursive-locking-warning-in-EXT4_IOC_MOVE_EXT.patch
1017 Patch404: stable-ext4-plug-a-buffer_head-leak-in-an-error-path-of-ext4_iget.patch
1018 Patch405: stable-ext4-make-sure-directory-and-symlink-blocks-are-revoked.patch
1019 Patch406: stable-ext4-fix-i_flags-access-in-ext4_da_writepages_trans_blocks.patch
1020 Patch407: stable-ext4-journal-all-modifications-in-ext4_xattr_set_handle.patch
1021 Patch408: stable-ext4-don-t-update-the-superblock-in-ext4_statfs.patch
1022 Patch409: stable-ext4-fix-uninit-block-bitmap-initialization-when-s_meta_first_bg-is-non-zero.patch
1023 Patch410: stable-ext4-fix-block-validity-checks-so-they-work-correctly-with-meta_bg.patch
1024 Patch411: stable-ext4-avoid-issuing-unnecessary-barriers.patch
1025 Patch412: stable-ext4-fix-error-handling-in-ext4_ind_get_blocks.patch
1026 Patch413: stable-ext4-make-norecovery-an-alias-for-noload.patch
1027 Patch414: stable-ext4-Fix-double-free-of-blocks-with-EXT4_IOC_MOVE_EXT.patch
1028 Patch415: stable-ext4-initialize-moved_len-before-calling-ext4_move_extents.patch
1029 Patch416: stable-ext4-move_extent_per_page-cleanup.patch
1030 Patch417: stable-jbd2-Add-ENOMEM-checking-in-and-for-jbd2_journal_write_metadata_buffer.patch
1031 Patch418: stable-ext4-Return-the-PTR_ERR-of-the-correct-pointer-in-setup_new_group_blocks.patch
1032 Patch419: stable-ext4-Avoid-data-filesystem-corruption-when-write-fails-to-copy-data.patch
1033 Patch420: stable-ext4-remove-blocks-from-inode-prealloc-list-on-failure.patch
1034 Patch421: stable-ext4-ext4_get_reserved_space-must-return-bytes-instead-of-blocks.patch
1035 Patch422: stable-ext4-quota-macros-cleanup.patch
1036 Patch423: stable-ext4-fix-incorrect-block-reservation-on-quota-transfer.patch
1037 Patch424: stable-ext4-Wait-for-proper-transaction-commit-on-fsync.patch
1038 Patch425: stable-ext4-Fix-potential-fiemap-deadlock-mmap_sem-vs-i_data_sem.patch
1039 Patch426: stable-USB-usb-storage-fix-bug-in-fill_inquiry.patch
1040 Patch427: stable-USB-option-add-pid-for-ZTE.patch
1041 Patch428: stable-firewire-ohci-handle-receive-packets-with-a-data-length-of-zero.patch
1042 Patch429: stable-rcu-Prepare-for-synchronization-fixes-clean-up-for-non-NO_HZ-handling-of-completed-counter.patch
1043 Patch430: stable-rcu-Fix-synchronization-for-rcu_process_gp_end-uses-of-completed-counter.patch
1044 Patch431: stable-rcu-Fix-note_new_gpnum-uses-of-gpnum.patch
1045 Patch432: stable-rcu-Remove-inline-from-forward-referenced-functions.patch
1046 Patch433: stable-perf_event-Fix-invalid-type-in-ioctl-definition.patch
1047 Patch434: stable-perf_event-Initialize-data-period-in-perf_swevent_hrtimer.patch
1048 Patch435: stable-PM-Runtime-Fix-lockdep-warning-in-__pm_runtime_set_status.patch
1049 Patch436: stable-sched-Check-for-an-idle-shared-cache-in-select_task_rq_fair.patch
1050 Patch437: stable-sched-Fix-affinity-logic-in-select_task_rq_fair.patch
1051 Patch438: stable-sched-Rate-limit-newidle.patch
1052 Patch439: stable-sched-Fix-and-clean-up-rate-limit-newidle-code.patch
1053 Patch440: stable-x86-amd-iommu-attach-devices-to-pre-allocated-domains-early.patch
1054 Patch441: stable-x86-amd-iommu-un__init-iommu_setup_msi.patch
1055 Patch442: stable-x86-Calgary-IOMMU-quirk-Find-nearest-matching-Calgary-while-walking-up-the-PCI-tree.patch
1056 Patch443: stable-x86-Fix-iommu-nodac-parameter-handling.patch
1057 Patch444: stable-x86-GART-pci-gart_64-c-Use-correct-length-in-strncmp.patch
1058 Patch445: stable-x86-ASUS-P4S800-reboot-bios-quirk.patch
1059 Patch446: stable-x86-apic-Enable-lapic-nmi-watchdog-on-AMD-Family-11h.patch
1060 Patch447: stable-ssb-Fix-range-check-in-sprom-write.patch
1061 Patch448: stable-ath5k-allow-setting-txpower-to-0.patch
1062 Patch449: stable-ath5k-enable-EEPROM-checksum-check.patch
1063 Patch450: stable-hrtimer-Fix-proc-timer_list-regression.patch
1064 Patch451: stable-ALSA-hrtimer-Fix-lock-up.patch
1065 Patch452: stable-KVM-x86-emulator-limit-instructions-to-15-bytes.patch
1066 Patch453: stable-KVM-s390-Fix-prefix-register-checking-in-arch-s390-kvm-sigp-c.patch
1067 Patch454: stable-KVM-s390-Make-psw-available-on-all-exits-not-just-a-subset.patch
1068 Patch455: stable-KVM-fix-irq_source_id-size-verification.patch
1069 Patch456: stable-KVM-x86-include-pvclock-MSRs-in-msrs_to_save.patch
1070 Patch457: stable-x86-Prevent-GCC-4-4-x-pentium-mmx-et-al-function-prologue-wreckage.patch
1071 Patch458: stable-x86-Use-maccumulate-outgoing-args-for-sane-mcount-prologues.patch
1072 Patch459: stable-x86-mce-don-t-restart-timer-if-disabled.patch
1073 Patch460: stable-x86-mce-Set-up-timer-unconditionally.patch
1074 Patch461: stable-x86-Fix-duplicated-UV-BAU-interrupt-vector.patch
1075 Patch462: stable-x86-Add-new-Intel-CPU-cache-size-descriptors.patch
1076 Patch463: stable-x86-Fix-typo-in-Intel-CPU-cache-size-descriptor.patch
1077 Patch464: stable-pata_hpt-37x-3x2n-fix-timing-register-masks-take-2.patch
1078 Patch465: stable-V4L-DVB-Fix-test-in-copy_reg_bits.patch
1079 Patch466: stable-bsdacct-fix-uid-gid-misreporting.patch
1080 Patch467: stable-UBI-flush-wl-before-clearing-update-marker.patch
1081 Patch468: stable-jbd2-don-t-wipe-the-journal-on-a-failed-journal-checksum.patch
1082 Patch469: stable-USB-xhci-Add-correct-email-and-files-to-MAINTAINERS-entry.patch
1083 Patch470: stable-USB-musb_gadget_ep0-fix-unhandled-endpoint-0-IRQs-again.patch
1084 Patch471: stable-USB-option-c-add-support-for-D-Link-DWM-162-U5.patch
1085 Patch472: stable-USB-usbtmc-repeat-usb_bulk_msg-until-whole-message-is-transfered.patch
1086 Patch473: stable-USB-usb-storage-add-BAD_SENSE-flag.patch
1087 Patch474: stable-USB-Close-usb_find_interface-race-v3.patch
1088 Patch475: stable-pxa-em-x270-fix-usb-hub-power-up-reset-sequence.patch
1089 Patch476: stable-hfs-fix-a-potential-buffer-overflow.patch
1090 Patch477: stable-md-bitmap-protect-against-bitmap-removal-while-being-updated.patch
1091 Patch478: stable-futex-Take-mmap_sem-for-get_user_pages-in-fault_in_user_writeable.patch
1092 Patch479: stable-devpts_get_tty-should-validate-inode.patch
1093 Patch480: stable-debugfs-fix-create-mutex-racy-fops-and-private-data.patch
1094 Patch481: stable-Driver-core-fix-race-in-dev_driver_string.patch
1095 Patch482: stable-Serial-Do-not-read-IIR-in-serial8250_start_tx-when-UART_BUG_TXEN.patch
1096 Patch483: stable-mac80211-Fix-bug-in-computing-crc-over-dynamic-IEs-in-beacon.patch
1097 Patch484: stable-mac80211-Fixed-bug-in-mesh-portal-paths.patch
1098 Patch485: stable-mac80211-Revert-Use-correct-sign-for-mesh-active-path-refresh.patch
1099 Patch486: stable-mac80211-fix-scan-abort-sanity-checks.patch
1100 Patch487: stable-wireless-correctly-report-signal-value-for-IEEE80211_HW_SIGNAL_UNSPEC.patch
1101 Patch488: stable-rtl8187-Fix-wrong-rfkill-switch-mask-for-some-models.patch
1102 Patch489: stable-x86-Fix-bogus-warning-in-apic_noop-apic_write.patch
1103 Patch490: stable-mm-hugetlb-fix-hugepage-memory-leak-in-mincore.patch
1104 Patch491: stable-mm-hugetlb-fix-hugepage-memory-leak-in-walk_page_range.patch
1105 Patch492: stable-powerpc-windfarm-Add-detection-for-second-cpu-pump.patch
1106 Patch493: stable-powerpc-therm_adt746x-Record-pwm-invert-bit-at-module-load-time.patch
1107 Patch494: stable-powerpc-Fix-usage-of-64-bit-instruction-in-32-bit-altivec-code.patch
1108 Patch495: stable-drm-radeon-kms-Add-quirk-for-HIS-X1300-board.patch
1109 Patch496: stable-drm-radeon-kms-handle-vblanks-properly-with-dpms-on.patch
1110 Patch497: stable-drm-radeon-kms-fix-legacy-crtc2-dpms.patch
1111 Patch498: stable-drm-radeon-kms-fix-vram-setup-on-rs600.patch
1112 Patch499: stable-drm-radeon-kms-rs6xx-rs740-clamp-vram-to-aperture-size.patch
1113 Patch500: stable-drm-ttm-Fix-build-failure-due-to-missing-struct-page.patch
1114 Patch501: stable-drm-i915-Set-the-error-code-after-failing-to-insert-new-offset-into-mm-ht.patch
1115 Patch502: stable-drm-i915-Add-the-missing-clonemask-for-display-port-on-Ironlake.patch
1116 Patch503: stable-xen-xenbus-make-DEVICE_ATTR-s-static.patch
1117 Patch504: stable-xen-re-register-runstate-area-earlier-on-resume.patch
1118 Patch505: stable-xen-restore-runstate_info-even-if-have_vcpu_info_placement.patch
1119 Patch506: stable-xen-correctly-restore-pfn_to_mfn_list_list-after-resume.patch
1120 Patch507: stable-xen-register-timer-interrupt-with-IRQF_TIMER.patch
1121 Patch508: stable-xen-register-runstate-on-secondary-CPUs.patch
1122 Patch509: stable-xen-don-t-call-dpm_resume_noirq-with-interrupts-disabled.patch
1123 Patch510: stable-xen-register-runstate-info-for-boot-CPU-early.patch
1124 Patch511: stable-xen-call-clock-resume-notifier-on-all-CPUs.patch
1125 Patch512: stable-xen-improve-error-handling-in-do_suspend.patch
1126 Patch513: stable-xen-don-t-leak-IRQs-over-suspend-resume.patch
1127 Patch514: stable-xen-use-iret-for-return-from-64b-kernel-to-32b-usermode.patch
1128 Patch515: stable-xen-explicitly-create-destroy-stop_machine-workqueues-outside-suspend-resume-region.patch
1129 Patch516: stable-Xen-balloon-fix-totalram_pages-counting.patch
1130 Patch517: stable-xen-try-harder-to-balloon-up-under-memory-pressure.patch
1131 Patch518: stable-slc90e66-fix-UDMA-handling.patch
1132 Patch519: stable-tcp-Stalling-connections-Fix-timeout-calculation-routine.patch
1133 Patch520: stable-ip_fragment-also-adjust-skb-truesize-for-packets-not-owned-by-a-socket.patch
1134 Patch521: stable-b44-WOL-setup-one-bit-off-stack-corruption-kernel-panic-fix.patch
1135 Patch522: stable-sparc64-Don-t-specify-IRQF_SHARED-for-LDC-interrupts.patch
1136 Patch523: stable-sparc64-Fix-overly-strict-range-type-matching-for-PCI-devices.patch
1137 Patch524: stable-sparc64-Fix-stack-debugging-IRQ-stack-regression.patch
1138 Patch525: stable-sparc-Set-UTS_MACHINE-correctly.patch
1139 Patch526: stable-b43legacy-avoid-PPC-fault-during-resume.patch
1140 Patch527: stable-tracing-Fix-event-format-export.patch
1141 Patch528: stable-ath9k-fix-tx-status-reporting.patch
1142 Patch529: stable-mac80211-Fix-dynamic-power-save-for-scanning.patch
1143 Patch530: stable-memcg-fix-memory-memsw-usage_in_bytes-for-root-cgroup.patch
1144 Patch531: stable-thinkpad-acpi-fix-default-brightness_mode-for-R50e-R51.patch
1145 Patch532: stable-thinkpad-acpi-preserve-rfkill-state-across-suspend-resume.patch
1146 Patch533: stable-ipw2100-fix-rebooting-hang-with-driver-loaded.patch
1147 Patch534: stable-matroxfb-fix-problems-with-display-stability.patch
1148 Patch535: stable-acerhdf-add-new-BIOS-versions.patch
1149 Patch536: stable-asus-laptop-change-light-sens-default-values.patch
1150 Patch537: stable-vmalloc-conditionalize-build-of-pcpu_get_vm_areas.patch
1151 Patch538: stable-ACPI-Use-the-ARB_DISABLE-for-the-CPU-which-model-id-is-less-than-0x0f.patch
1152 Patch539: stable-net-Fix-userspace-RTM_NEWLINK-notifications.patch
1153 Patch540: stable-ext3-Fix-data-filesystem-corruption-when-write-fails-to-copy-data.patch
1154 Patch541: stable-V4L-DVB-13116-gspca-ov519-Webcam-041e-4067-added.patch
1155 Patch542: stable-bcm63xx_enet-fix-compilation-failure-after-get_stats_count-removal.patch
1156 Patch543: stable-x86-Under-BIOS-control-restore-AP-s-APIC_LVTTHMR-to-the-BSP-value.patch
1157 Patch544: stable-drm-i915-Avoid-NULL-dereference-with-component_only-tv_modes.patch
1158 Patch545: stable-drm-i915-PineView-only-has-LVDS-and-CRT-ports.patch
1159 Patch546: stable-drm-i915-Fix-LVDS-stability-issue-on-Ironlake.patch
1160 Patch547: stable-mm-sigbus-instead-of-abusing-oom.patch
1161 Patch548: stable-ipvs-zero-usvc-and-udest.patch
1162 Patch549: stable-jffs2-Fix-long-standing-bug-with-symlink-garbage-collection.patch
1163 Patch550: stable-intel-iommu-ignore-page-table-validation-in-pass-through-mode.patch
1164 Patch551: stable-netfilter-xtables-document-minimal-required-version.patch
1165 Patch552: stable-perf_event-Fix-incorrect-range-check-on-cpu-number.patch
1166 Patch553: stable-implement-early_io-re-un-map-for-ia64.patch
1167 Patch554: stable-SCSI-ipr-fix-EEH-recovery.patch
1168 Patch555: stable-SCSI-qla2xxx-dpc-thread-can-execute-before-scsi-host-has-been-added.patch
1169 Patch556: stable-SCSI-st-fix-mdata-page_order-handling.patch
1170 Patch557: stable-SCSI-fc-class-fix-fc_transport_init-error-handling.patch
1171 Patch558: stable-sched-Fix-task_hot-test-order.patch
1172 Patch559: stable-x86-cpuid-Add-volatile-to-asm-in-native_cpuid.patch
1173 Patch560: stable-sched-Select_task_rq_fair-must-honour-SD_LOAD_BALANCE.patch
1174 Patch561: stable-clockevents-Prevent-clockevent_devices-list-corruption-on-cpu-hotplug.patch
1175 Patch562: stable-pata_hpt3x2n-fix-clock-turnaround.patch
1176 Patch563: stable-pata_cmd64x-fix-overclocking-of-UDMA0-2-modes.patch
1177 Patch564: stable-ASoC-wm8974-fix-a-wrong-bit-definition.patch
1178 Patch565: stable-sound-sgio2audio-pdaudiocf-usb-audio-initialize-PCM-buffer.patch
1179 Patch566: stable-ALSA-hda-Fix-missing-capsrc_nids-for-ALC88x.patch
1180 Patch567: stable-acerhdf-limit-modalias-matching-to-supported.patch
1181 Patch568: stable-ACPI-EC-Fix-MSI-DMI-detection.patch
1182 Patch569: stable-ACPI-Use-the-return-result-of-ACPI-lid-notifier-chain-correctly.patch
1183 Patch570: stable-powerpc-Handle-VSX-alignment-faults-correctly-in-little-endian-mode.patch
1184 Patch571: stable-ASoC-Do-not-write-to-invalid-registers-on-the-wm9712.patch
1185 Patch572: stable-drm-radeon-fix-build-on-64-bit-with-some-compilers.patch
1186 Patch573: stable-USB-emi62-fix-crash-when-trying-to-load-EMI-6-2-firmware.patch
1187 Patch574: stable-USB-option-support-hi-speed-for-modem-Haier-CE100.patch
1188 Patch575: stable-USB-Fix-a-bug-on-appledisplay-c-regarding-signedness.patch
1189 Patch576: stable-USB-musb-gadget_ep0-avoid-SetupEnd-interrupt.patch
1190 Patch577: stable-Bluetooth-Prevent-ill-timed-autosuspend-in-USB-driver.patch
1191 Patch578: stable-USB-rename-usb_configure_device.patch
1192 Patch579: stable-USB-fix-bugs-in-usb_-de-authorize_device.patch
1193 Patch580: stable-drivers-net-usb-Correct-code-taking-the-size-of-a-pointer.patch
1194 Patch581: stable-x86-SGI-UV-Fix-writes-to-led-registers-on-remote-uv-hubs.patch
1195 Patch582: stable-md-Fix-unfortunate-interaction-with-evms.patch
1196 Patch583: stable-dma-at_hdmac-correct-incompatible-type-for-argument-1-of-spin_lock_bh.patch
1197 Patch584: stable-dma-debug-Do-not-add-notifier-when-dma-debugging-is-disabled.patch
1198 Patch585: stable-dma-debug-Fix-bug-causing-build-warning.patch
1199 Patch586: stable-x86-amd-iommu-Fix-initialization-failure-panic.patch
1200 Patch587: stable-ioat3-fix-p-disabled-q-continuation.patch
1201 Patch588: stable-ioat2-3-put-channel-hardware-in-known-state-at-init.patch
1202 Patch589: stable-KVM-MMU-remove-prefault-from-invlpg-handler.patch
1203 Patch590: stable-KVM-LAPIC-make-sure-IRR-bitmap-is-scanned-after-vm-load.patch
1204 Patch591: stable-Libertas-fix-buffer-overflow-in-lbs_get_essid.patch
1205 Patch592: stable-iwmc3200wifi-fix-array-out-of-boundary-access.patch
1206 Patch593: stable-mac80211-fix-propagation-of-failed-hardware-reconfigurations.patch
1207 Patch594: stable-mac80211-fix-WMM-AP-settings-application.patch
1208 Patch595: stable-mac80211-Fix-IBSS-merge.patch
1209 Patch596: stable-cfg80211-fix-race-between-deauth-and-assoc-response.patch
1210 Patch597: stable-ath5k-fix-SWI-calibration-interrupt-storm.patch
1211 Patch598: stable-ath9k-wake-hardware-for-interface-IBSS-AP-Mesh-removal.patch
1212 Patch599: stable-ath9k-Fix-TX-queue-draining.patch
1213 Patch600: stable-ath9k-fix-missed-error-codes-in-the-tx-status-check.patch
1214 Patch601: stable-ath9k-wake-hardware-during-AMPDU-TX-actions.patch
1215 Patch602: stable-ath9k-fix-suspend-by-waking-device-prior-to-stop.patch
1216 Patch603: stable-ath9k_hw-Fix-possible-OOB-array-indexing-in-gen_timer_index-on-64-bit.patch
1217 Patch604: stable-ath9k_hw-Fix-AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB-and-its-shift-value-in-0x4054.patch
1218 Patch605: stable-iwl3945-disable-power-save.patch
1219 Patch606: stable-iwl3945-fix-panic-in-iwl3945-driver.patch
1220 Patch607: stable-iwlwifi-fix-EEPROM-OTP-reading-endian-annotations-and-a-bug.patch
1221 Patch608: stable-iwlwifi-fix-more-eeprom-endian-bugs.patch
1222 Patch609: stable-iwlwifi-fix-40MHz-operation-setting-on-cards-that-do-not-allow-it.patch
1223 Patch610: stable-mac80211-fix-race-with-suspend-and-dynamic_ps_disable_work.patch
1224 Patch611: stable-NOMMU-Optimise-away-the-dac_-mmap_min_addr-tests.patch
1225 Patch612: stable-sysctl_max_map_count-should-be-non-negative.patch
1226 Patch613: stable-kernel-sysctl-c-fix-the-incomplete-part-of-sysctl_max_map_count-should-be-non-negative-patch.patch
1227 Patch614: stable-V4L-DVB-13596-ov511-c-typo-lock-unlock.patch
1228 Patch615: stable-x86-ptrace-make-genregs-32-_get-set-more-robust.patch
1229 Patch616: stable-memcg-avoid-oom-killing-innocent-task-in-case-of-use_hierarchy.patch
1230 Patch617: stable-e100-Fix-broken-cbs-accounting-due-to-missing-memset.patch
1231 Patch618: stable-ipv6-reassembly-use-seperate-reassembly-queues-for-conntrack-and-local-delivery.patch
1232 Patch619: stable-netfilter-fix-crashes-in-bridge-netfilter-caused-by-fragment-jumps.patch
1233 Patch620: stable-hwmon-sht15-Off-by-one-error-in-array-index-incorrect-constants.patch
1234 Patch621: stable-b43-avoid-PPC-fault-during-resume.patch
1235 Patch622: stable-Keys-KEYCTL_SESSION_TO_PARENT-needs-TIF_NOTIFY_RESUME-architecture-support.patch
1236 Patch623: stable-sched-Fix-balance-vs-hotplug-race.patch
1237 Patch624: stable-drm-radeon-kms-fix-crtc-vblank-update-for-r600.patch
1238 Patch625: stable-drm-disable-all-the-possible-outputs-crtcs-before-entering-KMS-mode.patch
1239 Patch626: stable-orinoco-fix-GFP_KERNEL-in-orinoco_set_key-with-interrupts-disabled.patch
1240 Patch627: stable-udf-Try-harder-when-looking-for-VAT-inode.patch
1241 Patch628: stable-Add-unlocked-version-of-inode_add_bytes-function.patch
1242 Patch629: stable-quota-decouple-fs-reserved-space-from-quota-reservation.patch
1243 Patch630: stable-ext4-Convert-to-generic-reserved-quota-s-space-management.patch
1244 Patch631: stable-ext4-fix-sleep-inside-spinlock-issue-with-quota-and-dealloc-14739.patch
1245 Patch632: stable-x86-msr-Unify-rdmsr_on_cpus-wrmsr_on_cpus.patch
1246 Patch633: stable-cpumask-use-modern-cpumask-style-in-drivers-edac-amd64_edac-c.patch
1247 Patch634: stable-amd64_edac-unify-MCGCTL-ECC-switching.patch
1248 Patch635: stable-x86-msr-Add-support-for-non-contiguous-cpumasks.patch
1249 Patch636: stable-x86-msr-msrs_alloc-free-for-CONFIG_SMP-n.patch
1250 Patch637: stable-amd64_edac-fix-driver-instance-freeing.patch
1251 Patch638: stable-amd64_edac-make-driver-loading-more-robust.patch
1252 Patch639: stable-amd64_edac-fix-forcing-module-load-unload.patch
1253 Patch640: stable-sched-Sched_rt_periodic_timer-vs-cpu-hotplug.patch
1254 Patch641: stable-ext4-Update-documentation-to-correct-the-inode_readahead_blks-option-name.patch
1255 Patch642: stable-lguest-fix-bug-in-setting-guest-GDT-entry.patch
1256 Patch643: stable-rt2x00-Disable-powersaving-for-rt61pci-and-rt2800pci.patch
1257 Patch644: stable-generic_permission-MAY_OPEN-is-not-write-access.patch
1258 Patch645: redhat-fix-typo-while-disabling-CONFIG_CPU_SUP_CENTAUR.patch
1259 Patch646: redhat-check-if-patchutils-is-installed-before-creating-patches.patch
1260 Patch647: redhat-do-a-basic-sanity-check-to-verify-the-modules-are-being-signed.patch
1261 Patch648: redhat-Fix-kABI-dependency-generation.patch
1262 Patch649: tpm-autoload-tpm_tis-driver.patch
1263 Patch650: x86-mce-fix-confusion-between-bank-attributes-and-mce-attributes.patch
1264 Patch651: netdrv-be2net-update-be2net-driver-to-latest-upstream.patch
1265 Patch652: s390x-tape-incomplete-device-removal.patch
1266 Patch653: s390-kernel-improve-code-generated-by-atomic-operations.patch
1267 Patch654: x86-AMD-Fix-stale-cpuid4_info-shared_map-data-in-shared_cpu_map-cpumasks.patch
1268 Patch655: nfs-fix-oops-in-nfs_rename.patch
1269 Patch656: modsign-Remove-Makefile-modpost-qualifying-message-for-module-sign-failure.patch
1270 Patch657: redhat-disable-framepointer-build-by-default.patch
1271 Patch658: redhat-use-sysconf-_SC_PAGESIZE-instead-of-getpagesize.patch
1272 Patch659: redhat-tagging-2-6-32-6-el6.patch
1273 Patch660: redhat-updating-lastcommit-for-2-6-32-6.patch
1274 Patch661: kvm-Dont-pass-kvm_run-arguments.patch
1275 Patch662: kvm-Call-pic_clear_isr-on-pic-reset-to-reuse-logic-there.patch
1276 Patch663: kvm-Move-irq-sharing-information-to-irqchip-level.patch
1277 Patch664: kvm-Change-irq-routing-table-to-use-gsi-indexed-array.patch
1278 Patch665: kvm-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch
1279 Patch666: kvm-Move-irq-routing-data-structure-to-rcu-locking.patch
1280 Patch667: kvm-Move-irq-ack-notifier-list-to-arch-independent-code.patch
1281 Patch668: kvm-Convert-irq-notifiers-lists-to-RCU-locking.patch
1282 Patch669: kvm-Move-IO-APIC-to-its-own-lock.patch
1283 Patch670: kvm-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch
1284 Patch671: kvm-Add-synchronize_srcu_expedited.patch
1285 Patch672: kvm-rcu-Add-synchronize_srcu_expedited-to-the-rcutorture-test-suite.patch
1286 Patch673: kvm-rcu-Add-synchronize_srcu_expedited-to-the-documentation.patch
1287 Patch674: kvm-rcu-Enable-synchronize_sched_expedited-fastpath.patch
1288 Patch675: kvm-modify-memslots-layout-in-struct-kvm.patch
1289 Patch676: kvm-modify-alias-layout-in-x86s-struct-kvm_arch.patch
1290 Patch677: kvm-split-kvm_arch_set_memory_region-into-prepare-and-commit.patch
1291 Patch678: kvm-introduce-gfn_to_pfn_memslot.patch
1292 Patch679: kvm-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch
1293 Patch680: kvm-introduce-kvm-srcu-and-convert-kvm_set_memory_region-to-SRCU-update.patch
1294 Patch681: kvm-use-SRCU-for-dirty-log.patch
1295 Patch682: kvm-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch
1296 Patch683: kvm-convert-io_bus-to-SRCU.patch
1297 Patch684: kvm-switch-vcpu-context-to-use-SRCU.patch
1298 Patch685: kvm-convert-slots_lock-to-a-mutex.patch
1299 Patch686: kvm-Bump-maximum-vcpu-count-to-64.patch
1300 Patch687: kvm-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch
1301 Patch688: kvm-VMX-Use-macros-instead-of-hex-value-on-cr0-initialization.patch
1302 Patch689: kvm-SVM-Reset-cr0-properly-on-vcpu-reset.patch
1303 Patch690: kvm-SVM-init_vmcb-remove-redundant-save-cr0-initialization.patch
1304 Patch691: kvm-fix-kvmclock-adjust-offset-ioctl-to-match-upstream.patch
1305 Patch692: kvm-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch
1306 Patch693: kvm-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective-updates.patch
1307 Patch694: kvm-remove-pre_task_link-setting-in-save_state_to_tss16.patch
1308 Patch695: kvm-SVM-Move-INTR-vmexit-out-of-atomic-code.patch
1309 Patch696: kvm-SVM-Notify-nested-hypervisor-of-lost-event-injections.patch
1310 Patch697: kvm-SVM-remove-needless-mmap_sem-acquision-from-nested_svm_map.patch
1311 Patch698: kvm-VMX-Disable-unrestricted-guest-when-EPT-disabled.patch
1312 Patch699: kvm-x86-disallow-multiple-KVM_CREATE_IRQCHIP.patch
1313 Patch700: kvm-x86-disallow-KVM_-SET-GET-_LAPIC-without-allocated-in-kernel-lapic.patch
1314 Patch701: kvm-x86-disable-paravirt-mmu-reporting.patch
1315 Patch702: kvm-Allow-internal-errors-reported-to-userspace-to-carry-extra-data.patch
1316 Patch703: kvm-VMX-Report-unexpected-simultaneous-exceptions-as-internal-errors.patch
1317 Patch704: kvm-fix-lock-imbalance-in-kvm_-_irq_source_id.patch
1318 Patch705: kvm-only-clear-irq_source_id-if-irqchip-is-present.patch
1319 Patch706: kvm-Fix-possible-circular-locking-in-kvm_vm_ioctl_assign_device.patch
1320 Patch707: block-Fix-incorrect-alignment-offset-reporting-and-update-documentation.patch
1321 Patch708: block-Correct-handling-of-bottom-device-misaligment.patch
1322 Patch709: block-Fix-discard-alignment-calculation-and-printing.patch
1323 Patch710: block-bdev_stack_limits-wrapper.patch
1324 Patch711: dm-Fix-device-mapper-topology-stacking.patch
1325 Patch712: block-Stop-using-byte-offsets.patch
1326 Patch713: dm-add-feature-flags-to-reduce-future-kABI-impact.patch
1327 Patch714: netdrv-igb-Update-igb-driver-to-support-Barton-Hills.patch
1328 Patch715: redhat-Don-t-compile-DECNET.patch
1329 Patch716: redhat-fs-don-t-build-freevxfs.patch
1330 Patch717: redhat-disable-KVM-on-non-x86_64-arches.patch
1331 Patch718: gfs-GFS2-Fix-up-system-xattrs.patch
1332 Patch719: gfs-VFS-Add-forget_all_cached_acls.patch
1333 Patch720: gfs-GFS2-Use-forget_all_cached_acls.patch
1334 Patch721: gfs-GFS2-Use-gfs2_set_mode-instead-of-munge_mode.patch
1335 Patch722: gfs-GFS2-Clean-up-ACLs.patch
1336 Patch723: gfs-GFS2-Add-cached-ACLs-support.patch
1337 Patch724: gfs-VFS-Use-GFP_NOFS-in-posix_acl_from_xattr.patch
1338 Patch725: gfs-GFS2-Fix-gfs2_xattr_acl_chmod.patch
1339 Patch726: gfs2-Fix-o-meta-mounts-for-subsequent-mounts.patch
1340 Patch727: gfs2-Alter-arguments-of-gfs2_quota-statfs_sync.patch
1341 Patch728: gfs2-Hook-gfs2_quota_sync-into-VFS-via-gfs2_quotactl_ops.patch
1342 Patch729: gfs2-Remove-obsolete-code-in-quota-c.patch
1343 Patch730: gfs2-Add-get_xstate-quota-function.patch
1344 Patch731: gfs2-Add-proper-error-reporting-to-quota-sync-via-sysfs.patch
1345 Patch732: gfs2-Remove-constant-argument-from-qdsb_get.patch
1346 Patch733: gfs2-Remove-constant-argument-from-qd_get.patch
1347 Patch734: gfs2-Clean-up-gfs2_adjust_quota-and-do_glock.patch
1348 Patch735: gfs2-Add-get_xquota-support.patch
1349 Patch736: gfs2-Add-set_xquota-support.patch
1350 Patch737: gfs2-Improve-statfs-and-quota-usability.patch
1351 Patch738: gfs2-remove-division-from-new-statfs-code.patch
1352 Patch739: gfs2-add-barrier-nobarrier-mount-options.patch
1353 Patch740: gfs2-only-show-nobarrier-option-on-proc-mounts-when-the-option-is-active.patch
1354 Patch741: gfs-GFS2-Fix-lock-ordering-in-gfs2_check_blk_state.patch
1355 Patch742: gfs-GFS2-Fix-locking-bug-in-rename.patch
1356 Patch743: gfs-GFS2-Ensure-uptodate-inode-size-when-using-O_APPEND.patch
1357 Patch744: gfs-GFS2-Fix-glock-refcount-issues.patch
1358 Patch745: powerpc-pseries-Add-extended_cede_processor-helper-function.patch
1359 Patch746: powerpc-pseries-Add-hooks-to-put-the-CPU-into-an-appropriate-offline-state.patch
1360 Patch747: powerpc-Kernel-handling-of-Dynamic-Logical-Partitioning.patch
1361 Patch748: powerpc-sysfs-cpu-probe-release-files.patch
1362 Patch749: powerpc-CPU-DLPAR-handling.patch
1363 Patch750: powerpc-Add-code-to-online-offline-CPUs-of-a-DLPAR-node.patch
1364 Patch751: powerpc-cpu-allocation-deallocation-process.patch
1365 Patch752: powerpc-pseries-Correct-pseries-dlpar-c-build-break-without-CONFIG_SMP.patch
1366 Patch753: net-dccp-fix-module-load-dependency-btw-dccp_probe-and-dccp.patch
1367 Patch754: drm-drm-edid-update-to-2-6-33-EDID-parser-code.patch
1368 Patch755: drm-mm-patch-drm-core-memory-range-manager-up-to-2-6-33.patch
1369 Patch756: drm-ttm-rollup-upstream-TTM-fixes.patch
1370 Patch757: drm-unlocked-ioctl-support-for-core-macro-fixes.patch
1371 Patch758: drm-add-new-userspace-core-drm-interfaces-from-2-6-33.patch
1372 Patch759: drm-remove-address-mask-param-for-drm_pci_alloc.patch
1373 Patch760: drm-kms-rollup-KMS-core-and-helper-changes-to-2-6-33.patch
1374 Patch761: drm-radeon-intel-realign-displayport-helper-code-with-upstream.patch
1375 Patch762: drm-i915-bring-Intel-DRM-KMS-driver-up-to-2-6-33.patch
1376 Patch763: drm-radeon-kms-update-to-2-6-33-without-TTM-API-changes.patch
1377 Patch764: drm-ttm-validation-API-changes-ERESTART-fixes.patch
1378 Patch765: drm-nouveau-update-to-2-6-33-level.patch
1379 Patch766: x86-allow-fbdev-primary-video-code-on-64-bit.patch
1380 Patch767: offb-add-support-for-framebuffer-handoff-to-offb.patch
1381 Patch768: drm-minor-printk-fixes-from-upstream.patch
1382 Patch769: redhat-tagging-2-6-32-7-el6.patch
1383 Patch770: redhat-updating-lastcommit-for-2-6-32-7.patch
1384 Patch771: build-Revert-redhat-disabling-temporaly-DEVTMPFS.patch
1385 Patch772: redhat-tagging-2-6-32-8-el6.patch
1386 Patch773: redhat-updating-lastcommit-for-2-6-32-8.patch
1387 Patch774: serial-8250-add-support-for-DTR-DSR-hardware-flow-control.patch
1388 Patch775: s390x-qeth-Support-for-HiperSockets-Network-Traffic-Analyzer.patch
1389 Patch776: s390-qeth-fix-packet-loss-if-TSO-is-switched-on.patch
1390 Patch777: s390x-tape-Add-pr_fmt-macro-to-all-tape-source-files.patch
1391 Patch778: net-dccp-modify-how-dccp-creates-slab-caches-to-prevent-bug-halt-in-SLUB.patch
1392 Patch779: scsi-sync-fcoe-with-upstream.patch
1393 Patch780: block-Honor-the-gfp_mask-for-alloc_page-in-blkdev_issue_discard.patch
1394 Patch781: sound-ALSA-HDA-driver-update-2009-12-15-2.patch
1395 Patch782: scsi-mpt2sas-use-sas-address-instead-of-handle-as-a-lookup.patch
1396 Patch783: scsi-mpt2sas-fix-expander-remove-fail.patch
1397 Patch784: scsi-mpt2sas-check-for-valid-response-info.patch
1398 Patch785: scsi-mpt2sas-new-device-SAS2208-support.patch
1399 Patch786: scsi-mpt2sas-adding-MPI-Headers-revision-L.patch
1400 Patch787: scsi-mpt2sas-stop-driver-when-firmware-encounters-faults.patch
1401 Patch788: scsi-mpt2sas-fix-some-comments.patch
1402 Patch789: scsi-mpt2sas-add-command-line-option-diag_buffer_enable.patch
1403 Patch790: scsi-mpt2sas-add-extended-type-for-diagnostic-buffer-support.patch
1404 Patch791: scsi-mpt2sas-add-TimeStamp-support-when-sending-ioc_init.patch
1405 Patch792: scsi-mpt2sas-limit-the-max_depth-to-32-for-SATA-devices.patch
1406 Patch793: scsi-mpt2sas-add-new-info-messages-for-IR-and-Expander-events.patch
1407 Patch794: scsi-mpt2sas-retrieve-the-ioc-facts-prior-to-putting-the-controller-into-READY-state.patch
1408 Patch795: scsi-mpt2sas-return-DID_TRANSPORT_DISRUPTED-in-nexus-loss-and-SCSI_MLQUEUE_DEVICE_BUSY-if-device-is-busy.patch
1409 Patch796: scsi-mpt2sas-mpt2sas_base_get_sense_buffer_dma-returns-little-endian.patch
1410 Patch797: scsi-mpt2sas-fix-PPC-endian-bug.patch
1411 Patch798: scsi-mpt2sas-freeze-the-sdev-IO-queue-when-firmware-sends-internal-device-reset.patch
1412 Patch799: scsi-mpt2sas-add-support-for-RAID-Action-System-Shutdown-Initiated-at-OS-Shutdown.patch
1413 Patch800: scsi-mpt2sas-don-t-update-links-nor-unblock-device-at-no-link-rate-change.patch
1414 Patch801: scsi-mpt2sas-Bump-version-03-100-03-00.patch
1415 Patch802: scsi-megaraid-upgrade-to-4-17.patch
1416 Patch803: uv-x86-SGI-Dont-track-GRU-space-in-PAT.patch
1417 Patch804: uv-x86-mm-Call-is_untracked_pat_range-rather-than-is_ISA_range.patch
1418 Patch805: uv-x86-mm-is_untracked_pat_range-takes-a-normal-semiclosed-range.patch
1419 Patch806: uv-x86-platform-Change-is_untracked_pat_range-to-bool.patch
1420 Patch807: uv-x86-Change-is_ISA_range-into-an-inline-function.patch
1421 Patch808: uv-x86-mm-Correct-the-implementation-of-is_untracked_pat_range.patch
1422 Patch809: uv-x86-RTC-Rename-generic_interrupt-to-x86_platform_ipi.patch
1423 Patch810: uv-x86-RTC-Always-enable-RTC-clocksource.patch
1424 Patch811: uv-x86-SGI-Fix-irq-affinity-for-hub-based-interrupts.patch
1425 Patch812: uv-x86-apic-Move-SGI-UV-functionality-out-of-generic-IO-APIC-code.patch
1426 Patch813: uv-x86-irq-Allow-0xff-for-proc-irq-n-smp_affinity-on-an-8-cpu-system.patch
1427 Patch814: uv-x86-Remove-move_cleanup_count-from-irq_cfg.patch
1428 Patch815: uv-x86-irq-Check-move_in_progress-before-freeing-the-vector-mapping.patch
1429 Patch816: uv-xpc-needs-to-provide-an-abstraction-for-uv_gpa.patch
1430 Patch817: uv-x86-update-XPC-to-handle-updated-BIOS-interface.patch
1431 Patch818: uv-x86-xpc-NULL-deref-when-mesq-becomes-empty.patch
1432 Patch819: uv-x86-xpc_make_first_contact-hang-due-to-not-accepting-ACTIVE-state.patch
1433 Patch820: uv-x86-XPC-receive-message-reuse-triggers-invalid-BUG_ON.patch
1434 Patch821: uv-XPC-pass-nasid-instead-of-nid-to-gru_create_message_queue.patch
1435 Patch822: gru-GRU-Rollup-patch.patch
1436 Patch823: uv-React-2-6-32-y-isolcpus-broken-in-2-6-32-y-kernel.patch
1437 Patch824: nfs-nfsd-make-sure-data-is-on-disk-before-calling-fsync.patch
1438 Patch825: nfs-sunrpc-fix-peername-failed-on-closed-listener.patch
1439 Patch826: nfs-SUNRPC-Fix-up-an-error-return-value-in-gss_import_sec_context_kerberos.patch
1440 Patch827: nfs-SUNRPC-Fix-the-return-value-in-gss_import_sec_context.patch
1441 Patch828: nfs-sunrpc-on-successful-gss-error-pipe-write-don-t-return-error.patch
1442 Patch829: nfs-sunrpc-fix-build-time-warning.patch
1443 Patch830: scsi-bfa-update-from-2-1-2-0-to-2-1-2-1.patch
1444 Patch831: scsi-qla2xxx-Update-support-for-FC-FCoE-HBA-CNA.patch
1445 Patch832: irq-Expose-the-irq_desc-node-as-proc-irq-node.patch
1446 Patch833: cgroups-fix-for-kernel-BUG-at-kernel-cgroup-c-790.patch
1447 Patch834: tracing-tracepoint-Add-signal-tracepoints.patch
1448 Patch835: block-direct-io-cleanup-blockdev_direct_IO-locking.patch
1449 Patch836: pci-PCIe-AER-honor-ACPI-HEST-FIRMWARE-FIRST-mode.patch
1450 Patch837: x86-Add-kernel-pagefault-tracepoint-for-x86-x86_64.patch
1451 Patch838: fs-xfs-2-6-33-updates.patch
1452 Patch839: x86-dell-wmi-Add-support-for-new-Dell-systems.patch
1453 Patch840: x86-core-make-LIST_POISON-less-deadly.patch
1454 Patch841: kvm-fix-cleanup_srcu_struct-on-vm-destruction.patch
1455 Patch842: redhat-tagging-2-6-32-9-el6.patch
1456 Patch843: redhat-updating-lastcommit-for-2-6-32-9.patch
1457 Patch844: scsi-scsi_transport_fc-Allow-LLD-to-reset-FC-BSG-timeout.patch
1458 Patch845: s390x-zfcp-introduce-BSG-timeout-callback.patch
1459 Patch846: s390x-zfcp-set-HW-timeout-requested-by-BSG-request.patch
1460 Patch847: redhat-config-increase-printk-buffer.patch
1461 Patch848: netdrv-qlge-update-to-upstream-version-v1-00-00-23-00-00-01.patch
1462 Patch849: gfs-Add-quota-netlink-support.patch
1463 Patch850: gfs-Use-dquot_send_warning.patch
1464 Patch851: netdrv-e1000e-update-to-the-latest-upstream.patch
1465 Patch852: x86-Disable-Memory-hot-add-on-x86-32-bit.patch
1466 Patch853: utrace-fix-utrace_maybe_reap-vs-find_matching_engine-race.patch
1467 Patch854: perf-add-kernel-internal-interface.patch
1468 Patch855: perf-improve-error-reporting.patch
1469 Patch856: perf-Add-a-callback-to-perf-events.patch
1470 Patch857: perf-Allow-for-custom-overflow-handlers.patch
1471 Patch858: perf-Fix-PERF_FORMAT_GROUP-scale-info.patch
1472 Patch859: perf-Fix-event-scaling-for-inherited-counters.patch
1473 Patch860: perf-Fix-locking-for-PERF_FORMAT_GROUP.patch
1474 Patch861: perf-Use-overflow-handler-instead-of-the-event-callback.patch
1475 Patch862: perf-Remove-the-event-callback-from-perf-events.patch
1476 Patch863: s390x-ptrace-dont-abuse-PT_PTRACED.patch
1477 Patch864: s390x-fix-loading-of-PER-control-registers-for-utrace.patch
1478 Patch865: scsi-aic79xx-check-for-non-NULL-scb-in-ahd_handle_nonpkt_busfree.patch
1479 Patch866: sound-Fix-SPDIF-In-for-AD1988-codecs-add-Intel-Cougar-IDs.patch
1480 Patch867: x86-Force-irq-complete-move-during-cpu-offline.patch
1481 Patch868: netdrv-vxge-fix-issues-found-in-Neterion-testing.patch
1482 Patch869: mm-mmap-don-t-return-ENOMEM-when-mapcount-is-temporarily-exceeded-in-munmap.patch
1483 Patch870: redhat-tagging-2-6-32-10-el6.patch
1484 Patch871: redhat-updating-lastcommit-for-2-6-32-10.patch
1485 Patch872: stable-untangle-the-do_mremap-mess.patch
1486 Patch873: stable-fasync-split-fasync_helper-into-separate-add-remove-functions.patch
1487 Patch874: stable-ASoC-fix-params_rate-macro-use-in-several-codecs.patch
1488 Patch875: stable-modules-Skip-empty-sections-when-exporting-section-notes.patch
1489 Patch876: stable-exofs-simple_write_end-does-not-mark_inode_dirty.patch
1490 Patch877: stable-Revert-x86-Side-step-lguest-problem-by-only-building-cmpxchg8b_emu-for-pre-Pentium.patch
1491 Patch878: stable-rtc_cmos-convert-shutdown-to-new-pnp_driver-shutdown.patch
1492 Patch879: stable-drivers-cpuidle-governors-menu-c-fix-undefined-reference-to-__udivdi3.patch
1493 Patch880: stable-lib-rational-c-needs-module-h.patch
1494 Patch881: stable-dma-debug-allow-DMA_BIDIRECTIONAL-mappings-to-be-synced-with-DMA_FROM_DEVICE-and.patch
1495 Patch882: stable-kernel-signal-c-fix-kernel-information-leak-with-print-fatal-signals-1.patch
1496 Patch883: stable-mmc_block-add-dev_t-initialization-check.patch
1497 Patch884: stable-mmc_block-fix-probe-error-cleanup-bug.patch
1498 Patch885: stable-mmc_block-fix-queue-cleanup.patch
1499 Patch886: stable-ALSA-ac97-Add-Dell-Dimension-2400-to-Headphone-Line-Jack-Sense-blacklist.patch
1500 Patch887: stable-ALSA-atiixp-Specify-codec-for-Foxconn-RC4107MA-RS2.patch
1501 Patch888: stable-ASoC-Fix-WM8350-DSP-mode-B-configuration.patch
1502 Patch889: stable-netfilter-ebtables-enforce-CAP_NET_ADMIN.patch
1503 Patch890: stable-netfilter-nf_ct_ftp-fix-out-of-bounds-read-in-update_nl_seq.patch
1504 Patch891: stable-hwmon-coretemp-Fix-TjMax-for-Atom-N450-D410-D510-CPUs.patch
1505 Patch892: stable-hwmon-adt7462-Fix-pin-28-monitoring.patch
1506 Patch893: stable-quota-Fix-dquot_transfer-for-filesystems-different-from-ext4.patch
1507 Patch894: stable-xen-fix-hang-on-suspend.patch
1508 Patch895: stable-iwlwifi-fix-iwl_queue_used-bug-when-read_ptr-write_ptr.patch
1509 Patch896: stable-ath5k-Fix-eeprom-checksum-check-for-custom-sized-eeproms.patch
1510 Patch897: stable-cfg80211-fix-syntax-error-on-user-regulatory-hints.patch
1511 Patch898: stable-iwl-off-by-one-bug.patch
1512 Patch899: stable-mac80211-add-missing-sanity-checks-for-action-frames.patch
1513 Patch900: stable-libertas-Remove-carrier-signaling-from-the-scan-code.patch
1514 Patch901: stable-kernel-sysctl-c-fix-stable-merge-error-in-NOMMU-mmap_min_addr.patch
1515 Patch902: stable-mac80211-fix-skb-buffering-issue-and-fixes-to-that.patch
1516 Patch903: stable-fix-braindamage-in-audit_tree-c-untag_chunk.patch
1517 Patch904: stable-fix-more-leaks-in-audit_tree-c-tag_chunk.patch
1518 Patch905: stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
1519 Patch906: stable-ipv6-skb_dst-can-be-NULL-in-ipv6_hop_jumbo.patch
1520 Patch907: misc-Revert-stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
1521 Patch908: netdrv-e1000e-enhance-frame-fragment-detection.patch
1522 Patch909: redhat-kABI-internal-only-files.patch
1523 Patch910: drm-bring-RHEL6-radeon-drm-up-to-2-6-33-rc4-5-level.patch
1524 Patch911: s390x-qeth-set-default-BLKT-settings-dependend-on-OSA-hw-level.patch
1525 Patch912: block-dm-replicator-documentation-and-module-registry.patch
1526 Patch913: block-dm-replicator-replication-log-and-site-link-handler-interfaces-and-main-replicator-module.patch
1527 Patch914: block-dm-replicator-ringbuffer-replication-log-handler.patch
1528 Patch915: block-dm-replicator-blockdev-site-link-handler.patch
1529 Patch916: block-dm-raid45-add-raid45-target.patch
1530 Patch917: dm-dm-raid45-export-missing-dm_rh_inc.patch
1531 Patch918: kdump-Remove-the-32MB-limitation-for-crashkernel.patch
1532 Patch919: redhat-tagging-2-6-32-11-el6.patch
1533 Patch920: redhat-updating-lastcommit-for-2-6-32-11.patch
1534 Patch921: redhat-Revert-edac-amd64_edac-disabling-temporarily.patch
1535 Patch922: x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch
1536 Patch923: x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch
1537 Patch924: x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch
1538 Patch925: x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch
1539 Patch926: x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch
1540 Patch927: x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch
1541 Patch928: redhat-rpadlpar_io-should-be-built-in-kernel.patch
1542 Patch929: x86-msr-cpuid-Register-enough-minors-for-the-MSR-and-CPUID-drivers.patch
1543 Patch930: scsi-Sync-be2iscsi-with-upstream.patch
1544 Patch931: redhat-config-disable-CONFIG_X86_CPU_DEBUG.patch
1545 Patch932: pci-Always-set-prefetchable-base-limit-upper32-registers.patch
1546 Patch933: mm-Memory-tracking-for-Stratus.patch
1547 Patch934: redhat-enable-Memory-tracking-for-Stratus.patch
1548 Patch935: drm-radeon-possible-security-issue.patch
1549 Patch936: redhat-tagging-2-6-32-12-el6.patch
1550 Patch937: redhat-updating-lastcommit-for-2-6-32-12.patch
1551 Patch938: mm-Memory-tracking-for-Stratus-2.patch
1552 Patch939: kdump-backport-upstream-ppc64-kcrctab-fixes.patch
1553 Patch940: x86-acpi-Export-acpi_pci_irq_-add-del-_prt.patch
1554 Patch941: kvm-Fix-race-between-APIC-TMR-and-IRR.patch
1555 Patch942: kvm-x86-Fix-host_mapping_level.patch
1556 Patch943: kvm-MMU-bail-out-pagewalk-on-kvm_read_guest-error.patch
1557 Patch944: kvm-x86-Fix-probable-memory-leak-of-vcpu-arch-mce_banks.patch
1558 Patch945: kvm-x86-Fix-leak-of-free-lapic-date-in-kvm_arch_vcpu_init.patch
1559 Patch946: kvm-only-allow-one-gsi-per-fd.patch
1560 Patch947: kvm-properly-check-max-PIC-pin-in-irq-route-setup.patch
1561 Patch948: kvm-eventfd-allow-atomic-read-and-waitqueue-remove.patch
1562 Patch949: kvm-fix-spurious-interrupt-with-irqfd.patch
1563 Patch950: x86-Add-AMD-Node-ID-MSR-support.patch
1564 Patch951: x86-Fix-crash-when-profiling-more-than-28-events.patch
1565 Patch952: virtio-console-comment-cleanup.patch
1566 Patch953: virtio-console-statically-initialize-virtio_cons.patch
1567 Patch954: virtio-hvc_console-make-the-ops-pointer-const.patch
1568 Patch955: virtio-hvc_console-Remove-__devinit-annotation-from-hvc_alloc.patch
1569 Patch956: virtio-console-We-support-only-one-device-at-a-time.patch
1570 Patch957: virtio-console-port-encapsulation.patch
1571 Patch958: virtio-console-encapsulate-buffer-information-in-a-struct.patch
1572 Patch959: virtio-console-ensure-add_inbuf-can-work-for-multiple-ports-as-well.patch
1573 Patch960: virtio-console-introduce-a-get_inbuf-helper-to-fetch-bufs-from-in_vq.patch
1574 Patch961: virtio-console-use-vdev-priv-to-avoid-accessing-global-var.patch
1575 Patch962: virtio-console-don-t-assume-a-single-console-port.patch
1576 Patch963: virtio-console-remove-global-var.patch
1577 Patch964: virtio-console-struct-ports-for-multiple-ports-per-device.patch
1578 Patch965: virtio-console-ensure-console-size-is-updated-on-hvc-open.patch
1579 Patch966: virtio-console-Separate-out-console-specific-data-into-a-separate-struct.patch
1580 Patch967: virtio-console-Separate-out-console-init-into-a-new-function.patch
1581 Patch968: virtio-console-Separate-out-find_vqs-operation-into-a-different-function.patch
1582 Patch969: virtio-console-Introduce-function-to-hand-off-data-from-host-to-readers.patch
1583 Patch970: virtio-console-Introduce-a-send_buf-function-for-a-common-path-for-sending-data-to-host.patch
1584 Patch971: virtio-console-Add-a-new-MULTIPORT-feature-support-for-generic-ports.patch
1585 Patch972: virtio-console-Prepare-for-writing-to-reading-from-userspace-buffers.patch
1586 Patch973: virtio-console-Associate-each-port-with-a-char-device.patch
1587 Patch974: virtio-console-Add-file-operations-to-ports-for-open-read-write-poll.patch
1588 Patch975: virtio-console-Ensure-only-one-process-can-have-a-port-open-at-a-time.patch
1589 Patch976: virtio-console-Register-with-sysfs-and-create-a-name-attribute-for-ports.patch
1590 Patch977: virtio-console-Remove-cached-data-on-port-close.patch
1591 Patch978: virtio-console-Handle-port-hot-plug.patch
1592 Patch979: virtio-Add-ability-to-detach-unused-buffers-from-vrings.patch
1593 Patch980: virtio-hvc_console-Export-GPL-ed-hvc_remove.patch
1594 Patch981: virtio-console-Add-ability-to-hot-unplug-ports.patch
1595 Patch982: virtio-console-Add-debugfs-files-for-each-port-to-expose-debug-info.patch
1596 Patch983: virtio-console-show-error-message-if-hvc_alloc-fails-for-console-ports.patch
1597 Patch984: redhat-tagging-2-6-32-13-el6.patch
1598 Patch985: redhat-updating-lastcommit-for-2-6-32-13.patch
1599 Patch986: uv-x86-Add-function-retrieving-node-controller-revision-number.patch
1600 Patch987: uv-x86-Ensure-hub-revision-set-for-all-ACPI-modes.patch
1601 Patch988: s390x-cio-channel-path-vary-operation-has-no-effect.patch
1602 Patch989: s390x-zcrypt-Do-not-remove-coprocessor-in-case-of-error-8-72.patch
1603 Patch990: s390x-dasd-Fix-null-pointer-in-s390dbf-and-discipline-checking.patch
1604 Patch991: redhat-Enable-oprofile-multiplexing-on-x86_64-and-x86-architectures-only.patch
1605 Patch992: netdrv-update-tg3-to-version-3-106-and-fix-panic.patch
1606 Patch993: redhat-disable-CONFIG_OPTIMIZE_FOR_SIZE.patch
1607 Patch994: s390x-dasd-fix-online-offline-race.patch
1608 Patch995: redhat-tagging-2-6-32-14-el6.patch
1609 Patch996: redhat-updating-lastcommit-for-2-6-32-14.patch
1610 Patch997: gfs-GFS2-Fix-refcnt-leak-on-gfs2_follow_link-error-path.patch
1611 Patch998: gfs-GFS2-Use-GFP_NOFS-for-alloc-structure.patch
1612 Patch999: gfs-GFS2-Use-MAX_LFS_FILESIZE-for-meta-inode-size.patch
1613 Patch1000: gfs-GFS2-Wait-for-unlock-completion-on-umount.patch
1614 Patch1001: gfs-GFS2-Extend-umount-wait-coverage-to-full-glock-lifetime.patch
1615 Patch1002: x86-intr-remap-generic-support-for-remapping-HPET-MSIs.patch
1616 Patch1003: x86-arch-specific-support-for-remapping-HPET-MSIs.patch
1617 Patch1004: x86-Disable-HPET-MSI-on-ATI-SB700-SB800.patch
1618 Patch1005: fs-ext4-fix-type-of-offset-in-ext4_io_end.patch
1619 Patch1006: redhat-disable-CONFIG_DEBUG_PERF_USE_VMALLOC-on-production-kernels.patch
1620 Patch1007: x86-fix-Add-AMD-Node-ID-MSR-support.patch
1621 Patch1008: redhat-config-disable-CONFIG_VMI.patch
1622 Patch1009: quota-64-bit-quota-format-fixes.patch
1623 Patch1010: block-cfq-Do-not-idle-on-async-queues-and-drive-deeper-WRITE-depths.patch
1624 Patch1011: block-blk-cgroup-Fix-lockdep-warning-of-potential-deadlock-in-blk-cgroup.patch
1625 Patch1012: redhat-tagging-2-6-32-15-el6.patch
1626 Patch1013: redhat-updating-lastcommit-for-2-6-32-15.patch
1627 Patch1014: redhat-x86_64-enable-function-tracers.patch
1628 Patch1015: nfs-nfsd41-nfsd4_decode_compound-does-not-recognize-all-ops.patch
1629 Patch1016: nfs-nfsd4-Use-FIRST_NFS4_OP-in-nfsd4_decode_compound.patch
1630 Patch1017: nfs-nfsd-use-vfs_fsync-for-non-directories.patch
1631 Patch1018: nfs-nfsd41-Create-the-recovery-entry-for-the-NFSv4-1-client.patch
1632 Patch1019: nfs-nfsd-4-1-has-an-rfc-number.patch
1633 Patch1020: nfs-SUNRPC-Use-rpc_pton-in-ip_map_parse.patch
1634 Patch1021: nfs-NFSD-Support-AF_INET6-in-svc_addsock-function.patch
1635 Patch1022: nfs-SUNRPC-Bury-ifdef-IPV6-in-svc_create_xprt.patch
1636 Patch1023: nfs-SUNRPC-NFS-kernel-APIs-shouldn-t-return-ENOENT-for-transport-not-found.patch
1637 Patch1024: nfs-NFSD-Create-PF_INET6-listener-in-write_ports.patch
1638 Patch1025: nfs-nfs41-Adjust-max-cache-response-size-value.patch
1639 Patch1026: nfs-nfs41-Check-slot-table-for-referring-calls.patch
1640 Patch1027: nfs-nfs41-Process-callback-s-referring-call-list.patch
1641 Patch1028: nfs-nfs41-fix-wrong-error-on-callback-header-xdr-overflow.patch
1642 Patch1029: nfs-nfs41-directly-encode-back-channel-error.patch
1643 Patch1030: nfs-nfs41-remove-uneeded-checks-in-callback-processing.patch
1644 Patch1031: nfs-nfs41-prepare-for-back-channel-drc.patch
1645 Patch1032: nfs-nfs41-back-channel-drc-minimal-implementation.patch
1646 Patch1033: nfs-nfs41-implement-cb_recall_slot.patch
1647 Patch1034: nfs-nfs41-resize-slot-table-in-reset.patch
1648 Patch1035: nfs-nfs41-fix-nfs4_callback_recallslot.patch
1649 Patch1036: nfs-nfs41-clear-NFS4CLNT_RECALL_SLOT-bit-on-session-reset.patch
1650 Patch1037: nfs-nfs41-cleanup-callback-code-to-use-__be32-type.patch
1651 Patch1038: nfs-Fix-a-reference-leak-in-nfs_wb_cancel_page.patch
1652 Patch1039: nfs-Try-to-commit-unstable-writes-in-nfs_release_page.patch
1653 Patch1040: nfs-Make-nfs_commitdata_release-static.patch
1654 Patch1041: nfs-Avoid-warnings-when-CONFIG_NFS_V4-n.patch
1655 Patch1042: nfs-Ensure-that-the-NFSv4-locking-can-recover-from-stateid-errors.patch
1656 Patch1043: nfs-NFSv4-Don-t-allow-posix-locking-against-servers-that-don-t-support-it.patch
1657 Patch1044: nfs-NFSv4-1-Don-t-call-nfs4_schedule_state_recovery-unnecessarily.patch
1658 Patch1045: nfs-Ensure-that-we-handle-NFS4ERR_STALE_STATEID-correctly.patch
1659 Patch1046: nfs-sunrpc-cache-fix-module-refcnt-leak-in-a-failure-path.patch
1660 Patch1047: scsi-lpfc-Update-from-8-3-4-to-8-3-5-4-FC-FCoE.patch
1661 Patch1048: dm-fix-kernel-panic-at-releasing-bio-on-recovery-failed-region.patch
1662 Patch1049: dm-dm-raid1-fix-deadlock-at-suspending-failed-device.patch
1663 Patch1050: vhost-fix-high-32-bit-in-FEATURES-ioctls.patch
1664 Patch1051: vhost-prevent-modification-of-an-active-ring.patch
1665 Patch1052: vhost-add-access_ok-checks.patch
1666 Patch1053: vhost-make-default-mapping-empty-by-default.patch
1667 Patch1054: vhost-access-check-thinko-fixes.patch
1668 Patch1055: vhost-vhost-net-comment-use-of-invalid-fd-when-setting-vhost-backend.patch
1669 Patch1056: vhost-vhost-net-defer-f-private_data-until-setup-succeeds.patch
1670 Patch1057: vhost-fix-TUN-m-VHOST_NET-y.patch
1671 Patch1058: kvm-emulate-accessed-bit-for-EPT.patch
1672 Patch1059: net-nf_conntrack-fix-memory-corruption.patch
1673 Patch1060: nfs-nfs4-handle-EKEYEXPIRED-errors-from-RPC-layer.patch
1674 Patch1061: nfs-sunrpc-parse-and-return-errors-reported-by-gssd.patch
1675 Patch1062: nfs-handle-NFSv2-EKEYEXPIRED-returns-from-RPC-layer-appropriately.patch
1676 Patch1063: nfs-nfs-handle-NFSv3-EKEYEXPIRED-errors-as-we-would-EJUKEBOX.patch
1677 Patch1064: oprofile-Support-Nehalem-EX-CPU-in-Oprofile.patch
1678 Patch1065: mm-define-MADV_HUGEPAGE.patch
1679 Patch1066: mm-add-a-compound_lock.patch
1680 Patch1067: mm-alter-compound-get_page-put_page.patch
1681 Patch1068: mm-update-futex-compound-knowledge.patch
1682 Patch1069: mm-clear-compound-mapping.patch
1683 Patch1070: mm-add-native_set_pmd_at.patch
1684 Patch1071: mm-add-pmd-paravirt-ops.patch
1685 Patch1072: mm-no-paravirt-version-of-pmd-ops.patch
1686 Patch1073: mm-export-maybe_mkwrite.patch
1687 Patch1074: mm-comment-reminder-in-destroy_compound_page.patch
1688 Patch1075: mm-config_transparent_hugepage.patch
1689 Patch1076: mm-special-pmd_trans_-functions.patch
1690 Patch1077: mm-add-pmd-mangling-generic-functions.patch
1691 Patch1078: mm-add-pmd-mangling-functions-to-x86.patch
1692 Patch1079: mm-bail-out-gup_fast-on-splitting-pmd.patch
1693 Patch1080: mm-pte-alloc-trans-splitting.patch
1694 Patch1081: mm-add-pmd-mmu_notifier-helpers.patch
1695 Patch1082: mm-clear-page-compound.patch
1696 Patch1083: mm-add-pmd_huge_pte-to-mm_struct.patch
1697 Patch1084: mm-split_huge_page_mm-vma.patch
1698 Patch1085: mm-split_huge_page-paging.patch
1699 Patch1086: mm-clear_huge_page-fix.patch
1700 Patch1087: mm-clear_copy_huge_page.patch
1701 Patch1088: mm-kvm-mmu-transparent-hugepage-support.patch
1702 Patch1089: mm-backport-page_referenced-microoptimization.patch
1703 Patch1090: mm-introduce-_GFP_NO_KSWAPD.patch
1704 Patch1091: mm-dont-alloc-harder-for-gfp-nomemalloc-even-if-nowait.patch
1705 Patch1092: mm-transparent-hugepage-core.patch
1706 Patch1093: mm-verify-pmd_trans_huge-isnt-leaking.patch
1707 Patch1094: mm-madvise-MADV_HUGEPAGE.patch
1708 Patch1095: mm-pmd_trans_huge-migrate-bugcheck.patch
1709 Patch1096: mm-memcg-compound.patch
1710 Patch1097: mm-memcg-huge-memory.patch
1711 Patch1098: mm-transparent-hugepage-vmstat.patch
1712 Patch1099: mm-introduce-khugepaged.patch
1713 Patch1100: mm-hugepage-redhat-customization.patch
1714 Patch1101: mm-remove-madvise-MADV_HUGEPAGE.patch
1715 Patch1102: uv-PCI-update-pci_set_vga_state-to-call-arch-functions.patch
1716 Patch1103: pci-update-pci_set_vga_state-to-call-arch-functions.patch
1717 Patch1104: uv-x86_64-update-uv-arch-to-target-legacy-VGA-I-O-correctly.patch
1718 Patch1105: gpu-vgaarb-fix-vga-arbiter-to-accept-PCI-domains-other-than-0.patch
1719 Patch1106: uv-vgaarb-add-user-selectability-of-the-number-of-gpus-in-a-system.patch
1720 Patch1107: s390x-ctcm-lcs-claw-remove-cu3088-layer.patch
1721 Patch1108: uv-x86-Fix-RTC-latency-bug-by-reading-replicated-cachelines.patch
1722 Patch1109: pci-PCI-ACS-support-functions.patch
1723 Patch1110: pci-Enablement-of-PCI-ACS-control-when-IOMMU-enabled-on-system.patch
1724 Patch1111: net-do-not-check-CAP_NET_RAW-for-kernel-created-sockets.patch
1725 Patch1112: fs-inotify-fix-inotify-WARN-and-compatibility-issues.patch
1726 Patch1113: redhat-kABI-updates-02-11.patch
1727 Patch1114: mm-fix-BUG-s-caused-by-the-transparent-hugepage-patch.patch
1728 Patch1115: redhat-Allow-only-particular-kernel-rpms-to-be-built.patch
1729 Patch1116: nfs-Fix-a-bug-in-nfs_fscache_release_page.patch
1730 Patch1117: nfs-Remove-a-redundant-check-for-PageFsCache-in-nfs_migrate_page.patch
1731 Patch1118: redhat-tagging-2-6-32-16-el6.patch
1732 Patch1119: redhat-updating-lastcommit-for-2-6-32-16.patch
1733 Patch1120: redhat-find-provides-also-require-python.patch
1734 Patch1121: ppc-Add-kdump-support-to-Collaborative-Memory-Manager.patch
1735 Patch1122: gfs-GFS2-problems-on-single-node-cluster.patch
1736 Patch1123: selinux-print-the-module-name-when-SELinux-denies-a-userspace-upcall.patch
1737 Patch1124: kernel-Prevent-futex-user-corruption-to-crash-the-kernel.patch
1738 Patch1125: kvm-PIT-control-word-is-write-only.patch
1739 Patch1126: virt-virtio_blk-add-block-topology-support.patch
1740 Patch1127: redhat-make-CONFIG_CRASH-built-in.patch
1741 Patch1128: mm-anon_vma-linking-changes-to-improve-multi-process-scalability.patch
1742 Patch1129: mm-anon_vma-locking-updates-for-transparent-hugepage-code.patch
1743 Patch1130: dm-stripe-avoid-divide-by-zero-with-invalid-stripe-count.patch
1744 Patch1131: dm-log-userspace-fix-overhead_size-calcuations.patch
1745 Patch1132: dm-mpath-fix-stall-when-requeueing-io.patch
1746 Patch1133: dm-raid1-fail-writes-if-errors-are-not-handled-and-log-fails.patch
1747 Patch1134: kernel-time-Implement-logarithmic-time-accumalation.patch
1748 Patch1135: kernel-time-Remove-xtime_cache.patch
1749 Patch1136: watchdog-Add-support-for-iTCO-watchdog-on-Ibex-Peak-chipset.patch
1750 Patch1137: block-fix-bio_add_page-for-non-trivial-merge_bvec_fn-case.patch
1751 Patch1138: block-freeze_bdev-don-t-deactivate-successfully-frozen-MS_RDONLY-sb.patch
1752 Patch1139: x86-nmi_watchdog-enable-by-default-on-RHEL-6.patch
1753 Patch1140: x86-x86-32-clean-up-rwsem-inline-asm-statements.patch
1754 Patch1141: x86-clean-up-rwsem-type-system.patch
1755 Patch1142: x86-x86-64-support-native-xadd-rwsem-implementation.patch
1756 Patch1143: x86-x86-64-rwsem-64-bit-xadd-rwsem-implementation.patch
1757 Patch1144: x86-x86-64-rwsem-Avoid-store-forwarding-hazard-in-__downgrade_write.patch
1758 Patch1145: nfs-mount-nfs-Unknown-error-526.patch
1759 Patch1146: s390-zfcp-cancel-all-pending-work-for-a-to-be-removed-zfcp_port.patch
1760 Patch1147: s390-zfcp-report-BSG-errors-in-correct-field.patch
1761 Patch1148: s390-qdio-prevent-kernel-bug-message-in-interrupt-handler.patch
1762 Patch1149: s390-qdio-continue-polling-for-buffer-state-ERROR.patch
1763 Patch1150: s390-hvc_iucv-allocate-IUCV-send-receive-buffers-in-DMA-zone.patch
1764 Patch1151: redhat-whitelists-intentional-kABI-Module-kabi-rebase-pre-beta1-for-VM-bits.patch
1765 Patch1152: redhat-tagging-2-6-32-17-el6.patch
1766 Patch1153: redhat-updating-lastcommit-for-2-6-32-17.patch
1767 Patch1154: redhat-disable-GFS2-on-s390x.patch
1768 Patch1155: redhat-disable-XFS-on-all-arches-except-x86_64.patch
1769 Patch1156: redhat-disable-all-the-filesystems-we-aren-t-going-to-support-and-fix-ext3-4.patch
1770 Patch1157: redhat-run-new-kernel-pkg-on-posttrans.patch
1771 Patch1158: redhat-fix-typo-on-redhat-Makefile.patch
1772 Patch1159: kvm-virtio-console-Allow-sending-variable-sized-buffers-to-host-efault-on-copy_from_user-err.patch
1773 Patch1160: kvm-virtio-console-return-efault-for-fill_readbuf-if-copy_to_user-fails.patch
1774 Patch1161: kvm-virtio-console-outbufs-are-no-longer-needed.patch
1775 Patch1162: kvm-virtio-Initialize-vq-data-entries-to-NULL.patch
1776 Patch1163: kvm-virtio-console-update-Red-Hat-copyright-for-2010.patch
1777 Patch1164: kvm-virtio-console-Ensure-no-memleaks-in-case-of-unused-buffers.patch
1778 Patch1165: kvm-virtio-console-Add-ability-to-remove-module.patch
1779 Patch1166: kvm-virtio-console-Error-out-if-we-can-t-allocate-buffers-for-control-queue.patch
1780 Patch1167: kvm-virtio-console-Fill-ports-entire-in_vq-with-buffers.patch
1781 Patch1168: kvm-Add-MAINTAINERS-entry-for-virtio_console.patch
1782 Patch1169: kvm-fix-large-packet-drops-on-kvm-hosts-with-ipv6.patch
1783 Patch1170: scsi-megaraid_sas-fix-for-32bit-apps.patch
1784 Patch1171: x86-AES-PCLMUL-Instruction-support-Add-PCLMULQDQ-accelerated-implementation.patch
1785 Patch1172: x86-AES-PCLMUL-Instruction-support-Various-small-fixes-for-AES-PCMLMUL-and-generate-byte-code-for-some-new-instructions-via-gas-macro.patch
1786 Patch1173: x86-AES-PCLMUL-Instruction-support-Use-gas-macro-for-AES-NI-instructions.patch
1787 Patch1174: x86-AES-PCLMUL-Instruction-support-Various-fixes-for-AES-NI-and-PCLMMUL.patch
1788 Patch1175: kvm-x86-emulator-Add-push-pop-sreg-instructions.patch
1789 Patch1176: kvm-x86-emulator-Introduce-No64-decode-option.patch
1790 Patch1177: kvm-x86-emulator-Add-group8-instruction-decoding.patch
1791 Patch1178: kvm-x86-emulator-Add-group9-instruction-decoding.patch
1792 Patch1179: kvm-x86-emulator-Add-Virtual-8086-mode-of-emulation.patch
1793 Patch1180: kvm-x86-emulator-fix-memory-access-during-x86-emulation.patch
1794 Patch1181: kvm-x86-emulator-Check-IOPL-level-during-io-instruction-emulation.patch
1795 Patch1182: kvm-x86-emulator-Fix-popf-emulation.patch
1796 Patch1183: kvm-x86-emulator-Check-CPL-level-during-privilege-instruction-emulation.patch
1797 Patch1184: kvm-x86-emulator-Add-LOCK-prefix-validity-checking.patch
1798 Patch1185: kvm-x86-emulator-code-style-cleanup.patch
1799 Patch1186: kvm-x86-emulator-Fix-properties-of-instructions-in-group-1_82.patch
1800 Patch1187: kvm-inject-UD-in-64bit-mode-from-instruction-that-are-not-valid-there.patch
1801 Patch1188: kvm-x86-emulator-X86EMUL-macro-replacements-from-do_fetch_insn_byte-to-x86_decode_insn.patch
1802 Patch1189: kvm-x86-emulator-X86EMUL-macro-replacements-x86_emulate_insn-and-its-helpers.patch
1803 Patch1190: kvm-x86-emulator-Fix-x86_emulate_insn-not-to-use-the-variable-rc-for-non-X86EMUL-values.patch
1804 Patch1191: kvm-x86-emulator-Forbid-modifying-CS-segment-register-by-mov-instruction.patch
1805 Patch1192: kvm-Fix-load_guest_segment_descriptor-to-inject-page-fault.patch
1806 Patch1193: kvm-Fix-segment-descriptor-loading.patch
1807 Patch1194: kvm-Fix-emulate_sys-call-enter-exit-s-fault-handling.patch
1808 Patch1195: netdrv-ixgbe-prevent-speculative-processing-of-descriptors.patch
1809 Patch1196: x86-nmi_watchdog-use-__cpuinit-for-nmi_watchdog_default.patch
1810 Patch1197: net-netfilter-nf_conntrack-per-netns-nf_conntrack_cachep.patch
1811 Patch1198: scsi-mpt2sas-fix-missing-initialization.patch
1812 Patch1199: dm-raid45-target-constructor-error-path-oops-fix.patch
1813 Patch1200: netdrv-cxgb3-add-memory-barriers.patch
1814 Patch1201: mm-fix-anon_vma-locking-updates-for-transparent-hugepage-code.patch
1815 Patch1202: mm-Fix-hugetlb-c-clear_huge_page-parameter.patch
1816 Patch1203: gfs2-print-glock-numbers-in-hex.patch
1817 Patch1204: selinux-netlabel-fix-corruption-of-SELinux-MLS-categories-127.patch
1818 Patch1205: ata-ahci-disable-FPDMA-auto-activate-optimization-on-NVIDIA-AHCI.patch
1819 Patch1206: scsi-lpfc-Update-from-8-3-5-4-to-8-3-5-5-FC-FCoE.patch
1820 Patch1207: scsi-pmcraid-bug-fixes-from-upstream.patch
1821 Patch1208: mm-Fix-potential-crash-with-sys_move_pages.patch
1822 Patch1209: s390x-qeth-avoid-recovery-during-device-online-setting.patch
1823 Patch1210: kernel-Fix-SMT-scheduler-regression-in-find_busiest_queue.patch
1824 Patch1211: drm-bring-drm-core-ttm-fb-layer-fixes-in-from-upstream.patch
1825 Patch1212: s390x-vdso-glibc-does-not-use-vdso-functions.patch
1826 Patch1213: kernel-sched-Fix-SCHED_MC-regression-caused-by-change-in-sched-cpu_power.patch
1827 Patch1214: dvb-Fix-endless-loop-when-decoding-ULE-at-dvb-core.patch
1828 Patch1215: drm-radeon-kms-bring-all-v2-6-33-fixes-into-EL6-kernel.patch
1829 Patch1216: redhat-Change-RPM-name-format-for-custom-builds.patch
1830 Patch1217: uv-Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch
1831 Patch1218: uv-Fix-unmap_vma-bug-related-to-mmu_notifiers.patch
1832 Patch1219: net-bug-fix-for-vlan-gro-issue.patch
1833 Patch1220: redhat-add-suport-for-rhts-testing.patch
1834 Patch1221: redhat-add-filesystem-test.patch
1835 Patch1222: vhost-vhost-net-switch-to-smp-barriers.patch
1836 Patch1223: vhost-logging-thinko-fix.patch
1837 Patch1224: vhost-initialize-log-eventfd-context-pointer.patch
1838 Patch1225: vhost-fix-get_user_pages_fast-error-handling.patch
1839 Patch1226: vhost-vhost-net-restart-tx-poll-on-sk_sndbuf-full.patch
1840 Patch1227: x86-Intel-Cougar-Point-chipset-support.patch
1841 Patch1228: drm-Remove-loop-in-IronLake-graphics-interrupt-handler.patch
1842 Patch1229: scsi-scsi_dh_emc-fix-mode-select-setup.patch
1843 Patch1230: scsi-Add-netapp-to-scsi-dh-alua-dev-list.patch
1844 Patch1231: virt-hvc_console-Fix-race-between-hvc_close-and-hvc_remove.patch
1845 Patch1232: kernel-time-revert-cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8.patch
1846 Patch1233: redhat-infiniband-remove-all-infiniband-symbols-from-RHEL6-kABI.patch
1847 Patch1234: redhat-kABI-Update-the-RHEL6-kABI-for-kernel-2-6-32-18-el6.patch
1848 Patch1235: redhat-tagging-2-6-32-18-el6.patch
1849 Patch1236: redhat-updating-lastcommit-for-2-6-32-18.patch
1850 Patch1237: mm-Switch-to-SLAB.patch
1851 Patch1238: redhat-kABI-Update-the-kABI-for-2-6-18-el6.patch
1852
1853 Patch88888: patch-2.6.32-19.el6-vs2.3.0.36.29.4.diff
1854 Patch90220: linux-2.6-220-delta-ptrace-fix01.patch
1855 Patch90250: linux-2.6-250-ipsets.patch
1856 Patch90510: linux-2.6-510-ipod.patch
1857 Patch90521: linux-2.6-521-packet-tagging.patch
1858 #
1859 #Patch90522: linux-2.6-522-iptables-connection-tagging.patch
1860 #
1861 Patch90523: linux-2.6-523-raw-sockets.patch
1862 Patch90524: linux-2.6-524-peercred.patch
1863 Patch90525: linux-2.6-525-sknid-elevator.patch
1864 #
1865 #Patch90527:  linux-2.6-527-iptables-classify-add-mark.patch
1866 #
1867 Patch90530: linux-2.6-530-built-by-support.patch
1868 # /proc/sys/vm/panic_on_oom ?
1869 #Patch90540: linux-2.6-540-oom-kill.patch
1870 Patch90550: linux-2.6-550-raise-default-nfile-ulimit.patch
1871 Patch90570:  linux-2.6-570-tagxid.patch
1872 Patch90580:  linux-2.6-580-show-proc-virt.patch
1873 #
1874 #Patch90590:  linux-2.6-590-dcookies-mm.patch
1875 #Patch90591:  linux-2.6-591-chopstix-intern.patch
1876 #
1877 Patch90640:  linux-2.6-640-netlink-audit-hack.patch
1878 Patch90650:  linux-2.6-650-hangcheck-reboot.patch
1879 Patch90660:  linux-2.6-660-nmi-watchdog-default.patch
1880 Patch90680:  linux-2.6-680-htb-hysteresis-tso.patch
1881 #
1882 #Patch90700: linux-2.6-700-egre.patch
1883 #
1884
1885 # empty final patch file to facilitate testing of kernel patches
1886 Patch99999: linux-kernel-test.patch
1887
1888 BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
1889
1890 # Override find_provides to use a script that provides "kernel(symbol) = hash".
1891 # Pass path of the RPM temp dir containing kabideps to find-provides script.
1892 %global _use_internal_dependency_generator 0
1893 %define __find_provides %_sourcedir/find-provides %{_tmppath}
1894 %define __find_requires /usr/lib/rpm/redhat/find-requires kernel
1895
1896 %description
1897 The kernel package contains the Linux kernel (vmlinuz), the core of any
1898 Linux operating system.  The kernel handles the basic functions
1899 of the operating system: memory allocation, process allocation, device
1900 input and output, etc.
1901
1902
1903 %package doc
1904 Summary: Various documentation bits found in the kernel source
1905 Group: Documentation
1906 %description doc
1907 This package contains documentation files from the kernel
1908 source. Various bits of information about the Linux kernel and the
1909 device drivers shipped with it are documented in these files.
1910
1911 You'll want to install this package if you need a reference to the
1912 options that can be passed to Linux kernel modules at load time.
1913
1914
1915 %package headers
1916 Summary: Header files for the Linux kernel for use by glibc
1917 Group: Development/System
1918 Obsoletes: glibc-kernheaders
1919 Provides: glibc-kernheaders = 3.0-46
1920 %description headers
1921 Kernel-headers includes the C header files that specify the interface
1922 between the Linux kernel and userspace libraries and programs.  The
1923 header files define structures and constants that are needed for
1924 building most standard programs and are also needed for rebuilding the
1925 glibc package.
1926
1927 %package firmware
1928 Summary: Firmware files used by the Linux kernel
1929 Group: Development/System
1930 # This is... complicated.
1931 # Look at the WHENCE file.
1932 License: GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted
1933 %if "x%{?variant}" != "x"
1934 Provides: kernel-firmware = %{rpmversion}-%{pkg_release}
1935 %endif
1936 %description firmware
1937 Kernel-firmware includes firmware files required for some devices to
1938 operate.
1939
1940 %package bootwrapper
1941 Summary: Boot wrapper files for generating combined kernel + initrd images
1942 Group: Development/System
1943 Requires: gzip
1944 %description bootwrapper
1945 Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
1946 files combining both kernel and initial ramdisk.
1947
1948 %package debuginfo-common-%{_target_cpu}
1949 Summary: Kernel source files used by %{name}-debuginfo packages
1950 Group: Development/Debug
1951 %description debuginfo-common-%{_target_cpu}
1952 This package is required by %{name}-debuginfo subpackages.
1953 It provides the kernel source files common to all builds.
1954
1955 %package -n perf
1956 Summary: Performance monitoring for the Linux kernel
1957 Group: Development/System
1958 License: GPLv2
1959 %description -n perf
1960 This package provides the supporting documentation for the perf tool
1961 shipped in each kernel image subpackage.
1962
1963 #
1964 # This macro creates a kernel-<subpackage>-debuginfo package.
1965 #       %%kernel_debuginfo_package <subpackage>
1966 #
1967 %define kernel_debuginfo_package() \
1968 %package %{?1:%{1}-}debuginfo\
1969 Summary: Debug information for package %{name}%{?1:-%{1}}\
1970 Group: Development/Debug\
1971 Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
1972 Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
1973 AutoReqProv: no\
1974 %description -n %{name}%{?1:-%{1}}-debuginfo\
1975 This package provides debug information for package %{name}%{?1:-%{1}}.\
1976 This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\
1977 %{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVERREL}%{?1:\.%{1}}/.*|/.*%%{KVERREL}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
1978 %{nil}
1979
1980 #
1981 # This macro creates a kernel-<subpackage>-devel package.
1982 #       %%kernel_devel_package <subpackage> <pretty-name>
1983 #
1984 %define kernel_devel_package() \
1985 %package %{?1:%{1}-}devel\
1986 Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
1987 Group: System Environment/Kernel\
1988 Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
1989 Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
1990 Provides: kernel-devel = %{version}-%{release}%{?1:.%{1}}\
1991 Provides: kernel-devel-uname-r = %{KVERREL}%{?1:.%{1}}\
1992 AutoReqProv: no\
1993 Requires(pre): /usr/bin/find\
1994 %description -n kernel%{?variant}%{?1:-%{1}}-devel\
1995 This package provides kernel headers and makefiles sufficient to build modules\
1996 against the %{?2:%{2} }kernel package.\
1997 %{nil}
1998
1999 #
2000 # This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
2001 #       %%define variant_summary The Linux kernel compiled for <configuration>
2002 #       %%kernel_variant_package [-n <pretty-name>] <subpackage>
2003 #
2004 %define kernel_variant_package(n:) \
2005 %package %1\
2006 Summary: %{variant_summary}\
2007 Group: System Environment/Kernel\
2008 %kernel_reqprovconf\
2009 %{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
2010 %{expand:%%kernel_debuginfo_package %1}\
2011 %{nil}
2012
2013
2014 # First the auxiliary packages of the main kernel package.
2015 %kernel_devel_package
2016 %kernel_debuginfo_package
2017
2018
2019 # Now, each variant package.
2020
2021 %define variant_summary The Linux kernel compiled for SMP machines
2022 %kernel_variant_package -n SMP smp
2023 %description smp
2024 This package includes a SMP version of the Linux kernel. It is
2025 required only on machines with two or more CPUs as well as machines with
2026 hyperthreading technology.
2027
2028 Install the kernel-smp package if your machine uses two or more CPUs.
2029
2030
2031 %define variant_summary The Linux kernel compiled for PAE capable machines
2032 %kernel_variant_package PAE
2033 %description PAE
2034 This package includes a version of the Linux kernel with support for up to
2035 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
2036 The non-PAE kernel can only address up to 4GB of memory.
2037 Install the kernel-PAE package if your machine has more than 4GB of memory.
2038
2039
2040 %define variant_summary The Linux kernel compiled with extra debugging enabled for PAE capable machines
2041 %kernel_variant_package PAEdebug
2042 Obsoletes: kernel-PAE-debug
2043 %description PAEdebug
2044 This package includes a version of the Linux kernel with support for up to
2045 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
2046 The non-PAE kernel can only address up to 4GB of memory.
2047 Install the kernel-PAE package if your machine has more than 4GB of memory.
2048
2049 This variant of the kernel has numerous debugging options enabled.
2050 It should only be installed when trying to gather additional information
2051 on kernel bugs, as some of these options impact performance noticably.
2052
2053
2054 %define variant_summary The Linux kernel compiled with extra debugging enabled
2055 %kernel_variant_package debug
2056 %description debug
2057 The kernel package contains the Linux kernel (vmlinuz), the core of any
2058 Linux operating system.  The kernel handles the basic functions
2059 of the operating system:  memory allocation, process allocation, device
2060 input and output, etc.
2061
2062 This variant of the kernel has numerous debugging options enabled.
2063 It should only be installed when trying to gather additional information
2064 on kernel bugs, as some of these options impact performance noticably.
2065
2066
2067 %define variant_summary A minimal Linux kernel compiled for crash dumps
2068 %kernel_variant_package kdump
2069 %description kdump
2070 This package includes a kdump version of the Linux kernel. It is
2071 required only on machines which will use the kexec-based kernel crash dump
2072 mechanism.
2073
2074
2075 %define variant_summary The Linux kernel compiled with CONFIG_FRAME_POINTER
2076 %kernel_variant_package framepointer
2077 %description framepointer
2078 This is a TEMPORARY package with the CONFIG_FRAME_POINTER.
2079
2080
2081 %prep
2082 # do a few sanity-checks for --with *only builds
2083 %if %{with_baseonly}
2084 %if !%{with_up}%{with_pae}
2085 echo "Cannot build --with baseonly, up build is disabled"
2086 exit 1
2087 %endif
2088 %endif
2089
2090 %if %{with_smponly}
2091 %if !%{with_smp}
2092 echo "Cannot build --with smponly, smp build is disabled"
2093 exit 1
2094 %endif
2095 %endif
2096
2097 %if %{with_fuzzy_patches}
2098   patch_command='patch -p1 -s'
2099 %else
2100   patch_command='patch -p1 -F1 -s'
2101 %endif
2102
2103 ApplyPatch()
2104 {
2105   local patch=$1
2106   shift
2107   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
2108     exit 1
2109   fi
2110   # check if the patch is empty
2111   if [ -z "$(lsdiff $RPM_SOURCE_DIR/$patch)" ]; then
2112     echo "WARNING: empty patch";
2113     return;
2114   fi
2115   case "$patch" in
2116   *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
2117   *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
2118   *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
2119   esac
2120 }
2121
2122 # don't apply patch if it's empty
2123 ApplyOptionalPatch()
2124 {
2125   local patch=$1
2126   shift
2127   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
2128     exit 1
2129   fi
2130   local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
2131   if [ "$C" -gt 9 ]; then
2132     ApplyPatch $patch ${1+"$@"}
2133   fi
2134 }
2135
2136 # we don't want a .config file when building firmware: it just confuses the build system
2137 %define build_firmware \
2138    mv .config .config.firmware_save \
2139    make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install \
2140    mv .config.firmware_save .config
2141
2142 # First we unpack the kernel tarball.
2143 # If this isn't the first make prep, we use links to the existing clean tarball
2144 # which speeds things up quite a bit.
2145
2146 # Update to latest upstream.
2147 %if 0%{?released_kernel}
2148 %define vanillaversion 2.6.%{base_sublevel}
2149 # non-released_kernel case
2150 %else
2151 %if 0%{?rcrev}
2152 %define vanillaversion 2.6.%{upstream_sublevel}-rc%{rcrev}
2153 %if 0%{?gitrev}
2154 %define vanillaversion 2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}
2155 %endif
2156 %else
2157 # pre-{base_sublevel+1}-rc1 case
2158 %if 0%{?gitrev}
2159 %define vanillaversion 2.6.%{base_sublevel}-git%{gitrev}
2160 %else
2161 %define vanillaversion 2.6.%{base_sublevel}
2162 %endif
2163 %endif
2164 %endif
2165
2166 # We can share hardlinked source trees by putting a list of
2167 # directory names of the CVS checkouts that we want to share
2168 # with in .shared-srctree. (Full pathnames are required.)
2169 [ -f .shared-srctree ] && sharedirs=$(cat .shared-srctree)
2170
2171 if [ ! -d kernel-%{kversion}/vanilla-%{vanillaversion} ]; then
2172
2173   if [ -d kernel-%{kversion}/vanilla-%{kversion} ]; then
2174
2175     cd kernel-%{kversion}
2176
2177     # Any vanilla-* directories other than the base one are stale.
2178     for dir in vanilla-*; do
2179       [ "$dir" = vanilla-%{kversion} ] || rm -rf $dir &
2180     done
2181
2182   else
2183
2184     # Ok, first time we do a make prep.
2185     rm -f pax_global_header
2186     for sharedir in $sharedirs ; do
2187       if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{kversion} ]] ; then
2188         break
2189       fi
2190     done
2191     if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{kversion} ]] ; then
2192 %setup -q -n kernel-%{kversion} -c -T
2193       cp -rl $sharedir/kernel-%{kversion}/vanilla-%{kversion} .
2194     else
2195 %setup -q -n kernel-%{kversion} -c
2196       mv linux-%{kversion} vanilla-%{kversion}
2197     fi
2198
2199   fi
2200
2201 %if "%{kversion}" != "%{vanillaversion}"
2202
2203   for sharedir in $sharedirs ; do
2204     if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} ]] ; then
2205       break
2206     fi
2207   done
2208   if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} ]] ; then
2209
2210     cp -rl $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} .
2211
2212   else
2213
2214     cp -rl vanilla-%{kversion} vanilla-%{vanillaversion}
2215     cd vanilla-%{vanillaversion}
2216
2217 # Update vanilla to the latest upstream.
2218 # (non-released_kernel case only)
2219 %if 0%{?rcrev}
2220     ApplyPatch patch-2.6.%{upstream_sublevel}-rc%{rcrev}.bz2
2221 %if 0%{?gitrev}
2222     ApplyPatch patch-2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.bz2
2223 %endif
2224 %else
2225 # pre-{base_sublevel+1}-rc1 case
2226 %if 0%{?gitrev}
2227     ApplyPatch patch-2.6.%{base_sublevel}-git%{gitrev}.bz2
2228 %endif
2229 %endif
2230
2231     cd ..
2232
2233   fi
2234
2235 %endif
2236
2237 else
2238   # We already have a vanilla dir.
2239   cd kernel-%{kversion}
2240 fi
2241
2242 if [ -d linux-%{kversion}.%{_target_cpu} ]; then
2243   # Just in case we ctrl-c'd a prep already
2244   rm -rf deleteme.%{_target_cpu}
2245   # Move away the stale away, and delete in background.
2246   mv linux-%{kversion}.%{_target_cpu} deleteme.%{_target_cpu}
2247   rm -rf deleteme.%{_target_cpu} &
2248 fi
2249
2250 cp -rl vanilla-%{vanillaversion} linux-%{kversion}.%{_target_cpu}
2251
2252 cd linux-%{kversion}.%{_target_cpu}
2253
2254 # Drop some necessary files from the source dir into the buildroot
2255 cp $RPM_SOURCE_DIR/config-* .
2256 cp %{SOURCE15} %{SOURCE1} %{SOURCE16} %{SOURCE17} %{SOURCE18} .
2257
2258 # Dynamically generate kernel .config files from config-* files
2259 make -f %{SOURCE20} VERSION=%{version} configs
2260
2261 ApplyPatch Fedora-redhat-introduce-nonint_oldconfig-target.patch
2262 ApplyPatch Fedora-build-introduce-AFTER_LINK-variable.patch
2263 ApplyPatch Fedora-utrace-introduce-utrace-implementation.patch
2264 ApplyPatch Fedora-hwmon-add-VIA-hwmon-temperature-sensor-support.patch
2265 ApplyPatch Fedora-powerpc-add-modalias_show-operation.patch
2266 ApplyPatch Fedora-execshield-introduce-execshield.patch
2267 ApplyPatch Fedora-nfsd4-proots.patch
2268 ApplyPatch Fedora-nfs-make-nfs4-callback-hidden.patch
2269 ApplyPatch Fedora-usb-Allow-drivers-to-enable-USB-autosuspend-on-a-per-device-basis.patch
2270 ApplyPatch Fedora-usb-enable-autosuspend-by-default-on-qcserial.patch
2271 ApplyPatch Fedora-usb-enable-autosuspend-on-UVC-by-default.patch
2272 ApplyPatch Fedora-acpi-Disable-brightness-switch-by-default.patch
2273 ApplyPatch Fedora-acpi-Disable-firmware-video-brightness-change-by-default.patch
2274 ApplyPatch Fedora-debug-print-common-struct-sizes-at-boot-time.patch
2275 ApplyPatch Fedora-x86-add-option-to-control-the-NMI-watchdog-timeout.patch
2276 ApplyPatch Fedora-debug-display-tainted-information-on-other-places.patch
2277 ApplyPatch Fedora-debug-add-calls-to-print_tainted-on-spinlock-functions.patch
2278 ApplyPatch Fedora-debug-add-would_have_oomkilled-procfs-ctl.patch
2279 ApplyPatch Fedora-debug-always-inline-kzalloc.patch
2280 ApplyPatch Fedora-pci-add-config-option-to-control-the-default-state-of-PCI-MSI-interrupts.patch
2281 ApplyPatch Fedora-pci-sets-PCIE-ASPM-default-policy-to-POWERSAVE.patch
2282 ApplyPatch Fedora-sound-disables-hda-beep-by-default.patch
2283 ApplyPatch Fedora-sound-hda-intel-prealloc-4mb-dmabuffer.patch
2284 ApplyPatch Fedora-input-remove-unwanted-messages-on-spurious-events.patch
2285 ApplyPatch Fedora-floppy-remove-the-floppy-pnp-modalias.patch
2286 ApplyPatch Fedora-input-remove-pcspkr-modalias.patch
2287 ApplyPatch Fedora-serial-Enable-higher-baud-rates-for-16C95x.patch
2288 ApplyPatch Fedora-serio-disable-error-messages-when-i8042-isn-t-found.patch
2289 ApplyPatch Fedora-pci-silence-some-PCI-resource-allocation-errors.patch
2290 ApplyPatch Fedora-fb-disable-fbcon-logo-with-parameter.patch
2291 ApplyPatch Fedora-crash-add-crash-driver.patch
2292 ApplyPatch Fedora-pci-cacheline-sizing.patch
2293 ApplyPatch Fedora-e1000-add-quirk-for-ich9.patch
2294 ApplyPatch Fedora-drm-intel-big-hammer.patch
2295 ApplyPatch Fedora-acpi-be-less-verbose-about-old-BIOSes.patch
2296 ApplyPatch Fedora-rfkill-add-support-to-a-key-to-control-all-radios.patch
2297 ApplyPatch redhat-adding-redhat-directory.patch
2298 ApplyPatch redhat-Importing-config-options.patch
2299 ApplyPatch redhat-s390x-adding-zfcpdump-application-used-by-s390x-kdump-kernel.patch
2300 ApplyPatch redhat-Include-FIPS-required-checksum-of-the-kernel-image.patch
2301 ApplyPatch redhat-Silence-tagging-messages-by-rh-release.patch
2302 ApplyPatch redhat-Disabling-debug-options-for-beta.patch
2303 ApplyPatch redhat-kernel-requires-udev-145-11-or-newer.patch
2304 ApplyPatch redhat-tagging-2-6-31-50-el6.patch
2305 ApplyPatch redhat-updating-lastcommit-for-2-6-31-50.patch
2306 ApplyPatch block-get-rid-of-the-WRITE_ODIRECT-flag.patch
2307 ApplyPatch block-aio-implement-request-batching.patch
2308 ApplyPatch kdump-x86-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2309 ApplyPatch kdump-x86-implement-crashkernel-auto.patch
2310 ApplyPatch kdump-ia64-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2311 ApplyPatch kdump-ia64-implement-crashkernel-auto.patch
2312 ApplyPatch kdump-powerpc-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2313 ApplyPatch kdump-powerpc-implement-crashkernel-auto.patch
2314 ApplyPatch kdump-doc-update-the-kdump-document.patch
2315 ApplyPatch kdump-kexec-allow-to-shrink-reserved-memory.patch
2316 ApplyPatch kernel-Set-panic_on_oops-to-1.patch
2317 ApplyPatch redhat-fix-BZ-and-CVE-info-printing-on-changelog-when-HIDE_REDHAT-is-enabled.patch
2318 ApplyPatch redhat-tagging-2-6-31-51-el6.patch
2319 ApplyPatch redhat-updating-lastcommit-for-2-6-31-51.patch
2320 ApplyPatch redhat-fixing-the-kernel-versions-on-the-SPEC-changelog.patch
2321 ApplyPatch redhat-Fix-version-passed-to-update_changelog-sh.patch
2322 ApplyPatch mm-Limit-32-bit-x86-systems-to-16GB-and-prevent-panic-on-boot-when-system-has-more-than-30GB.patch
2323 ApplyPatch ppc64-Fix-kcrctab_-sections-to-undo-undesireable-relocations-that-break-kdump.patch
2324 ApplyPatch net-export-device-speed-and-duplex-via-sysfs.patch
2325 ApplyPatch scsi-devinfo-update-for-Hitachi-entries.patch
2326 ApplyPatch x86-AMD-Northbridge-Verify-NB-s-node-is-online.patch
2327 ApplyPatch redhat-tagging-2-6-32-0-52-el6.patch
2328 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-52.patch
2329 ApplyPatch redhat-fix-STAMP-version-on-rh-release-commit-phase.patch
2330 ApplyPatch redhat-enable-debug-builds-also-on-s390x-and-ppc64.patch
2331 ApplyPatch s390x-fix-build-failure-with-CONFIG_FTRACE_SYSCALLS.patch
2332 ApplyPatch procfs-add-ability-to-modify-proc-file-limits-from-outside-a-processes-own-context.patch
2333 ApplyPatch modsign-Multiprecision-maths-library.patch
2334 ApplyPatch modsign-Add-indications-of-module-ELF-types.patch
2335 ApplyPatch modsign-Module-ELF-verifier.patch
2336 ApplyPatch modsign-Module-signature-checker-and-key-manager.patch
2337 ApplyPatch modsign-Apply-signature-checking-to-modules-on-module-load.patch
2338 ApplyPatch modsign-Don-t-include-note-gnu-build-id-in-the-digest.patch
2339 ApplyPatch modsign-Enable-module-signing-in-the-RHEL-RPM.patch
2340 ApplyPatch net-Add-acession-counts-to-all-datagram-protocols.patch
2341 ApplyPatch redhat-tagging-2-6-32-0-53-el6.patch
2342 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-53.patch
2343 ApplyPatch redhat-fixing-wrong-bug-number-536759-536769.patch
2344 ApplyPatch redhat-adding-top-makefile-to-enable-rh-targets.patch
2345 ApplyPatch redhat-add-temporary-framepointer-variant.patch
2346 ApplyPatch redhat-add-rh-key-target-to-Makefile.patch
2347 ApplyPatch infiniband-Rewrite-SG-handling-for-RDMA-logic.patch
2348 ApplyPatch x86-panic-if-AMD-cpu_khz-is-wrong.patch
2349 ApplyPatch x86-Enable-CONFIG_SPARSE_IRQ.patch
2350 ApplyPatch edac-amd64_edac-disabling-temporarily.patch
2351 ApplyPatch redhat-tagging-2-6-32-0-54-el6.patch
2352 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-54.patch
2353 ApplyPatch redhat-create-patches-sh-use-first-parent-to-use-the-right-branch-history.patch
2354 ApplyPatch redhat-Rebasing-to-kernel-2-6-32.patch
2355 ApplyPatch redhat-updating-lastcommit-for-2-6-32-1.patch
2356 ApplyPatch redhat-introduce-rh-kernel-debug-target.patch
2357 ApplyPatch redhat-update-build-targets-in-Makefile.patch
2358 ApplyPatch redhat-include-missing-System-map-file-for-debug-only-builds.patch
2359 ApplyPatch Fedora-updating-linux-2-6-execshield-patch-2-6-32-8-fc13-reference.patch
2360 ApplyPatch Fedora-updating-patch-linux-2-6-nfsd4-proots-patch-2-6-32-8-fc13-reference.patch
2361 ApplyPatch Fedora-intel-iommu-backport.patch
2362 ApplyPatch Fedora-ath9k-backports.patch
2363 ApplyPatch Fedora-KVM-allow-userspace-to-adjust-kvmclock-offset.patch
2364 ApplyPatch Fedora-drm-radeon-fixes.patch
2365 ApplyPatch Fedora-drm-radeon-dp-support.patch
2366 ApplyPatch Fedora-drm-nouveau-fixes.patch
2367 ApplyPatch Fedora-drm-i915-Fix-sync-to-vblank-when-VGA-output-is-turned-off.patch
2368 ApplyPatch Fedora-agp-clear-GTT-on-intel.patch
2369 ApplyPatch Fedora-ext4-Fix-insuficient-checks-in-EXT4_IOC_MOVE_EXT.patch
2370 ApplyPatch Fedora-perf-Don-t-free-perf_mmap_data-until-work-has-been-done.patch
2371 ApplyPatch redhat-updating-config-files-based-on-current-requests-12-10.patch
2372 ApplyPatch redhat-Config-updates-12-15.patch
2373 ApplyPatch block-revert-cfq-iosched-limit-coop-preemption.patch
2374 ApplyPatch block-CFQ-is-more-than-a-desktop-scheduler.patch
2375 ApplyPatch block-cfq-calculate-the-seek_mean-per-cfq_queue-not-per-cfq_io_context.patch
2376 ApplyPatch block-cfq-merge-cooperating-cfq_queues.patch
2377 ApplyPatch block-cfq-change-the-meaning-of-the-cfqq_coop-flag.patch
2378 ApplyPatch block-cfq-break-apart-merged-cfqqs-if-they-stop-cooperating.patch
2379 ApplyPatch block-cfq-iosched-improve-hw_tag-detection.patch
2380 ApplyPatch block-cfq-iosched-adapt-slice-to-number-of-processes-doing-I-O.patch
2381 ApplyPatch block-cfq-iosched-preparation-to-handle-multiple-service-trees.patch
2382 ApplyPatch block-cfq-iosched-reimplement-priorities-using-different-service-trees.patch
2383 ApplyPatch block-cfq-iosched-enable-idling-for-last-queue-on-priority-class.patch
2384 ApplyPatch block-cfq-iosched-fairness-for-sync-no-idle-queues.patch
2385 ApplyPatch block-cfq-iosched-fix-style-issue-in-cfq_get_avg_queues.patch
2386 ApplyPatch block-blkdev-flush-disk-cache-on-fsync.patch
2387 ApplyPatch block-cfq-iosched-simplify-prio-unboost-code.patch
2388 ApplyPatch block-cfq-iosched-fix-next_rq-computation.patch
2389 ApplyPatch block-Expose-discard-granularity.patch
2390 ApplyPatch block-partitions-use-sector-size-for-EFI-GPT.patch
2391 ApplyPatch block-partitions-read-whole-sector-with-EFI-GPT-header.patch
2392 ApplyPatch block-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
2393 ApplyPatch block-cfq-iosched-cleanup-unreachable-code.patch
2394 ApplyPatch block-cfq-iosched-fix-ncq-detection-code.patch
2395 ApplyPatch block-cfq-iosched-fix-no-idle-preemption-logic.patch
2396 ApplyPatch block-cfq-iosched-idling-on-deep-seeky-sync-queues.patch
2397 ApplyPatch block-cfq-iosched-fix-corner-cases-in-idling-logic.patch
2398 ApplyPatch block-Revert-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
2399 ApplyPatch block-Allow-devices-to-indicate-whether-discarded-blocks-are-zeroed.patch
2400 ApplyPatch block-cfq-iosched-no-dispatch-limit-for-single-queue.patch
2401 ApplyPatch block-blkio-Set-must_dispatch-only-if-we-decided-to-not-dispatch-the-request.patch
2402 ApplyPatch block-blkio-Introduce-the-notion-of-cfq-groups.patch
2403 ApplyPatch block-blkio-Implement-macro-to-traverse-each-service-tree-in-group.patch
2404 ApplyPatch block-blkio-Keep-queue-on-service-tree-until-we-expire-it.patch
2405 ApplyPatch block-blkio-Introduce-the-root-service-tree-for-cfq-groups.patch
2406 ApplyPatch block-blkio-Introduce-blkio-controller-cgroup-interface.patch
2407 ApplyPatch block-blkio-Introduce-per-cfq-group-weights-and-vdisktime-calculations.patch
2408 ApplyPatch block-blkio-Implement-per-cfq-group-latency-target-and-busy-queue-avg.patch
2409 ApplyPatch block-blkio-Group-time-used-accounting-and-workload-context-save-restore.patch
2410 ApplyPatch block-blkio-Dynamic-cfq-group-creation-based-on-cgroup-tasks-belongs-to.patch
2411 ApplyPatch block-blkio-Take-care-of-cgroup-deletion-and-cfq-group-reference-counting.patch
2412 ApplyPatch block-blkio-Some-debugging-aids-for-CFQ.patch
2413 ApplyPatch block-blkio-Export-disk-time-and-sectors-used-by-a-group-to-user-space.patch
2414 ApplyPatch block-blkio-Provide-some-isolation-between-groups.patch
2415 ApplyPatch block-blkio-Drop-the-reference-to-queue-once-the-task-changes-cgroup.patch
2416 ApplyPatch block-blkio-Propagate-cgroup-weight-updation-to-cfq-groups.patch
2417 ApplyPatch block-blkio-Wait-for-cfq-queue-to-get-backlogged-if-group-is-empty.patch
2418 ApplyPatch block-blkio-Determine-async-workload-length-based-on-total-number-of-queues.patch
2419 ApplyPatch block-blkio-Implement-group_isolation-tunable.patch
2420 ApplyPatch block-blkio-Wait-on-sync-noidle-queue-even-if-rq_noidle-1.patch
2421 ApplyPatch block-blkio-Documentation.patch
2422 ApplyPatch block-cfq-iosched-fix-compile-problem-with-CONFIG_CGROUP.patch
2423 ApplyPatch block-cfq-iosched-move-IO-controller-declerations-to-a-header-file.patch
2424 ApplyPatch block-io-controller-quick-fix-for-blk-cgroup-and-modular-CFQ.patch
2425 ApplyPatch block-cfq-iosched-make-nonrot-check-logic-consistent.patch
2426 ApplyPatch block-blkio-Export-some-symbols-from-blkio-as-its-user-CFQ-can-be-a-module.patch
2427 ApplyPatch block-blkio-Implement-dynamic-io-controlling-policy-registration.patch
2428 ApplyPatch block-blkio-Allow-CFQ-group-IO-scheduling-even-when-CFQ-is-a-module.patch
2429 ApplyPatch block-cfq-iosched-use-call_rcu-instead-of-doing-grace-period-stall-on-queue-exit.patch
2430 ApplyPatch block-include-linux-err-h-to-use-ERR_PTR.patch
2431 ApplyPatch block-cfq-iosched-Do-not-access-cfqq-after-freeing-it.patch
2432 ApplyPatch block-dio-fix-performance-regression.patch
2433 ApplyPatch block-Add-support-for-the-ATA-TRIM-command-in-libata.patch
2434 ApplyPatch scsi-Add-missing-command-definitions.patch
2435 ApplyPatch scsi-scsi_debug-Thin-provisioning-support.patch
2436 ApplyPatch scsi-sd-WRITE-SAME-16-UNMAP-support.patch
2437 ApplyPatch scsi-Correctly-handle-thin-provisioning-write-error.patch
2438 ApplyPatch libata-Report-zeroed-read-after-Trim-and-max-discard-size.patch
2439 ApplyPatch libata-Clarify-ata_set_lba_range_entries-function.patch
2440 ApplyPatch block-config-enable-CONFIG_BLK_CGROUP.patch
2441 ApplyPatch block-config-enable-CONFIG_BLK_DEV_INTEGRITY.patch
2442 ApplyPatch redhat-tagging-2-6-32-2-el6.patch
2443 ApplyPatch redhat-updating-lastcommit-for-2-6-32-2.patch
2444 ApplyPatch redhat-force-to-run-rh-key-target-when-compiling-the-kernel-locally-without-RPM.patch
2445 ApplyPatch redhat-run-rngd-on-rh-key-to-speed-up-key-generation.patch
2446 ApplyPatch redhat-make-the-documentation-build-j1.patch
2447 ApplyPatch redhat-remove-unused-config-file-config-powerpc64-generic-rhel.patch
2448 ApplyPatch redhat-fix-problem-when-using-other-rh-targets.patch
2449 ApplyPatch redhat-reverting-makefile-magic.patch
2450 ApplyPatch redhat-remove-gcc-bug-workaround.patch
2451 ApplyPatch redhat-run-rh-key-when-the-GPG-keys-aren-t-present.patch
2452 ApplyPatch nfs-convert-proto-option-to-use-netids-rather-than-a-protoname.patch
2453 ApplyPatch scsi-fix-dma-handling-when-using-virtual-hosts.patch
2454 ApplyPatch dm-core-and-mpath-changes-from-2-6-33.patch
2455 ApplyPatch dm-raid1-changes-from-2-6-33.patch
2456 ApplyPatch dm-crypt-changes-from-2-6-33.patch
2457 ApplyPatch dm-snapshot-changes-from-2-6-33.patch
2458 ApplyPatch dm-snapshot-merge-support-from-2-6-33.patch
2459 ApplyPatch redhat-add-vhost-to-config-generic-rhel.patch
2460 ApplyPatch virt-tun-export-underlying-socket.patch
2461 ApplyPatch virt-mm-export-use_mm-unuse_mm-to-modules.patch
2462 ApplyPatch virt-vhost_net-a-kernel-level-virtio-server.patch
2463 ApplyPatch virt-vhost-add-missing-architectures.patch
2464 ApplyPatch s390-kernel-clear-high-order-bits-after-switching-to-64-bit-mode.patch
2465 ApplyPatch s390-zcrypt-Do-not-simultaneously-schedule-hrtimer.patch
2466 ApplyPatch s390-dasd-support-DIAG-access-for-read-only-devices.patch
2467 ApplyPatch s390-kernel-fix-dump-indicator.patch
2468 ApplyPatch s390-kernel-performance-counter-fix-and-page-fault-optimization.patch
2469 ApplyPatch s390-zcrypt-initialize-ap_messages-for-cex3-exploitation.patch
2470 ApplyPatch s390-zcrypt-special-command-support-for-cex3-exploitation.patch
2471 ApplyPatch s390-zcrypt-add-support-for-cex3-device-types.patch
2472 ApplyPatch s390-zcrypt-use-definitions-for-cex3.patch
2473 ApplyPatch s390-zcrypt-adjust-speed-rating-between-cex2-and-pcixcc.patch
2474 ApplyPatch s390-zcrypt-adjust-speed-rating-of-cex3-adapters.patch
2475 ApplyPatch s390-OSA-QDIO-data-connection-isolation.patch
2476 ApplyPatch redhat-Build-in-standard-PCI-hotplug-support.patch
2477 ApplyPatch pci-pciehp-Provide-an-option-to-disable-native-PCIe-hotplug.patch
2478 ApplyPatch modsign-Don-t-check-e_entry-in-ELF-header.patch
2479 ApplyPatch redhat-fixing-lastcommit-contents-for-2-6-32-2-el6.patch
2480 ApplyPatch redhat-tagging-2-6-32-3-el6.patch
2481 ApplyPatch redhat-updating-lastcommit-for-2-6-32-3.patch
2482 ApplyPatch misc-Revert-utrace-introduce-utrace-implementation.patch
2483 ApplyPatch ptrace-cleanup-ptrace_init_task-ptrace_link-path.patch
2484 ApplyPatch ptrace-copy_process-should-disable-stepping.patch
2485 ApplyPatch ptrace-introduce-user_single_step_siginfo-helper.patch
2486 ApplyPatch ptrace-powerpc-implement-user_single_step_siginfo.patch
2487 ApplyPatch ptrace-change-tracehook_report_syscall_exit-to-handle-stepping.patch
2488 ApplyPatch ptrace-x86-implement-user_single_step_siginfo.patch
2489 ApplyPatch ptrace-x86-change-syscall_trace_leave-to-rely-on-tracehook-when-stepping.patch
2490 ApplyPatch signals-check-group_stop_count-after-tracehook_get_signal.patch
2491 ApplyPatch tracehooks-kill-some-PT_PTRACED-checks.patch
2492 ApplyPatch tracehooks-check-PT_PTRACED-before-reporting-the-single-step.patch
2493 ApplyPatch ptrace_signal-check-PT_PTRACED-before-reporting-a-signal.patch
2494 ApplyPatch ptrace-export-__ptrace_detach-and-do_notify_parent_cldstop.patch
2495 ApplyPatch ptrace-reorder-the-code-in-kernel-ptrace-c.patch
2496 ApplyPatch utrace-implement-utrace-ptrace.patch
2497 ApplyPatch utrace-utrace-core.patch
2498 ApplyPatch sound-ALSA-HDA-driver-update-2009-12-15.patch
2499 ApplyPatch s390-dasd-enable-prefix-independent-of-pav-support.patch
2500 ApplyPatch s390-dasd-remove-strings-from-s390dbf.patch
2501 ApplyPatch s390-dasd-let-device-initialization-wait-for-LCU-setup.patch
2502 ApplyPatch redhat-kernel-enable-hibernation-support-on-s390x.patch
2503 ApplyPatch s390-iucv-add-work_queue-cleanup-for-suspend.patch
2504 ApplyPatch s390-cmm-free-pages-on-hibernate.patch
2505 ApplyPatch s390-ctcm-suspend-has-to-wait-for-outstanding-I-O.patch
2506 ApplyPatch s390-zfcp-Don-t-fail-SCSI-commands-when-transitioning-to-blocked-fc_rport.patch
2507 ApplyPatch s390-zfcp-Assign-scheduled-work-to-driver-queue.patch
2508 ApplyPatch s390-zfcp-fix-ELS-ADISC-handling-to-prevent-QDIO-errors.patch
2509 ApplyPatch s390-zfcp-improve-FSF-error-reporting.patch
2510 ApplyPatch scsi-scsi_transport_fc-Introduce-helper-function-for-blocking-scsi_eh.patch
2511 ApplyPatch s390-zfcp-Block-SCSI-EH-thread-for-rport-state-BLOCKED.patch
2512 ApplyPatch uv-x86-SGI-UV-Fix-BAU-initialization.patch
2513 ApplyPatch uv-x86-function-to-translate-from-gpa-socket_paddr.patch
2514 ApplyPatch uv-x86-introduce-uv_gpa_is_mmr.patch
2515 ApplyPatch uv-x86-RTC-Fix-early-expiry-handling.patch
2516 ApplyPatch uv-x86-RTC-Add-clocksource-only-boot-option.patch
2517 ApplyPatch uv-x86-RTC-Clean-up-error-handling.patch
2518 ApplyPatch uv-gru-function-to-generate-chipset-IPI-values.patch
2519 ApplyPatch uv-x86-SGI-Map-low-MMR-ranges.patch
2520 ApplyPatch xen-wait-up-to-5-minutes-for-device-connetion-and-fix-fallout.patch
2521 ApplyPatch xen-support-MAXSMP.patch
2522 ApplyPatch mm-move-inc_zone_page_state-NR_ISOLATED-to-just-isolated-place.patch
2523 ApplyPatch mm-swap_info-private-to-swapfile-c.patch
2524 ApplyPatch mm-swap_info-change-to-array-of-pointers.patch
2525 ApplyPatch mm-swap_info-include-first_swap_extent.patch
2526 ApplyPatch mm-swap_info-miscellaneous-minor-cleanups.patch
2527 ApplyPatch mm-swap_info-SWAP_HAS_CACHE-cleanups.patch
2528 ApplyPatch mm-swap_info-swap_map-of-chars-not-shorts.patch
2529 ApplyPatch mm-swap_info-swap-count-continuations.patch
2530 ApplyPatch mm-swap_info-note-SWAP_MAP_SHMEM.patch
2531 ApplyPatch mm-define-PAGE_MAPPING_FLAGS.patch
2532 ApplyPatch mm-mlocking-in-try_to_unmap_one.patch
2533 ApplyPatch mm-CONFIG_MMU-for-PG_mlocked.patch
2534 ApplyPatch mm-pass-address-down-to-rmap-ones.patch
2535 ApplyPatch mm-vmscan-have-kswapd-sleep-for-a-short-interval-and-double-check-it-should-be-asleep.patch
2536 ApplyPatch mm-vmscan-stop-kswapd-waiting-on-congestion-when-the-min-watermark-is-not-being-met.patch
2537 ApplyPatch mm-vmscan-separate-sc-swap_cluster_max-and-sc-nr_max_reclaim.patch
2538 ApplyPatch mm-vmscan-kill-hibernation-specific-reclaim-logic-and-unify-it.patch
2539 ApplyPatch mm-vmscan-zone_reclaim-dont-use-insane-swap_cluster_max.patch
2540 ApplyPatch mm-vmscan-kill-sc-swap_cluster_max.patch
2541 ApplyPatch mm-vmscan-make-consistent-of-reclaim-bale-out-between-do_try_to_free_page-and-shrink_zone.patch
2542 ApplyPatch mm-vmscan-do-not-evict-inactive-pages-when-skipping-an-active-list-scan.patch
2543 ApplyPatch mm-stop-ptlock-enlarging-struct-page.patch
2544 ApplyPatch ksm-three-remove_rmap_item_from_tree-cleanups.patch
2545 ApplyPatch ksm-remove-redundancies-when-merging-page.patch
2546 ApplyPatch ksm-cleanup-some-function-arguments.patch
2547 ApplyPatch ksm-singly-linked-rmap_list.patch
2548 ApplyPatch ksm-separate-stable_node.patch
2549 ApplyPatch ksm-stable_node-point-to-page-and-back.patch
2550 ApplyPatch ksm-fix-mlockfreed-to-munlocked.patch
2551 ApplyPatch ksm-let-shared-pages-be-swappable.patch
2552 ApplyPatch ksm-hold-anon_vma-in-rmap_item.patch
2553 ApplyPatch ksm-take-keyhole-reference-to-page.patch
2554 ApplyPatch ksm-share-anon-page-without-allocating.patch
2555 ApplyPatch ksm-mem-cgroup-charge-swapin-copy.patch
2556 ApplyPatch ksm-rmap_walk-to-remove_migation_ptes.patch
2557 ApplyPatch ksm-memory-hotremove-migration-only.patch
2558 ApplyPatch ksm-remove-unswappable-max_kernel_pages.patch
2559 ApplyPatch ksm-fix-ksm-h-breakage-of-nommu-build.patch
2560 ApplyPatch mm-Add-mm-tracepoint-definitions-to-kmem-h.patch
2561 ApplyPatch mm-Add-anonynmous-page-mm-tracepoints.patch
2562 ApplyPatch mm-Add-file-page-mm-tracepoints.patch
2563 ApplyPatch mm-Add-page-reclaim-mm-tracepoints.patch
2564 ApplyPatch mm-Add-file-page-writeback-mm-tracepoints.patch
2565 ApplyPatch scsi-hpsa-new-driver.patch
2566 ApplyPatch scsi-cciss-remove-pci-ids.patch
2567 ApplyPatch quota-Move-definition-of-QFMT_OCFS2-to-linux-quota-h.patch
2568 ApplyPatch quota-Implement-quota-format-with-64-bit-space-and-inode-limits.patch
2569 ApplyPatch quota-ext3-Support-for-vfsv1-quota-format.patch
2570 ApplyPatch quota-ext4-Support-for-64-bit-quota-format.patch
2571 ApplyPatch kvm-core-x86-Add-user-return-notifiers.patch
2572 ApplyPatch kvm-VMX-Move-MSR_KERNEL_GS_BASE-out-of-the-vmx-autoload-msr-area.patch
2573 ApplyPatch kvm-x86-shared-msr-infrastructure.patch
2574 ApplyPatch kvm-VMX-Use-shared-msr-infrastructure.patch
2575 ApplyPatch redhat-excluding-Reverts-from-changelog-too.patch
2576 ApplyPatch redhat-tagging-2-6-32-4-el6.patch
2577 ApplyPatch redhat-updating-lastcommit-for-2-6-32-4.patch
2578 ApplyPatch redhat-do-not-export-redhat-directory-contents.patch
2579 ApplyPatch x86-Remove-the-CPU-cache-size-printk-s.patch
2580 ApplyPatch x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch
2581 ApplyPatch x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch
2582 ApplyPatch x86-Limit-the-number-of-processor-bootup-messages.patch
2583 ApplyPatch init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch
2584 ApplyPatch sched-Limit-the-number-of-scheduler-debug-messages.patch
2585 ApplyPatch x86-Limit-number-of-per-cpu-TSC-sync-messages.patch
2586 ApplyPatch x86-Remove-enabling-x2apic-message-for-every-CPU.patch
2587 ApplyPatch x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch
2588 ApplyPatch block-cfq-iosched-reduce-write-depth-only-if-sync-was-delayed.patch
2589 ApplyPatch block-cfq-Optimization-for-close-cooperating-queue-searching.patch
2590 ApplyPatch block-cfq-iosched-Get-rid-of-cfqq-wait_busy_done-flag.patch
2591 ApplyPatch block-cfq-iosched-Take-care-of-corner-cases-of-group-losing-share-due-to-deletion.patch
2592 ApplyPatch block-cfq-iosched-commenting-non-obvious-initialization.patch
2593 ApplyPatch block-cfq-Remove-wait_request-flag-when-idle-time-is-being-deleted.patch
2594 ApplyPatch block-Fix-a-CFQ-crash-in-for-2-6-33-branch-of-block-tree.patch
2595 ApplyPatch block-cfq-set-workload-as-expired-if-it-doesn-t-have-any-slice-left.patch
2596 ApplyPatch block-cfq-iosched-Remove-the-check-for-same-cfq-group-from-allow_merge.patch
2597 ApplyPatch block-cfq-iosched-Get-rid-of-nr_groups.patch
2598 ApplyPatch block-cfq-iosched-Remove-prio_change-logic-for-workload-selection.patch
2599 ApplyPatch netdrv-ixgbe-add-support-for-82599-KR-and-update-to-latest-upstream.patch
2600 ApplyPatch netdrv-bnx2x-update-to-1-52-1-5.patch
2601 ApplyPatch netdrv-update-tg3-to-version-3-105.patch
2602 ApplyPatch scsi-scsi_dh-Change-the-scsidh_activate-interface-to-be-asynchronous.patch
2603 ApplyPatch scsi-scsi_dh-Make-rdac-hardware-handler-s-activate-async.patch
2604 ApplyPatch scsi-scsi_dh-Make-hp-hardware-handler-s-activate-async.patch
2605 ApplyPatch scsi-scsi_dh-Make-alua-hardware-handler-s-activate-async.patch
2606 ApplyPatch block-Fix-topology-stacking-for-data-and-discard-alignment.patch
2607 ApplyPatch dlm-always-use-GFP_NOFS.patch
2608 ApplyPatch redhat-Some-storage-related-kernel-config-parameter-changes.patch
2609 ApplyPatch scsi-eliminate-double-free.patch
2610 ApplyPatch scsi-make-driver-PCI-legacy-I-O-port-free.patch
2611 ApplyPatch gfs2-Fix-potential-race-in-glock-code.patch
2612 ApplyPatch netdrv-cnic-fixes-for-RHEL6.patch
2613 ApplyPatch netdrv-bnx2i-update-to-2-1-0.patch
2614 ApplyPatch mm-hwpoison-backport-the-latest-patches-from-linux-2-6-33.patch
2615 ApplyPatch fs-ext4-wait-for-log-to-commit-when-unmounting.patch
2616 ApplyPatch cifs-NULL-out-tcon-pSesInfo-and-srvTcp-pointers-when-chasing-DFS-referrals.patch
2617 ApplyPatch fusion-remove-unnecessary-printk.patch
2618 ApplyPatch fusion-fix-for-incorrect-data-underrun.patch
2619 ApplyPatch fusion-bump-version-to-3-04-13.patch
2620 ApplyPatch ext4-make-trim-discard-optional-and-off-by-default.patch
2621 ApplyPatch fat-make-discard-a-mount-option.patch
2622 ApplyPatch fs-fs-writeback-Add-helper-function-to-start-writeback-if-idle.patch
2623 ApplyPatch fs-ext4-flush-delalloc-blocks-when-space-is-low.patch
2624 ApplyPatch scsi-scsi_dh_rdac-add-two-IBM-devices-to-rdac_dev_list.patch
2625 ApplyPatch vfs-force-reval-of-target-when-following-LAST_BIND-symlinks.patch
2626 ApplyPatch input-Add-support-for-adding-i8042-filters.patch
2627 ApplyPatch input-dell-laptop-Update-rfkill-state-on-switch-change.patch
2628 ApplyPatch sunrpc-Deprecate-support-for-site-local-addresses.patch
2629 ApplyPatch sunrpc-Don-t-display-zero-scope-IDs.patch
2630 ApplyPatch s390-cio-double-free-under-memory-pressure.patch
2631 ApplyPatch s390-cio-device-recovery-stalls-after-multiple-hardware-events.patch
2632 ApplyPatch s390-cio-device-recovery-fails-after-concurrent-hardware-changes.patch
2633 ApplyPatch s390-cio-setting-a-device-online-or-offline-fails-for-unknown-reasons.patch
2634 ApplyPatch s390-cio-incorrect-device-state-after-device-recognition-and-recovery.patch
2635 ApplyPatch s390-cio-kernel-panic-after-unexpected-interrupt.patch
2636 ApplyPatch s390-cio-initialization-of-I-O-devices-fails.patch
2637 ApplyPatch s390-cio-not-operational-devices-cannot-be-deactivated.patch
2638 ApplyPatch s390-cio-erratic-DASD-I-O-behavior.patch
2639 ApplyPatch s390-cio-DASD-cannot-be-set-online.patch
2640 ApplyPatch s390-cio-DASD-steal-lock-task-hangs.patch
2641 ApplyPatch s390-cio-memory-leaks-when-checking-unusable-devices.patch
2642 ApplyPatch s390-cio-deactivated-devices-can-cause-use-after-free-panic.patch
2643 ApplyPatch nfs-NFS-update-to-2-6-33-part-1.patch
2644 ApplyPatch nfs-NFS-update-to-2-6-33-part-2.patch
2645 ApplyPatch nfs-NFS-update-to-2-6-33-part-3.patch
2646 ApplyPatch nfs-fix-insecure-export-option.patch
2647 ApplyPatch redhat-enable-NFS_V4_1.patch
2648 ApplyPatch x86-Compile-mce-inject-module.patch
2649 ApplyPatch modsign-Don-t-attempt-to-sign-a-module-if-there-are-no-key-files.patch
2650 ApplyPatch scsi-cciss-hpsa-reassign-controllers.patch
2651 ApplyPatch scsi-cciss-fix-spinlock-use.patch
2652 ApplyPatch redhat-disabling-temporaly-DEVTMPFS.patch
2653 ApplyPatch redhat-don-t-use-PACKAGE_VERSION-and-PACKAGE_RELEASE.patch
2654 ApplyPatch redhat-tagging-2-6-32-5-el6.patch
2655 ApplyPatch redhat-updating-lastcommit-for-2-6-32-5.patch
2656 ApplyPatch redhat-add-symbol-to-look-on-while-building-modules-block.patch
2657 ApplyPatch stable-signal-Fix-alternate-signal-stack-check.patch
2658 ApplyPatch stable-SCSI-osd_protocol-h-Add-missing-include.patch
2659 ApplyPatch stable-SCSI-megaraid_sas-fix-64-bit-sense-pointer-truncation.patch
2660 ApplyPatch stable-ext4-fix-potential-buffer-head-leak-when-add_dirent_to_buf-returns-ENOSPC.patch
2661 ApplyPatch stable-ext4-avoid-divide-by-zero-when-trying-to-mount-a-corrupted-file-system.patch
2662 ApplyPatch stable-ext4-fix-the-returned-block-count-if-EXT4_IOC_MOVE_EXT-fails.patch
2663 ApplyPatch stable-ext4-fix-lock-order-problem-in-ext4_move_extents.patch
2664 ApplyPatch stable-ext4-fix-possible-recursive-locking-warning-in-EXT4_IOC_MOVE_EXT.patch
2665 ApplyPatch stable-ext4-plug-a-buffer_head-leak-in-an-error-path-of-ext4_iget.patch
2666 ApplyPatch stable-ext4-make-sure-directory-and-symlink-blocks-are-revoked.patch
2667 ApplyPatch stable-ext4-fix-i_flags-access-in-ext4_da_writepages_trans_blocks.patch
2668 ApplyPatch stable-ext4-journal-all-modifications-in-ext4_xattr_set_handle.patch
2669 ApplyPatch stable-ext4-don-t-update-the-superblock-in-ext4_statfs.patch
2670 ApplyPatch stable-ext4-fix-uninit-block-bitmap-initialization-when-s_meta_first_bg-is-non-zero.patch
2671 ApplyPatch stable-ext4-fix-block-validity-checks-so-they-work-correctly-with-meta_bg.patch
2672 ApplyPatch stable-ext4-avoid-issuing-unnecessary-barriers.patch
2673 ApplyPatch stable-ext4-fix-error-handling-in-ext4_ind_get_blocks.patch
2674 ApplyPatch stable-ext4-make-norecovery-an-alias-for-noload.patch
2675 ApplyPatch stable-ext4-Fix-double-free-of-blocks-with-EXT4_IOC_MOVE_EXT.patch
2676 ApplyPatch stable-ext4-initialize-moved_len-before-calling-ext4_move_extents.patch
2677 ApplyPatch stable-ext4-move_extent_per_page-cleanup.patch
2678 ApplyPatch stable-jbd2-Add-ENOMEM-checking-in-and-for-jbd2_journal_write_metadata_buffer.patch
2679 ApplyPatch stable-ext4-Return-the-PTR_ERR-of-the-correct-pointer-in-setup_new_group_blocks.patch
2680 ApplyPatch stable-ext4-Avoid-data-filesystem-corruption-when-write-fails-to-copy-data.patch
2681 ApplyPatch stable-ext4-remove-blocks-from-inode-prealloc-list-on-failure.patch
2682 ApplyPatch stable-ext4-ext4_get_reserved_space-must-return-bytes-instead-of-blocks.patch
2683 ApplyPatch stable-ext4-quota-macros-cleanup.patch
2684 ApplyPatch stable-ext4-fix-incorrect-block-reservation-on-quota-transfer.patch
2685 ApplyPatch stable-ext4-Wait-for-proper-transaction-commit-on-fsync.patch
2686 ApplyPatch stable-ext4-Fix-potential-fiemap-deadlock-mmap_sem-vs-i_data_sem.patch
2687 ApplyPatch stable-USB-usb-storage-fix-bug-in-fill_inquiry.patch
2688 ApplyPatch stable-USB-option-add-pid-for-ZTE.patch
2689 ApplyPatch stable-firewire-ohci-handle-receive-packets-with-a-data-length-of-zero.patch
2690 ApplyPatch stable-rcu-Prepare-for-synchronization-fixes-clean-up-for-non-NO_HZ-handling-of-completed-counter.patch
2691 ApplyPatch stable-rcu-Fix-synchronization-for-rcu_process_gp_end-uses-of-completed-counter.patch
2692 ApplyPatch stable-rcu-Fix-note_new_gpnum-uses-of-gpnum.patch
2693 ApplyPatch stable-rcu-Remove-inline-from-forward-referenced-functions.patch
2694 ApplyPatch stable-perf_event-Fix-invalid-type-in-ioctl-definition.patch
2695 ApplyPatch stable-perf_event-Initialize-data-period-in-perf_swevent_hrtimer.patch
2696 ApplyPatch stable-PM-Runtime-Fix-lockdep-warning-in-__pm_runtime_set_status.patch
2697 ApplyPatch stable-sched-Check-for-an-idle-shared-cache-in-select_task_rq_fair.patch
2698 ApplyPatch stable-sched-Fix-affinity-logic-in-select_task_rq_fair.patch
2699 ApplyPatch stable-sched-Rate-limit-newidle.patch
2700 ApplyPatch stable-sched-Fix-and-clean-up-rate-limit-newidle-code.patch
2701 ApplyPatch stable-x86-amd-iommu-attach-devices-to-pre-allocated-domains-early.patch
2702 ApplyPatch stable-x86-amd-iommu-un__init-iommu_setup_msi.patch
2703 ApplyPatch stable-x86-Calgary-IOMMU-quirk-Find-nearest-matching-Calgary-while-walking-up-the-PCI-tree.patch
2704 ApplyPatch stable-x86-Fix-iommu-nodac-parameter-handling.patch
2705 ApplyPatch stable-x86-GART-pci-gart_64-c-Use-correct-length-in-strncmp.patch
2706 ApplyPatch stable-x86-ASUS-P4S800-reboot-bios-quirk.patch
2707 ApplyPatch stable-x86-apic-Enable-lapic-nmi-watchdog-on-AMD-Family-11h.patch
2708 ApplyPatch stable-ssb-Fix-range-check-in-sprom-write.patch
2709 ApplyPatch stable-ath5k-allow-setting-txpower-to-0.patch
2710 ApplyPatch stable-ath5k-enable-EEPROM-checksum-check.patch
2711 ApplyPatch stable-hrtimer-Fix-proc-timer_list-regression.patch
2712 ApplyPatch stable-ALSA-hrtimer-Fix-lock-up.patch
2713 ApplyPatch stable-KVM-x86-emulator-limit-instructions-to-15-bytes.patch
2714 ApplyPatch stable-KVM-s390-Fix-prefix-register-checking-in-arch-s390-kvm-sigp-c.patch
2715 ApplyPatch stable-KVM-s390-Make-psw-available-on-all-exits-not-just-a-subset.patch
2716 ApplyPatch stable-KVM-fix-irq_source_id-size-verification.patch
2717 ApplyPatch stable-KVM-x86-include-pvclock-MSRs-in-msrs_to_save.patch
2718 ApplyPatch stable-x86-Prevent-GCC-4-4-x-pentium-mmx-et-al-function-prologue-wreckage.patch
2719 ApplyPatch stable-x86-Use-maccumulate-outgoing-args-for-sane-mcount-prologues.patch
2720 ApplyPatch stable-x86-mce-don-t-restart-timer-if-disabled.patch
2721 ApplyPatch stable-x86-mce-Set-up-timer-unconditionally.patch
2722 ApplyPatch stable-x86-Fix-duplicated-UV-BAU-interrupt-vector.patch
2723 ApplyPatch stable-x86-Add-new-Intel-CPU-cache-size-descriptors.patch
2724 ApplyPatch stable-x86-Fix-typo-in-Intel-CPU-cache-size-descriptor.patch
2725 ApplyPatch stable-pata_hpt-37x-3x2n-fix-timing-register-masks-take-2.patch
2726 ApplyPatch stable-V4L-DVB-Fix-test-in-copy_reg_bits.patch
2727 ApplyPatch stable-bsdacct-fix-uid-gid-misreporting.patch
2728 ApplyPatch stable-UBI-flush-wl-before-clearing-update-marker.patch
2729 ApplyPatch stable-jbd2-don-t-wipe-the-journal-on-a-failed-journal-checksum.patch
2730 ApplyPatch stable-USB-xhci-Add-correct-email-and-files-to-MAINTAINERS-entry.patch
2731 ApplyPatch stable-USB-musb_gadget_ep0-fix-unhandled-endpoint-0-IRQs-again.patch
2732 ApplyPatch stable-USB-option-c-add-support-for-D-Link-DWM-162-U5.patch
2733 ApplyPatch stable-USB-usbtmc-repeat-usb_bulk_msg-until-whole-message-is-transfered.patch
2734 ApplyPatch stable-USB-usb-storage-add-BAD_SENSE-flag.patch
2735 ApplyPatch stable-USB-Close-usb_find_interface-race-v3.patch
2736 ApplyPatch stable-pxa-em-x270-fix-usb-hub-power-up-reset-sequence.patch
2737 ApplyPatch stable-hfs-fix-a-potential-buffer-overflow.patch
2738 ApplyPatch stable-md-bitmap-protect-against-bitmap-removal-while-being-updated.patch
2739 ApplyPatch stable-futex-Take-mmap_sem-for-get_user_pages-in-fault_in_user_writeable.patch
2740 ApplyPatch stable-devpts_get_tty-should-validate-inode.patch
2741 ApplyPatch stable-debugfs-fix-create-mutex-racy-fops-and-private-data.patch
2742 ApplyPatch stable-Driver-core-fix-race-in-dev_driver_string.patch
2743 ApplyPatch stable-Serial-Do-not-read-IIR-in-serial8250_start_tx-when-UART_BUG_TXEN.patch
2744 ApplyPatch stable-mac80211-Fix-bug-in-computing-crc-over-dynamic-IEs-in-beacon.patch
2745 ApplyPatch stable-mac80211-Fixed-bug-in-mesh-portal-paths.patch
2746 ApplyPatch stable-mac80211-Revert-Use-correct-sign-for-mesh-active-path-refresh.patch
2747 ApplyPatch stable-mac80211-fix-scan-abort-sanity-checks.patch
2748 ApplyPatch stable-wireless-correctly-report-signal-value-for-IEEE80211_HW_SIGNAL_UNSPEC.patch
2749 ApplyPatch stable-rtl8187-Fix-wrong-rfkill-switch-mask-for-some-models.patch
2750 ApplyPatch stable-x86-Fix-bogus-warning-in-apic_noop-apic_write.patch
2751 ApplyPatch stable-mm-hugetlb-fix-hugepage-memory-leak-in-mincore.patch
2752 ApplyPatch stable-mm-hugetlb-fix-hugepage-memory-leak-in-walk_page_range.patch
2753 ApplyPatch stable-powerpc-windfarm-Add-detection-for-second-cpu-pump.patch
2754 ApplyPatch stable-powerpc-therm_adt746x-Record-pwm-invert-bit-at-module-load-time.patch
2755 ApplyPatch stable-powerpc-Fix-usage-of-64-bit-instruction-in-32-bit-altivec-code.patch
2756 ApplyPatch stable-drm-radeon-kms-Add-quirk-for-HIS-X1300-board.patch
2757 ApplyPatch stable-drm-radeon-kms-handle-vblanks-properly-with-dpms-on.patch
2758 ApplyPatch stable-drm-radeon-kms-fix-legacy-crtc2-dpms.patch
2759 ApplyPatch stable-drm-radeon-kms-fix-vram-setup-on-rs600.patch
2760 ApplyPatch stable-drm-radeon-kms-rs6xx-rs740-clamp-vram-to-aperture-size.patch
2761 ApplyPatch stable-drm-ttm-Fix-build-failure-due-to-missing-struct-page.patch
2762 ApplyPatch stable-drm-i915-Set-the-error-code-after-failing-to-insert-new-offset-into-mm-ht.patch
2763 ApplyPatch stable-drm-i915-Add-the-missing-clonemask-for-display-port-on-Ironlake.patch
2764 ApplyPatch stable-xen-xenbus-make-DEVICE_ATTR-s-static.patch
2765 ApplyPatch stable-xen-re-register-runstate-area-earlier-on-resume.patch
2766 ApplyPatch stable-xen-restore-runstate_info-even-if-have_vcpu_info_placement.patch
2767 ApplyPatch stable-xen-correctly-restore-pfn_to_mfn_list_list-after-resume.patch
2768 ApplyPatch stable-xen-register-timer-interrupt-with-IRQF_TIMER.patch
2769 ApplyPatch stable-xen-register-runstate-on-secondary-CPUs.patch
2770 ApplyPatch stable-xen-don-t-call-dpm_resume_noirq-with-interrupts-disabled.patch
2771 ApplyPatch stable-xen-register-runstate-info-for-boot-CPU-early.patch
2772 ApplyPatch stable-xen-call-clock-resume-notifier-on-all-CPUs.patch
2773 ApplyPatch stable-xen-improve-error-handling-in-do_suspend.patch
2774 ApplyPatch stable-xen-don-t-leak-IRQs-over-suspend-resume.patch
2775 ApplyPatch stable-xen-use-iret-for-return-from-64b-kernel-to-32b-usermode.patch
2776 ApplyPatch stable-xen-explicitly-create-destroy-stop_machine-workqueues-outside-suspend-resume-region.patch
2777 ApplyPatch stable-Xen-balloon-fix-totalram_pages-counting.patch
2778 ApplyPatch stable-xen-try-harder-to-balloon-up-under-memory-pressure.patch
2779 ApplyPatch stable-slc90e66-fix-UDMA-handling.patch
2780 ApplyPatch stable-tcp-Stalling-connections-Fix-timeout-calculation-routine.patch
2781 ApplyPatch stable-ip_fragment-also-adjust-skb-truesize-for-packets-not-owned-by-a-socket.patch
2782 ApplyPatch stable-b44-WOL-setup-one-bit-off-stack-corruption-kernel-panic-fix.patch
2783 ApplyPatch stable-sparc64-Don-t-specify-IRQF_SHARED-for-LDC-interrupts.patch
2784 ApplyPatch stable-sparc64-Fix-overly-strict-range-type-matching-for-PCI-devices.patch
2785 ApplyPatch stable-sparc64-Fix-stack-debugging-IRQ-stack-regression.patch
2786 ApplyPatch stable-sparc-Set-UTS_MACHINE-correctly.patch
2787 ApplyPatch stable-b43legacy-avoid-PPC-fault-during-resume.patch
2788 ApplyPatch stable-tracing-Fix-event-format-export.patch
2789 ApplyPatch stable-ath9k-fix-tx-status-reporting.patch
2790 ApplyPatch stable-mac80211-Fix-dynamic-power-save-for-scanning.patch
2791 ApplyPatch stable-memcg-fix-memory-memsw-usage_in_bytes-for-root-cgroup.patch
2792 ApplyPatch stable-thinkpad-acpi-fix-default-brightness_mode-for-R50e-R51.patch
2793 ApplyPatch stable-thinkpad-acpi-preserve-rfkill-state-across-suspend-resume.patch
2794 ApplyPatch stable-ipw2100-fix-rebooting-hang-with-driver-loaded.patch
2795 ApplyPatch stable-matroxfb-fix-problems-with-display-stability.patch
2796 ApplyPatch stable-acerhdf-add-new-BIOS-versions.patch
2797 ApplyPatch stable-asus-laptop-change-light-sens-default-values.patch
2798 ApplyPatch stable-vmalloc-conditionalize-build-of-pcpu_get_vm_areas.patch
2799 ApplyPatch stable-ACPI-Use-the-ARB_DISABLE-for-the-CPU-which-model-id-is-less-than-0x0f.patch
2800 ApplyPatch stable-net-Fix-userspace-RTM_NEWLINK-notifications.patch
2801 ApplyPatch stable-ext3-Fix-data-filesystem-corruption-when-write-fails-to-copy-data.patch
2802 ApplyPatch stable-V4L-DVB-13116-gspca-ov519-Webcam-041e-4067-added.patch
2803 ApplyPatch stable-bcm63xx_enet-fix-compilation-failure-after-get_stats_count-removal.patch
2804 ApplyPatch stable-x86-Under-BIOS-control-restore-AP-s-APIC_LVTTHMR-to-the-BSP-value.patch
2805 ApplyPatch stable-drm-i915-Avoid-NULL-dereference-with-component_only-tv_modes.patch
2806 ApplyPatch stable-drm-i915-PineView-only-has-LVDS-and-CRT-ports.patch
2807 ApplyPatch stable-drm-i915-Fix-LVDS-stability-issue-on-Ironlake.patch
2808 ApplyPatch stable-mm-sigbus-instead-of-abusing-oom.patch
2809 ApplyPatch stable-ipvs-zero-usvc-and-udest.patch
2810 ApplyPatch stable-jffs2-Fix-long-standing-bug-with-symlink-garbage-collection.patch
2811 ApplyPatch stable-intel-iommu-ignore-page-table-validation-in-pass-through-mode.patch
2812 ApplyPatch stable-netfilter-xtables-document-minimal-required-version.patch
2813 ApplyPatch stable-perf_event-Fix-incorrect-range-check-on-cpu-number.patch
2814 ApplyPatch stable-implement-early_io-re-un-map-for-ia64.patch
2815 ApplyPatch stable-SCSI-ipr-fix-EEH-recovery.patch
2816 ApplyPatch stable-SCSI-qla2xxx-dpc-thread-can-execute-before-scsi-host-has-been-added.patch
2817 ApplyPatch stable-SCSI-st-fix-mdata-page_order-handling.patch
2818 ApplyPatch stable-SCSI-fc-class-fix-fc_transport_init-error-handling.patch
2819 ApplyPatch stable-sched-Fix-task_hot-test-order.patch
2820 ApplyPatch stable-x86-cpuid-Add-volatile-to-asm-in-native_cpuid.patch
2821 ApplyPatch stable-sched-Select_task_rq_fair-must-honour-SD_LOAD_BALANCE.patch
2822 ApplyPatch stable-clockevents-Prevent-clockevent_devices-list-corruption-on-cpu-hotplug.patch
2823 ApplyPatch stable-pata_hpt3x2n-fix-clock-turnaround.patch
2824 ApplyPatch stable-pata_cmd64x-fix-overclocking-of-UDMA0-2-modes.patch
2825 ApplyPatch stable-ASoC-wm8974-fix-a-wrong-bit-definition.patch
2826 ApplyPatch stable-sound-sgio2audio-pdaudiocf-usb-audio-initialize-PCM-buffer.patch
2827 ApplyPatch stable-ALSA-hda-Fix-missing-capsrc_nids-for-ALC88x.patch
2828 ApplyPatch stable-acerhdf-limit-modalias-matching-to-supported.patch
2829 ApplyPatch stable-ACPI-EC-Fix-MSI-DMI-detection.patch
2830 ApplyPatch stable-ACPI-Use-the-return-result-of-ACPI-lid-notifier-chain-correctly.patch
2831 ApplyPatch stable-powerpc-Handle-VSX-alignment-faults-correctly-in-little-endian-mode.patch
2832 ApplyPatch stable-ASoC-Do-not-write-to-invalid-registers-on-the-wm9712.patch
2833 ApplyPatch stable-drm-radeon-fix-build-on-64-bit-with-some-compilers.patch
2834 ApplyPatch stable-USB-emi62-fix-crash-when-trying-to-load-EMI-6-2-firmware.patch
2835 ApplyPatch stable-USB-option-support-hi-speed-for-modem-Haier-CE100.patch
2836 ApplyPatch stable-USB-Fix-a-bug-on-appledisplay-c-regarding-signedness.patch
2837 ApplyPatch stable-USB-musb-gadget_ep0-avoid-SetupEnd-interrupt.patch
2838 ApplyPatch stable-Bluetooth-Prevent-ill-timed-autosuspend-in-USB-driver.patch
2839 ApplyPatch stable-USB-rename-usb_configure_device.patch
2840 ApplyPatch stable-USB-fix-bugs-in-usb_-de-authorize_device.patch
2841 ApplyPatch stable-drivers-net-usb-Correct-code-taking-the-size-of-a-pointer.patch
2842 ApplyPatch stable-x86-SGI-UV-Fix-writes-to-led-registers-on-remote-uv-hubs.patch
2843 ApplyPatch stable-md-Fix-unfortunate-interaction-with-evms.patch
2844 ApplyPatch stable-dma-at_hdmac-correct-incompatible-type-for-argument-1-of-spin_lock_bh.patch
2845 ApplyPatch stable-dma-debug-Do-not-add-notifier-when-dma-debugging-is-disabled.patch
2846 ApplyPatch stable-dma-debug-Fix-bug-causing-build-warning.patch
2847 ApplyPatch stable-x86-amd-iommu-Fix-initialization-failure-panic.patch
2848 ApplyPatch stable-ioat3-fix-p-disabled-q-continuation.patch
2849 ApplyPatch stable-ioat2-3-put-channel-hardware-in-known-state-at-init.patch
2850 ApplyPatch stable-KVM-MMU-remove-prefault-from-invlpg-handler.patch
2851 ApplyPatch stable-KVM-LAPIC-make-sure-IRR-bitmap-is-scanned-after-vm-load.patch
2852 ApplyPatch stable-Libertas-fix-buffer-overflow-in-lbs_get_essid.patch
2853 ApplyPatch stable-iwmc3200wifi-fix-array-out-of-boundary-access.patch
2854 ApplyPatch stable-mac80211-fix-propagation-of-failed-hardware-reconfigurations.patch
2855 ApplyPatch stable-mac80211-fix-WMM-AP-settings-application.patch
2856 ApplyPatch stable-mac80211-Fix-IBSS-merge.patch
2857 ApplyPatch stable-cfg80211-fix-race-between-deauth-and-assoc-response.patch
2858 ApplyPatch stable-ath5k-fix-SWI-calibration-interrupt-storm.patch
2859 ApplyPatch stable-ath9k-wake-hardware-for-interface-IBSS-AP-Mesh-removal.patch
2860 ApplyPatch stable-ath9k-Fix-TX-queue-draining.patch
2861 ApplyPatch stable-ath9k-fix-missed-error-codes-in-the-tx-status-check.patch
2862 ApplyPatch stable-ath9k-wake-hardware-during-AMPDU-TX-actions.patch
2863 ApplyPatch stable-ath9k-fix-suspend-by-waking-device-prior-to-stop.patch
2864 ApplyPatch stable-ath9k_hw-Fix-possible-OOB-array-indexing-in-gen_timer_index-on-64-bit.patch
2865 ApplyPatch stable-ath9k_hw-Fix-AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB-and-its-shift-value-in-0x4054.patch
2866 ApplyPatch stable-iwl3945-disable-power-save.patch
2867 ApplyPatch stable-iwl3945-fix-panic-in-iwl3945-driver.patch
2868 ApplyPatch stable-iwlwifi-fix-EEPROM-OTP-reading-endian-annotations-and-a-bug.patch
2869 ApplyPatch stable-iwlwifi-fix-more-eeprom-endian-bugs.patch
2870 ApplyPatch stable-iwlwifi-fix-40MHz-operation-setting-on-cards-that-do-not-allow-it.patch
2871 ApplyPatch stable-mac80211-fix-race-with-suspend-and-dynamic_ps_disable_work.patch
2872 ApplyPatch stable-NOMMU-Optimise-away-the-dac_-mmap_min_addr-tests.patch
2873 ApplyPatch stable-sysctl_max_map_count-should-be-non-negative.patch
2874 ApplyPatch stable-kernel-sysctl-c-fix-the-incomplete-part-of-sysctl_max_map_count-should-be-non-negative-patch.patch
2875 ApplyPatch stable-V4L-DVB-13596-ov511-c-typo-lock-unlock.patch
2876 ApplyPatch stable-x86-ptrace-make-genregs-32-_get-set-more-robust.patch
2877 ApplyPatch stable-memcg-avoid-oom-killing-innocent-task-in-case-of-use_hierarchy.patch
2878 ApplyPatch stable-e100-Fix-broken-cbs-accounting-due-to-missing-memset.patch
2879 ApplyPatch stable-ipv6-reassembly-use-seperate-reassembly-queues-for-conntrack-and-local-delivery.patch
2880 ApplyPatch stable-netfilter-fix-crashes-in-bridge-netfilter-caused-by-fragment-jumps.patch
2881 ApplyPatch stable-hwmon-sht15-Off-by-one-error-in-array-index-incorrect-constants.patch
2882 ApplyPatch stable-b43-avoid-PPC-fault-during-resume.patch
2883 ApplyPatch stable-Keys-KEYCTL_SESSION_TO_PARENT-needs-TIF_NOTIFY_RESUME-architecture-support.patch
2884 ApplyPatch stable-sched-Fix-balance-vs-hotplug-race.patch
2885 ApplyPatch stable-drm-radeon-kms-fix-crtc-vblank-update-for-r600.patch
2886 ApplyPatch stable-drm-disable-all-the-possible-outputs-crtcs-before-entering-KMS-mode.patch
2887 ApplyPatch stable-orinoco-fix-GFP_KERNEL-in-orinoco_set_key-with-interrupts-disabled.patch
2888 ApplyPatch stable-udf-Try-harder-when-looking-for-VAT-inode.patch
2889 ApplyPatch stable-Add-unlocked-version-of-inode_add_bytes-function.patch
2890 ApplyPatch stable-quota-decouple-fs-reserved-space-from-quota-reservation.patch
2891 ApplyPatch stable-ext4-Convert-to-generic-reserved-quota-s-space-management.patch
2892 ApplyPatch stable-ext4-fix-sleep-inside-spinlock-issue-with-quota-and-dealloc-14739.patch
2893 ApplyPatch stable-x86-msr-Unify-rdmsr_on_cpus-wrmsr_on_cpus.patch
2894 ApplyPatch stable-cpumask-use-modern-cpumask-style-in-drivers-edac-amd64_edac-c.patch
2895 ApplyPatch stable-amd64_edac-unify-MCGCTL-ECC-switching.patch
2896 ApplyPatch stable-x86-msr-Add-support-for-non-contiguous-cpumasks.patch
2897 ApplyPatch stable-x86-msr-msrs_alloc-free-for-CONFIG_SMP-n.patch
2898 ApplyPatch stable-amd64_edac-fix-driver-instance-freeing.patch
2899 ApplyPatch stable-amd64_edac-make-driver-loading-more-robust.patch
2900 ApplyPatch stable-amd64_edac-fix-forcing-module-load-unload.patch
2901 ApplyPatch stable-sched-Sched_rt_periodic_timer-vs-cpu-hotplug.patch
2902 ApplyPatch stable-ext4-Update-documentation-to-correct-the-inode_readahead_blks-option-name.patch
2903 ApplyPatch stable-lguest-fix-bug-in-setting-guest-GDT-entry.patch
2904 ApplyPatch stable-rt2x00-Disable-powersaving-for-rt61pci-and-rt2800pci.patch
2905 ApplyPatch stable-generic_permission-MAY_OPEN-is-not-write-access.patch
2906 ApplyPatch redhat-fix-typo-while-disabling-CONFIG_CPU_SUP_CENTAUR.patch
2907 ApplyPatch redhat-check-if-patchutils-is-installed-before-creating-patches.patch
2908 ApplyPatch redhat-do-a-basic-sanity-check-to-verify-the-modules-are-being-signed.patch
2909 ApplyPatch redhat-Fix-kABI-dependency-generation.patch
2910 ApplyPatch tpm-autoload-tpm_tis-driver.patch
2911 ApplyPatch x86-mce-fix-confusion-between-bank-attributes-and-mce-attributes.patch
2912 ApplyPatch netdrv-be2net-update-be2net-driver-to-latest-upstream.patch
2913 ApplyPatch s390x-tape-incomplete-device-removal.patch
2914 ApplyPatch s390-kernel-improve-code-generated-by-atomic-operations.patch
2915 ApplyPatch x86-AMD-Fix-stale-cpuid4_info-shared_map-data-in-shared_cpu_map-cpumasks.patch
2916 ApplyPatch nfs-fix-oops-in-nfs_rename.patch
2917 ApplyPatch modsign-Remove-Makefile-modpost-qualifying-message-for-module-sign-failure.patch
2918 ApplyPatch redhat-disable-framepointer-build-by-default.patch
2919 ApplyPatch redhat-use-sysconf-_SC_PAGESIZE-instead-of-getpagesize.patch
2920 ApplyPatch redhat-tagging-2-6-32-6-el6.patch
2921 ApplyPatch redhat-updating-lastcommit-for-2-6-32-6.patch
2922 ApplyPatch kvm-Dont-pass-kvm_run-arguments.patch
2923 ApplyPatch kvm-Call-pic_clear_isr-on-pic-reset-to-reuse-logic-there.patch
2924 ApplyPatch kvm-Move-irq-sharing-information-to-irqchip-level.patch
2925 ApplyPatch kvm-Change-irq-routing-table-to-use-gsi-indexed-array.patch
2926 ApplyPatch kvm-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch
2927 ApplyPatch kvm-Move-irq-routing-data-structure-to-rcu-locking.patch
2928 ApplyPatch kvm-Move-irq-ack-notifier-list-to-arch-independent-code.patch
2929 ApplyPatch kvm-Convert-irq-notifiers-lists-to-RCU-locking.patch
2930 ApplyPatch kvm-Move-IO-APIC-to-its-own-lock.patch
2931 ApplyPatch kvm-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch
2932 ApplyPatch kvm-Add-synchronize_srcu_expedited.patch
2933 ApplyPatch kvm-rcu-Add-synchronize_srcu_expedited-to-the-rcutorture-test-suite.patch
2934 ApplyPatch kvm-rcu-Add-synchronize_srcu_expedited-to-the-documentation.patch
2935 ApplyPatch kvm-rcu-Enable-synchronize_sched_expedited-fastpath.patch
2936 ApplyPatch kvm-modify-memslots-layout-in-struct-kvm.patch
2937 ApplyPatch kvm-modify-alias-layout-in-x86s-struct-kvm_arch.patch
2938 ApplyPatch kvm-split-kvm_arch_set_memory_region-into-prepare-and-commit.patch
2939 ApplyPatch kvm-introduce-gfn_to_pfn_memslot.patch
2940 ApplyPatch kvm-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch
2941 ApplyPatch kvm-introduce-kvm-srcu-and-convert-kvm_set_memory_region-to-SRCU-update.patch
2942 ApplyPatch kvm-use-SRCU-for-dirty-log.patch
2943 ApplyPatch kvm-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch
2944 ApplyPatch kvm-convert-io_bus-to-SRCU.patch
2945 ApplyPatch kvm-switch-vcpu-context-to-use-SRCU.patch
2946 ApplyPatch kvm-convert-slots_lock-to-a-mutex.patch
2947 ApplyPatch kvm-Bump-maximum-vcpu-count-to-64.patch
2948 ApplyPatch kvm-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch
2949 ApplyPatch kvm-VMX-Use-macros-instead-of-hex-value-on-cr0-initialization.patch
2950 ApplyPatch kvm-SVM-Reset-cr0-properly-on-vcpu-reset.patch
2951 ApplyPatch kvm-SVM-init_vmcb-remove-redundant-save-cr0-initialization.patch
2952 ApplyPatch kvm-fix-kvmclock-adjust-offset-ioctl-to-match-upstream.patch
2953 ApplyPatch kvm-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch
2954 ApplyPatch kvm-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective-updates.patch
2955 ApplyPatch kvm-remove-pre_task_link-setting-in-save_state_to_tss16.patch
2956 ApplyPatch kvm-SVM-Move-INTR-vmexit-out-of-atomic-code.patch
2957 ApplyPatch kvm-SVM-Notify-nested-hypervisor-of-lost-event-injections.patch
2958 ApplyPatch kvm-SVM-remove-needless-mmap_sem-acquision-from-nested_svm_map.patch
2959 ApplyPatch kvm-VMX-Disable-unrestricted-guest-when-EPT-disabled.patch
2960 ApplyPatch kvm-x86-disallow-multiple-KVM_CREATE_IRQCHIP.patch
2961 ApplyPatch kvm-x86-disallow-KVM_-SET-GET-_LAPIC-without-allocated-in-kernel-lapic.patch
2962 ApplyPatch kvm-x86-disable-paravirt-mmu-reporting.patch
2963 ApplyPatch kvm-Allow-internal-errors-reported-to-userspace-to-carry-extra-data.patch
2964 ApplyPatch kvm-VMX-Report-unexpected-simultaneous-exceptions-as-internal-errors.patch
2965 ApplyPatch kvm-fix-lock-imbalance-in-kvm_-_irq_source_id.patch
2966 ApplyPatch kvm-only-clear-irq_source_id-if-irqchip-is-present.patch
2967 ApplyPatch kvm-Fix-possible-circular-locking-in-kvm_vm_ioctl_assign_device.patch
2968 ApplyPatch block-Fix-incorrect-alignment-offset-reporting-and-update-documentation.patch
2969 ApplyPatch block-Correct-handling-of-bottom-device-misaligment.patch
2970 ApplyPatch block-Fix-discard-alignment-calculation-and-printing.patch
2971 ApplyPatch block-bdev_stack_limits-wrapper.patch
2972 ApplyPatch dm-Fix-device-mapper-topology-stacking.patch
2973 ApplyPatch block-Stop-using-byte-offsets.patch
2974 ApplyPatch dm-add-feature-flags-to-reduce-future-kABI-impact.patch
2975 ApplyPatch netdrv-igb-Update-igb-driver-to-support-Barton-Hills.patch
2976 ApplyPatch redhat-Don-t-compile-DECNET.patch
2977 ApplyPatch redhat-fs-don-t-build-freevxfs.patch
2978 ApplyPatch redhat-disable-KVM-on-non-x86_64-arches.patch
2979 ApplyPatch gfs-GFS2-Fix-up-system-xattrs.patch
2980 ApplyPatch gfs-VFS-Add-forget_all_cached_acls.patch
2981 ApplyPatch gfs-GFS2-Use-forget_all_cached_acls.patch
2982 ApplyPatch gfs-GFS2-Use-gfs2_set_mode-instead-of-munge_mode.patch
2983 ApplyPatch gfs-GFS2-Clean-up-ACLs.patch
2984 ApplyPatch gfs-GFS2-Add-cached-ACLs-support.patch
2985 ApplyPatch gfs-VFS-Use-GFP_NOFS-in-posix_acl_from_xattr.patch
2986 ApplyPatch gfs-GFS2-Fix-gfs2_xattr_acl_chmod.patch
2987 ApplyPatch gfs2-Fix-o-meta-mounts-for-subsequent-mounts.patch
2988 ApplyPatch gfs2-Alter-arguments-of-gfs2_quota-statfs_sync.patch
2989 ApplyPatch gfs2-Hook-gfs2_quota_sync-into-VFS-via-gfs2_quotactl_ops.patch
2990 ApplyPatch gfs2-Remove-obsolete-code-in-quota-c.patch
2991 ApplyPatch gfs2-Add-get_xstate-quota-function.patch
2992 ApplyPatch gfs2-Add-proper-error-reporting-to-quota-sync-via-sysfs.patch
2993 ApplyPatch gfs2-Remove-constant-argument-from-qdsb_get.patch
2994 ApplyPatch gfs2-Remove-constant-argument-from-qd_get.patch
2995 ApplyPatch gfs2-Clean-up-gfs2_adjust_quota-and-do_glock.patch
2996 ApplyPatch gfs2-Add-get_xquota-support.patch
2997 ApplyPatch gfs2-Add-set_xquota-support.patch
2998 ApplyPatch gfs2-Improve-statfs-and-quota-usability.patch
2999 ApplyPatch gfs2-remove-division-from-new-statfs-code.patch
3000 ApplyPatch gfs2-add-barrier-nobarrier-mount-options.patch
3001 ApplyPatch gfs2-only-show-nobarrier-option-on-proc-mounts-when-the-option-is-active.patch
3002 ApplyPatch gfs-GFS2-Fix-lock-ordering-in-gfs2_check_blk_state.patch
3003 ApplyPatch gfs-GFS2-Fix-locking-bug-in-rename.patch
3004 ApplyPatch gfs-GFS2-Ensure-uptodate-inode-size-when-using-O_APPEND.patch
3005 ApplyPatch gfs-GFS2-Fix-glock-refcount-issues.patch
3006 ApplyPatch powerpc-pseries-Add-extended_cede_processor-helper-function.patch
3007 ApplyPatch powerpc-pseries-Add-hooks-to-put-the-CPU-into-an-appropriate-offline-state.patch
3008 ApplyPatch powerpc-Kernel-handling-of-Dynamic-Logical-Partitioning.patch
3009 ApplyPatch powerpc-sysfs-cpu-probe-release-files.patch
3010 ApplyPatch powerpc-CPU-DLPAR-handling.patch
3011 ApplyPatch powerpc-Add-code-to-online-offline-CPUs-of-a-DLPAR-node.patch
3012 ApplyPatch powerpc-cpu-allocation-deallocation-process.patch
3013 ApplyPatch powerpc-pseries-Correct-pseries-dlpar-c-build-break-without-CONFIG_SMP.patch
3014 ApplyPatch net-dccp-fix-module-load-dependency-btw-dccp_probe-and-dccp.patch
3015 ApplyPatch drm-drm-edid-update-to-2-6-33-EDID-parser-code.patch
3016 ApplyPatch drm-mm-patch-drm-core-memory-range-manager-up-to-2-6-33.patch
3017 ApplyPatch drm-ttm-rollup-upstream-TTM-fixes.patch
3018 ApplyPatch drm-unlocked-ioctl-support-for-core-macro-fixes.patch
3019 ApplyPatch drm-add-new-userspace-core-drm-interfaces-from-2-6-33.patch
3020 ApplyPatch drm-remove-address-mask-param-for-drm_pci_alloc.patch
3021 ApplyPatch drm-kms-rollup-KMS-core-and-helper-changes-to-2-6-33.patch
3022 ApplyPatch drm-radeon-intel-realign-displayport-helper-code-with-upstream.patch
3023 ApplyPatch drm-i915-bring-Intel-DRM-KMS-driver-up-to-2-6-33.patch
3024 ApplyPatch drm-radeon-kms-update-to-2-6-33-without-TTM-API-changes.patch
3025 ApplyPatch drm-ttm-validation-API-changes-ERESTART-fixes.patch
3026 ApplyPatch drm-nouveau-update-to-2-6-33-level.patch
3027 ApplyPatch x86-allow-fbdev-primary-video-code-on-64-bit.patch
3028 ApplyPatch offb-add-support-for-framebuffer-handoff-to-offb.patch
3029 ApplyPatch drm-minor-printk-fixes-from-upstream.patch
3030 ApplyPatch redhat-tagging-2-6-32-7-el6.patch
3031 ApplyPatch redhat-updating-lastcommit-for-2-6-32-7.patch
3032 ApplyPatch build-Revert-redhat-disabling-temporaly-DEVTMPFS.patch
3033 ApplyPatch redhat-tagging-2-6-32-8-el6.patch
3034 ApplyPatch redhat-updating-lastcommit-for-2-6-32-8.patch
3035 ApplyPatch serial-8250-add-support-for-DTR-DSR-hardware-flow-control.patch
3036 ApplyPatch s390x-qeth-Support-for-HiperSockets-Network-Traffic-Analyzer.patch
3037 ApplyPatch s390-qeth-fix-packet-loss-if-TSO-is-switched-on.patch
3038 ApplyPatch s390x-tape-Add-pr_fmt-macro-to-all-tape-source-files.patch
3039 ApplyPatch net-dccp-modify-how-dccp-creates-slab-caches-to-prevent-bug-halt-in-SLUB.patch
3040 ApplyPatch scsi-sync-fcoe-with-upstream.patch
3041 ApplyPatch block-Honor-the-gfp_mask-for-alloc_page-in-blkdev_issue_discard.patch
3042 ApplyPatch sound-ALSA-HDA-driver-update-2009-12-15-2.patch
3043 ApplyPatch scsi-mpt2sas-use-sas-address-instead-of-handle-as-a-lookup.patch
3044 ApplyPatch scsi-mpt2sas-fix-expander-remove-fail.patch
3045 ApplyPatch scsi-mpt2sas-check-for-valid-response-info.patch
3046 ApplyPatch scsi-mpt2sas-new-device-SAS2208-support.patch
3047 ApplyPatch scsi-mpt2sas-adding-MPI-Headers-revision-L.patch
3048 ApplyPatch scsi-mpt2sas-stop-driver-when-firmware-encounters-faults.patch
3049 ApplyPatch scsi-mpt2sas-fix-some-comments.patch
3050 ApplyPatch scsi-mpt2sas-add-command-line-option-diag_buffer_enable.patch
3051 ApplyPatch scsi-mpt2sas-add-extended-type-for-diagnostic-buffer-support.patch
3052 ApplyPatch scsi-mpt2sas-add-TimeStamp-support-when-sending-ioc_init.patch
3053 ApplyPatch scsi-mpt2sas-limit-the-max_depth-to-32-for-SATA-devices.patch
3054 ApplyPatch scsi-mpt2sas-add-new-info-messages-for-IR-and-Expander-events.patch
3055 ApplyPatch scsi-mpt2sas-retrieve-the-ioc-facts-prior-to-putting-the-controller-into-READY-state.patch
3056 ApplyPatch scsi-mpt2sas-return-DID_TRANSPORT_DISRUPTED-in-nexus-loss-and-SCSI_MLQUEUE_DEVICE_BUSY-if-device-is-busy.patch
3057 ApplyPatch scsi-mpt2sas-mpt2sas_base_get_sense_buffer_dma-returns-little-endian.patch
3058 ApplyPatch scsi-mpt2sas-fix-PPC-endian-bug.patch
3059 ApplyPatch scsi-mpt2sas-freeze-the-sdev-IO-queue-when-firmware-sends-internal-device-reset.patch
3060 ApplyPatch scsi-mpt2sas-add-support-for-RAID-Action-System-Shutdown-Initiated-at-OS-Shutdown.patch
3061 ApplyPatch scsi-mpt2sas-don-t-update-links-nor-unblock-device-at-no-link-rate-change.patch
3062 ApplyPatch scsi-mpt2sas-Bump-version-03-100-03-00.patch
3063 ApplyPatch scsi-megaraid-upgrade-to-4-17.patch
3064 ApplyPatch uv-x86-SGI-Dont-track-GRU-space-in-PAT.patch
3065 ApplyPatch uv-x86-mm-Call-is_untracked_pat_range-rather-than-is_ISA_range.patch
3066 ApplyPatch uv-x86-mm-is_untracked_pat_range-takes-a-normal-semiclosed-range.patch
3067 ApplyPatch uv-x86-platform-Change-is_untracked_pat_range-to-bool.patch
3068 ApplyPatch uv-x86-Change-is_ISA_range-into-an-inline-function.patch
3069 ApplyPatch uv-x86-mm-Correct-the-implementation-of-is_untracked_pat_range.patch
3070 ApplyPatch uv-x86-RTC-Rename-generic_interrupt-to-x86_platform_ipi.patch
3071 ApplyPatch uv-x86-RTC-Always-enable-RTC-clocksource.patch
3072 ApplyPatch uv-x86-SGI-Fix-irq-affinity-for-hub-based-interrupts.patch
3073 ApplyPatch uv-x86-apic-Move-SGI-UV-functionality-out-of-generic-IO-APIC-code.patch
3074 ApplyPatch uv-x86-irq-Allow-0xff-for-proc-irq-n-smp_affinity-on-an-8-cpu-system.patch
3075 ApplyPatch uv-x86-Remove-move_cleanup_count-from-irq_cfg.patch
3076 ApplyPatch uv-x86-irq-Check-move_in_progress-before-freeing-the-vector-mapping.patch
3077 ApplyPatch uv-xpc-needs-to-provide-an-abstraction-for-uv_gpa.patch
3078 ApplyPatch uv-x86-update-XPC-to-handle-updated-BIOS-interface.patch
3079 ApplyPatch uv-x86-xpc-NULL-deref-when-mesq-becomes-empty.patch
3080 ApplyPatch uv-x86-xpc_make_first_contact-hang-due-to-not-accepting-ACTIVE-state.patch
3081 ApplyPatch uv-x86-XPC-receive-message-reuse-triggers-invalid-BUG_ON.patch
3082 ApplyPatch uv-XPC-pass-nasid-instead-of-nid-to-gru_create_message_queue.patch
3083 ApplyPatch gru-GRU-Rollup-patch.patch
3084 ApplyPatch uv-React-2-6-32-y-isolcpus-broken-in-2-6-32-y-kernel.patch
3085 ApplyPatch nfs-nfsd-make-sure-data-is-on-disk-before-calling-fsync.patch
3086 ApplyPatch nfs-sunrpc-fix-peername-failed-on-closed-listener.patch
3087 ApplyPatch nfs-SUNRPC-Fix-up-an-error-return-value-in-gss_import_sec_context_kerberos.patch
3088 ApplyPatch nfs-SUNRPC-Fix-the-return-value-in-gss_import_sec_context.patch
3089 ApplyPatch nfs-sunrpc-on-successful-gss-error-pipe-write-don-t-return-error.patch
3090 ApplyPatch nfs-sunrpc-fix-build-time-warning.patch
3091 ApplyPatch scsi-bfa-update-from-2-1-2-0-to-2-1-2-1.patch
3092 ApplyPatch scsi-qla2xxx-Update-support-for-FC-FCoE-HBA-CNA.patch
3093 ApplyPatch irq-Expose-the-irq_desc-node-as-proc-irq-node.patch
3094 ApplyPatch cgroups-fix-for-kernel-BUG-at-kernel-cgroup-c-790.patch
3095 ApplyPatch tracing-tracepoint-Add-signal-tracepoints.patch
3096 ApplyPatch block-direct-io-cleanup-blockdev_direct_IO-locking.patch
3097 ApplyPatch pci-PCIe-AER-honor-ACPI-HEST-FIRMWARE-FIRST-mode.patch
3098 ApplyPatch x86-Add-kernel-pagefault-tracepoint-for-x86-x86_64.patch
3099 ApplyPatch fs-xfs-2-6-33-updates.patch
3100 ApplyPatch x86-dell-wmi-Add-support-for-new-Dell-systems.patch
3101 ApplyPatch x86-core-make-LIST_POISON-less-deadly.patch
3102 ApplyPatch kvm-fix-cleanup_srcu_struct-on-vm-destruction.patch
3103 ApplyPatch redhat-tagging-2-6-32-9-el6.patch
3104 ApplyPatch redhat-updating-lastcommit-for-2-6-32-9.patch
3105 ApplyPatch scsi-scsi_transport_fc-Allow-LLD-to-reset-FC-BSG-timeout.patch
3106 ApplyPatch s390x-zfcp-introduce-BSG-timeout-callback.patch
3107 ApplyPatch s390x-zfcp-set-HW-timeout-requested-by-BSG-request.patch
3108 ApplyPatch redhat-config-increase-printk-buffer.patch
3109 ApplyPatch netdrv-qlge-update-to-upstream-version-v1-00-00-23-00-00-01.patch
3110 ApplyPatch gfs-Add-quota-netlink-support.patch
3111 ApplyPatch gfs-Use-dquot_send_warning.patch
3112 ApplyPatch netdrv-e1000e-update-to-the-latest-upstream.patch
3113 ApplyPatch x86-Disable-Memory-hot-add-on-x86-32-bit.patch
3114 ApplyPatch utrace-fix-utrace_maybe_reap-vs-find_matching_engine-race.patch
3115 ApplyPatch perf-add-kernel-internal-interface.patch
3116 ApplyPatch perf-improve-error-reporting.patch
3117 ApplyPatch perf-Add-a-callback-to-perf-events.patch
3118 ApplyPatch perf-Allow-for-custom-overflow-handlers.patch
3119 ApplyPatch perf-Fix-PERF_FORMAT_GROUP-scale-info.patch
3120 ApplyPatch perf-Fix-event-scaling-for-inherited-counters.patch
3121 ApplyPatch perf-Fix-locking-for-PERF_FORMAT_GROUP.patch
3122 ApplyPatch perf-Use-overflow-handler-instead-of-the-event-callback.patch
3123 ApplyPatch perf-Remove-the-event-callback-from-perf-events.patch
3124 ApplyPatch s390x-ptrace-dont-abuse-PT_PTRACED.patch
3125 ApplyPatch s390x-fix-loading-of-PER-control-registers-for-utrace.patch
3126 ApplyPatch scsi-aic79xx-check-for-non-NULL-scb-in-ahd_handle_nonpkt_busfree.patch
3127 ApplyPatch sound-Fix-SPDIF-In-for-AD1988-codecs-add-Intel-Cougar-IDs.patch
3128 ApplyPatch x86-Force-irq-complete-move-during-cpu-offline.patch
3129 ApplyPatch netdrv-vxge-fix-issues-found-in-Neterion-testing.patch
3130 ApplyPatch mm-mmap-don-t-return-ENOMEM-when-mapcount-is-temporarily-exceeded-in-munmap.patch
3131 ApplyPatch redhat-tagging-2-6-32-10-el6.patch
3132 ApplyPatch redhat-updating-lastcommit-for-2-6-32-10.patch
3133 ApplyPatch stable-untangle-the-do_mremap-mess.patch
3134 ApplyPatch stable-fasync-split-fasync_helper-into-separate-add-remove-functions.patch
3135 ApplyPatch stable-ASoC-fix-params_rate-macro-use-in-several-codecs.patch
3136 ApplyPatch stable-modules-Skip-empty-sections-when-exporting-section-notes.patch
3137 ApplyPatch stable-exofs-simple_write_end-does-not-mark_inode_dirty.patch
3138 ApplyPatch stable-Revert-x86-Side-step-lguest-problem-by-only-building-cmpxchg8b_emu-for-pre-Pentium.patch
3139 ApplyPatch stable-rtc_cmos-convert-shutdown-to-new-pnp_driver-shutdown.patch
3140 ApplyPatch stable-drivers-cpuidle-governors-menu-c-fix-undefined-reference-to-__udivdi3.patch
3141 ApplyPatch stable-lib-rational-c-needs-module-h.patch
3142 ApplyPatch stable-dma-debug-allow-DMA_BIDIRECTIONAL-mappings-to-be-synced-with-DMA_FROM_DEVICE-and.patch
3143 ApplyPatch stable-kernel-signal-c-fix-kernel-information-leak-with-print-fatal-signals-1.patch
3144 ApplyPatch stable-mmc_block-add-dev_t-initialization-check.patch
3145 ApplyPatch stable-mmc_block-fix-probe-error-cleanup-bug.patch
3146 ApplyPatch stable-mmc_block-fix-queue-cleanup.patch
3147 ApplyPatch stable-ALSA-ac97-Add-Dell-Dimension-2400-to-Headphone-Line-Jack-Sense-blacklist.patch
3148 ApplyPatch stable-ALSA-atiixp-Specify-codec-for-Foxconn-RC4107MA-RS2.patch
3149 ApplyPatch stable-ASoC-Fix-WM8350-DSP-mode-B-configuration.patch
3150 ApplyPatch stable-netfilter-ebtables-enforce-CAP_NET_ADMIN.patch
3151 ApplyPatch stable-netfilter-nf_ct_ftp-fix-out-of-bounds-read-in-update_nl_seq.patch
3152 ApplyPatch stable-hwmon-coretemp-Fix-TjMax-for-Atom-N450-D410-D510-CPUs.patch
3153 ApplyPatch stable-hwmon-adt7462-Fix-pin-28-monitoring.patch
3154 ApplyPatch stable-quota-Fix-dquot_transfer-for-filesystems-different-from-ext4.patch
3155 ApplyPatch stable-xen-fix-hang-on-suspend.patch
3156 ApplyPatch stable-iwlwifi-fix-iwl_queue_used-bug-when-read_ptr-write_ptr.patch
3157 ApplyPatch stable-ath5k-Fix-eeprom-checksum-check-for-custom-sized-eeproms.patch
3158 ApplyPatch stable-cfg80211-fix-syntax-error-on-user-regulatory-hints.patch
3159 ApplyPatch stable-iwl-off-by-one-bug.patch
3160 ApplyPatch stable-mac80211-add-missing-sanity-checks-for-action-frames.patch
3161 ApplyPatch stable-libertas-Remove-carrier-signaling-from-the-scan-code.patch
3162 ApplyPatch stable-kernel-sysctl-c-fix-stable-merge-error-in-NOMMU-mmap_min_addr.patch
3163 ApplyPatch stable-mac80211-fix-skb-buffering-issue-and-fixes-to-that.patch
3164 ApplyPatch stable-fix-braindamage-in-audit_tree-c-untag_chunk.patch
3165 ApplyPatch stable-fix-more-leaks-in-audit_tree-c-tag_chunk.patch
3166 ApplyPatch stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
3167 ApplyPatch stable-ipv6-skb_dst-can-be-NULL-in-ipv6_hop_jumbo.patch
3168 ApplyPatch misc-Revert-stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
3169 ApplyPatch netdrv-e1000e-enhance-frame-fragment-detection.patch
3170 ApplyPatch redhat-kABI-internal-only-files.patch
3171 ApplyPatch drm-bring-RHEL6-radeon-drm-up-to-2-6-33-rc4-5-level.patch
3172 ApplyPatch s390x-qeth-set-default-BLKT-settings-dependend-on-OSA-hw-level.patch
3173 ApplyPatch block-dm-replicator-documentation-and-module-registry.patch
3174 ApplyPatch block-dm-replicator-replication-log-and-site-link-handler-interfaces-and-main-replicator-module.patch
3175 ApplyPatch block-dm-replicator-ringbuffer-replication-log-handler.patch
3176 ApplyPatch block-dm-replicator-blockdev-site-link-handler.patch
3177 ApplyPatch block-dm-raid45-add-raid45-target.patch
3178 ApplyPatch dm-dm-raid45-export-missing-dm_rh_inc.patch
3179 ApplyPatch kdump-Remove-the-32MB-limitation-for-crashkernel.patch
3180 ApplyPatch redhat-tagging-2-6-32-11-el6.patch
3181 ApplyPatch redhat-updating-lastcommit-for-2-6-32-11.patch
3182 ApplyPatch redhat-Revert-edac-amd64_edac-disabling-temporarily.patch
3183 ApplyPatch x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch
3184 ApplyPatch x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch
3185 ApplyPatch x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch
3186 ApplyPatch x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch
3187 ApplyPatch x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch
3188 ApplyPatch x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch
3189 ApplyPatch redhat-rpadlpar_io-should-be-built-in-kernel.patch
3190 ApplyPatch x86-msr-cpuid-Register-enough-minors-for-the-MSR-and-CPUID-drivers.patch
3191 ApplyPatch scsi-Sync-be2iscsi-with-upstream.patch
3192 ApplyPatch redhat-config-disable-CONFIG_X86_CPU_DEBUG.patch
3193 ApplyPatch pci-Always-set-prefetchable-base-limit-upper32-registers.patch
3194 ApplyPatch mm-Memory-tracking-for-Stratus.patch
3195 ApplyPatch redhat-enable-Memory-tracking-for-Stratus.patch
3196 ApplyPatch drm-radeon-possible-security-issue.patch
3197 ApplyPatch redhat-tagging-2-6-32-12-el6.patch
3198 ApplyPatch redhat-updating-lastcommit-for-2-6-32-12.patch
3199 ApplyPatch mm-Memory-tracking-for-Stratus-2.patch
3200 ApplyPatch kdump-backport-upstream-ppc64-kcrctab-fixes.patch
3201 ApplyPatch x86-acpi-Export-acpi_pci_irq_-add-del-_prt.patch
3202 ApplyPatch kvm-Fix-race-between-APIC-TMR-and-IRR.patch
3203 ApplyPatch kvm-x86-Fix-host_mapping_level.patch
3204 ApplyPatch kvm-MMU-bail-out-pagewalk-on-kvm_read_guest-error.patch
3205 ApplyPatch kvm-x86-Fix-probable-memory-leak-of-vcpu-arch-mce_banks.patch
3206 ApplyPatch kvm-x86-Fix-leak-of-free-lapic-date-in-kvm_arch_vcpu_init.patch
3207 ApplyPatch kvm-only-allow-one-gsi-per-fd.patch
3208 ApplyPatch kvm-properly-check-max-PIC-pin-in-irq-route-setup.patch
3209 ApplyPatch kvm-eventfd-allow-atomic-read-and-waitqueue-remove.patch
3210 ApplyPatch kvm-fix-spurious-interrupt-with-irqfd.patch
3211 ApplyPatch x86-Add-AMD-Node-ID-MSR-support.patch
3212 ApplyPatch x86-Fix-crash-when-profiling-more-than-28-events.patch
3213 ApplyPatch virtio-console-comment-cleanup.patch
3214 ApplyPatch virtio-console-statically-initialize-virtio_cons.patch
3215 ApplyPatch virtio-hvc_console-make-the-ops-pointer-const.patch
3216 ApplyPatch virtio-hvc_console-Remove-__devinit-annotation-from-hvc_alloc.patch
3217 ApplyPatch virtio-console-We-support-only-one-device-at-a-time.patch
3218 ApplyPatch virtio-console-port-encapsulation.patch
3219 ApplyPatch virtio-console-encapsulate-buffer-information-in-a-struct.patch
3220 ApplyPatch virtio-console-ensure-add_inbuf-can-work-for-multiple-ports-as-well.patch
3221 ApplyPatch virtio-console-introduce-a-get_inbuf-helper-to-fetch-bufs-from-in_vq.patch
3222 ApplyPatch virtio-console-use-vdev-priv-to-avoid-accessing-global-var.patch
3223 ApplyPatch virtio-console-don-t-assume-a-single-console-port.patch
3224 ApplyPatch virtio-console-remove-global-var.patch
3225 ApplyPatch virtio-console-struct-ports-for-multiple-ports-per-device.patch
3226 ApplyPatch virtio-console-ensure-console-size-is-updated-on-hvc-open.patch
3227 ApplyPatch virtio-console-Separate-out-console-specific-data-into-a-separate-struct.patch
3228 ApplyPatch virtio-console-Separate-out-console-init-into-a-new-function.patch
3229 ApplyPatch virtio-console-Separate-out-find_vqs-operation-into-a-different-function.patch
3230 ApplyPatch virtio-console-Introduce-function-to-hand-off-data-from-host-to-readers.patch
3231 ApplyPatch virtio-console-Introduce-a-send_buf-function-for-a-common-path-for-sending-data-to-host.patch
3232 ApplyPatch virtio-console-Add-a-new-MULTIPORT-feature-support-for-generic-ports.patch
3233 ApplyPatch virtio-console-Prepare-for-writing-to-reading-from-userspace-buffers.patch
3234 ApplyPatch virtio-console-Associate-each-port-with-a-char-device.patch
3235 ApplyPatch virtio-console-Add-file-operations-to-ports-for-open-read-write-poll.patch
3236 ApplyPatch virtio-console-Ensure-only-one-process-can-have-a-port-open-at-a-time.patch
3237 ApplyPatch virtio-console-Register-with-sysfs-and-create-a-name-attribute-for-ports.patch
3238 ApplyPatch virtio-console-Remove-cached-data-on-port-close.patch
3239 ApplyPatch virtio-console-Handle-port-hot-plug.patch
3240 ApplyPatch virtio-Add-ability-to-detach-unused-buffers-from-vrings.patch
3241 ApplyPatch virtio-hvc_console-Export-GPL-ed-hvc_remove.patch
3242 ApplyPatch virtio-console-Add-ability-to-hot-unplug-ports.patch
3243 ApplyPatch virtio-console-Add-debugfs-files-for-each-port-to-expose-debug-info.patch
3244 ApplyPatch virtio-console-show-error-message-if-hvc_alloc-fails-for-console-ports.patch
3245 ApplyPatch redhat-tagging-2-6-32-13-el6.patch
3246 ApplyPatch redhat-updating-lastcommit-for-2-6-32-13.patch
3247 ApplyPatch uv-x86-Add-function-retrieving-node-controller-revision-number.patch
3248 ApplyPatch uv-x86-Ensure-hub-revision-set-for-all-ACPI-modes.patch
3249 ApplyPatch s390x-cio-channel-path-vary-operation-has-no-effect.patch
3250 ApplyPatch s390x-zcrypt-Do-not-remove-coprocessor-in-case-of-error-8-72.patch
3251 ApplyPatch s390x-dasd-Fix-null-pointer-in-s390dbf-and-discipline-checking.patch
3252 ApplyPatch redhat-Enable-oprofile-multiplexing-on-x86_64-and-x86-architectures-only.patch
3253 ApplyPatch netdrv-update-tg3-to-version-3-106-and-fix-panic.patch
3254 ApplyPatch redhat-disable-CONFIG_OPTIMIZE_FOR_SIZE.patch
3255 ApplyPatch s390x-dasd-fix-online-offline-race.patch
3256 ApplyPatch redhat-tagging-2-6-32-14-el6.patch
3257 ApplyPatch redhat-updating-lastcommit-for-2-6-32-14.patch
3258 ApplyPatch gfs-GFS2-Fix-refcnt-leak-on-gfs2_follow_link-error-path.patch
3259 ApplyPatch gfs-GFS2-Use-GFP_NOFS-for-alloc-structure.patch
3260 ApplyPatch gfs-GFS2-Use-MAX_LFS_FILESIZE-for-meta-inode-size.patch
3261 ApplyPatch gfs-GFS2-Wait-for-unlock-completion-on-umount.patch
3262 ApplyPatch gfs-GFS2-Extend-umount-wait-coverage-to-full-glock-lifetime.patch
3263 ApplyPatch x86-intr-remap-generic-support-for-remapping-HPET-MSIs.patch
3264 ApplyPatch x86-arch-specific-support-for-remapping-HPET-MSIs.patch
3265 ApplyPatch x86-Disable-HPET-MSI-on-ATI-SB700-SB800.patch
3266 ApplyPatch fs-ext4-fix-type-of-offset-in-ext4_io_end.patch
3267 ApplyPatch redhat-disable-CONFIG_DEBUG_PERF_USE_VMALLOC-on-production-kernels.patch
3268 ApplyPatch x86-fix-Add-AMD-Node-ID-MSR-support.patch
3269 ApplyPatch redhat-config-disable-CONFIG_VMI.patch
3270 ApplyPatch quota-64-bit-quota-format-fixes.patch
3271 ApplyPatch block-cfq-Do-not-idle-on-async-queues-and-drive-deeper-WRITE-depths.patch
3272 ApplyPatch block-blk-cgroup-Fix-lockdep-warning-of-potential-deadlock-in-blk-cgroup.patch
3273 ApplyPatch redhat-tagging-2-6-32-15-el6.patch
3274 ApplyPatch redhat-updating-lastcommit-for-2-6-32-15.patch
3275 ApplyPatch redhat-x86_64-enable-function-tracers.patch
3276 ApplyPatch nfs-nfsd41-nfsd4_decode_compound-does-not-recognize-all-ops.patch
3277 ApplyPatch nfs-nfsd4-Use-FIRST_NFS4_OP-in-nfsd4_decode_compound.patch
3278 ApplyPatch nfs-nfsd-use-vfs_fsync-for-non-directories.patch
3279 ApplyPatch nfs-nfsd41-Create-the-recovery-entry-for-the-NFSv4-1-client.patch
3280 ApplyPatch nfs-nfsd-4-1-has-an-rfc-number.patch
3281 ApplyPatch nfs-SUNRPC-Use-rpc_pton-in-ip_map_parse.patch
3282 ApplyPatch nfs-NFSD-Support-AF_INET6-in-svc_addsock-function.patch
3283 ApplyPatch nfs-SUNRPC-Bury-ifdef-IPV6-in-svc_create_xprt.patch
3284 ApplyPatch nfs-SUNRPC-NFS-kernel-APIs-shouldn-t-return-ENOENT-for-transport-not-found.patch
3285 ApplyPatch nfs-NFSD-Create-PF_INET6-listener-in-write_ports.patch
3286 ApplyPatch nfs-nfs41-Adjust-max-cache-response-size-value.patch
3287 ApplyPatch nfs-nfs41-Check-slot-table-for-referring-calls.patch
3288 ApplyPatch nfs-nfs41-Process-callback-s-referring-call-list.patch
3289 ApplyPatch nfs-nfs41-fix-wrong-error-on-callback-header-xdr-overflow.patch
3290 ApplyPatch nfs-nfs41-directly-encode-back-channel-error.patch
3291 ApplyPatch nfs-nfs41-remove-uneeded-checks-in-callback-processing.patch
3292 ApplyPatch nfs-nfs41-prepare-for-back-channel-drc.patch
3293 ApplyPatch nfs-nfs41-back-channel-drc-minimal-implementation.patch
3294 ApplyPatch nfs-nfs41-implement-cb_recall_slot.patch
3295 ApplyPatch nfs-nfs41-resize-slot-table-in-reset.patch
3296 ApplyPatch nfs-nfs41-fix-nfs4_callback_recallslot.patch
3297 ApplyPatch nfs-nfs41-clear-NFS4CLNT_RECALL_SLOT-bit-on-session-reset.patch
3298 ApplyPatch nfs-nfs41-cleanup-callback-code-to-use-__be32-type.patch
3299 ApplyPatch nfs-Fix-a-reference-leak-in-nfs_wb_cancel_page.patch
3300 ApplyPatch nfs-Try-to-commit-unstable-writes-in-nfs_release_page.patch
3301 ApplyPatch nfs-Make-nfs_commitdata_release-static.patch
3302 ApplyPatch nfs-Avoid-warnings-when-CONFIG_NFS_V4-n.patch
3303 ApplyPatch nfs-Ensure-that-the-NFSv4-locking-can-recover-from-stateid-errors.patch
3304 ApplyPatch nfs-NFSv4-Don-t-allow-posix-locking-against-servers-that-don-t-support-it.patch
3305 ApplyPatch nfs-NFSv4-1-Don-t-call-nfs4_schedule_state_recovery-unnecessarily.patch
3306 ApplyPatch nfs-Ensure-that-we-handle-NFS4ERR_STALE_STATEID-correctly.patch
3307 ApplyPatch nfs-sunrpc-cache-fix-module-refcnt-leak-in-a-failure-path.patch
3308 ApplyPatch scsi-lpfc-Update-from-8-3-4-to-8-3-5-4-FC-FCoE.patch
3309 ApplyPatch dm-fix-kernel-panic-at-releasing-bio-on-recovery-failed-region.patch
3310 ApplyPatch dm-dm-raid1-fix-deadlock-at-suspending-failed-device.patch
3311 ApplyPatch vhost-fix-high-32-bit-in-FEATURES-ioctls.patch
3312 ApplyPatch vhost-prevent-modification-of-an-active-ring.patch
3313 ApplyPatch vhost-add-access_ok-checks.patch
3314 ApplyPatch vhost-make-default-mapping-empty-by-default.patch
3315 ApplyPatch vhost-access-check-thinko-fixes.patch
3316 ApplyPatch vhost-vhost-net-comment-use-of-invalid-fd-when-setting-vhost-backend.patch
3317 ApplyPatch vhost-vhost-net-defer-f-private_data-until-setup-succeeds.patch
3318 ApplyPatch vhost-fix-TUN-m-VHOST_NET-y.patch
3319 ApplyPatch kvm-emulate-accessed-bit-for-EPT.patch
3320 ApplyPatch net-nf_conntrack-fix-memory-corruption.patch
3321 ApplyPatch nfs-nfs4-handle-EKEYEXPIRED-errors-from-RPC-layer.patch
3322 ApplyPatch nfs-sunrpc-parse-and-return-errors-reported-by-gssd.patch
3323 ApplyPatch nfs-handle-NFSv2-EKEYEXPIRED-returns-from-RPC-layer-appropriately.patch
3324 ApplyPatch nfs-nfs-handle-NFSv3-EKEYEXPIRED-errors-as-we-would-EJUKEBOX.patch
3325 ApplyPatch oprofile-Support-Nehalem-EX-CPU-in-Oprofile.patch
3326 ApplyPatch mm-define-MADV_HUGEPAGE.patch
3327 ApplyPatch mm-add-a-compound_lock.patch
3328 ApplyPatch mm-alter-compound-get_page-put_page.patch
3329 ApplyPatch mm-update-futex-compound-knowledge.patch
3330 ApplyPatch mm-clear-compound-mapping.patch
3331 ApplyPatch mm-add-native_set_pmd_at.patch
3332 ApplyPatch mm-add-pmd-paravirt-ops.patch
3333 ApplyPatch mm-no-paravirt-version-of-pmd-ops.patch
3334 ApplyPatch mm-export-maybe_mkwrite.patch
3335 ApplyPatch mm-comment-reminder-in-destroy_compound_page.patch
3336 ApplyPatch mm-config_transparent_hugepage.patch
3337 ApplyPatch mm-special-pmd_trans_-functions.patch
3338 ApplyPatch mm-add-pmd-mangling-generic-functions.patch
3339 ApplyPatch mm-add-pmd-mangling-functions-to-x86.patch
3340 ApplyPatch mm-bail-out-gup_fast-on-splitting-pmd.patch
3341 ApplyPatch mm-pte-alloc-trans-splitting.patch
3342 ApplyPatch mm-add-pmd-mmu_notifier-helpers.patch
3343 ApplyPatch mm-clear-page-compound.patch
3344 ApplyPatch mm-add-pmd_huge_pte-to-mm_struct.patch
3345 ApplyPatch mm-split_huge_page_mm-vma.patch
3346 ApplyPatch mm-split_huge_page-paging.patch
3347 ApplyPatch mm-clear_huge_page-fix.patch
3348 ApplyPatch mm-clear_copy_huge_page.patch
3349 ApplyPatch mm-kvm-mmu-transparent-hugepage-support.patch
3350 ApplyPatch mm-backport-page_referenced-microoptimization.patch
3351 ApplyPatch mm-introduce-_GFP_NO_KSWAPD.patch
3352 ApplyPatch mm-dont-alloc-harder-for-gfp-nomemalloc-even-if-nowait.patch
3353 ApplyPatch mm-transparent-hugepage-core.patch
3354 ApplyPatch mm-verify-pmd_trans_huge-isnt-leaking.patch
3355 ApplyPatch mm-madvise-MADV_HUGEPAGE.patch
3356 ApplyPatch mm-pmd_trans_huge-migrate-bugcheck.patch
3357 ApplyPatch mm-memcg-compound.patch
3358 ApplyPatch mm-memcg-huge-memory.patch
3359 ApplyPatch mm-transparent-hugepage-vmstat.patch
3360 ApplyPatch mm-introduce-khugepaged.patch
3361 ApplyPatch mm-hugepage-redhat-customization.patch
3362 ApplyPatch mm-remove-madvise-MADV_HUGEPAGE.patch
3363 ApplyPatch uv-PCI-update-pci_set_vga_state-to-call-arch-functions.patch
3364 ApplyPatch pci-update-pci_set_vga_state-to-call-arch-functions.patch
3365 ApplyPatch uv-x86_64-update-uv-arch-to-target-legacy-VGA-I-O-correctly.patch
3366 ApplyPatch gpu-vgaarb-fix-vga-arbiter-to-accept-PCI-domains-other-than-0.patch
3367 ApplyPatch uv-vgaarb-add-user-selectability-of-the-number-of-gpus-in-a-system.patch
3368 ApplyPatch s390x-ctcm-lcs-claw-remove-cu3088-layer.patch
3369 ApplyPatch uv-x86-Fix-RTC-latency-bug-by-reading-replicated-cachelines.patch
3370 ApplyPatch pci-PCI-ACS-support-functions.patch
3371 ApplyPatch pci-Enablement-of-PCI-ACS-control-when-IOMMU-enabled-on-system.patch
3372 ApplyPatch net-do-not-check-CAP_NET_RAW-for-kernel-created-sockets.patch
3373 ApplyPatch fs-inotify-fix-inotify-WARN-and-compatibility-issues.patch
3374 ApplyPatch redhat-kABI-updates-02-11.patch
3375 ApplyPatch mm-fix-BUG-s-caused-by-the-transparent-hugepage-patch.patch
3376 ApplyPatch redhat-Allow-only-particular-kernel-rpms-to-be-built.patch
3377 ApplyPatch nfs-Fix-a-bug-in-nfs_fscache_release_page.patch
3378 ApplyPatch nfs-Remove-a-redundant-check-for-PageFsCache-in-nfs_migrate_page.patch
3379 ApplyPatch redhat-tagging-2-6-32-16-el6.patch
3380 ApplyPatch redhat-updating-lastcommit-for-2-6-32-16.patch
3381 ApplyPatch redhat-find-provides-also-require-python.patch
3382 ApplyPatch ppc-Add-kdump-support-to-Collaborative-Memory-Manager.patch
3383 ApplyPatch gfs-GFS2-problems-on-single-node-cluster.patch
3384 ApplyPatch selinux-print-the-module-name-when-SELinux-denies-a-userspace-upcall.patch
3385 ApplyPatch kernel-Prevent-futex-user-corruption-to-crash-the-kernel.patch
3386 ApplyPatch kvm-PIT-control-word-is-write-only.patch
3387 ApplyPatch virt-virtio_blk-add-block-topology-support.patch
3388 ApplyPatch redhat-make-CONFIG_CRASH-built-in.patch
3389 ApplyPatch mm-anon_vma-linking-changes-to-improve-multi-process-scalability.patch
3390 ApplyPatch mm-anon_vma-locking-updates-for-transparent-hugepage-code.patch
3391 ApplyPatch dm-stripe-avoid-divide-by-zero-with-invalid-stripe-count.patch
3392 ApplyPatch dm-log-userspace-fix-overhead_size-calcuations.patch
3393 ApplyPatch dm-mpath-fix-stall-when-requeueing-io.patch
3394 ApplyPatch dm-raid1-fail-writes-if-errors-are-not-handled-and-log-fails.patch
3395 ApplyPatch kernel-time-Implement-logarithmic-time-accumalation.patch
3396 ApplyPatch kernel-time-Remove-xtime_cache.patch
3397 ApplyPatch watchdog-Add-support-for-iTCO-watchdog-on-Ibex-Peak-chipset.patch
3398 ApplyPatch block-fix-bio_add_page-for-non-trivial-merge_bvec_fn-case.patch
3399 ApplyPatch block-freeze_bdev-don-t-deactivate-successfully-frozen-MS_RDONLY-sb.patch
3400 ApplyPatch x86-nmi_watchdog-enable-by-default-on-RHEL-6.patch
3401 ApplyPatch x86-x86-32-clean-up-rwsem-inline-asm-statements.patch
3402 ApplyPatch x86-clean-up-rwsem-type-system.patch
3403 ApplyPatch x86-x86-64-support-native-xadd-rwsem-implementation.patch
3404 ApplyPatch x86-x86-64-rwsem-64-bit-xadd-rwsem-implementation.patch
3405 ApplyPatch x86-x86-64-rwsem-Avoid-store-forwarding-hazard-in-__downgrade_write.patch
3406 ApplyPatch nfs-mount-nfs-Unknown-error-526.patch
3407 ApplyPatch s390-zfcp-cancel-all-pending-work-for-a-to-be-removed-zfcp_port.patch
3408 ApplyPatch s390-zfcp-report-BSG-errors-in-correct-field.patch
3409 ApplyPatch s390-qdio-prevent-kernel-bug-message-in-interrupt-handler.patch
3410 ApplyPatch s390-qdio-continue-polling-for-buffer-state-ERROR.patch
3411 ApplyPatch s390-hvc_iucv-allocate-IUCV-send-receive-buffers-in-DMA-zone.patch
3412 ApplyPatch redhat-whitelists-intentional-kABI-Module-kabi-rebase-pre-beta1-for-VM-bits.patch
3413 ApplyPatch redhat-tagging-2-6-32-17-el6.patch
3414 ApplyPatch redhat-updating-lastcommit-for-2-6-32-17.patch
3415 ApplyPatch redhat-disable-GFS2-on-s390x.patch
3416 ApplyPatch redhat-disable-XFS-on-all-arches-except-x86_64.patch
3417 ApplyPatch redhat-disable-all-the-filesystems-we-aren-t-going-to-support-and-fix-ext3-4.patch
3418 ApplyPatch redhat-run-new-kernel-pkg-on-posttrans.patch
3419 ApplyPatch redhat-fix-typo-on-redhat-Makefile.patch
3420 ApplyPatch kvm-virtio-console-Allow-sending-variable-sized-buffers-to-host-efault-on-copy_from_user-err.patch
3421 ApplyPatch kvm-virtio-console-return-efault-for-fill_readbuf-if-copy_to_user-fails.patch
3422 ApplyPatch kvm-virtio-console-outbufs-are-no-longer-needed.patch
3423 ApplyPatch kvm-virtio-Initialize-vq-data-entries-to-NULL.patch
3424 ApplyPatch kvm-virtio-console-update-Red-Hat-copyright-for-2010.patch
3425 ApplyPatch kvm-virtio-console-Ensure-no-memleaks-in-case-of-unused-buffers.patch
3426 ApplyPatch kvm-virtio-console-Add-ability-to-remove-module.patch
3427 ApplyPatch kvm-virtio-console-Error-out-if-we-can-t-allocate-buffers-for-control-queue.patch
3428 ApplyPatch kvm-virtio-console-Fill-ports-entire-in_vq-with-buffers.patch
3429 ApplyPatch kvm-Add-MAINTAINERS-entry-for-virtio_console.patch
3430 ApplyPatch kvm-fix-large-packet-drops-on-kvm-hosts-with-ipv6.patch
3431 ApplyPatch scsi-megaraid_sas-fix-for-32bit-apps.patch
3432 ApplyPatch x86-AES-PCLMUL-Instruction-support-Add-PCLMULQDQ-accelerated-implementation.patch
3433 ApplyPatch x86-AES-PCLMUL-Instruction-support-Various-small-fixes-for-AES-PCMLMUL-and-generate-byte-code-for-some-new-instructions-via-gas-macro.patch
3434 ApplyPatch x86-AES-PCLMUL-Instruction-support-Use-gas-macro-for-AES-NI-instructions.patch
3435 ApplyPatch x86-AES-PCLMUL-Instruction-support-Various-fixes-for-AES-NI-and-PCLMMUL.patch
3436 ApplyPatch kvm-x86-emulator-Add-push-pop-sreg-instructions.patch
3437 ApplyPatch kvm-x86-emulator-Introduce-No64-decode-option.patch
3438 ApplyPatch kvm-x86-emulator-Add-group8-instruction-decoding.patch
3439 ApplyPatch kvm-x86-emulator-Add-group9-instruction-decoding.patch
3440 ApplyPatch kvm-x86-emulator-Add-Virtual-8086-mode-of-emulation.patch
3441 ApplyPatch kvm-x86-emulator-fix-memory-access-during-x86-emulation.patch
3442 ApplyPatch kvm-x86-emulator-Check-IOPL-level-during-io-instruction-emulation.patch
3443 ApplyPatch kvm-x86-emulator-Fix-popf-emulation.patch
3444 ApplyPatch kvm-x86-emulator-Check-CPL-level-during-privilege-instruction-emulation.patch
3445 ApplyPatch kvm-x86-emulator-Add-LOCK-prefix-validity-checking.patch
3446 ApplyPatch kvm-x86-emulator-code-style-cleanup.patch
3447 ApplyPatch kvm-x86-emulator-Fix-properties-of-instructions-in-group-1_82.patch
3448 ApplyPatch kvm-inject-UD-in-64bit-mode-from-instruction-that-are-not-valid-there.patch
3449 ApplyPatch kvm-x86-emulator-X86EMUL-macro-replacements-from-do_fetch_insn_byte-to-x86_decode_insn.patch
3450 ApplyPatch kvm-x86-emulator-X86EMUL-macro-replacements-x86_emulate_insn-and-its-helpers.patch
3451 ApplyPatch kvm-x86-emulator-Fix-x86_emulate_insn-not-to-use-the-variable-rc-for-non-X86EMUL-values.patch
3452 ApplyPatch kvm-x86-emulator-Forbid-modifying-CS-segment-register-by-mov-instruction.patch
3453 ApplyPatch kvm-Fix-load_guest_segment_descriptor-to-inject-page-fault.patch
3454 ApplyPatch kvm-Fix-segment-descriptor-loading.patch
3455 ApplyPatch kvm-Fix-emulate_sys-call-enter-exit-s-fault-handling.patch
3456 ApplyPatch netdrv-ixgbe-prevent-speculative-processing-of-descriptors.patch
3457 ApplyPatch x86-nmi_watchdog-use-__cpuinit-for-nmi_watchdog_default.patch
3458 ApplyPatch net-netfilter-nf_conntrack-per-netns-nf_conntrack_cachep.patch
3459 ApplyPatch scsi-mpt2sas-fix-missing-initialization.patch
3460 ApplyPatch dm-raid45-target-constructor-error-path-oops-fix.patch
3461 ApplyPatch netdrv-cxgb3-add-memory-barriers.patch
3462 ApplyPatch mm-fix-anon_vma-locking-updates-for-transparent-hugepage-code.patch
3463 ApplyPatch mm-Fix-hugetlb-c-clear_huge_page-parameter.patch
3464 ApplyPatch gfs2-print-glock-numbers-in-hex.patch
3465 ApplyPatch selinux-netlabel-fix-corruption-of-SELinux-MLS-categories-127.patch
3466 ApplyPatch ata-ahci-disable-FPDMA-auto-activate-optimization-on-NVIDIA-AHCI.patch
3467 ApplyPatch scsi-lpfc-Update-from-8-3-5-4-to-8-3-5-5-FC-FCoE.patch
3468 ApplyPatch scsi-pmcraid-bug-fixes-from-upstream.patch
3469 ApplyPatch mm-Fix-potential-crash-with-sys_move_pages.patch
3470 ApplyPatch s390x-qeth-avoid-recovery-during-device-online-setting.patch
3471 ApplyPatch kernel-Fix-SMT-scheduler-regression-in-find_busiest_queue.patch
3472 ApplyPatch drm-bring-drm-core-ttm-fb-layer-fixes-in-from-upstream.patch
3473 ApplyPatch s390x-vdso-glibc-does-not-use-vdso-functions.patch
3474 ApplyPatch kernel-sched-Fix-SCHED_MC-regression-caused-by-change-in-sched-cpu_power.patch
3475 ApplyPatch dvb-Fix-endless-loop-when-decoding-ULE-at-dvb-core.patch
3476 ApplyPatch drm-radeon-kms-bring-all-v2-6-33-fixes-into-EL6-kernel.patch
3477 ApplyPatch redhat-Change-RPM-name-format-for-custom-builds.patch
3478 ApplyPatch uv-Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch
3479 ApplyPatch uv-Fix-unmap_vma-bug-related-to-mmu_notifiers.patch
3480 ApplyPatch net-bug-fix-for-vlan-gro-issue.patch
3481 ApplyPatch redhat-add-suport-for-rhts-testing.patch
3482 ApplyPatch redhat-add-filesystem-test.patch
3483 ApplyPatch vhost-vhost-net-switch-to-smp-barriers.patch
3484 ApplyPatch vhost-logging-thinko-fix.patch
3485 ApplyPatch vhost-initialize-log-eventfd-context-pointer.patch
3486 ApplyPatch vhost-fix-get_user_pages_fast-error-handling.patch
3487 ApplyPatch vhost-vhost-net-restart-tx-poll-on-sk_sndbuf-full.patch
3488 ApplyPatch x86-Intel-Cougar-Point-chipset-support.patch
3489 ApplyPatch drm-Remove-loop-in-IronLake-graphics-interrupt-handler.patch
3490 ApplyPatch scsi-scsi_dh_emc-fix-mode-select-setup.patch
3491 ApplyPatch scsi-Add-netapp-to-scsi-dh-alua-dev-list.patch
3492 ApplyPatch virt-hvc_console-Fix-race-between-hvc_close-and-hvc_remove.patch
3493 ApplyPatch kernel-time-revert-cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8.patch
3494 ApplyPatch redhat-infiniband-remove-all-infiniband-symbols-from-RHEL6-kABI.patch
3495 ApplyPatch redhat-kABI-Update-the-RHEL6-kABI-for-kernel-2-6-32-18-el6.patch
3496 ApplyPatch redhat-tagging-2-6-32-18-el6.patch
3497 ApplyPatch redhat-updating-lastcommit-for-2-6-32-18.patch
3498 ApplyPatch mm-Switch-to-SLAB.patch
3499 ApplyPatch redhat-kABI-Update-the-kABI-for-2-6-18-el6.patch
3500
3501 ApplyPatch patch-2.6.32-19.el6-vs2.3.0.36.29.4.diff
3502 ApplyPatch linux-2.6-220-delta-ptrace-fix01.patch
3503 ApplyPatch linux-2.6-250-ipsets.patch
3504 ApplyPatch linux-2.6-510-ipod.patch
3505 ApplyPatch linux-2.6-521-packet-tagging.patch
3506 #
3507 #ApplyPatch linux-2.6-522-iptables-connection-tagging.patch
3508 #
3509 ApplyPatch linux-2.6-523-raw-sockets.patch
3510 ApplyPatch linux-2.6-524-peercred.patch
3511 ApplyPatch linux-2.6-525-sknid-elevator.patch
3512 #
3513 #ApplyPatch linux-2.6-527-iptables-classify-add-mark.patch
3514 #
3515 ApplyPatch linux-2.6-530-built-by-support.patch
3516 #ApplyPatch linux-2.6-540-oom-kill.patch
3517 ApplyPatch linux-2.6-550-raise-default-nfile-ulimit.patch
3518 ApplyPatch linux-2.6-570-tagxid.patch
3519 ApplyPatch linux-2.6-580-show-proc-virt.patch
3520 #
3521 #ApplyPatch linux-2.6-590-dcookies-mm.patch
3522 #ApplyPatch linux-2.6-591-chopstix-intern.patch
3523 #
3524 ApplyPatch linux-2.6-640-netlink-audit-hack.patch
3525 ApplyPatch linux-2.6-650-hangcheck-reboot.patch
3526 ApplyPatch linux-2.6-660-nmi-watchdog-default.patch
3527 ApplyPatch linux-2.6-680-htb-hysteresis-tso.patch
3528 #
3529 #ApplyPatch linux-2.6-700-egre.patch
3530 #
3531
3532 ApplyOptionalPatch linux-kernel-test.patch
3533
3534 # Any further pre-build tree manipulations happen here.
3535
3536 chmod +x scripts/checkpatch.pl
3537
3538 # only deal with configs if we are going to build for the arch
3539 %ifnarch %nobuildarches
3540
3541 mkdir configs
3542
3543 # Remove configs not for the buildarch
3544 for cfg in kernel-%{version}-*.config; do
3545   if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
3546     rm -f $cfg
3547   fi
3548 done
3549
3550 %if !%{debugbuildsenabled}
3551 rm -f kernel-%{version}-*debug.config
3552 %endif
3553
3554 # now run oldconfig over all the config files
3555 for i in *.config
3556 do
3557   mv $i .config
3558   Arch=`head -1 .config | cut -b 3-`
3559   make ARCH=$Arch %{oldconfig_target} > /dev/null
3560   echo "# $Arch" > configs/$i
3561   cat .config >> configs/$i
3562   rm -f include/generated/kernel.arch
3563   rm -f include/generated/kernel.cross
3564 done
3565 # end of kernel config
3566 %endif
3567
3568 # get rid of unwanted files resulting from patch fuzz
3569 find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
3570
3571 cd ..
3572
3573 ###
3574 ### build
3575 ###
3576 %build
3577
3578 %if %{with_sparse}
3579 %define sparse_mflags   C=1
3580 %endif
3581
3582 %if %{fancy_debuginfo}
3583 # This override tweaks the kernel makefiles so that we run debugedit on an
3584 # object before embedding it.  When we later run find-debuginfo.sh, it will
3585 # run debugedit again.  The edits it does change the build ID bits embedded
3586 # in the stripped object, but repeating debugedit is a no-op.  We do it
3587 # beforehand to get the proper final build ID bits into the embedded image.
3588 # This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
3589 export AFTER_LINK=\
3590 'sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug -i $@"'
3591 %endif
3592
3593 cp_vmlinux()
3594 {
3595   eu-strip --remove-comment -o "$2" "$1"
3596 }
3597
3598 BuildKernel() {
3599     MakeTarget=$1
3600     KernelImage=$2
3601     Flavour=$3
3602     InstallName=${4:-vmlinuz}
3603
3604     # Pick the right config file for the kernel we're building
3605     Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
3606     DevelDir=/usr/src/kernels/%{KVERREL}${Flavour:+.${Flavour}}
3607
3608     # When the bootable image is just the ELF kernel, strip it.
3609     # We already copy the unstripped file into the debuginfo package.
3610     if [ "$KernelImage" = vmlinux ]; then
3611       CopyKernel=cp_vmlinux
3612     else
3613       CopyKernel=cp
3614     fi
3615
3616     KernelVer=%{version}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}
3617     echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
3618
3619     # make sure EXTRAVERSION says what we want it to say
3620     perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = %{?stablerev}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
3621
3622     # if pre-rc1 devel kernel, must fix up SUBLEVEL for our versioning scheme
3623     %if !0%{?rcrev}
3624     %if 0%{?gitrev}
3625     perl -p -i -e 's/^SUBLEVEL.*/SUBLEVEL = %{upstream_sublevel}/' Makefile
3626     %endif
3627     %endif
3628
3629     # and now to start the build process
3630
3631     make -s mrproper
3632     cp configs/$Config .config
3633
3634     Arch=`head -1 .config | cut -b 3-`
3635     echo USING ARCH=$Arch
3636
3637     if [ "$Arch" == "s390" -a "$Flavour" == "kdump" ]; then
3638         pushd arch/s390/boot
3639         gcc -static -o zfcpdump zfcpdump.c
3640         popd
3641     fi
3642     make -s ARCH=$Arch %{oldconfig_target} > /dev/null
3643     make -s ARCH=$Arch V=1 %{?_smp_mflags} $MakeTarget %{?sparse_mflags}
3644     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
3645         make -s ARCH=$Arch V=1 %{?_smp_mflags} modules %{?sparse_mflags} || exit 1
3646     fi
3647
3648 %if %{with_perftool}
3649     pushd tools/perf
3650 # make sure the scripts are executable... won't be in tarball until 2.6.31 :/
3651     chmod +x util/generate-cmdlist.sh util/PERF-VERSION-GEN
3652     make -s V=1 %{?_smp_mflags} NO_DEMANGLE=1 perf
3653     mkdir -p $RPM_BUILD_ROOT/usr/libexec/
3654     install -m 755 perf $RPM_BUILD_ROOT/usr/libexec/perf.$KernelVer
3655     popd
3656 %endif
3657
3658     # Start installing the results
3659 %if %{with_debuginfo}
3660     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
3661     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
3662     install -m 644 System.map $RPM_BUILD_ROOT/%{debuginfodir}/boot/System.map-$KernelVer
3663 %endif
3664     mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
3665     install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
3666     install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
3667 %if %{with_dracut}
3668     # We estimate the size of the initramfs because rpm needs to take this size
3669     # into consideration when performing disk space calculations. (See bz #530778)
3670     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
3671 %else
3672     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initrd-$KernelVer.img bs=1M count=5
3673 %endif
3674     if [ -f arch/$Arch/boot/zImage.stub ]; then
3675       cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
3676     fi
3677     $CopyKernel $KernelImage \
3678                 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3679     chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3680
3681 %if %{with_fips}
3682     # hmac sign the kernel for FIPS
3683     echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
3684     ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3685     sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
3686 %endif
3687
3688     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
3689     # Override $(mod-fw) because we don't want it to install any firmware
3690     # We'll do that ourselves with 'make firmware_install'
3691     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
3692       make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
3693
3694       # check if the modules are being signed
3695 %if %{signmodules}
3696       if [ -z "$(readelf -n $(find fs/ -name \*.ko | head -n 1) | grep module.sig)" ]; then
3697           echo "ERROR: modules are NOT signed" >&2;
3698           exit 1;
3699       fi
3700 %endif
3701     else
3702       mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/{kernel,extra}
3703     fi
3704
3705 %ifarch %{vdso_arches}
3706     make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
3707     if grep '^CONFIG_XEN=y$' .config >/dev/null; then
3708       echo > ldconfig-kernel.conf "\
3709 # This directive teaches ldconfig to search in nosegneg subdirectories
3710 # and cache the DSOs there with extra bit 0 set in their hwcap match
3711 # fields.  In Xen guest kernels, the vDSO tells the dynamic linker to
3712 # search in nosegneg subdirectories and to match this extra hwcap bit
3713 # in the ld.so.cache file.
3714 hwcap 0 nosegneg"
3715     fi
3716     if [ ! -s ldconfig-kernel.conf ]; then
3717       echo > ldconfig-kernel.conf "\
3718 # Placeholder file, no vDSO hwcap entries used in this kernel."
3719     fi
3720     %{__install} -D -m 444 ldconfig-kernel.conf \
3721         $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
3722 %endif
3723
3724     # And save the headers/makefiles etc for building modules against
3725     #
3726     # This all looks scary, but the end result is supposed to be:
3727     # * all arch relevant include/ files
3728     # * all Makefile/Kconfig files
3729     # * all script/ files
3730
3731     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3732     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
3733     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3734     (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
3735     # dirs for additional modules per module-init-tools, kbuild/modules.txt
3736     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
3737     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
3738     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
3739     # first copy everything
3740     cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3741     cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3742     cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3743     if [ -s Module.markers ]; then
3744       cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3745     fi
3746
3747     # create the kABI metadata for use in packaging
3748     echo "**** GENERATING kernel ABI metadata ****"
3749     gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
3750     chmod 0755 %_sourcedir/kabitool
3751     rm -f %{_tmppath}/kernel-$KernelVer-kabideps
3752     %_sourcedir/kabitool -s Module.symvers -o %{_tmppath}/kernel-$KernelVer-kabideps
3753
3754 %if %{with_kabichk}
3755     echo "**** kABI checking is enabled in kernel SPEC file. ****"
3756     chmod 0755 $RPM_SOURCE_DIR/check-kabi
3757     if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
3758         cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
3759         $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
3760         rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
3761     else
3762         echo "**** NOTE: Cannot find reference Module.kabi file. ****"
3763     fi
3764 %endif
3765     # then drop all but the needed Makefiles/Kconfig files
3766     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
3767     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
3768     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3769     cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3770     cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3771     if [ -d arch/$Arch/scripts ]; then
3772       cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
3773     fi
3774     if [ -f arch/$Arch/*lds ]; then
3775       cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
3776     fi
3777     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
3778     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
3779 %ifarch ppc
3780     cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
3781 %endif
3782     if [ -d arch/%{asmarch}/include ]; then
3783       cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
3784     fi
3785     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3786     cd include
3787     cp -a acpi config crypto keys linux math-emu media mtd net pcmcia rdma rxrpc scsi sound trace video drm asm-generic $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3788     asmdir=$(readlink asm)
3789     cp -a $asmdir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/
3790     pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3791     ln -s $asmdir asm
3792     popd
3793     # Make sure the Makefile and version.h have a matching timestamp so that
3794     # external modules can be built
3795     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/version.h
3796     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
3797     # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
3798     cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
3799     cd ..
3800
3801     #
3802     # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
3803     #
3804 %if %{with_debuginfo}
3805     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
3806     cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
3807 %endif
3808
3809     find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
3810
3811     # mark modules executable so that strip-to-file can strip them
3812     xargs --no-run-if-empty chmod u+x < modnames
3813
3814     # Generate a list of modules for block and networking.
3815
3816     fgrep /drivers/ modnames | xargs --no-run-if-empty nm -upA |
3817     sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
3818
3819     collect_modules_list()
3820     {
3821       sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
3822       LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
3823     }
3824
3825     collect_modules_list networking \
3826                          'register_netdev|ieee80211_register_hw|usbnet_probe'
3827     collect_modules_list block \
3828                          'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler'
3829     collect_modules_list drm \
3830                          'drm_open|drm_init'
3831     collect_modules_list modesetting \
3832                          'drm_crtc_init'
3833
3834     # detect missing or incorrect license tags
3835     rm -f modinfo
3836     while read i
3837     do
3838       echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
3839       /sbin/modinfo -l $i >> modinfo
3840     done < modnames
3841
3842     egrep -v \
3843           'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' \
3844           modinfo && exit 1
3845
3846     rm -f modinfo modnames
3847
3848     # remove files that will be auto generated by depmod at rpm -i time
3849     for i in alias alias.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap
3850     do
3851       rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
3852     done
3853
3854     # Move the devel headers out of the root file system
3855     mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
3856     mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
3857     ln -sf ../../..$DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3858 }
3859
3860 ###
3861 # DO it...
3862 ###
3863
3864 # prepare directories
3865 rm -rf $RPM_BUILD_ROOT
3866 mkdir -p $RPM_BUILD_ROOT/boot
3867
3868 cd linux-%{kversion}.%{_target_cpu}
3869
3870 %if %{signmodules}
3871 cp %{SOURCE19} .
3872 gpg --homedir . --batch --gen-key %{SOURCE11}
3873 # if there're external keys to be included
3874 if [ -s %{SOURCE19} ]; then
3875         gpg --homedir . --no-default-keyring --keyring kernel.pub --import %{SOURCE19}
3876 fi
3877 gpg --homedir . --export --keyring ./kernel.pub Red > extract.pub
3878 gcc -o scripts/bin2c scripts/bin2c.c
3879 scripts/bin2c ksign_def_public_key __initdata <extract.pub >crypto/signature/key.h
3880 %endif
3881
3882 %if %{with_debug}
3883 BuildKernel %make_target %kernel_image debug
3884 %endif
3885
3886 %if %{with_pae_debug}
3887 BuildKernel %make_target %kernel_image PAEdebug
3888 %endif
3889
3890 %if %{with_pae}
3891 BuildKernel %make_target %kernel_image PAE
3892 %endif
3893
3894 %if %{with_up}
3895 BuildKernel %make_target %kernel_image
3896 %endif
3897
3898 %if %{with_smp}
3899 BuildKernel %make_target %kernel_image smp
3900 %endif
3901
3902 %if %{with_kdump}
3903 %ifarch s390x
3904 BuildKernel %make_target %kernel_image kdump
3905 %else
3906 BuildKernel vmlinux vmlinux kdump vmlinux
3907 %endif
3908 %endif
3909
3910 %if %{with_framepointer}
3911 BuildKernel %make_target %kernel_image framepointer
3912 %endif
3913
3914 %if %{with_doc}
3915 # Make the HTML and man pages.
3916 make -j1 htmldocs mandocs || %{doc_build_fail}
3917
3918 # sometimes non-world-readable files sneak into the kernel source tree
3919 chmod -R a=rX Documentation
3920 find Documentation -type d | xargs chmod u+w
3921 %endif
3922
3923 %if %{with_perf}
3924 pushd tools/perf
3925 make %{?_smp_mflags} man || %{doc_build_fail}
3926 popd
3927 %endif
3928
3929 ###
3930 ### Special hacks for debuginfo subpackages.
3931 ###
3932
3933 # This macro is used by %%install, so we must redefine it before that.
3934 %define debug_package %{nil}
3935
3936 %if %{fancy_debuginfo}
3937 %define __debug_install_post \
3938   /usr/lib/rpm/find-debuginfo.sh %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
3939 %{nil}
3940 %endif
3941
3942 %if %{with_debuginfo}
3943 %ifnarch noarch
3944 %global __debug_package 1
3945 %files -f debugfiles.list debuginfo-common-%{_target_cpu}
3946 %defattr(-,root,root)
3947 %endif
3948 %endif
3949
3950 ###
3951 ### install
3952 ###
3953
3954 %install
3955 # for some reason, on RHEL-5 RPM_BUILD_ROOT doesn't get set
3956 if [ -z "$RPM_BUILD_ROOT" ]; then
3957         export RPM_BUILD_ROOT="%{buildroot}";
3958 fi
3959
3960 cd linux-%{kversion}.%{_target_cpu}
3961
3962 %if %{with_doc}
3963 docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
3964 man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
3965
3966 # copy the source over
3967 mkdir -p $docdir
3968 tar -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
3969
3970 # Install man pages for the kernel API.
3971 mkdir -p $man9dir
3972 find Documentation/DocBook/man -name '*.9.gz' -print0 |
3973 xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
3974 ls $man9dir | grep -q '' || > $man9dir/BROKEN
3975 %endif # with_doc
3976
3977 # perf docs
3978 %if %{with_perf}
3979 mandir=$RPM_BUILD_ROOT%{_datadir}/man
3980 man1dir=$mandir/man1
3981 pushd tools/perf/Documentation
3982 make install-man mandir=$mandir
3983 popd
3984
3985 pushd $man1dir
3986 for d in *.1; do
3987  gzip $d;
3988 done
3989 popd
3990 %endif # with_perf
3991
3992 # perf shell wrapper
3993 %if %{with_perf}
3994 mkdir -p $RPM_BUILD_ROOT/usr/sbin/
3995 cp $RPM_SOURCE_DIR/perf $RPM_BUILD_ROOT/usr/sbin/perf
3996 chmod 0755 $RPM_BUILD_ROOT/usr/sbin/perf
3997 mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/perf
3998 %endif
3999
4000 %if %{with_headers}
4001 # Install kernel headers
4002 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
4003
4004 # Do headers_check but don't die if it fails.
4005 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
4006      > hdrwarnings.txt || :
4007 if grep -q exist hdrwarnings.txt; then
4008    sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
4009    # Temporarily cause a build failure if header inconsistencies.
4010    # exit 1
4011 fi
4012
4013 find $RPM_BUILD_ROOT/usr/include \
4014      \( -name .install -o -name .check -o \
4015         -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
4016
4017 # glibc provides scsi headers for itself, for now
4018 rm -rf $RPM_BUILD_ROOT/usr/include/scsi
4019 rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
4020 rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
4021 rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
4022 %endif
4023
4024 %if %{with_firmware}
4025 %{build_firmware}
4026 %endif
4027
4028 %if %{with_bootwrapper}
4029 make DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
4030 %endif
4031
4032
4033 ###
4034 ### clean
4035 ###
4036
4037 %clean
4038 rm -rf $RPM_BUILD_ROOT
4039
4040 ###
4041 ### scripts
4042 ###
4043
4044 #
4045 # This macro defines a %%post script for a kernel*-devel package.
4046 #       %%kernel_devel_post [<subpackage>]
4047 #
4048 %define kernel_devel_post() \
4049 %{expand:%%post %{?1:%{1}-}devel}\
4050 if [ -f /etc/sysconfig/kernel ]\
4051 then\
4052     . /etc/sysconfig/kernel || exit $?\
4053 fi\
4054 if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
4055 then\
4056     (cd /usr/src/kernels/%{KVERREL}%{?1:.%{1}} &&\
4057      /usr/bin/find . -type f | while read f; do\
4058        hardlink -c /usr/src/kernels/*.fc*.*/$f $f\
4059      done)\
4060 fi\
4061 %{nil}
4062
4063 # This macro defines a %%posttrans script for a kernel package.
4064 #       %%kernel_variant_posttrans [<subpackage>]
4065 # More text can follow to go at the end of this variant's %%post.
4066 #
4067 %define kernel_variant_posttrans() \
4068 %{expand:%%posttrans %{?1}}\
4069 %{expand:\
4070 %if %{with_dracut}\
4071 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --dracut --depmod --install %{KVERREL}%{?1:.%{1}} --kernel-args="crashkernel=auto" || exit $?\
4072 %else\
4073 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --depmod --install %{KVERREL}%{?1:.%{1}} --kernel-args="crashkernel=auto" || exit $?\
4074 %endif}\
4075 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVERREL}%{?1:.%{1}} || exit $?\
4076 %{nil}
4077
4078 #
4079 # This macro defines a %%post script for a kernel package and its devel package.
4080 #       %%kernel_variant_post [-v <subpackage>] [-r <replace>]
4081 # More text can follow to go at the end of this variant's %%post.
4082 #
4083 %define kernel_variant_post(v:r:) \
4084 %{expand:%%kernel_devel_post %{?-v*}}\
4085 %{expand:%%kernel_variant_posttrans %{?-v*}}\
4086 %{expand:%%post %{?-v*}}\
4087 %{-r:\
4088 if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\
4089    [ -f /etc/sysconfig/kernel ]; then\
4090   /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
4091 fi}\
4092 if [ -x /sbin/weak-modules ]\
4093 then\
4094     /sbin/weak-modules --add-kernel %{KVERREL}%{?-v:.%{-v*}} || exit $?\
4095 fi\
4096 %{nil}
4097
4098 #
4099 # This macro defines a %%preun script for a kernel package.
4100 #       %%kernel_variant_preun <subpackage>
4101 #
4102 %define kernel_variant_preun() \
4103 %{expand:%%preun %{?1}}\
4104 /sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}%{?1:.%{1}} || exit $?\
4105 if [ -x /sbin/weak-modules ]\
4106 then\
4107     /sbin/weak-modules --remove-kernel %{KVERREL}%{?-v:.%{-v*}} || exit $?\
4108 fi\
4109 %{nil}
4110
4111 %kernel_variant_preun
4112 %ifarch x86_64
4113 %kernel_variant_post -r (kernel-smp|kernel-xen)
4114 %else
4115 %kernel_variant_post -r kernel-smp
4116 %endif
4117
4118 %kernel_variant_preun smp
4119 %kernel_variant_post -v smp
4120
4121 %kernel_variant_preun PAE
4122 %kernel_variant_post -v PAE -r (kernel|kernel-smp|kernel-xen)
4123
4124 %kernel_variant_preun debug
4125 %kernel_variant_post -v debug
4126
4127 %kernel_variant_post -v PAEdebug -r (kernel|kernel-smp|kernel-xen)
4128 %kernel_variant_preun PAEdebug
4129
4130 %if %{with_framepointer}
4131 %kernel_variant_preun framepointer
4132 %kernel_variant_post -v framepointer
4133 %endif
4134
4135 %ifarch s390x
4136 %postun kdump
4137     # Create softlink to latest remaining kdump kernel.
4138     # If no more kdump kernel is available, remove softlink.
4139     if [ "$(readlink /boot/zfcpdump)" == "/boot/vmlinuz-%{KVERREL}.kdump" ]
4140     then
4141         vmlinuz_next=$(ls /boot/vmlinuz-*.kdump 2> /dev/null | sort | tail -n1)
4142         if [ $vmlinuz_next ]
4143         then
4144             ln -sf $vmlinuz_next /boot/zfcpdump
4145         else
4146             rm -f /boot/zfcpdump
4147         fi
4148     fi
4149
4150 %post kdump
4151     ln -sf /boot/vmlinuz-%{KVERREL}.kdump /boot/zfcpdump
4152 %endif
4153
4154 if [ -x /sbin/ldconfig ]
4155 then
4156     /sbin/ldconfig -X || exit $?
4157 fi
4158
4159 ###
4160 ### file lists
4161 ###
4162
4163 %if %{with_headers}
4164 %files headers
4165 %defattr(-,root,root)
4166 /usr/include/*
4167 %endif
4168
4169 %if %{with_firmware}
4170 %files firmware
4171 %defattr(-,root,root)
4172 /lib/firmware/*
4173 %doc linux-%{kversion}.%{_target_cpu}/firmware/WHENCE
4174 %endif
4175
4176 %if %{with_bootwrapper}
4177 %files bootwrapper
4178 %defattr(-,root,root)
4179 /usr/sbin/*
4180 %{_libdir}/kernel-wrapper
4181 %endif
4182
4183 # only some architecture builds need kernel-doc
4184 %if %{with_doc}
4185 %files doc
4186 %defattr(-,root,root)
4187 %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
4188 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
4189 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}
4190 %{_datadir}/man/man9/*
4191 %endif
4192
4193 %if %{with_perf}
4194 %files -n perf
4195 %defattr(-,root,root)
4196 %{_datadir}/doc/perf
4197 /usr/sbin/perf
4198 %{_datadir}/man/man1/*
4199 %endif
4200
4201 # This is %{image_install_path} on an arch where that includes ELF files,
4202 # or empty otherwise.
4203 %define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
4204
4205 #
4206 # This macro defines the %%files sections for a kernel package
4207 # and its devel and debuginfo packages.
4208 #       %%kernel_variant_files [-k vmlinux] <condition> <subpackage>
4209 #
4210 %define kernel_variant_files(k:) \
4211 %if %{1}\
4212 %{expand:%%files %{?2}}\
4213 %defattr(-,root,root)\
4214 /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?2:.%{2}}\
4215 %if %{with_fips} \
4216 /%{image_install_path}/.vmlinuz-%{KVERREL}%{?2:.%{2}}.hmac \
4217 %endif \
4218 /boot/System.map-%{KVERREL}%{?2:.%{2}}\
4219 /boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
4220 %if %{with_perftool}\
4221 /usr/libexec/perf.%{KVERREL}%{?2:.%{2}}\
4222 %endif\
4223 #/boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
4224 /boot/config-%{KVERREL}%{?2:.%{2}}\
4225 %dir /lib/modules/%{KVERREL}%{?2:.%{2}}\
4226 /lib/modules/%{KVERREL}%{?2:.%{2}}/kernel\
4227 /lib/modules/%{KVERREL}%{?2:.%{2}}/extra\
4228 /lib/modules/%{KVERREL}%{?2:.%{2}}/build\
4229 /lib/modules/%{KVERREL}%{?2:.%{2}}/source\
4230 /lib/modules/%{KVERREL}%{?2:.%{2}}/updates\
4231 /lib/modules/%{KVERREL}%{?2:.%{2}}/weak-updates\
4232 %ifarch %{vdso_arches}\
4233 /lib/modules/%{KVERREL}%{?2:.%{2}}/vdso\
4234 /etc/ld.so.conf.d/kernel-%{KVERREL}%{?2:.%{2}}.conf\
4235 %endif\
4236 /lib/modules/%{KVERREL}%{?2:.%{2}}/modules.*\
4237 %if %{with_dracut}\
4238 %ghost /boot/initramfs-%{KVERREL}%{?2:.%{2}}.img\
4239 %else\
4240 %ghost /boot/initrd-%{KVERREL}%{?2:.%{2}}.img\
4241 %endif\
4242 %{expand:%%files %{?2:%{2}-}devel}\
4243 %defattr(-,root,root)\
4244 %dir /usr/src/kernels\
4245 %verify(not mtime) /usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4246 /usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4247 %if %{with_debuginfo}\
4248 %ifnarch noarch\
4249 %if %{fancy_debuginfo}\
4250 %{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
4251 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
4252 %else\
4253 %{expand:%%files %{?2:%{2}-}debuginfo}\
4254 %endif\
4255 %defattr(-,root,root)\
4256 %if !%{fancy_debuginfo}\
4257 %if "%{elf_image_install_path}" != ""\
4258 %{debuginfodir}/%{elf_image_install_path}/*-%{KVERREL}%{?2:.%{2}}.debug\
4259 %endif\
4260 %{debuginfodir}/lib/modules/%{KVERREL}%{?2:.%{2}}\
4261 %{debuginfodir}/usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4262 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
4263 %endif\
4264 %endif\
4265 %endif\
4266 %endif\
4267 %{nil}
4268
4269
4270 %kernel_variant_files %{with_up}
4271 %kernel_variant_files %{with_smp} smp
4272 %kernel_variant_files %{with_debug} debug
4273 %kernel_variant_files %{with_pae} PAE
4274 %kernel_variant_files %{with_pae_debug} PAEdebug
4275 %ifarch s390x
4276 %kernel_variant_files %{with_kdump} kdump
4277 %else
4278 %kernel_variant_files -k vmlinux %{with_kdump} kdump
4279 %endif
4280 %kernel_variant_files %{with_framepointer} framepointer
4281
4282 %changelog
4283 * Tue Mar 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-19.el6]
4284 - [mm] Switch to SLAB (Aristeu Rozanski) [570614]
4285
4286 * Mon Mar 08 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-18.el6]
4287 - [kernel/time] revert cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8 (Aristeu Rozanski) [567551]
4288 - [virt] hvc_console: Fix race between hvc_close and hvc_remove (Amit Shah) [568624]
4289 - [scsi] Add netapp to scsi dh alua dev list (Mike Christie) [559586]
4290 - [scsi] scsi_dh_emc: fix mode select setup (Mike Christie) [570685]
4291 - [drm] Remove loop in IronLake graphics interrupt handler (John Villalovos) [557838]
4292 - [x86] Intel Cougar Point chipset support (John Villalovos) [560077]
4293 - [vhost] vhost-net: restart tx poll on sk_sndbuf full (Michael S. Tsirkin) [562837]
4294 - [vhost] fix get_user_pages_fast error handling (Michael S. Tsirkin) [562837]
4295 - [vhost] initialize log eventfd context pointer (Michael S. Tsirkin) [562837]
4296 - [vhost] logging thinko fix (Michael S. Tsirkin) [562837]
4297 - [vhost] vhost-net: switch to smp barriers (Michael S. Tsirkin) [562837]
4298 - [net] bug fix for vlan + gro issue (Andy Gospodarek) [569922]
4299 - [uv] Fix unmap_vma() bug related to mmu_notifiers (George Beshers) [253033]
4300 - [uv] Have mmu_notifiers use SRCU so they may safely schedule (George Beshers) [253033]
4301 - [drm] radeon/kms: bring all v2.6.33 fixes into EL6 kernel (Dave Airlie) [547422 554323 566618 569704]
4302 - [dvb] Fix endless loop when decoding ULE at dvb-core (Mauro Carvalho Chehab) [569243]
4303 - [kernel] sched: Fix SCHED_MC regression caused by change in sched cpu_power (Danny Feng) [568123]
4304 - [s390x] vdso: glibc does not use vdso functions (Hendrik Brueckner) [567755]
4305 - [drm] bring drm core/ttm/fb layer fixes in from upstream (Dave Airlie) [569701]
4306 - [kernel] Fix SMT scheduler regression in find_busiest_queue() (Danny Feng) [568120]
4307 - [s390x] qeth: avoid recovery during device online setting (Hendrik Brueckner) [568781]
4308 - [mm] Fix potential crash with sys_move_pages (Danny Feng) [562591] {CVE-2010-0415}
4309 - [scsi] pmcraid: bug fixes from upstream (Rob Evers) [567376]
4310 - [scsi] lpfc Update from 8.3.5.4 to 8.3.5.5 FC/FCoE (Rob Evers) [564508]
4311 - [ata] ahci: disable FPDMA auto-activate optimization on NVIDIA AHCI (David Milburn) [568815]
4312 - [selinux] netlabel: fix corruption of SELinux MLS categories > 127 (Eric Paris) [568370]
4313 - [gfs2] print glock numbers in hex (Robert S Peterson) [566755]
4314 - [mm] Fix hugetlb.c clear_huge_page parameter (Andrea Arcangeli) [566604]
4315 - [mm] fix anon_vma locking updates for transparent hugepage code (Andrea Arcangeli) [564515]
4316 - [netdrv] cxgb3: add memory barriers (Steve Best) [568390]
4317 - [dm] raid45 target: constructor error path oops fix (Heinz Mauelshagen) [567605]
4318 - [scsi] mpt2sas: fix missing initialization (Tomas Henzl) [567965]
4319 - [net] netfilter: nf_conntrack: per netns nf_conntrack_cachep (Jiri Pirko) [567181]
4320 - [x86] nmi_watchdog: use __cpuinit for nmi_watchdog_default (Don Zickus) [567601]
4321 - [netdrv] ixgbe: prevent speculative processing of descriptors (Steve Best) [568391]
4322 - [kvm] Fix emulate_sys[call, enter, exit]()'s fault handling (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4323 - [kvm] Fix segment descriptor loading (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4324 - [kvm] Fix load_guest_segment_descriptor() to inject page fault (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4325 - [kvm] x86 emulator: Forbid modifying CS segment register by mov instruction (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4326 - [kvm] x86 emulator: Fix x86_emulate_insn() not to use the variable rc for non-X86EMUL values (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4327 - [kvm] x86 emulator: X86EMUL macro replacements: x86_emulate_insn() and its helpers (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4328 - [kvm] x86 emulator: X86EMUL macro replacements: from do_fetch_insn_byte() to x86_decode_insn() (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4329 - [kvm] inject #UD in 64bit mode from instruction that are not valid there (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4330 - [kvm] x86 emulator: Fix properties of instructions in group 1_82 (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4331 - [kvm] x86 emulator: code style cleanup (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4332 - [kvm] x86 emulator: Add LOCK prefix validity checking (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4333 - [kvm] x86 emulator: Check CPL level during privilege instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4334 - [kvm] x86 emulator: Fix popf emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4335 - [kvm] x86 emulator: Check IOPL level during io instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4336 - [kvm] x86 emulator: fix memory access during x86 emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4337 - [kvm] x86 emulator: Add Virtual-8086 mode of emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4338 - [kvm] x86 emulator: Add group9 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4339 - [kvm] x86 emulator: Add group8 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4340 - [kvm] x86 emulator: Introduce No64 decode option (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4341 - [kvm] x86 emulator: Add 'push/pop sreg' instructions (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4342 - [x86] AES/PCLMUL Instruction support: Various fixes for AES-NI and PCLMMUL (John Villalovos) [463496]
4343 - [x86] AES/PCLMUL Instruction support: Use gas macro for AES-NI instructions (John Villalovos) [463496]
4344 - [x86] AES/PCLMUL Instruction support: Various small fixes for AES/PCMLMUL and generate .byte code for some new instructions via gas macro (John Villalovos) [463496]
4345 - [x86] AES/PCLMUL Instruction support: Add PCLMULQDQ accelerated implementation (John Villalovos) [463496]
4346 - [scsi] megaraid_sas: fix for 32bit apps (Tomas Henzl) [559941]
4347 - [kvm] fix large packet drops on kvm hosts with ipv6 (Neil Horman) [565525]
4348 - [kvm] Add MAINTAINERS entry for virtio_console (Amit Shah) [566391]
4349 - [kvm] virtio: console: Fill ports' entire in_vq with buffers (Amit Shah) [566391]
4350 - [kvm] virtio: console: Error out if we can't allocate buffers for control queue (Amit Shah) [566391]
4351 - [kvm] virtio: console: Add ability to remove module (Amit Shah) [566391]
4352 - [kvm] virtio: console: Ensure no memleaks in case of unused buffers (Amit Shah) [566391]
4353 - [kvm] virtio: console: update Red Hat copyright for 2010 (Amit Shah) [566391]
4354 - [kvm] virtio: Initialize vq->data entries to NULL (Amit Shah) [566391]
4355 - [kvm] virtio: console: outbufs are no longer needed (Amit Shah) [566391]
4356 - [kvm] virtio: console: return -efault for fill_readbuf if copy_to_user fails (Amit Shah) [566391]
4357 - [kvm] virtio: console: Allow sending variable-sized buffers to host, efault on copy_from_user err (Amit Shah) [566391]
4358
4359 * Thu Feb 18 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-17.el6]
4360 - [s390] hvc_iucv: allocate IUCV send/receive buffers in DMA zone (Hendrik Brueckner) [566188]
4361 - [s390] qdio: continue polling for buffer state ERROR (Hendrik Brueckner) [565528]
4362 - [s390] qdio: prevent kernel bug message in interrupt handler (Hendrik Brueckner) [565542]
4363 - [s390] zfcp: report BSG errors in correct field (Hendrik Brueckner) [564378]
4364 - [s390] zfcp: cancel all pending work for a to be removed zfcp_port (Hendrik Brueckner) [564382]
4365 - [nfs] mount.nfs: Unknown error 526 (Steve Dickson) [561975]
4366 - [x86] x86-64, rwsem: Avoid store forwarding hazard in __downgrade_write (Avi Kivity) [563801]
4367 - [x86] x86-64, rwsem: 64-bit xadd rwsem implementation (Avi Kivity) [563801]
4368 - [x86] x86-64: support native xadd rwsem implementation (Avi Kivity) [563801]
4369 - [x86] clean up rwsem type system (Avi Kivity) [563801]
4370 - [x86] x86-32: clean up rwsem inline asm statements (Avi Kivity) [563801]
4371 - [x86] nmi_watchdog: enable by default on RHEL-6 (Don Zickus) [523857]
4372 - [block] freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb (Mike Snitzer) [565890]
4373 - [block] fix bio_add_page for non trivial merge_bvec_fn case (Mike Snitzer) [565890]
4374 - [watchdog] Add support for iTCO watchdog on Ibex Peak chipset (John Villalovos) [536698]
4375 - [kernel] time: Remove xtime_cache (Prarit Bhargava) [563135]
4376 - [kernel] time: Implement logarithmic time accumalation (Prarit Bhargava) [563135]
4377 - [dm] raid1: fail writes if errors are not handled and log fails (Mike Snitzer) [565890]
4378 - [dm] mpath: fix stall when requeueing io (Mike Snitzer) [565890]
4379 - [dm] log: userspace fix overhead_size calcuations (Mike Snitzer) [565890]
4380 - [dm] stripe: avoid divide by zero with invalid stripe count (Mike Snitzer) [565890]
4381 - [mm] anon_vma locking updates for transparent hugepage code (Rik van Riel) [564515]
4382 - [mm] anon_vma linking changes to improve multi-process scalability (Rik van Riel) [564515]
4383 - [virt] virtio_blk: add block topology support (Christoph Hellwig) [556477]
4384 - [kvm] PIT: control word is write-only (Eduardo Habkost) [560905] {CVE-2010-0309}
4385 - [kernel] Prevent futex user corruption to crash the kernel (Jerome Marchand) [563957]
4386 - [selinux] print the module name when SELinux denies a userspace upcall (Eric Paris) [563731]
4387 - [gfs] GFS2 problems on single node cluster (Steven Whitehouse) [564329]
4388 - [ppc] Add kdump support to Collaborative Memory Manager (Steve Best) [563316]
4389
4390 * Fri Feb 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-16.el6]
4391 - [nfs] Remove a redundant check for PageFsCache in nfs_migrate_page() (Steve Dickson) [563938]
4392 - [nfs] Fix a bug in nfs_fscache_release_page() (Steve Dickson) [563938]
4393 - [mm] fix BUG()s caused by the transparent hugepage patch (Larry Woodman) [556572]
4394 - [fs] inotify: fix inotify WARN and compatibility issues (Eric Paris) [563363]
4395 - [net] do not check CAP_NET_RAW for kernel created sockets (Eric Paris) [540560]
4396 - [pci] Enablement of PCI ACS control when IOMMU enabled on system (Don Dutile) [523278]
4397 - [pci] PCI ACS support functions (Don Dutile) [523278]
4398 - [uv] x86: Fix RTC latency bug by reading replicated cachelines (George Beshers) [562189]
4399 - [s390x] ctcm / lcs / claw: remove cu3088 layer (Hendrik Brueckner) [557522]
4400 - [uv] vgaarb: add user selectability of the number of gpus in a system (George Beshers) [555879]
4401 - [gpu] vgaarb: fix vga arbiter to accept PCI domains other than 0 (George Beshers) [555879]
4402 - [uv] x86_64: update uv arch to target legacy VGA I/O correctly (George Beshers) [555879]
4403 - [pci] update pci_set_vga_state to call arch functions (George Beshers) [555879]
4404 - [uv] PCI: update pci_set_vga_state to call arch functions (George Beshers) [555879]
4405 - [mm] remove madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4406 - [mm] hugepage redhat customization (Andrea Arcangeli) [556572]
4407 - [mm] introduce khugepaged (Andrea Arcangeli) [556572]
4408 - [mm] transparent hugepage vmstat (Andrea Arcangeli) [556572]
4409 - [mm] memcg huge memory (Andrea Arcangeli) [556572]
4410 - [mm] memcg compound (Andrea Arcangeli) [556572]
4411 - [mm] pmd_trans_huge migrate bugcheck (Andrea Arcangeli) [556572]
4412 - [mm] madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4413 - [mm] verify pmd_trans_huge isnt leaking (Andrea Arcangeli) [556572]
4414 - [mm] transparent hugepage core (Andrea Arcangeli) [556572]
4415 - [mm] dont alloc harder for gfp nomemalloc even if nowait (Andrea Arcangeli) [556572]
4416 - [mm] introduce _GFP_NO_KSWAPD (Andrea Arcangeli) [556572]
4417 - [mm] backport page_referenced microoptimization (Andrea Arcangeli) [556572]
4418 - [mm] kvm mmu transparent hugepage support (Andrea Arcangeli) [556572]
4419 - [mm] clear_copy_huge_page (Andrea Arcangeli) [556572]
4420 - [mm] clear_huge_page fix (Andrea Arcangeli) [556572]
4421 - [mm] split_huge_page paging (Andrea Arcangeli) [556572]
4422 - [mm] split_huge_page_mm/vma (Andrea Arcangeli) [556572]
4423 - [mm] add pmd_huge_pte to mm_struct (Andrea Arcangeli) [556572]
4424 - [mm] clear page compound (Andrea Arcangeli) [556572]
4425 - [mm] add pmd mmu_notifier helpers (Andrea Arcangeli) [556572]
4426 - [mm] pte alloc trans splitting (Andrea Arcangeli) [556572]
4427 - [mm] bail out gup_fast on splitting pmd (Andrea Arcangeli) [556572]
4428 - [mm] add pmd mangling functions to x86 (Andrea Arcangeli) [556572]
4429 - [mm] add pmd mangling generic functions (Andrea Arcangeli) [556572]
4430 - [mm] special pmd_trans_* functions (Andrea Arcangeli) [556572]
4431 - [mm] config_transparent_hugepage (Andrea Arcangeli) [556572]
4432 - [mm] comment reminder in destroy_compound_page (Andrea Arcangeli) [556572]
4433 - [mm] export maybe_mkwrite (Andrea Arcangeli) [556572]
4434 - [mm] no paravirt version of pmd ops (Andrea Arcangeli) [556572]
4435 - [mm] add pmd paravirt ops (Andrea Arcangeli) [556572]
4436 - [mm] add native_set_pmd_at (Andrea Arcangeli) [556572]
4437 - [mm] clear compound mapping (Andrea Arcangeli) [556572]
4438 - [mm] update futex compound knowledge (Andrea Arcangeli) [556572]
4439 - [mm] alter compound get_page/put_page (Andrea Arcangeli) [556572]
4440 - [mm] add a compound_lock (Andrea Arcangeli) [556572]
4441 - [mm] define MADV_HUGEPAGE (Andrea Arcangeli) [556572]
4442 - [oprofile] Support Nehalem-EX CPU in Oprofile (John Villalovos) [528998]
4443 - [nfs] nfs: handle NFSv3 -EKEYEXPIRED errors as we would -EJUKEBOX (Jeff Layton) [479359]
4444 - [nfs] handle NFSv2 -EKEYEXPIRED returns from RPC layer appropriately (Jeff Layton) [479359]
4445 - [nfs] sunrpc: parse and return errors reported by gssd (Jeff Layton) [479359]
4446 - [nfs] nfs4: handle -EKEYEXPIRED errors from RPC layer (Jeff Layton) [479359]
4447 - [net] nf_conntrack: fix memory corruption (Jon Masters) [559471]
4448 - [kvm] emulate accessed bit for EPT (Rik van Riel) [555106]
4449 - [vhost] fix TUN=m VHOST_NET=y (Michael S. Tsirkin) [562837]
4450 - [vhost] vhost-net: defer f->private_data until setup succeeds (Chris Wright) [562837]
4451 - [vhost] vhost-net: comment use of invalid fd when setting vhost backend (Chris Wright) [562837]
4452 - [vhost] access check thinko fixes (Michael S. Tsirkin) [562837]
4453 - [vhost] make default mapping empty by default (Michael S. Tsirkin) [562837]
4454 - [vhost] add access_ok checks (Michael S. Tsirkin) [562837]
4455 - [vhost] prevent modification of an active ring (Michael S. Tsirkin) [562837]
4456 - [vhost] fix high 32 bit in FEATURES ioctls (Michael S. Tsirkin) [562837]
4457 - [dm] dm-raid1: fix deadlock at suspending failed device (Takahiro Yasui) [557932]
4458 - [dm] fix kernel panic at releasing bio on recovery failed region (Takahiro Yasui) [557934]
4459 - [scsi] lpfc Update from 8.3.4 to 8.3.5.4 FC/FCoE (Rob Evers) [531028]
4460 - [nfs] sunrpc/cache: fix module refcnt leak in a failure path (Steve Dickson) [562285]
4461 - [nfs] Ensure that we handle NFS4ERR_STALE_STATEID correctly (Steve Dickson) [560784]
4462 - [nfs] NFSv4.1: Don't call nfs4_schedule_state_recovery() unnecessarily (Steve Dickson) [560784]
4463 - [nfs] NFSv4: Don't allow posix locking against servers that don't support it (Steve Dickson) [560784]
4464 - [nfs] Ensure that the NFSv4 locking can recover from stateid errors (Steve Dickson) [560784]
4465 - [nfs] Avoid warnings when CONFIG_NFS_V4=n (Steve Dickson) [560784]
4466 - [nfs] Make nfs_commitdata_release static (Steve Dickson) [560784]
4467 - [nfs] Try to commit unstable writes in nfs_release_page() (Steve Dickson) [560784]
4468 - [nfs] Fix a reference leak in nfs_wb_cancel_page() (Steve Dickson) [560784]
4469 - [nfs] nfs41: cleanup callback code to use __be32 type (Steve Dickson) [560785]
4470 - [nfs] nfs41: clear NFS4CLNT_RECALL_SLOT bit on session reset (Steve Dickson) [560785]
4471 - [nfs] nfs41: fix nfs4_callback_recallslot (Steve Dickson) [560785]
4472 - [nfs] nfs41: resize slot table in reset (Steve Dickson) [560785]
4473 - [nfs] nfs41: implement cb_recall_slot (Steve Dickson) [560785]
4474 - [nfs] nfs41: back channel drc minimal implementation (Steve Dickson) [560785]
4475 - [nfs] nfs41: prepare for back channel drc (Steve Dickson) [560785]
4476 - [nfs] nfs41: remove uneeded checks in callback processing (Steve Dickson) [560785]
4477 - [nfs] nfs41: directly encode back channel error (Steve Dickson) [560785]
4478 - [nfs] nfs41: fix wrong error on callback header xdr overflow (Steve Dickson) [560785]
4479 - [nfs] nfs41: Process callback's referring call list (Steve Dickson) [560785]
4480 - [nfs] nfs41: Check slot table for referring calls (Steve Dickson) [560785]
4481 - [nfs] nfs41: Adjust max cache response size value (Steve Dickson) [560785]
4482 - [nfs] NFSD: Create PF_INET6 listener in write_ports (Steve Dickson) [560785]
4483 - [nfs] SUNRPC: NFS kernel APIs shouldn't return ENOENT for "transport not found" (Steve Dickson) [560785]
4484 - [nfs] SUNRPC: Bury "#ifdef IPV6" in svc_create_xprt() (Steve Dickson) [560785]
4485 - [nfs] NFSD: Support AF_INET6 in svc_addsock() function (Steve Dickson) [560785]
4486 - [nfs] SUNRPC: Use rpc_pton() in ip_map_parse() (Steve Dickson) [560785]
4487 - [nfs] nfsd: 4.1 has an rfc number (Steve Dickson) [560785]
4488 - [nfs] nfsd41: Create the recovery entry for the NFSv4.1 client (Steve Dickson) [560785]
4489 - [nfs] nfsd: use vfs_fsync for non-directories (Steve Dickson) [560785]
4490 - [nfs] nfsd4: Use FIRST_NFS4_OP in nfsd4_decode_compound() (Steve Dickson) [560785]
4491 - [nfs] nfsd41: nfsd4_decode_compound() does not recognize all ops (Steve Dickson) [560785]
4492
4493 * Fri Feb 05 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-15.el6]
4494 - [block] blk-cgroup: Fix lockdep warning of potential deadlock in blk-cgroup (Vivek Goyal) [561903]
4495 - [block] cfq: Do not idle on async queues and drive deeper WRITE depths (Vivek Goyal) [561902]
4496 - [quota] 64-bit quota format fixes (Jerome Marchand) [546311]
4497 - [x86] fix Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4498 - [fs] ext4: fix type of "offset" in ext4_io_end (Eric Sandeen) [560097]
4499 - [x86] Disable HPET MSI on ATI SB700/SB800 (Prarit Bhargava) [557332]
4500 - [x86] arch specific support for remapping HPET MSIs (Prarit Bhargava) [557332]
4501 - [x86] intr-remap: generic support for remapping HPET MSIs (Prarit Bhargava) [557332]
4502 - [gfs] GFS2: Extend umount wait coverage to full glock lifetime (Steven Whitehouse) [561287]
4503 - [gfs] GFS2: Wait for unlock completion on umount (Steven Whitehouse) [561287]
4504 - [gfs] GFS2: Use MAX_LFS_FILESIZE for meta inode size (Steven Whitehouse) [561307]
4505 - [gfs] GFS2: Use GFP_NOFS for alloc structure (Steven Whitehouse) [561307]
4506 - [gfs] GFS2: Fix refcnt leak on gfs2_follow_link() error path (Steven Whitehouse) [561307]
4507
4508 * Wed Feb 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-14.el6]
4509 - [s390x] dasd: fix online/offline race (Hendrik Brueckner) [552840]
4510 - [netdrv] update tg3 to version 3.106 and fix panic (John Feeney) [555101]
4511 - [s390x] dasd: Fix null pointer in s390dbf and discipline checking (Hendrik Brueckner) [559615]
4512 - [s390x] zcrypt: Do not remove coprocessor in case of error 8/72 (Hendrik Brueckner) [559613]
4513 - [s390x] cio: channel path vary operation has no effect (Hendrik Brueckner) [559612]
4514 - [uv] x86: Ensure hub revision set for all ACPI modes (George Beshers) [559752]
4515 - [uv] x86: Add function retrieving node controller revision number (George Beshers) [559752]
4516
4517 * Fri Jan 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-13.el6]
4518 - [virtio] console: show error message if hvc_alloc fails for console ports (Amit Shah) [543824]
4519 - [virtio] console: Add debugfs files for each port to expose debug info (Amit Shah) [543824]
4520 - [virtio] console: Add ability to hot-unplug ports (Amit Shah) [543824]
4521 - [virtio] hvc_console: Export (GPL'ed) hvc_remove (Amit Shah) [543824]
4522 - [virtio] Add ability to detach unused buffers from vrings (Amit Shah) [543824]
4523 - [virtio] console: Handle port hot-plug (Amit Shah) [543824]
4524 - [virtio] console: Remove cached data on port close (Amit Shah) [543824]
4525 - [virtio] console: Register with sysfs and create a 'name' attribute for ports (Amit Shah) [543824]
4526 - [virtio] console: Ensure only one process can have a port open at a time (Amit Shah) [543824]
4527 - [virtio] console: Add file operations to ports for open/read/write/poll (Amit Shah) [543824]
4528 - [virtio] console: Associate each port with a char device (Amit Shah) [543824]
4529 - [virtio] console: Prepare for writing to / reading from userspace buffers (Amit Shah) [543824]
4530 - [virtio] console: Add a new MULTIPORT feature, support for generic ports (Amit Shah) [543824]
4531 - [virtio] console: Introduce a send_buf function for a common path for sending data to host (Amit Shah) [543824]
4532 - [virtio] console: Introduce function to hand off data from host to readers (Amit Shah) [543824]
4533 - [virtio] console: Separate out find_vqs operation into a different function (Amit Shah) [543824]
4534 - [virtio] console: Separate out console init into a new function (Amit Shah) [543824]
4535 - [virtio] console: Separate out console-specific data into a separate struct (Amit Shah) [543824]
4536 - [virtio] console: ensure console size is updated on hvc open (Amit Shah) [543824]
4537 - [virtio] console: struct ports for multiple ports per device. (Amit Shah) [543824]
4538 - [virtio] console: remove global var (Amit Shah) [543824]
4539 - [virtio] console: don't assume a single console port. (Amit Shah) [543824]
4540 - [virtio] console: use vdev->priv to avoid accessing global var. (Amit Shah) [543824]
4541 - [virtio] console: introduce a get_inbuf helper to fetch bufs from in_vq (Amit Shah) [543824]
4542 - [virtio] console: ensure add_inbuf can work for multiple ports as well (Amit Shah) [543824]
4543 - [virtio] console: encapsulate buffer information in a struct (Amit Shah) [543824]
4544 - [virtio] console: port encapsulation (Amit Shah) [543824]
4545 - [virtio] console: We support only one device at a time (Amit Shah) [543824]
4546 - [virtio] hvc_console: Remove __devinit annotation from hvc_alloc (Amit Shah) [543824]
4547 - [virtio] hvc_console: make the ops pointer const. (Amit Shah) [543824]
4548 - [virtio] console: statically initialize virtio_cons (Amit Shah) [543824]
4549 - [virtio] console: comment cleanup (Amit Shah) [543824]
4550 - [x86] Fix crash when profiling more than 28 events (Bhavna Sarathy) [557570]
4551 - [x86] Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4552 - [kvm] fix spurious interrupt with irqfd (Marcelo Tosatti) [559343]
4553 - [kvm] eventfd: allow atomic read and waitqueue remove (Marcelo Tosatti) [559343]
4554 - [kvm] properly check max PIC pin in irq route setup (Marcelo Tosatti) [559343]
4555 - [kvm] only allow one gsi per fd (Marcelo Tosatti) [559343]
4556 - [kvm] x86: Fix leak of free lapic date in kvm_arch_vcpu_init() (Marcelo Tosatti) [559343]
4557 - [kvm] x86: Fix probable memory leak of vcpu->arch.mce_banks (Marcelo Tosatti) [559343]
4558 - [kvm] MMU: bail out pagewalk on kvm_read_guest error (Marcelo Tosatti) [559343]
4559 - [kvm] x86: Fix host_mapping_level() (Marcelo Tosatti) [559343]
4560 - [kvm] Fix race between APIC TMR and IRR (Marcelo Tosatti) [559343]
4561 - [x86] acpi: Export acpi_pci_irq_{add|del}_prt() (James Paradis) [553781]
4562 - [kdump] backport upstream ppc64 kcrctab fixes (Neil Horman) [558803]
4563 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4564
4565 * Thu Jan 28 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-12.el6]
4566 - [drm] radeon possible security issue (Jerome Glisse) [556692]
4567 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4568 - [pci] Always set prefetchable base/limit upper32 registers (Prarit Bhargava) [553471]
4569 - [scsi] Sync be2iscsi with upstream (Mike Christie) [515256]
4570 - [x86] msr/cpuid: Register enough minors for the MSR and CPUID drivers (George Beshers) [557554]
4571 - [x86] Remove unnecessary mdelay() from cpu_disable_common() (Peter Bogdanovic) [463633]
4572 - [x86] ioapic: Document another case when level irq is seen as an edge (Peter Bogdanovic) [463633]
4573 - [x86] ioapic: Fix the EOI register detection mechanism (Peter Bogdanovic) [463633]
4574 - [x86] io-apic: Move the effort of clearing remoteIRR explicitly before migrating the irq (Peter Bogdanovic) [463633]
4575 - [x86] Remove local_irq_enable()/local_irq_disable() in fixup_irqs() (Peter Bogdanovic) [463633]
4576 - [x86] Use EOI register in io-apic on intel platforms (Peter Bogdanovic) [463633]
4577
4578 * Tue Jan 26 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-11.el6]
4579 - [kdump] Remove the 32MB limitation for crashkernel (Steve Best) [529270]
4580 - [dm] dm-raid45: export missing dm_rh_inc (Heinz Mauelshagen) [552329]
4581 - [block] dm-raid45: add raid45 target (Heinz Mauelshagen) [552329]
4582 - [block] dm-replicator: blockdev site link handler (Heinz Mauelshagen) [552364]
4583 - [block] dm-replicator: ringbuffer replication log handler (Heinz Mauelshagen) [552364]
4584 - [block] dm-replicator: replication log and site link handler interfaces and main replicator module (Heinz Mauelshagen) [552364]
4585 - [block] dm-replicator: documentation and module registry (Heinz Mauelshagen) [552364]
4586 - [s390x] qeth: set default BLKT settings dependend on OSA hw level (Hendrik Brueckner) [557474]
4587 - [drm] bring RHEL6 radeon drm up to 2.6.33-rc4/5 level (Jerome Glisse) [557539]
4588 - [netdrv] e1000e: enhance frame fragment detection (Andy Gospodarek) [462780]
4589 - [stable] ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). (David S. Miller) [555084]
4590 - [stable] module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y (Rusty Russell) [555084]
4591 - [stable] fix more leaks in audit_tree.c tag_chunk() (Al Viro) [555084]
4592 - [stable] fix braindamage in audit_tree.c untag_chunk() (Al Viro) [555084]
4593 - [stable] mac80211: fix skb buffering issue (and fixes to that) (Johannes Berg) [555084]
4594 - [stable] kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr (Mike Frysinger) [555084]
4595 - [stable] libertas: Remove carrier signaling from the scan code (Samuel Ortiz) [555084]
4596 - [stable] mac80211: add missing sanity checks for action frames (Felix Fietkau) [555084]
4597 - [stable] iwl: off by one bug (Dan Carpenter) [555084]
4598 - [stable] cfg80211: fix syntax error on user regulatory hints (Luis R. Rodriguez) [555084]
4599 - [stable] ath5k: Fix eeprom checksum check for custom sized eeproms (Luis R. Rodriguez) [555084]
4600 - [stable] iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr (Zhu Yi) [555084]
4601 - [stable] xen: fix hang on suspend. (Ian Campbell) [555084]
4602 - [stable] quota: Fix dquot_transfer for filesystems different from ext4 (Jan Kara) [555084]
4603 - [stable] hwmon: (adt7462) Fix pin 28 monitoring (Roger Blofeld) [555084]
4604 - [stable] hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs (Yong Wang) [555084]
4605 - [stable] netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() (Patrick McHardy) [555084]
4606 - [stable] netfilter: ebtables: enforce CAP_NET_ADMIN (Florian Westphal) [555084]
4607 - [stable] ASoC: Fix WM8350 DSP mode B configuration (Mark Brown) [555084]
4608 - [stable] ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 (Daniel T Chen) [555084]
4609 - [stable] ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense blacklist (Daniel T Chen) [555084]
4610 - [stable] mmc_block: fix queue cleanup (Adrian Hunter) [555084]
4611 - [stable] mmc_block: fix probe error cleanup bug (Jarkko Lavinen) [555084]
4612 - [stable] mmc_block: add dev_t initialization check (Anna Lemehova) [555084]
4613 - [stable] kernel/signal.c: fix kernel information leak with print-fatal-signals=1 (Andi Kleen) [555084]
4614 - [stable] dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with DMA_FROM_DEVICE and (Krzysztof Halasa) [555084]
4615 - [stable] lib/rational.c needs module.h (Sascha Hauer) [555084]
4616 - [stable] drivers/cpuidle/governors/menu.c: fix undefined reference to `__udivdi3' (Stephen Hemminger) [555084]
4617 - [stable] rtc_cmos: convert shutdown to new pnp_driver->shutdown (OGAWA Hirofumi) [555084]
4618 - [stable] Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu for pre-Pentium" (Rusty Russell) [555084]
4619 - [stable] exofs: simple_write_end does not mark_inode_dirty (Boaz Harrosh) [555084]
4620 - [stable] modules: Skip empty sections when exporting section notes (Ben Hutchings) [555084]
4621 - [stable] ASoC: fix params_rate() macro use in several codecs (Guennadi Liakhovetski) [555084]
4622 - [stable] fasync: split 'fasync_helper()' into separate add/remove functions (Linus Torvalds) [555084]
4623 - [stable] untangle the do_mremap() mess (Al Viro)
4624
4625 * Fri Jan 22 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-10.el6]
4626 - [mm] mmap: don't return ENOMEM when mapcount is temporarily exceeded in munmap() (Danny Feng) [557000]
4627 - [netdrv] vxge: fix issues found in Neterion testing (Michal Schmidt) [493985]
4628 - [x86] Force irq complete move during cpu offline (Prarit Bhargava) [541815]
4629 - [sound] Fix SPDIF-In for AD1988 codecs + add Intel Cougar IDs (Jaroslav Kysela) [557473]
4630 - [scsi] aic79xx: check for non-NULL scb in ahd_handle_nonpkt_busfree (Tomas Henzl) [557753]
4631 - [s390x] fix loading of PER control registers for utrace. (CAI Qian) [556410]
4632 - [s390x] ptrace: dont abuse PT_PTRACED (CAI Qian) [552102]
4633 - [perf] Remove the "event" callback from perf events (Jason Baron) [525517]
4634 - [perf] Use overflow handler instead of the event callback (Jason Baron) [525517]
4635 - [perf] Fix locking for PERF_FORMAT_GROUP (Jason Baron) [525517]
4636 - [perf] Fix event scaling for inherited counters (Jason Baron) [525517]
4637 - [perf] Fix PERF_FORMAT_GROUP scale info (Jason Baron) [525517]
4638 - [perf] Allow for custom overflow handlers (Jason Baron) [525517]
4639 - [perf] Add a callback to perf events (Jason Baron) [525517]
4640 - [perf] improve error reporting (Jason Baron) [525517]
4641 - [perf] add kernel internal interface (Jason Baron) [525517]
4642 - [utrace] fix utrace_maybe_reap() vs find_matching_engine() race (Oleg Nesterov) [557338]
4643 - [x86] Disable Memory hot add on x86 32-bit (Prarit Bhargava) [557131]
4644 - [netdrv] e1000e: update to the latest upstream (Andy Gospodarek) [462780]
4645 - [gfs] Use dquot_send_warning() (Steven Whitehouse) [557057]
4646 - [gfs] Add quota netlink support (Steven Whitehouse) [557057]
4647 - [netdrv] qlge: update to upstream version v1.00.00.23.00.00-01 (Andy Gospodarek) [553357]
4648 - [s390x] zfcp: set HW timeout requested by BSG request (Hendrik Brueckner) [556918]
4649 - [s390x] zfcp: introduce BSG timeout callback (Hendrik Brueckner) [556918]
4650 - [scsi] scsi_transport_fc: Allow LLD to reset FC BSG timeout (Hendrik Brueckner) [556918]
4651
4652 * Wed Jan 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-9.el6]
4653 - [kvm] fix cleanup_srcu_struct on vm destruction (Marcelo Tosatti) [554762]
4654 - [x86] core: make LIST_POISON less deadly (Avi Kivity) [554640]
4655 - [x86] dell-wmi: Add support for new Dell systems (Matthew Garrett) [525548]
4656 - [fs] xfs: 2.6.33 updates (Eric Sandeen) [554891]
4657 - [x86] Add kernel pagefault tracepoint for x86 & x86_64. (Larry Woodman) [526032]
4658 - [pci] PCIe AER: honor ACPI HEST FIRMWARE FIRST mode (Matthew Garrett) [537205]
4659 - [block] direct-io: cleanup blockdev_direct_IO locking (Eric Sandeen) [556547]
4660 - [tracing] tracepoint: Add signal tracepoints (Masami Hiramatsu) [526030]
4661 - [cgroups] fix for "kernel BUG at kernel/cgroup.c:790" (Dave Anderson) [547815]
4662 - [irq] Expose the irq_desc node as /proc/irq/*/node (George Beshers) [555866]
4663 - [scsi] qla2xxx - Update support for FC/FCoE HBA/CNA (Rob Evers) [553854]
4664 - [scsi] bfa update from 2.1.2.0 to 2.1.2.1 (Rob Evers) [475704]
4665 - [nfs] sunrpc: fix build-time warning (Steve Dickson) [437715]
4666 - [nfs] sunrpc: on successful gss error pipe write, don't return error (Steve Dickson) [437715]
4667 - [nfs] SUNRPC: Fix the return value in gss_import_sec_context() (Steve Dickson) [437715]
4668 - [nfs] SUNRPC: Fix up an error return value in gss_import_sec_context_kerberos() (Steve Dickson) [437715]
4669 - [nfs] sunrpc: fix peername failed on closed listener (Steve Dickson) [437715]
4670 - [nfs] nfsd: make sure data is on disk before calling ->fsync (Steve Dickson) [437715]
4671 - [uv] React 2.6.32.y: isolcpus broken in 2.6.32.y kernel (George Beshers) [548842]
4672 - [gru] GRU Rollup patch (George Beshers) [546680]
4673 - [uv] XPC: pass nasid instead of nid to gru_create_message_queue (George Beshers) [546695]
4674 - [uv] x86: XPC receive message reuse triggers invalid BUG_ON (George Beshers) [546695]
4675 - [uv] x86: xpc_make_first_contact hang due to not accepting ACTIVE state (George Beshers) [546695]
4676 - [uv] x86: xpc NULL deref when mesq becomes empty (George Beshers) [546695]
4677 - [uv] x86: update XPC to handle updated BIOS interface (George Beshers) [546695]
4678 - [uv] xpc needs to provide an abstraction for uv_gpa (George Beshers) [546695]
4679 - [uv] x86, irq: Check move_in_progress before freeing the vector mapping (George Beshers) [546668]
4680 - [uv] x86: Remove move_cleanup_count from irq_cfg (George Beshers) [546668]
4681 - [uv] x86, irq: Allow 0xff for /proc/irq/[n]/smp_affinity on an 8-cpu system (George Beshers) [546668]
4682 - [uv] x86, apic: Move SGI UV functionality out of generic IO-APIC code (George Beshers) [546668]
4683 - [uv] x86 SGI: Fix irq affinity for hub based interrupts (George Beshers) [546668]
4684 - [uv] x86 RTC: Always enable RTC clocksource (George Beshers) [546668]
4685 - [uv] x86 RTC: Rename generic_interrupt to x86_platform_ipi (George Beshers) [546668]
4686 - [uv] x86, mm: Correct the implementation of is_untracked_pat_range() (George Beshers) [548524]
4687 - [uv] x86: Change is_ISA_range() into an inline function (George Beshers) [548524]
4688 - [uv] x86, platform: Change is_untracked_pat_range() to bool (George Beshers) [548524]
4689 - [uv] x86, mm: is_untracked_pat_range() takes a normal semiclosed range (George Beshers) [548524]
4690 - [uv] x86, mm: Call is_untracked_pat_range() rather than is_ISA_range() (George Beshers) [548524]
4691 - [uv] x86 SGI: Dont track GRU space in PAT (George Beshers) [548524]
4692 - [scsi] megaraid: upgrade to 4.17 (Tomas Henzl) [520729]
4693 - [scsi] mpt2sas: Bump version 03.100.03.00 (Tomas Henzl) [470848]
4694 - [scsi] mpt2sas: don't update links nor unblock device at no link rate change (Tomas Henzl) [470848]
4695 - [scsi] mpt2sas: add support for RAID Action System Shutdown Initiated at OS Shutdown (Tomas Henzl) [470848]
4696 - [scsi] mpt2sas: freeze the sdev IO queue when firmware sends internal device reset (Tomas Henzl) [470848]
4697 - [scsi] mpt2sas: fix PPC endian bug (Tomas Henzl) [470848]
4698 - [scsi] mpt2sas: mpt2sas_base_get_sense_buffer_dma returns little endian (Tomas Henzl) [470848]
4699 - [scsi] mpt2sas: return DID_TRANSPORT_DISRUPTED in nexus loss and SCSI_MLQUEUE_DEVICE_BUSY if device is busy (Tomas Henzl) [470848]
4700 - [scsi] mpt2sas: retrieve the ioc facts prior to putting the controller into READY state (Tomas Henzl) [470848]
4701 - [scsi] mpt2sas: add new info messages for IR and Expander events (Tomas Henzl) [470848]
4702 - [scsi] mpt2sas: limit the max_depth to 32 for SATA devices (Tomas Henzl) [470848]
4703 - [scsi] mpt2sas: add TimeStamp support when sending ioc_init (Tomas Henzl) [470848]
4704 - [scsi] mpt2sas: add extended type for diagnostic buffer support (Tomas Henzl) [470848]
4705 - [scsi] mpt2sas: add command line option diag_buffer_enable (Tomas Henzl) [470848]
4706 - [scsi] mpt2sas: fix some comments (Tomas Henzl) [470848]
4707 - [scsi] mpt2sas: stop driver when firmware encounters faults (Tomas Henzl) [470848]
4708 - [scsi] mpt2sas: adding MPI Headers - revision L (Tomas Henzl) [470848]
4709 - [scsi] mpt2sas: new device SAS2208 support (Tomas Henzl) [470848]
4710 - [scsi] mpt2sas: check for valid response info (Tomas Henzl) [470848]
4711 - [scsi] mpt2sas: fix expander remove fail (Tomas Henzl) [470848]
4712 - [scsi] mpt2sas: use sas address instead of handle as a lookup (Tomas Henzl) [470848]
4713 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [555812]
4714 - [block] Honor the gfp_mask for alloc_page() in blkdev_issue_discard() (Mike Snitzer) [554719]
4715 - [scsi] sync fcoe with upstream (Mike Christie) [549945]
4716 - [net] dccp: modify how dccp creates slab caches to prevent bug halt in SLUB (Neil Horman) [553698]
4717 - [s390x] tape: Add pr_fmt() macro to all tape source files (Hendrik Brueckner) [554380]
4718 - [s390] qeth: fix packet loss if TSO is switched on (Hendrik Brueckner) [546632]
4719 - [s390x] qeth: Support for HiperSockets Network Traffic Analyzer (Hendrik Brueckner) [463706]
4720 - [serial] 8250: add support for DTR/DSR hardware flow control (Mauro Carvalho Chehab) [523848]
4721
4722 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-8.el6]
4723 - [build] Revert "[redhat] disabling temporaly DEVTMPFS" (Aristeu Rozanski)
4724
4725 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-7.el6]
4726 - [drm] minor printk fixes from upstream (Dave Airlie) [554601]
4727 - [offb] add support for framebuffer handoff to offb. (Dave Airlie) [554948]
4728 - [x86] allow fbdev primary video code on 64-bit. (Dave Airlie) [554930]
4729 - [drm] nouveau: update to 2.6.33 level (Dave Airlie) [549930]
4730 - [drm] ttm: validation API changes + ERESTART fixes. (Dave Airlie) [554918]
4731 - [drm] radeon/kms: update to 2.6.33 (without TTM API changes) (Dave Airlie) [554918]
4732 - [drm] i915: bring Intel DRM/KMS driver up to 2.6.33 (Dave Airlie) [554616]
4733 - [drm] radeon/intel: realign displayport helper code with upstream. (Dave Airlie) [554601]
4734 - [drm] kms: rollup KMS core and helper changes to 2.6.33 (Dave Airlie) [554601]
4735 - [drm] remove address mask param for drm_pci_alloc() (Dave Airlie) [554601]
4736 - [drm] add new userspace core drm interfaces from 2.6.33 (Dave Airlie) [554601]
4737 - [drm] unlocked ioctl support for core + macro fixes (Dave Airlie) [554601]
4738 - [drm] ttm: rollup upstream TTM fixes (Dave Airlie) [554601]
4739 - [drm] mm: patch drm core memory range manager up to 2.6.33 (Dave Airlie) [554601]
4740 - [drm] drm/edid: update to 2.6.33 EDID parser code (Dave Airlie) [554601]
4741 - [net] dccp: fix module load dependency btw dccp_probe and dccp (Neil Horman) [554840]
4742 - [powerpc] pseries: Correct pseries/dlpar.c build break without CONFIG_SMP (Steve Best) [539318]
4743 - [powerpc] cpu-allocation/deallocation process (Steve Best) [539318]
4744 - [powerpc] Add code to online/offline CPUs of a DLPAR node (Steve Best) [539318]
4745 - [powerpc] CPU DLPAR handling (Steve Best) [539318]
4746 - [powerpc] sysfs cpu probe/release files (Steve Best) [539318]
4747 - [powerpc] Kernel handling of Dynamic Logical Partitioning (Steve Best) [539318]
4748 - [powerpc] pseries: Add hooks to put the CPU into an appropriate offline state (Steve Best) [539318]
4749 - [powerpc] pseries: Add extended_cede_processor() helper function. (Steve Best) [539318]
4750 - [gfs] GFS2: Fix glock refcount issues (Steven Whitehouse) [546634]
4751 - [gfs] GFS2: Ensure uptodate inode size when using O_APPEND (Steven Whitehouse) [547639]
4752 - [gfs] GFS2: Fix locking bug in rename (Steven Whitehouse) [547640]
4753 - [gfs] GFS2: Fix lock ordering in gfs2_check_blk_state() (Steven Whitehouse) [554673]
4754 - [gfs2] only show nobarrier option on /proc/mounts when the option is active (Steven Whitehouse) [546665]
4755 - [gfs2] add barrier/nobarrier mount options (Steven Whitehouse) [546665]
4756 - [gfs2] remove division from new statfs code (Steven Whitehouse) [298561]
4757 - [gfs2] Improve statfs and quota usability (Steven Whitehouse) [298561]
4758 - [gfs2] Add set_xquota support (Steven Whitehouse) [298561]
4759 - [gfs2] Add get_xquota support (Steven Whitehouse) [298561]
4760 - [gfs2] Clean up gfs2_adjust_quota() and do_glock() (Steven Whitehouse) [298561]
4761 - [gfs2] Remove constant argument from qd_get() (Steven Whitehouse) [298561]
4762 - [gfs2] Remove constant argument from qdsb_get() (Steven Whitehouse) [298561]
4763 - [gfs2] Add proper error reporting to quota sync via sysfs (Steven Whitehouse) [298561]
4764 - [gfs2] Add get_xstate quota function (Steven Whitehouse) [298561]
4765 - [gfs2] Remove obsolete code in quota.c (Steven Whitehouse) [298561]
4766 - [gfs2] Hook gfs2_quota_sync into VFS via gfs2_quotactl_ops (Steven Whitehouse) [298561]
4767 - [gfs2] Alter arguments of gfs2_quota/statfs_sync (Steven Whitehouse) [298561]
4768 - [gfs2] Fix -o meta mounts for subsequent mounts (Steven Whitehouse) [546664]
4769 - [gfs] GFS2: Fix gfs2_xattr_acl_chmod() (Steven Whitehouse) [546294]
4770 - [gfs] VFS: Use GFP_NOFS in posix_acl_from_xattr() (Steven Whitehouse) [546294]
4771 - [gfs] GFS2: Add cached ACLs support (Steven Whitehouse) [546294]
4772 - [gfs] GFS2: Clean up ACLs (Steven Whitehouse) [546294]
4773 - [gfs] GFS2: Use gfs2_set_mode() instead of munge_mode() (Steven Whitehouse) [546294]
4774 - [gfs] GFS2: Use forget_all_cached_acls() (Steven Whitehouse) [546294]
4775 - [gfs] VFS: Add forget_all_cached_acls() (Steven Whitehouse) [546294]
4776 - [gfs] GFS2: Fix up system xattrs (Steven Whitehouse) [546294]
4777 - [netdrv] igb: Update igb driver to support Barton Hills (Stefan Assmann) [462783]
4778 - [dm] add feature flags to reduce future kABI impact (Mike Snitzer) [547756]
4779 - [block] Stop using byte offsets (Mike Snitzer) [554718]
4780 - [dm] Fix device mapper topology stacking (Mike Snitzer) [554718]
4781 - [block] bdev_stack_limits wrapper (Mike Snitzer) [554718]
4782 - [block] Fix discard alignment calculation and printing (Mike Snitzer) [554718]
4783 - [block] Correct handling of bottom device misaligment (Mike Snitzer) [554718]
4784 - [block] Fix incorrect alignment offset reporting and update documentation (Mike Snitzer) [554718]
4785 - [kvm] Fix possible circular locking in kvm_vm_ioctl_assign_device() (Marcelo Tosatti) [554762]
4786 - [kvm] only clear irq_source_id if irqchip is present (Marcelo Tosatti) [554762]
4787 - [kvm] fix lock imbalance in kvm_*_irq_source_id() (Marcelo Tosatti) [554762]
4788 - [kvm] VMX: Report unexpected simultaneous exceptions as internal errors (Marcelo Tosatti) [554762]
4789 - [kvm] Allow internal errors reported to userspace to carry extra data (Marcelo Tosatti) [554762]
4790 - [kvm] x86: disable paravirt mmu reporting (Marcelo Tosatti) [554762]
4791 - [kvm] x86: disallow KVM_{SET, GET}_LAPIC without allocated in-kernel lapic (Marcelo Tosatti) [554762]
4792 - [kvm] x86: disallow multiple KVM_CREATE_IRQCHIP (Marcelo Tosatti) [554762]
4793 - [kvm] VMX: Disable unrestricted guest when EPT disabled (Marcelo Tosatti) [554762]
4794 - [kvm] SVM: remove needless mmap_sem acquision from nested_svm_map (Marcelo Tosatti) [554762]
4795 - [kvm] SVM: Notify nested hypervisor of lost event injections (Marcelo Tosatti) [554762]
4796 - [kvm] SVM: Move INTR vmexit out of atomic code (Marcelo Tosatti) [554762]
4797 - [kvm] remove pre_task_link setting in save_state_to_tss16 (Marcelo Tosatti) [554762]
4798 - [kvm] x86: Extend KVM_SET_VCPU_EVENTS with selective updates (Marcelo Tosatti) [554500]
4799 - [kvm] x86: Add KVM_GET/SET_VCPU_EVENTS (Marcelo Tosatti) [554500]
4800 - [kvm] fix kvmclock-adjust-offset ioctl to match upstream (Marcelo Tosatti) [554524]
4801 - [kvm] SVM: init_vmcb(): remove redundant save->cr0 initialization (Marcelo Tosatti) [554506]
4802 - [kvm] SVM: Reset cr0 properly on vcpu reset (Marcelo Tosatti) [554506]
4803 - [kvm] VMX: Use macros instead of hex value on cr0 initialization (Marcelo Tosatti) [554506]
4804 - [kvm] avoid taking ioapic mutex for non-ioapic EOIs (Marcelo Tosatti) [550809]
4805 - [kvm] Bump maximum vcpu count to 64 (Marcelo Tosatti) [550809]
4806 - [kvm] convert slots_lock to a mutex (Marcelo Tosatti) [550809]
4807 - [kvm] switch vcpu context to use SRCU (Marcelo Tosatti) [550809]
4808 - [kvm] convert io_bus to SRCU (Marcelo Tosatti) [550809]
4809 - [kvm] x86: switch kvm_set_memory_alias to SRCU update (Marcelo Tosatti) [550809]
4810 - [kvm] use SRCU for dirty log (Marcelo Tosatti) [550809]
4811 - [kvm] introduce kvm->srcu and convert kvm_set_memory_region to SRCU update (Marcelo Tosatti) [550809]
4812 - [kvm] use gfn_to_pfn_memslot in kvm_iommu_map_pages (Marcelo Tosatti) [550809]
4813 - [kvm] introduce gfn_to_pfn_memslot (Marcelo Tosatti) [550809]
4814 - [kvm] split kvm_arch_set_memory_region into prepare and commit (Marcelo Tosatti) [550809]
4815 - [kvm] modify alias layout in x86s struct kvm_arch (Marcelo Tosatti) [550809]
4816 - [kvm] modify memslots layout in struct kvm (Marcelo Tosatti) [550809]
4817 - [kvm] rcu: Enable synchronize_sched_expedited() fastpath (Marcelo Tosatti) [550809]
4818 - [kvm] rcu: Add synchronize_srcu_expedited() to the documentation (Marcelo Tosatti) [550809]
4819 - [kvm] rcu: Add synchronize_srcu_expedited() to the rcutorture test suite (Marcelo Tosatti) [550809]
4820 - [kvm] Add synchronize_srcu_expedited() (Marcelo Tosatti) [550809]
4821 - [kvm] Drop kvm->irq_lock lock from irq injection path (Marcelo Tosatti) [550809]
4822 - [kvm] Move IO APIC to its own lock (Marcelo Tosatti) [550809]
4823 - [kvm] Convert irq notifiers lists to RCU locking (Marcelo Tosatti) [550809]
4824 - [kvm] Move irq ack notifier list to arch independent code (Marcelo Tosatti) [550809]
4825 - [kvm] Move irq routing data structure to rcu locking (Marcelo Tosatti) [550809]
4826 - [kvm] Maintain back mapping from irqchip/pin to gsi (Marcelo Tosatti) [550809]
4827 - [kvm] Change irq routing table to use gsi indexed array (Marcelo Tosatti) [550809]
4828 - [kvm] Move irq sharing information to irqchip level (Marcelo Tosatti) [550809]
4829 - [kvm] Call pic_clear_isr() on pic reset to reuse logic there (Marcelo Tosatti) [550809]
4830 - [kvm] Dont pass kvm_run arguments (Marcelo Tosatti) [550809]
4831
4832 * Thu Jan 14 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-6.el6]
4833 - [modsign] Remove Makefile.modpost qualifying message for module sign failure (David Howells) [543529]
4834 - [nfs] fix oops in nfs_rename() (Jeff Layton) [554337]
4835 - [x86] AMD: Fix stale cpuid4_info shared_map data in shared_cpu_map cpumasks (Prarit Bhargava) [546610]
4836 - [s390] kernel: improve code generated by atomic operations (Hendrik Brueckner) [547411]
4837 - [s390x] tape: incomplete device removal (Hendrik Brueckner) [547415]
4838 - [netdrv] be2net: update be2net driver to latest upstream (Ivan Vecera) [515262]
4839 - [x86] mce: fix confusion between bank attributes and mce attributes (hiro muneda) [476606]
4840 - [tpm] autoload tpm_tis driver (John Feeney) [531891]
4841 - [stable] generic_permission: MAY_OPEN is not write access (Serge E. Hallyn) [555084]
4842 - [stable] rt2x00: Disable powersaving for rt61pci and rt2800pci. (Gertjan van Wingerde) [555084]
4843 - [stable] lguest: fix bug in setting guest GDT entry (Rusty Russell) [555084]
4844 - [stable] ext4: Update documentation to correct the inode_readahead_blks option name (Fang Wenqi) [555084]
4845 - [stable] sched: Sched_rt_periodic_timer vs cpu hotplug (Peter Zijlstra) [555084]
4846 - [stable] amd64_edac: fix forcing module load/unload (Borislav Petkov) [555084]
4847 - [stable] amd64_edac: make driver loading more robust (Borislav Petkov) [555084]
4848 - [stable] amd64_edac: fix driver instance freeing (Borislav Petkov) [555084]
4849 - [stable] x86, msr: msrs_alloc/free for CONFIG_SMP=n (Borislav Petkov) [555084]
4850 - [stable] x86, msr: Add support for non-contiguous cpumasks (Borislav Petkov) [555084]
4851 - [stable] amd64_edac: unify MCGCTL ECC switching (Borislav Petkov) [555084]
4852 - [stable] cpumask: use modern cpumask style in drivers/edac/amd64_edac.c (Rusty Russell) [555084]
4853 - [stable] x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus (Borislav Petkov) [555084]
4854 - [stable] ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) (Dmitry Monakhov) [555084]
4855 - [stable] ext4: Convert to generic reserved quota's space management. (Dmitry Monakhov) [555084]
4856 - [stable] quota: decouple fs reserved space from quota reservation (Dmitry Monakhov) [555084]
4857 - [stable] Add unlocked version of inode_add_bytes() function (Dmitry Monakhov) [555084]
4858 - [stable] udf: Try harder when looking for VAT inode (Jan Kara) [555084]
4859 - [stable] orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled (Andrey Borzenkov) [555084]
4860 - [stable] drm: disable all the possible outputs/crtcs before entering KMS mode (Zhao Yakui) [555084]
4861 - [stable] drm/radeon/kms: fix crtc vblank update for r600 (Dave Airlie) [555084]
4862 - [stable] sched: Fix balance vs hotplug race (Peter Zijlstra) [555084]
4863 - [stable] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support (Geert Uytterhoeven) [555084]
4864 - [stable] b43: avoid PPC fault during resume (Larry Finger) [555084]
4865 - [stable] hwmon: (sht15) Off-by-one error in array index + incorrect constants (Jonathan Cameron) [555084]
4866 - [stable] netfilter: fix crashes in bridge netfilter caused by fragment jumps (Patrick McHardy) [555084]
4867 - [stable] ipv6: reassembly: use seperate reassembly queues for conntrack and local delivery (Patrick McHardy) [555084]
4868 - [stable] e100: Fix broken cbs accounting due to missing memset. (Roger Oksanen) [555084]
4869 - [stable] memcg: avoid oom-killing innocent task in case of use_hierarchy (Daisuke Nishimura) [555084]
4870 - [stable] x86/ptrace: make genregs[32]_get/set more robust (Linus Torvalds) [555084]
4871 - [stable] V4L/DVB (13596): ov511.c typo: lock => unlock (Dan Carpenter) [555084]
4872 - [stable] kernel/sysctl.c: fix the incomplete part of sysctl_max_map_count-should-be-non-negative.patch (WANG Cong) [555084]
4873 - [stable] 'sysctl_max_map_count' should be non-negative (Amerigo Wang) [555084]
4874 - [stable] NOMMU: Optimise away the {dac_,}mmap_min_addr tests (David Howells) [555084]
4875 - [stable] mac80211: fix race with suspend and dynamic_ps_disable_work (Luis R. Rodriguez) [555084]
4876 - [stable] iwlwifi: fix 40MHz operation setting on cards that do not allow it (Reinette Chatre) [555084]
4877 - [stable] iwlwifi: fix more eeprom endian bugs (Johannes Berg) [555084]
4878 - [stable] iwlwifi: fix EEPROM/OTP reading endian annotations and a bug (Johannes Berg) [555084]
4879 - [stable] iwl3945: fix panic in iwl3945 driver (Zhu Yi) [555084]
4880 - [stable] iwl3945: disable power save (Reinette Chatre) [555084]
4881 - [stable] ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value in 0x4054 (Vasanthakumar Thiagarajan) [555084]
4882 - [stable] ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on 64-bit (Vasanthakumar Thiagarajan) [555084]
4883 - [stable] ath9k: fix suspend by waking device prior to stop (Sujith) [555084]
4884 - [stable] ath9k: wake hardware during AMPDU TX actions (Luis R. Rodriguez) [555084]
4885 - [stable] ath9k: fix missed error codes in the tx status check (Felix Fietkau) [555084]
4886 - [stable] ath9k: Fix TX queue draining (Sujith) [555084]
4887 - [stable] ath9k: wake hardware for interface IBSS/AP/Mesh removal (Luis R. Rodriguez) [555084]
4888 - [stable] ath5k: fix SWI calibration interrupt storm (Bob Copeland) [555084]
4889 - [stable] cfg80211: fix race between deauth and assoc response (Johannes Berg) [555084]
4890 - [stable] mac80211: Fix IBSS merge (Sujith) [555084]
4891 - [stable] mac80211: fix WMM AP settings application (Johannes Berg) [555084]
4892 - [stable] mac80211: fix propagation of failed hardware reconfigurations (Luis R. Rodriguez) [555084]
4893 - [stable] iwmc3200wifi: fix array out-of-boundary access (Zhu Yi) [555084]
4894 - [stable] Libertas: fix buffer overflow in lbs_get_essid() (Daniel Mack) [555084]
4895 - [stable] KVM: LAPIC: make sure IRR bitmap is scanned after vm load (Marcelo Tosatti) [555084]
4896 - [stable] KVM: MMU: remove prefault from invlpg handler (Marcelo Tosatti) [555084]
4897 - [stable] ioat2,3: put channel hardware in known state at init (Dan Williams) [555084]
4898 - [stable] ioat3: fix p-disabled q-continuation (Dan Williams) [555084]
4899 - [stable] x86/amd-iommu: Fix initialization failure panic (Joerg Roedel) [555084]
4900 - [stable] dma-debug: Fix bug causing build warning (Ingo Molnar) [555084]
4901 - [stable] dma-debug: Do not add notifier when dma debugging is disabled. (Shaun Ruffell) [555084]
4902 - [stable] dma: at_hdmac: correct incompatible type for argument 1 of 'spin_lock_bh' (Nicolas Ferre) [555084]
4903 - [stable] md: Fix unfortunate interaction with evms (NeilBrown) [555084]
4904 - [stable] x86: SGI UV: Fix writes to led registers on remote uv hubs (Mike Travis) [555084]
4905 - [stable] drivers/net/usb: Correct code taking the size of a pointer (Julia Lawall) [555084]
4906 - [stable] USB: fix bugs in usb_(de)authorize_device (Alan Stern) [555084]
4907 - [stable] USB: rename usb_configure_device (Alan Stern) [555084]
4908 - [stable] Bluetooth: Prevent ill-timed autosuspend in USB driver (Oliver Neukum) [555084]
4909 - [stable] USB: musb: gadget_ep0: avoid SetupEnd interrupt (Sergei Shtylyov) [555084]
4910 - [stable] USB: Fix a bug on appledisplay.c regarding signedness (pancho horrillo) [555084]
4911 - [stable] USB: option: support hi speed for modem Haier CE100 (Donny Kurnia) [555084]
4912 - [stable] USB: emi62: fix crash when trying to load EMI 6|2 firmware (Clemens Ladisch) [555084]
4913 - [stable] drm/radeon: fix build on 64-bit with some compilers. (Dave Airlie) [555084]
4914 - [stable] ASoC: Do not write to invalid registers on the wm9712. (Eric Millbrandt) [555084]
4915 - [stable] powerpc: Handle VSX alignment faults correctly in little-endian mode (Neil Campbell) [555084]
4916 - [stable] ACPI: Use the return result of ACPI lid notifier chain correctly (Zhao Yakui) [555084]
4917 - [stable] ACPI: EC: Fix MSI DMI detection (Alexey Starikovskiy) [555084]
4918 - [stable] acerhdf: limit modalias matching to supported (Stefan Bader) [555084]
4919 - [stable] ALSA: hda - Fix missing capsrc_nids for ALC88x (Takashi Iwai) [555084]
4920 - [stable] sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer (Clemens Ladisch) [555084]
4921 - [stable] ASoC: wm8974: fix a wrong bit definition (Guennadi Liakhovetski) [555084]
4922 - [stable] pata_cmd64x: fix overclocking of UDMA0-2 modes (Bartlomiej Zolnierkiewicz) [555084]
4923 - [stable] pata_hpt3x2n: fix clock turnaround (Sergei Shtylyov) [555084]
4924 - [stable] clockevents: Prevent clockevent_devices list corruption on cpu hotplug (Thomas Gleixner) [555084]
4925 - [stable] sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE (Peter Zijlstra) [555084]
4926 - [stable] x86, cpuid: Add "volatile" to asm in native_cpuid() (Suresh Siddha) [555084]
4927 - [stable] sched: Fix task_hot() test order (Peter Zijlstra) [555084]
4928 - [stable] SCSI: fc class: fix fc_transport_init error handling (Mike Christie) [555084]
4929 - [stable] SCSI: st: fix mdata->page_order handling (FUJITA Tomonori) [555084]
4930 - [stable] SCSI: qla2xxx: dpc thread can execute before scsi host has been added (Michael Reed) [555084]
4931 - [stable] SCSI: ipr: fix EEH recovery (Kleber Sacilotto de Souza) [555084]
4932 - [stable] implement early_io{re,un}map for ia64 (Luck, Tony) [555084]
4933 - [stable] perf_event: Fix incorrect range check on cpu number (Paul Mackerras) [555084]
4934 - [stable] netfilter: xtables: document minimal required version (Jan Engelhardt) [555084]
4935 - [stable] intel-iommu: ignore page table validation in pass through mode (Chris Wright) [555084]
4936 - [stable] jffs2: Fix long-standing bug with symlink garbage collection. (David Woodhouse) [555084]
4937 - [stable] ipvs: zero usvc and udest (Simon Horman) [555084]
4938 - [stable] mm: sigbus instead of abusing oom (Hugh Dickins) [555084]
4939 - [stable] drm/i915: Fix LVDS stability issue on Ironlake (Zhenyu Wang) [555084]
4940 - [stable] drm/i915: PineView only has LVDS and CRT ports (Zhenyu Wang) [555084]
4941 - [stable] drm/i915: Avoid NULL dereference with component_only tv_modes (Chris Wilson) [555084]
4942 - [stable] x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value (Yong Wang) [555084]
4943 - [stable] bcm63xx_enet: fix compilation failure after get_stats_count removal (Florian Fainelli) [555084]
4944 - [stable] V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. (Rafal Milecki) [555084]
4945 - [stable] ext3: Fix data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
4946 - [stable] net: Fix userspace RTM_NEWLINK notifications. (Eric W. Biederman) [555084]
4947 - [stable] ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. (Zhao Yakui) [555084]
4948 - [stable] vmalloc: conditionalize build of pcpu_get_vm_areas() (Tejun Heo) [555084]
4949 - [stable] asus-laptop: change light sens default values. (Corentin Chary) [555084]
4950 - [stable] acerhdf: add new BIOS versions (Peter Feuerer) [555084]
4951 - [stable] matroxfb: fix problems with display stability (Alan Cox) [555084]
4952 - [stable] ipw2100: fix rebooting hang with driver loaded (Zhu Yi) [555084]
4953 - [stable] thinkpad-acpi: preserve rfkill state across suspend/resume (Henrique de Moraes Holschuh) [555084]
4954 - [stable] thinkpad-acpi: fix default brightness_mode for R50e/R51 (Henrique de Moraes Holschuh) [555084]
4955 - [stable] memcg: fix memory.memsw.usage_in_bytes for root cgroup (Kirill A. Shutemov) [555084]
4956 - [stable] mac80211: Fix dynamic power save for scanning. (Vivek Natarajan) [555084]
4957 - [stable] ath9k: fix tx status reporting (Felix Fietkau) [555084]
4958 - [stable] tracing: Fix event format export (Johannes Berg) [555084]
4959 - [stable] b43legacy: avoid PPC fault during resume (Larry Finger) [555084]
4960 - [stable] sparc: Set UTS_MACHINE correctly. (David S. Miller) [555084]
4961 - [stable] sparc64: Fix stack debugging IRQ stack regression. (David S. Miller) [555084]
4962 - [stable] sparc64: Fix overly strict range type matching for PCI devices. (David S. Miller) [555084]
4963 - [stable] sparc64: Don't specify IRQF_SHARED for LDC interrupts. (David S. Miller) [555084]
4964 - [stable] b44 WOL setup: one-bit-off stack corruption kernel panic fix (Stanislav Brabec) [555084]
4965 - [stable] ip_fragment: also adjust skb->truesize for packets not owned by a socket (Patrick McHardy) [555084]
4966 - [stable] tcp: Stalling connections: Fix timeout calculation routine (Damian Lukowski) [555084]
4967 - [stable] slc90e66: fix UDMA handling (Bartlomiej Zolnierkiewicz) [555084]
4968 - [stable] xen: try harder to balloon up under memory pressure. (Ian Campbell) [555084]
4969 - [stable] Xen balloon: fix totalram_pages counting. (Gianluca Guida) [555084]
4970 - [stable] xen: explicitly create/destroy stop_machine workqueues outside suspend/resume region. (Ian Campbell) [555084]
4971 - [stable] xen: use iret for return from 64b kernel to 32b usermode (Jeremy Fitzhardinge) [555084]
4972 - [stable] xen: don't leak IRQs over suspend/resume. (Ian Campbell) [555084]
4973 - [stable] xen: improve error handling in do_suspend. (Ian Campbell) [555084]
4974 - [stable] xen: call clock resume notifier on all CPUs (Ian Campbell) [555084]
4975 - [stable] xen: register runstate info for boot CPU early (Jeremy Fitzhardinge) [555084]
4976 - [stable] xen: don't call dpm_resume_noirq() with interrupts disabled. (Jeremy Fitzhardinge) [555084]
4977 - [stable] xen: register runstate on secondary CPUs (Ian Campbell) [555084]
4978 - [stable] xen: register timer interrupt with IRQF_TIMER (Ian Campbell) [555084]
4979 - [stable] xen: correctly restore pfn_to_mfn_list_list after resume (Ian Campbell) [555084]
4980 - [stable] xen: restore runstate_info even if !have_vcpu_info_placement (Jeremy Fitzhardinge) [555084]
4981 - [stable] xen: re-register runstate area earlier on resume. (Ian Campbell) [555084]
4982 - [stable] xen/xenbus: make DEVICE_ATTR()s static (Jeremy Fitzhardinge) [555084]
4983 - [stable] drm/i915: Add the missing clonemask for display port on Ironlake (Zhao Yakui) [555084]
4984 - [stable] drm/i915: Set the error code after failing to insert new offset into mm ht. (Chris Wilson) [555084]
4985 - [stable] drm/ttm: Fix build failure due to missing struct page (Martin Michlmayr) [555084]
4986 - [stable] drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size (Alex Deucher) [555084]
4987 - [stable] drm/radeon/kms: fix vram setup on rs600 (Alex Deucher) [555084]
4988 - [stable] drm/radeon/kms: fix legacy crtc2 dpms (Alex Deucher) [555084]
4989 - [stable] drm/radeon/kms: handle vblanks properly with dpms on (Alex Deucher) [555084]
4990 - [stable] drm/radeon/kms: Add quirk for HIS X1300 board (Alex Deucher) [555084]
4991 - [stable] powerpc: Fix usage of 64-bit instruction in 32-bit altivec code (Benjamin Herrenschmidt) [555084]
4992 - [stable] powerpc/therm_adt746x: Record pwm invert bit at module load time] (Darrick J. Wong) [555084]
4993 - [stable] powerpc/windfarm: Add detection for second cpu pump (Bolko Maass) [555084]
4994 - [stable] mm: hugetlb: fix hugepage memory leak in walk_page_range() (Naoya Horiguchi) [555084]
4995 - [stable] mm: hugetlb: fix hugepage memory leak in mincore() (Naoya Horiguchi) [555084]
4996 - [stable] x86: Fix bogus warning in apic_noop.apic_write() (Thomas Gleixner) [555084]
4997 - [stable] rtl8187: Fix wrong rfkill switch mask for some models (Larry Finger) [555084]
4998 - [stable] wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC (John W. Linville) [555084]
4999 - [stable] mac80211: fix scan abort sanity checks (Johannes Berg) [555084]
5000 - [stable] mac80211: Revert 'Use correct sign for mesh active path refresh' (Javier Cardona) [555084]
5001 - [stable] mac80211: Fixed bug in mesh portal paths (Javier Cardona) [555084]
5002 - [stable] mac80211: Fix bug in computing crc over dynamic IEs in beacon (Vasanthakumar Thiagarajan) [555084]
5003 - [stable] Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN (Ian Jackson) [555084]
5004 - [stable] Driver core: fix race in dev_driver_string (Alan Stern) [555084]
5005 - [stable] debugfs: fix create mutex racy fops and private data (Mathieu Desnoyers) [555084]
5006 - [stable] devpts_get_tty() should validate inode (Sukadev Bhattiprolu) [555084]
5007 - [stable] futex: Take mmap_sem for get_user_pages in fault_in_user_writeable (Andi Kleen) [555084]
5008 - [stable] md/bitmap: protect against bitmap removal while being updated. (NeilBrown) [555084]
5009 - [stable] hfs: fix a potential buffer overflow (Amerigo Wang) [555084]
5010 - [stable] pxa/em-x270: fix usb hub power up/reset sequence (Igor Grinberg) [555084]
5011 - [stable] USB: Close usb_find_interface race v3 (Russ Dill) [555084]
5012 - [stable] USB: usb-storage: add BAD_SENSE flag (Alan Stern) [555084]
5013 - [stable] USB: usbtmc: repeat usb_bulk_msg until whole message is transfered (Andre Herms) [555084]
5014 - [stable] USB: option.c: add support for D-Link DWM-162-U5 (Zhang Le) [555084]
5015 - [stable] USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again (Sergei Shtylyov) [555084]
5016 - [stable] USB: xhci: Add correct email and files to MAINTAINERS entry. (Sarah Sharp) [555084]
5017 - [stable] jbd2: don't wipe the journal on a failed journal checksum (Theodore Ts'o) [555084]
5018 - [stable] UBI: flush wl before clearing update marker (Sebastian Andrzej Siewior) [555084]
5019 - [stable] bsdacct: fix uid/gid misreporting (Alexey Dobriyan) [555084]
5020 - [stable] V4L/DVB: Fix test in copy_reg_bits() (Roel Kluin) [555084]
5021 - [stable] pata_hpt{37x|3x2n}: fix timing register masks (take 2) (Sergei Shtylyov) [555084]
5022 - [stable] x86: Fix typo in Intel CPU cache size descriptor (Dave Jones) [555084]
5023 - [stable] x86: Add new Intel CPU cache size descriptors (Dave Jones) [555084]
5024 - [stable] x86: Fix duplicated UV BAU interrupt vector (Cliff Wickman) [555084]
5025 - [stable] x86/mce: Set up timer unconditionally (Jan Beulich) [555084]
5026 - [stable] x86, mce: don't restart timer if disabled (Hidetoshi Seto) [555084]
5027 - [stable] x86: Use -maccumulate-outgoing-args for sane mcount prologues (Thomas Gleixner) [555084]
5028 - [stable] x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage (Thomas Gleixner) [555084]
5029 - [stable] KVM: x86: include pvclock MSRs in msrs_to_save (Glauber Costa) [555084]
5030 - [stable] KVM: fix irq_source_id size verification (Marcelo Tosatti) [555084]
5031 - [stable] KVM: s390: Make psw available on all exits, not just a subset (Carsten Otte) [555084]
5032 - [stable] KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c (Carsten Otte) [555084]
5033 - [stable] KVM: x86 emulator: limit instructions to 15 bytes (Avi Kivity) [555084]
5034 - [stable] ALSA: hrtimer - Fix lock-up (Takashi Iwai) [555084]
5035 - [stable] hrtimer: Fix /proc/timer_list regression (Feng Tang) [555084]
5036 - [stable] ath5k: enable EEPROM checksum check (Luis R. Rodriguez) [555084]
5037 - [stable] ath5k: allow setting txpower to 0 (Bob Copeland) [555084]
5038 - [stable] ssb: Fix range check in sprom write (Michael Buesch) [555084]
5039 - [stable] x86, apic: Enable lapic nmi watchdog on AMD Family 11h (Mikael Pettersson) [555084]
5040 - [stable] x86: ASUS P4S800 reboot=bios quirk (Leann Ogasawara) [555084]
5041 - [stable] x86: GART: pci-gart_64.c: Use correct length in strncmp (Joe Perches) [555084]
5042 - [stable] x86: Fix iommu=nodac parameter handling (Tejun Heo) [555084]
5043 - [stable] x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking up the PCI tree (Darrick J. Wong) [555084]
5044 - [stable] x86/amd-iommu: un__init iommu_setup_msi (Joerg Roedel) [555084]
5045 - [stable] x86/amd-iommu: attach devices to pre-allocated domains early (Joerg Roedel) [555084]
5046 - [stable] sched: Fix and clean up rate-limit newidle code (Mike Galbraith) [555084]
5047 - [stable] sched: Rate-limit newidle (Mike Galbraith) [555084]
5048 - [stable] sched: Fix affinity logic in select_task_rq_fair() (Mike Galbraith) [555084]
5049 - [stable] sched: Check for an idle shared cache in select_task_rq_fair() (Mike Galbraith) [555084]
5050 - [stable] PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() (Rafael J. Wysocki) [555084]
5051 - [stable] perf_event: Initialize data.period in perf_swevent_hrtimer() (Xiao Guangrong) [555084]
5052 - [stable] perf_event: Fix invalid type in ioctl definition (Arjan van de Ven) [555084]
5053 - [stable] rcu: Remove inline from forward-referenced functions (Paul E. McKenney) [555084]
5054 - [stable] rcu: Fix note_new_gpnum() uses of ->gpnum (Paul E. McKenney) [555084]
5055 - [stable] rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed counter (Paul E. McKenney) [555084]
5056 - [stable] rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling of ->completed counter (Paul E. McKenney) [555084]
5057 - [stable] firewire: ohci: handle receive packets with a data length of zero (Jay Fenlason) [555084]
5058 - [stable] USB: option: add pid for ZTE (zhao.ming9@zte.com.cn) [555084]
5059 - [stable] USB: usb-storage: fix bug in fill_inquiry (Alan Stern) [555084]
5060 - [stable] ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) (Theodore Ts'o) [555084]
5061 - [stable] ext4: Wait for proper transaction commit on fsync (Jan Kara) [555084]
5062 - [stable] ext4: fix incorrect block reservation on quota transfer. (Dmitry Monakhov) [555084]
5063 - [stable] ext4: quota macros cleanup (Dmitry Monakhov) [555084]
5064 - [stable] ext4: ext4_get_reserved_space() must return bytes instead of blocks (Dmitry Monakhov) [555084]
5065 - [stable] ext4: remove blocks from inode prealloc list on failure (Curt Wohlgemuth) [555084]
5066 - [stable] ext4: Avoid data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
5067 - [stable] ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks() (Roel Kluin) [555084]
5068 - [stable] jbd2: Add ENOMEM checking in and for jbd2_journal_write_metadata_buffer() (Theodore Ts'o) [555084]
5069 - [stable] ext4: move_extent_per_page() cleanup (Akira Fujita) [555084]
5070 - [stable] ext4: initialize moved_len before calling ext4_move_extents() (Kazuya Mio) [555084]
5071 - [stable] ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5072 - [stable] ext4: make "norecovery" an alias for "noload" (Eric Sandeen) [555084]
5073 - [stable] ext4: fix error handling in ext4_ind_get_blocks() (Jan Kara) [555084]
5074 - [stable] ext4: avoid issuing unnecessary barriers (Theodore Ts'o) [555084]
5075 - [stable] ext4: fix block validity checks so they work correctly with meta_bg (Theodore Ts'o) [555084]
5076 - [stable] ext4: fix uninit block bitmap initialization when s_meta_first_bg is non-zero (Theodore Ts'o) [555084]
5077 - [stable] ext4: don't update the superblock in ext4_statfs() (Theodore Ts'o) [555084]
5078 - [stable] ext4: journal all modifications in ext4_xattr_set_handle (Eric Sandeen) [555084]
5079 - [stable] ext4: fix i_flags access in ext4_da_writepages_trans_blocks() (Julia Lawall) [555084]
5080 - [stable] ext4: make sure directory and symlink blocks are revoked (Theodore Ts'o) [555084]
5081 - [stable] ext4: plug a buffer_head leak in an error path of ext4_iget() (Theodore Ts'o) [555084]
5082 - [stable] ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5083 - [stable] ext4: fix lock order problem in ext4_move_extents() (Akira Fujita) [555084]
5084 - [stable] ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails (Akira Fujita) [555084]
5085 - [stable] ext4: avoid divide by zero when trying to mount a corrupted file system (Theodore Ts'o) [555084]
5086 - [stable] ext4: fix potential buffer head leak when add_dirent_to_buf() returns ENOSPC (Theodore Ts'o) [555084]
5087 - [stable] SCSI: megaraid_sas: fix 64 bit sense pointer truncation (Yang, Bo) [555084]
5088 - [stable] SCSI: osd_protocol.h: Add missing #include (Martin Michlmayr) [555084]
5089 - [stable] signal: Fix alternate signal stack check (Sebastian Andrzej Siewior) [555084]
5090
5091 * Sat Jan 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-5.el6]
5092 - [scsi] cciss: fix spinlock use (Tomas Henzl) [552910]
5093 - [scsi] cciss,hpsa: reassign controllers (Tomas Henzl) [552192]
5094 - [modsign] Don't attempt to sign a module if there are no key files (David Howells) [543529]
5095 - [x86] Compile mce-inject module (Prarit Bhargava) [553323]
5096 - [nfs] fix insecure export option (Steve Dickson) [437715]
5097 - [nfs] NFS update to 2.6.33 part 3 (Steve Dickson) [437715]
5098 - [nfs] NFS update to 2.6.33 part 2 (Steve Dickson) [437715]
5099 - [nfs] NFS update to 2.6.33 part 1 (Steve Dickson) [437715]
5100 - [s390] cio: deactivated devices can cause use after free panic (Hendrik Brueckner) [548490]
5101 - [s390] cio: memory leaks when checking unusable devices (Hendrik Brueckner) [548490]
5102 - [s390] cio: DASD steal lock task hangs (Hendrik Brueckner) [548490]
5103 - [s390] cio: DASD cannot be set online (Hendrik Brueckner) [548490]
5104 - [s390] cio: erratic DASD I/O behavior (Hendrik Brueckner) [548490]
5105 - [s390] cio: not operational devices cannot be deactivated (Hendrik Brueckner) [548490]
5106 - [s390] cio: initialization of I/O devices fails (Hendrik Brueckner) [548490]
5107 - [s390] cio: kernel panic after unexpected interrupt (Hendrik Brueckner) [548490]
5108 - [s390] cio: incorrect device state after device recognition and recovery (Hendrik Brueckner) [548490]
5109 - [s390] cio: setting a device online or offline fails for unknown reasons (Hendrik Brueckner) [548490]
5110 - [s390] cio: device recovery fails after concurrent hardware changes (Hendrik Brueckner) [548490]
5111 - [s390] cio: device recovery stalls after multiple hardware events (Hendrik Brueckner) [548490]
5112 - [s390] cio: double free under memory pressure (Hendrik Brueckner) [548490]
5113 - [sunrpc] Don't display zero scope IDs (Jeff Layton) [463530]
5114 - [sunrpc] Deprecate support for site-local addresses (Jeff Layton) [463530]
5115 - [input] dell-laptop: Update rfkill state on switch change (Matthew Garrett) [547892]
5116 - [input] Add support for adding i8042 filters (Matthew Garrett) [547892]
5117 - [vfs] force reval of target when following LAST_BIND symlinks (Jeff Layton) [548153]
5118 - [scsi] scsi_dh_rdac: add two IBM devices to rdac_dev_list (Rob Evers) [528576]
5119 - [fs] ext4: flush delalloc blocks when space is low (Eric Sandeen) [526758]
5120 - [fs] fs-writeback: Add helper function to start writeback if idle (Eric Sandeen) [526758]
5121 - [fat] make discard a mount option (Jeff Moyer) [552355]
5122 - [ext4] make trim/discard optional (and off by default) (Jeff Moyer) [552355]
5123 - [fusion] bump version to 3.04.13 (Tomas Henzl) [548408]
5124 - [fusion] fix for incorrect data underrun (Tomas Henzl) [548408]
5125 - [fusion] remove unnecessary printk (Tomas Henzl) [548408]
5126 - [cifs] NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS referrals (Jeff Layton) [545984]
5127 - [fs] ext4: wait for log to commit when unmounting (Josef Bacik) [524267]
5128 - [mm] hwpoison: backport the latest patches from linux-2.6.33 (Dean Nelson) [547705]
5129 - [netdrv] bnx2i: update to 2.1.0 (Stanislaw Gruszka) [463268]
5130 - [netdrv] cnic: fixes for RHEL6 (Stanislaw Gruszka) [463268]
5131 - [gfs2] Fix potential race in glock code (Steven Whitehouse) [546279]
5132 - [scsi] make driver PCI legacy I/O port free (Tomas Henzl) [549118]
5133 - [scsi] eliminate double free (Tomas Henzl) [549351]
5134 - [dlm] always use GFP_NOFS (David Teigland) [545904]
5135 - [block] Fix topology stacking for data and discard alignment (Mike Snitzer) [549766]
5136 - [scsi] scsi_dh: Make alua hardware handler s activate async (Rob Evers) [537257]
5137 - [scsi] scsi_dh: Make hp hardware handler s activate async (Rob Evers) [537257]
5138 - [scsi] scsi_dh: Make rdac hardware handler s activate async (Rob Evers) [537257]
5139 - [scsi] scsi_dh: Change the scsidh_activate interface to be asynchronous (Rob Evers) [537257]
5140 - [netdrv] update tg3 to version 3.105 (John Feeney) [465194]
5141 - [netdrv] bnx2x: update to 1.52.1-5 (Stanislaw Gruszka) [464427]
5142 - [netdrv] ixgbe: add support for 82599-KR and update to latest upstream (Andy Gospodarek) [462781]
5143 - [block] cfq-iosched: Remove prio_change logic for workload selection (Jeff Moyer) [548796]
5144 - [block] cfq-iosched: Get rid of nr_groups (Jeff Moyer) [548796]
5145 - [block] cfq-iosched: Remove the check for same cfq group from allow_merge (Jeff Moyer) [548796]
5146 - [block] cfq: set workload as expired if it doesn't have any slice left (Jeff Moyer) [548796]
5147 - [block] Fix a CFQ crash in "for-2.6.33" branch of block tree (Jeff Moyer) [548796]
5148 - [block] cfq: Remove wait_request flag when idle time is being deleted (Jeff Moyer) [548796]
5149 - [block] cfq-iosched: commenting non-obvious initialization (Jeff Moyer) [548796]
5150 - [block] cfq-iosched: Take care of corner cases of group losing share due to deletion (Jeff Moyer) [548796]
5151 - [block] cfq-iosched: Get rid of cfqq wait_busy_done flag (Jeff Moyer) [548796]
5152 - [block] cfq: Optimization for close cooperating queue searching (Jeff Moyer) [548796]
5153 - [block] cfq-iosched: reduce write depth only if sync was delayed (Jeff Moyer) [548796]
5154 - [x86] ucode-amd: Load ucode-patches once and not separately of each CPU (George Beshers) [548840]
5155 - [x86] Remove enabling x2apic message for every CPU (George Beshers) [548840]
5156 - [x86] Limit number of per cpu TSC sync messages (George Beshers) [548840]
5157 - [sched] Limit the number of scheduler debug messages (George Beshers) [548840]
5158 - [init] Limit the number of per cpu calibration bootup messages (George Beshers) [548840]
5159 - [x86] Limit the number of processor bootup messages (George Beshers) [548840]
5160 - [x86] cpu: mv display_cacheinfo -> cpu_detect_cache_sizes (George Beshers) [548840]
5161 - [x86] Remove CPU cache size output for non-Intel too (George Beshers) [548840]
5162 - [x86] Remove the CPU cache size printk's (George Beshers) [548840]
5163
5164 * Wed Dec 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-4.el6]
5165 - [kvm] VMX: Use shared msr infrastructure (Avi Kivity) [547777]
5166 - [kvm] x86 shared msr infrastructure (Avi Kivity) [547777]
5167 - [kvm] VMX: Move MSR_KERNEL_GS_BASE out of the vmx autoload msr area (Avi Kivity) [547777]
5168 - [kvm] core, x86: Add user return notifiers (Avi Kivity) [547777]
5169 - [quota] ext4: Support for 64-bit quota format (Jerome Marchand) [546311]
5170 - [quota] ext3: Support for vfsv1 quota format (Jerome Marchand) [546311]
5171 - [quota] Implement quota format with 64-bit space and inode limits (Jerome Marchand) [546311]
5172 - [quota] Move definition of QFMT_OCFS2 to linux/quota.h (Jerome Marchand) [546311]
5173 - [scsi] cciss: remove pci-ids (Tomas Henzl) [464649]
5174 - [scsi] hpsa: new driver (Tomas Henzl) [464649]
5175 - [mm] Add file page writeback mm tracepoints. (Larry Woodman) [523093]
5176 - [mm] Add page reclaim mm tracepoints. (Larry Woodman) [523093]
5177 - [mm] Add file page mm tracepoints. (Larry Woodman) [523093]
5178 - [mm] Add anonynmous page mm tracepoints. (Larry Woodman) [523093]
5179 - [mm] Add mm tracepoint definitions to kmem.h (Larry Woodman) [523093]
5180 - [ksm] fix ksm.h breakage of nommu build (Izik Eidus) [548586]
5181 - [ksm] remove unswappable max_kernel_pages (Izik Eidus) [548586]
5182 - [ksm] memory hotremove migration only (Izik Eidus) [548586]
5183 - [ksm] rmap_walk to remove_migation_ptes (Izik Eidus) [548586]
5184 - [ksm] mem cgroup charge swapin copy (Izik Eidus) [548586]
5185 - [ksm] share anon page without allocating (Izik Eidus) [548586]
5186 - [ksm] take keyhole reference to page (Izik Eidus) [548586]
5187 - [ksm] hold anon_vma in rmap_item (Izik Eidus) [548586]
5188 - [ksm] let shared pages be swappable (Izik Eidus) [548586]
5189 - [ksm] fix mlockfreed to munlocked (Izik Eidus) [548586]
5190 - [ksm] stable_node point to page and back (Izik Eidus) [548586]
5191 - [ksm] separate stable_node (Izik Eidus) [548586]
5192 - [ksm] singly-linked rmap_list (Izik Eidus) [548586]
5193 - [ksm] cleanup some function arguments (Izik Eidus) [548586]
5194 - [ksm] remove redundancies when merging page (Izik Eidus) [548586]
5195 - [ksm] three remove_rmap_item_from_tree cleanups (Izik Eidus) [548586]
5196 - [mm] stop ptlock enlarging struct page (Izik Eidus) [548586]
5197 - [mm] vmscan: do not evict inactive pages when skipping an active list scan (Rik van Riel) [548457]
5198 - [mm] vmscan: make consistent of reclaim bale out between do_try_to_free_page and shrink_zone (Rik van Riel) [548457]
5199 - [mm] vmscan: kill sc.swap_cluster_max (Rik van Riel) [548457]
5200 - [mm] vmscan: zone_reclaim() dont use insane swap_cluster_max (Rik van Riel) [548457]
5201 - [mm] vmscan: kill hibernation specific reclaim logic and unify it (Rik van Riel) [548457]
5202 - [mm] vmscan: separate sc.swap_cluster_max and sc.nr_max_reclaim (Rik van Riel) [548457]
5203 - [mm] vmscan: stop kswapd waiting on congestion when the min watermark is not being met (Rik van Riel) [548457]
5204 - [mm] vmscan: have kswapd sleep for a short interval and double check it should be asleep (Rik van Riel) [548457]
5205 - [mm] pass address down to rmap ones (Rik van Riel) [548457]
5206 - [mm] CONFIG_MMU for PG_mlocked (Rik van Riel) [548457]
5207 - [mm] mlocking in try_to_unmap_one (Rik van Riel) [548457]
5208 - [mm] define PAGE_MAPPING_FLAGS (Rik van Riel) [548457]
5209 - [mm] swap_info: note SWAP_MAP_SHMEM (Rik van Riel) [548457]
5210 - [mm] swap_info: swap count continuations (Rik van Riel) [548457]
5211 - [mm] swap_info: swap_map of chars not shorts (Rik van Riel) [548457]
5212 - [mm] swap_info: SWAP_HAS_CACHE cleanups (Rik van Riel) [548457]
5213 - [mm] swap_info: miscellaneous minor cleanups (Rik van Riel) [548457]
5214 - [mm] swap_info: include first_swap_extent (Rik van Riel) [548457]
5215 - [mm] swap_info: change to array of pointers (Rik van Riel) [548457]
5216 - [mm] swap_info: private to swapfile.c (Rik van Riel) [548457]
5217 - [mm] move inc_zone_page_state(NR_ISOLATED) to just isolated place (Rik van Riel) [548457]
5218 - [xen] support MAXSMP (Andrew Jones) [547129]
5219 - [xen] wait up to 5 minutes for device connetion and fix fallout (Paolo Bonzini) [523630]
5220 - [uv] x86 SGI: Map low MMR ranges (George Beshers) [548181]
5221 - [uv] gru: function to generate chipset IPI values (George Beshers) [548181]
5222 - [uv] x86 RTC: Clean up error handling (George Beshers) [548181]
5223 - [uv] x86: RTC: Add clocksource only boot option (George Beshers) [548181]
5224 - [uv] x86: RTC: Fix early expiry handling (George Beshers) [548181]
5225 - [uv] x86: introduce uv_gpa_is_mmr (George Beshers) [548181]
5226 - [uv] x86: function to translate from gpa -> socket_paddr (George Beshers) [548181]
5227 - [uv] x86: SGI UV: Fix BAU initialization (George Beshers) [548181]
5228 - [s390] zfcp: Block SCSI EH thread for rport state BLOCKED (Hendrik Brueckner) [547413]
5229 - [scsi] scsi_transport_fc: Introduce helper function for blocking scsi_eh (Hendrik Brueckner) [547413]
5230 - [s390] zfcp: improve FSF error reporting (Hendrik Brueckner) [547386]
5231 - [s390] zfcp: fix ELS ADISC handling to prevent QDIO errors (Hendrik Brueckner) [547385]
5232 - [s390] zfcp: Assign scheduled work to driver queue (Hendrik Brueckner) [547377]
5233 - [s390] zfcp: Don't fail SCSI commands when transitioning to blocked fc_rport (Hendrik Brueckner) [547379]
5234 - [s390] ctcm: suspend has to wait for outstanding I/O (Hendrik Brueckner) [546633]
5235 - [s390] cmm: free pages on hibernate (Hendrik Brueckner) [546407]
5236 - [s390] iucv: add work_queue cleanup for suspend (Hendrik Brueckner) [546319]
5237 - [s390] dasd: let device initialization wait for LCU setup (Hendrik Brueckner) [547735]
5238 - [s390] dasd: remove strings from s390dbf (Hendrik Brueckner) [547735]
5239 - [s390] dasd: enable prefix independent of pav support (Hendrik Brueckner) [547735]
5240 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [525391]
5241 - [utrace] utrace core (Roland McGrath) [549491]
5242 - [utrace] implement utrace-ptrace (Roland McGrath) [549491]
5243 - [ptrace] reorder the code in kernel/ptrace.c (Roland McGrath) [549491]
5244 - [ptrace] export __ptrace_detach() and do_notify_parent_cldstop() (Roland McGrath) [549491]
5245 - [ptrace_signal] check PT_PTRACED before reporting a signal (Roland McGrath) [549491]
5246 - [tracehooks] check PT_PTRACED before reporting the single-step (Roland McGrath) [549491]
5247 - [tracehooks] kill some PT_PTRACED checks (Roland McGrath) [549491]
5248 - [signals] check ->group_stop_count after tracehook_get_signal() (Roland McGrath) [549491]
5249 - [ptrace] x86: change syscall_trace_leave() to rely on tracehook when stepping (Roland McGrath) [549491]
5250 - [ptrace] x86: implement user_single_step_siginfo() (Roland McGrath) [549491]
5251 - [ptrace] change tracehook_report_syscall_exit() to handle stepping (Roland McGrath) [549491]
5252 - [ptrace] powerpc: implement user_single_step_siginfo() (Roland McGrath) [549491]
5253 - [ptrace] introduce user_single_step_siginfo() helper (Roland McGrath) [549491]
5254 - [ptrace] copy_process() should disable stepping (Roland McGrath) [549491]
5255 - [ptrace] cleanup ptrace_init_task()->ptrace_link() path (Roland McGrath) [549491]
5256
5257 * Thu Dec 17 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-3.el6]
5258 - [modsign] Don't check e_entry in ELF header (David Howells) [548027]
5259 - [pci] pciehp: Provide an option to disable native PCIe hotplug (Matthew Garrett) [517050]
5260 - [s390] OSA QDIO data connection isolation (Hendrik Brueckner) [537496]
5261 - [s390] zcrypt: adjust speed rating of cex3 adapters (Hendrik Brueckner) [537495]
5262 - [s390] zcrypt: adjust speed rating between cex2 and pcixcc (Hendrik Brueckner) [537495]
5263 - [s390] zcrypt: use definitions for cex3 (Hendrik Brueckner) [537495]
5264 - [s390] zcrypt: add support for cex3 device types (Hendrik Brueckner) [537495]
5265 - [s390] zcrypt: special command support for cex3 exploitation (Hendrik Brueckner) [537495]
5266 - [s390] zcrypt: initialize ap_messages for cex3 exploitation (Hendrik Brueckner) [537495]
5267 - [s390] kernel: performance counter fix and page fault optimization (Hendrik Brueckner) [546396]
5268 - [s390] kernel: fix dump indicator (Hendrik Brueckner) [546285]
5269 - [s390] dasd: support DIAG access for read-only devices (Hendrik Brueckner) [546309]
5270 - [s390] zcrypt: Do not simultaneously schedule hrtimer (Hendrik Brueckner) [546291]
5271 - [s390] kernel: clear high-order bits after switching to 64-bit mode (Hendrik Brueckner) [546314]
5272 - [virt] vhost: add missing architectures (Michael S. Tsirkin) [540389]
5273 - [virt] vhost_net: a kernel-level virtio server (Michael S. Tsirkin) [540389]
5274 - [virt] mm: export use_mm/unuse_mm to modules (Michael S. Tsirkin) [540389]
5275 - [virt] tun: export underlying socket (Michael S. Tsirkin) [540389]
5276 - [dm] snapshot-merge support from 2.6.33 (Mike Snitzer) [547563]
5277 - [dm] snapshot changes from 2.6.33 (Mike Snitzer) [547563]
5278 - [dm] crypt changes from 2.6.33 (Mike Snitzer) [547563]
5279 - [dm] raid1 changes from 2.6.33 (Mike Snitzer) [547563]
5280 - [dm] core and mpath changes from 2.6.33 (Mike Snitzer) [547563]
5281 - [scsi] fix dma handling when using virtual hosts (Mike Christie) [525241]
5282 - [nfs] convert proto= option to use netids rather than a protoname (Jeff Layton) [545973]
5283
5284 * Fri Dec 11 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-2.el6]
5285 - [block] config: enable CONFIG_BLK_DEV_INTEGRITY (Jeff Moyer) [490732]
5286 - [block] config: enable CONFIG_BLK_CGROUP (Jeff Moyer) [425895]
5287 - [libata] Clarify ata_set_lba_range_entries function (Jeff Moyer) [528046]
5288 - [libata] Report zeroed read after Trim and max discard size (Jeff Moyer) [528046]
5289 - [scsi] Correctly handle thin provisioning write error (Jeff Moyer) [528046]
5290 - [scsi] sd: WRITE SAME(16) / UNMAP support (Jeff Moyer) [528046]
5291 - [scsi] scsi_debug: Thin provisioning support (Jeff Moyer) [528046]
5292 - [scsi] Add missing command definitions (Jeff Moyer) [528046]
5293 - [block] Add support for the ATA TRIM command in libata. (Jeff Moyer) [528046]
5294 - [block] dio: fix performance regression (Jeff Moyer) [545507]
5295 - [block] cfq-iosched: Do not access cfqq after freeing it (Jeff Moyer) [425895]
5296 - [block] include linux/err.h to use ERR_PTR (Jeff Moyer) [425895]
5297 - [block] cfq-iosched: use call_rcu() instead of doing grace period stall on queue exit (Jeff Moyer) [425895]
5298 - [block] blkio: Allow CFQ group IO scheduling even when CFQ is a module (Jeff Moyer) [425895]
5299 - [block] blkio: Implement dynamic io controlling policy registration (Jeff Moyer) [425895]
5300 - [block] blkio: Export some symbols from blkio as its user CFQ can be a module (Jeff Moyer) [425895]
5301 - [block] cfq-iosched: make nonrot check logic consistent (Jeff Moyer) [545225]
5302 - [block] io controller: quick fix for blk-cgroup and modular CFQ (Jeff Moyer) [425895]
5303 - [block] cfq-iosched: move IO controller declerations to a header file (Jeff Moyer) [425895]
5304 - [block] cfq-iosched: fix compile problem with !CONFIG_CGROUP (Jeff Moyer) [425895]
5305 - [block] blkio: Documentation (Jeff Moyer) [425895]
5306 - [block] blkio: Wait on sync-noidle queue even if rq_noidle = 1 (Jeff Moyer) [425895]
5307 - [block] blkio: Implement group_isolation tunable (Jeff Moyer) [425895]
5308 - [block] blkio: Determine async workload length based on total number of queues (Jeff Moyer) [425895]
5309 - [block] blkio: Wait for cfq queue to get backlogged if group is empty (Jeff Moyer) [425895]
5310 - [block] blkio: Propagate cgroup weight updation to cfq groups (Jeff Moyer) [425895]
5311 - [block] blkio: Drop the reference to queue once the task changes cgroup (Jeff Moyer) [425895]
5312 - [block] blkio: Provide some isolation between groups (Jeff Moyer) [425895]
5313 - [block] blkio: Export disk time and sectors used by a group to user space (Jeff Moyer) [425895]
5314 - [block] blkio: Some debugging aids for CFQ (Jeff Moyer) [425895]
5315 - [block] blkio: Take care of cgroup deletion and cfq group reference counting (Jeff Moyer) [425895]
5316 - [block] blkio: Dynamic cfq group creation based on cgroup tasks belongs to (Jeff Moyer) [425895]
5317 - [block] blkio: Group time used accounting and workload context save restore (Jeff Moyer) [425895]
5318 - [block] blkio: Implement per cfq group latency target and busy queue avg (Jeff Moyer) [425895]
5319 - [block] blkio: Introduce per cfq group weights and vdisktime calculations (Jeff Moyer) [425895]
5320 - [block] blkio: Introduce blkio controller cgroup interface (Jeff Moyer) [425895]
5321 - [block] blkio: Introduce the root service tree for cfq groups (Jeff Moyer) [425895]
5322 - [block] blkio: Keep queue on service tree until we expire it (Jeff Moyer) [425895]
5323 - [block] blkio: Implement macro to traverse each service tree in group (Jeff Moyer) [425895]
5324 - [block] blkio: Introduce the notion of cfq groups (Jeff Moyer) [425895]
5325 - [block] blkio: Set must_dispatch only if we decided to not dispatch the request (Jeff Moyer) [425895]
5326 - [block] cfq-iosched: no dispatch limit for single queue (Jeff Moyer) [425895]
5327 - [block] Allow devices to indicate whether discarded blocks are zeroed (Jeff Moyer) [545203]
5328 - [block] Revert "cfq: Make use of service count to estimate the rb_key offset" (Jeff Moyer) [425895]
5329 - [block] cfq-iosched: fix corner cases in idling logic (Jeff Moyer) [425895]
5330 - [block] cfq-iosched: idling on deep seeky sync queues (Jeff Moyer) [425895]
5331 - [block] cfq-iosched: fix no-idle preemption logic (Jeff Moyer) [425895]
5332 - [block] cfq-iosched: fix ncq detection code (Jeff Moyer) [425895]
5333 - [block] cfq-iosched: cleanup unreachable code (Jeff Moyer) [425895]
5334 - [block] cfq: Make use of service count to estimate the rb_key offset (Jeff Moyer) [425895]
5335 - [block] partitions: read whole sector with EFI GPT header (Jeff Moyer) [463632]
5336 - [block] partitions: use sector size for EFI GPT (Jeff Moyer) [463632]
5337 - [block] Expose discard granularity (Jeff Moyer) [545203]
5338 - [block] cfq-iosched: fix next_rq computation (Jeff Moyer) [425895]
5339 - [block] cfq-iosched: simplify prio-unboost code (Jeff Moyer) [425895]
5340 - [block] blkdev: flush disk cache on ->fsync (Jeff Moyer) [545199]
5341 - [block] cfq-iosched: fix style issue in cfq_get_avg_queues() (Jeff Moyer) [425895]
5342 - [block] cfq-iosched: fairness for sync no-idle queues (Jeff Moyer) [425895]
5343 - [block] cfq-iosched: enable idling for last queue on priority class (Jeff Moyer) [425895]
5344 - [block] cfq-iosched: reimplement priorities using different service trees (Jeff Moyer) [425895]
5345 - [block] cfq-iosched: preparation to handle multiple service trees (Jeff Moyer) [425895]
5346 - [block] cfq-iosched: adapt slice to number of processes doing I/O (Jeff Moyer) [425895]
5347 - [block] cfq-iosched: improve hw_tag detection (Jeff Moyer) [425895]
5348 - [block] cfq: break apart merged cfqqs if they stop cooperating (Jeff Moyer) [533932]
5349 - [block] cfq: change the meaning of the cfqq_coop flag (Jeff Moyer) [533932]
5350 - [block] cfq: merge cooperating cfq_queues (Jeff Moyer) [533932]
5351 - [block] cfq: calculate the seek_mean per cfq_queue not per cfq_io_context (Jeff Moyer) [533932]
5352 - [block] CFQ is more than a desktop scheduler (Jeff Moyer) [533932]
5353 - [block] revert: cfq-iosched: limit coop preemption (Jeff Moyer) [533932]
5354 - perf: Don't free perf_mmap_data until work has been done (Aristeu Rozanski) [547432]
5355 - ext4: Fix insuficient checks in EXT4_IOC_MOVE_EXT (Aristeu Rozanski) [547432]
5356 - agp: clear GTT on intel (Aristeu Rozanski) [547432]
5357 - drm/i915: Fix sync to vblank when VGA output is turned off (Aristeu Rozanski) [547432]
5358 - drm: nouveau fixes (Aristeu Rozanski) [547432]
5359 - drm: radeon dp support (Aristeu Rozanski) [547432]
5360 - drm: radeon fixes (Aristeu Rozanski) [547432]
5361 - KVM: allow userspace to adjust kvmclock offset (Aristeu Rozanski) [547432]
5362 - ath9k backports (Aristeu Rozanski) [547432]
5363 - intel-iommu backport (Aristeu Rozanski) [547432]
5364 - updating patch linux-2.6-nfsd4-proots.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5365 - updating linux-2.6-execshield.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5366
5367 * Tue Dec 08 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-1.el6]
5368 - [rebase] Rebased to 2.6.32
5369
5370 * Mon Dec 07 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.54.el6]
5371 - [edac] amd64_edac: disabling temporarily (Aristeu Rozanski)
5372 - [x86] Enable CONFIG_SPARSE_IRQ (Prarit Bhargava) [543174]
5373 - [x86] panic if AMD cpu_khz is wrong (Prarit Bhargava) [523468]
5374 - [infiniband] Rewrite SG handling for RDMA logic (Mike Christie) [540269]
5375
5376 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.53.el6]
5377 - [net] Add acession counts to all datagram protocols (Neil Horman) [445366]
5378 - [modsign] Enable module signing in the RHEL RPM (David Howells) [517341]
5379 - [modsign] Don't include .note.gnu.build-id in the digest (David Howells) [517341]
5380 - [modsign] Apply signature checking to modules on module load (David Howells) [517341]
5381 - [modsign] Module signature checker and key manager (David Howells) [517341]
5382 - [modsign] Module ELF verifier (David Howells) [517341]
5383 - [modsign] Add indications of module ELF types (David Howells) [517341]
5384 - [modsign] Multiprecision maths library (David Howells) [517341]
5385 - [procfs] add ability to modify proc file limits from outside a processes own context (Neil Horman) [461946]
5386 - [s390x] fix build failure with CONFIG_FTRACE_SYSCALLS (Aristeu Rozanski) [538978]
5387
5388 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.52.el6]
5389 - [x86] AMD Northbridge: Verify NB's node is online (Prarit Bhargava) [536769]
5390 - [scsi] devinfo update for Hitachi entries (Takahiro Yasui) [526763]
5391 - [net] export device speed and duplex via sysfs (Andy Gospodarek) [453432]
5392 - [ppc64] Fix kcrctab_ sections to undo undesireable relocations that break kdump (Neil Horman) [509012]
5393 - [mm] Limit 32-bit x86 systems to 16GB and prevent panic on boot when system has more than ~30GB (Larry Woodman) [532039]
5394
5395 * Mon Nov 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.51.el6]
5396 - [kernel] Set panic_on_oops to 1 (Prarit Bhargava) [529963]
5397 - [kdump] kexec: allow to shrink reserved memory (Amerigo Wang) [523091]
5398 - [kdump] doc: update the kdump document (Amerigo Wang) [523091]
5399 - [kdump] powerpc: implement crashkernel=auto (Amerigo Wang) [523091]
5400 - [kdump] powerpc: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5401 - [kdump] ia64: implement crashkernel=auto (Amerigo Wang) [523091]
5402 - [kdump] ia64: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5403 - [kdump] x86: implement crashkernel=auto (Amerigo Wang) [523091]
5404 - [kdump] x86: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5405 - [block] aio: implement request batching (Jeff Moyer) [533931]
5406 - [block] get rid of the WRITE_ODIRECT flag (Jeff Moyer) [533931]
5407
5408 * Sat Nov 21 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.50.el6]
5409 - [crypto] padlock-aes: Use the correct mask when checking whether copying is required (Chuck Ebbert)
5410 - [rfkill] add support to a key to control all radios (Aristeu Rozanski)
5411 - [acpi] be less verbose about old BIOSes (Aristeu Rozanski)
5412 - [drm] intel big hammer (Aristeu Rozanski)
5413 - [e1000] add quirk for ich9 (Aristeu Rozanski)
5414 - [pci] cacheline sizing (Dave Jones)
5415 - [crash] add crash driver (Dave Anderson)
5416 - [fb] disable fbcon logo with parameter (Aristeu Rozanski)
5417 - [pci] silence some PCI resource allocation errors (Aristeu Rozanski)
5418 - [serio] disable error messages when i8042 isn't found (Peter Jones)
5419 - [serial] Enable higher baud rates for 16C95x (Aristeu Rozanski)
5420 - [input] remove pcspkr modalias (Aristeu Rozanski)
5421 - [floppy] remove the floppy pnp modalias (Aristeu Rozanski)
5422 - [input] remove unwanted messages on spurious events (Aristeu Rozanski)
5423 - [sound] hda intel prealloc 4mb dmabuffer (Aristeu Rozanski)
5424 - [sound] disables hda beep by default (Aristeu Rozanski)
5425 - [pci] sets PCIE ASPM default policy to POWERSAVE (Aristeu Rozanski)
5426 - [pci] add config option to control the default state of PCI MSI interrupts (Aristeu Rozanski)
5427 - [debug] always inline kzalloc (Aristeu Rozanski)
5428 - [debug] add would_have_oomkilled procfs ctl (Aristeu Rozanski)
5429 - [debug] add calls to print_tainted() on spinlock functions (Aristeu Rozanski)
5430 - [debug] display tainted information on other places (Aristeu Rozanski)
5431 - [x86] add option to control the NMI watchdog timeout (Aristeu Rozanski)
5432 - [debug] print common struct sizes at boot time (Aristeu Rozanski)
5433 - [acpi] Disable firmware video brightness change by default (Matthew Garrett)
5434 - [acpi] Disable brightness switch by default (Aristeu Rozanski)
5435 - [usb] enable autosuspend on UVC by default (Matthew Garrett)
5436 - [usb] enable autosuspend by default on qcserial (Matthew Garrett)
5437 - [usb] Allow drivers to enable USB autosuspend on a per-device basis (Matthew Garrett)
5438 - [nfs] make nfs4 callback hidden (Steve Dickson)
5439 - [nfsd4] proots (Aristeu Rozanski)
5440 - [execshield] introduce execshield (Aristeu Rozanski)
5441 - [powerpc] add modalias_show operation (Aristeu Rozanski)
5442 - [hwmon] add VIA hwmon temperature sensor support (Aristeu Rozanski)
5443 - [utrace] introduce utrace implementation (Aristeu Rozanski)
5444 - [build] introduce AFTER_LINK variable (Aristeu Rozanski)
5445
5446
5447 ###
5448 # The following Emacs magic makes C-c C-e use UTC dates.
5449 # Local Variables:
5450 # rpm-change-log-uses-utc: t
5451 # End:
5452 ###