a9ce616e64cdbb1bfc1d848eefe6909239b22522
[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 Patch90522: linux-2.6-522-iptables-connection-tagging.patch
1859 Patch90523: linux-2.6-523-raw-sockets.patch
1860 Patch90524: linux-2.6-524-peercred.patch
1861 Patch90525: linux-2.6-525-sknid-elevator.patch
1862 Patch90527:  linux-2.6-527-iptables-classify-add-mark.patch
1863 Patch90530: linux-2.6-530-built-by-support.patch
1864 # /proc/sys/vm/panic_on_oom ?
1865 #Patch90540: linux-2.6-540-oom-kill.patch
1866 Patch90550: linux-2.6-550-raise-default-nfile-ulimit.patch
1867 Patch90570:  linux-2.6-570-tagxid.patch
1868 Patch90580:  linux-2.6-580-show-proc-virt.patch
1869 Patch90590:  linux-2.6-590-dcookies-mm.patch
1870 Patch90591:  linux-2.6-591-chopstix-intern.patch
1871 Patch90640:  linux-2.6-640-netlink-audit-hack.patch
1872 Patch90650:  linux-2.6-650-hangcheck-reboot.patch
1873 Patch90660:  linux-2.6-660-nmi-watchdog-default.patch
1874 Patch90680:  linux-2.6-680-htb-hysteresis-tso.patch
1875
1876 # empty final patch file to facilitate testing of kernel patches
1877 Patch99999: linux-kernel-test.patch
1878
1879 BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
1880
1881 # Override find_provides to use a script that provides "kernel(symbol) = hash".
1882 # Pass path of the RPM temp dir containing kabideps to find-provides script.
1883 %global _use_internal_dependency_generator 0
1884 %define __find_provides %_sourcedir/find-provides %{_tmppath}
1885 %define __find_requires /usr/lib/rpm/redhat/find-requires kernel
1886
1887 %description
1888 The kernel package contains the Linux kernel (vmlinuz), the core of any
1889 Linux operating system.  The kernel handles the basic functions
1890 of the operating system: memory allocation, process allocation, device
1891 input and output, etc.
1892
1893
1894 %package doc
1895 Summary: Various documentation bits found in the kernel source
1896 Group: Documentation
1897 %description doc
1898 This package contains documentation files from the kernel
1899 source. Various bits of information about the Linux kernel and the
1900 device drivers shipped with it are documented in these files.
1901
1902 You'll want to install this package if you need a reference to the
1903 options that can be passed to Linux kernel modules at load time.
1904
1905
1906 %package headers
1907 Summary: Header files for the Linux kernel for use by glibc
1908 Group: Development/System
1909 Obsoletes: glibc-kernheaders
1910 Provides: glibc-kernheaders = 3.0-46
1911 %description headers
1912 Kernel-headers includes the C header files that specify the interface
1913 between the Linux kernel and userspace libraries and programs.  The
1914 header files define structures and constants that are needed for
1915 building most standard programs and are also needed for rebuilding the
1916 glibc package.
1917
1918 %package firmware
1919 Summary: Firmware files used by the Linux kernel
1920 Group: Development/System
1921 # This is... complicated.
1922 # Look at the WHENCE file.
1923 License: GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted
1924 %if "x%{?variant}" != "x"
1925 Provides: kernel-firmware = %{rpmversion}-%{pkg_release}
1926 %endif
1927 %description firmware
1928 Kernel-firmware includes firmware files required for some devices to
1929 operate.
1930
1931 %package bootwrapper
1932 Summary: Boot wrapper files for generating combined kernel + initrd images
1933 Group: Development/System
1934 Requires: gzip
1935 %description bootwrapper
1936 Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
1937 files combining both kernel and initial ramdisk.
1938
1939 %package debuginfo-common-%{_target_cpu}
1940 Summary: Kernel source files used by %{name}-debuginfo packages
1941 Group: Development/Debug
1942 %description debuginfo-common-%{_target_cpu}
1943 This package is required by %{name}-debuginfo subpackages.
1944 It provides the kernel source files common to all builds.
1945
1946 %package -n perf
1947 Summary: Performance monitoring for the Linux kernel
1948 Group: Development/System
1949 License: GPLv2
1950 %description -n perf
1951 This package provides the supporting documentation for the perf tool
1952 shipped in each kernel image subpackage.
1953
1954 #
1955 # This macro creates a kernel-<subpackage>-debuginfo package.
1956 #       %%kernel_debuginfo_package <subpackage>
1957 #
1958 %define kernel_debuginfo_package() \
1959 %package %{?1:%{1}-}debuginfo\
1960 Summary: Debug information for package %{name}%{?1:-%{1}}\
1961 Group: Development/Debug\
1962 Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
1963 Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
1964 AutoReqProv: no\
1965 %description -n %{name}%{?1:-%{1}}-debuginfo\
1966 This package provides debug information for package %{name}%{?1:-%{1}}.\
1967 This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\
1968 %{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVERREL}%{?1:\.%{1}}/.*|/.*%%{KVERREL}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
1969 %{nil}
1970
1971 #
1972 # This macro creates a kernel-<subpackage>-devel package.
1973 #       %%kernel_devel_package <subpackage> <pretty-name>
1974 #
1975 %define kernel_devel_package() \
1976 %package %{?1:%{1}-}devel\
1977 Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
1978 Group: System Environment/Kernel\
1979 Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
1980 Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
1981 Provides: kernel-devel = %{version}-%{release}%{?1:.%{1}}\
1982 Provides: kernel-devel-uname-r = %{KVERREL}%{?1:.%{1}}\
1983 AutoReqProv: no\
1984 Requires(pre): /usr/bin/find\
1985 %description -n kernel%{?variant}%{?1:-%{1}}-devel\
1986 This package provides kernel headers and makefiles sufficient to build modules\
1987 against the %{?2:%{2} }kernel package.\
1988 %{nil}
1989
1990 #
1991 # This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
1992 #       %%define variant_summary The Linux kernel compiled for <configuration>
1993 #       %%kernel_variant_package [-n <pretty-name>] <subpackage>
1994 #
1995 %define kernel_variant_package(n:) \
1996 %package %1\
1997 Summary: %{variant_summary}\
1998 Group: System Environment/Kernel\
1999 %kernel_reqprovconf\
2000 %{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
2001 %{expand:%%kernel_debuginfo_package %1}\
2002 %{nil}
2003
2004
2005 # First the auxiliary packages of the main kernel package.
2006 %kernel_devel_package
2007 %kernel_debuginfo_package
2008
2009
2010 # Now, each variant package.
2011
2012 %define variant_summary The Linux kernel compiled for SMP machines
2013 %kernel_variant_package -n SMP smp
2014 %description smp
2015 This package includes a SMP version of the Linux kernel. It is
2016 required only on machines with two or more CPUs as well as machines with
2017 hyperthreading technology.
2018
2019 Install the kernel-smp package if your machine uses two or more CPUs.
2020
2021
2022 %define variant_summary The Linux kernel compiled for PAE capable machines
2023 %kernel_variant_package PAE
2024 %description PAE
2025 This package includes a version of the Linux kernel with support for up to
2026 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
2027 The non-PAE kernel can only address up to 4GB of memory.
2028 Install the kernel-PAE package if your machine has more than 4GB of memory.
2029
2030
2031 %define variant_summary The Linux kernel compiled with extra debugging enabled for PAE capable machines
2032 %kernel_variant_package PAEdebug
2033 Obsoletes: kernel-PAE-debug
2034 %description PAEdebug
2035 This package includes a version of the Linux kernel with support for up to
2036 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
2037 The non-PAE kernel can only address up to 4GB of memory.
2038 Install the kernel-PAE package if your machine has more than 4GB of memory.
2039
2040 This variant of the kernel has numerous debugging options enabled.
2041 It should only be installed when trying to gather additional information
2042 on kernel bugs, as some of these options impact performance noticably.
2043
2044
2045 %define variant_summary The Linux kernel compiled with extra debugging enabled
2046 %kernel_variant_package debug
2047 %description debug
2048 The kernel package contains the Linux kernel (vmlinuz), the core of any
2049 Linux operating system.  The kernel handles the basic functions
2050 of the operating system:  memory allocation, process allocation, device
2051 input and output, etc.
2052
2053 This variant of the kernel has numerous debugging options enabled.
2054 It should only be installed when trying to gather additional information
2055 on kernel bugs, as some of these options impact performance noticably.
2056
2057
2058 %define variant_summary A minimal Linux kernel compiled for crash dumps
2059 %kernel_variant_package kdump
2060 %description kdump
2061 This package includes a kdump version of the Linux kernel. It is
2062 required only on machines which will use the kexec-based kernel crash dump
2063 mechanism.
2064
2065
2066 %define variant_summary The Linux kernel compiled with CONFIG_FRAME_POINTER
2067 %kernel_variant_package framepointer
2068 %description framepointer
2069 This is a TEMPORARY package with the CONFIG_FRAME_POINTER.
2070
2071
2072 %prep
2073 # do a few sanity-checks for --with *only builds
2074 %if %{with_baseonly}
2075 %if !%{with_up}%{with_pae}
2076 echo "Cannot build --with baseonly, up build is disabled"
2077 exit 1
2078 %endif
2079 %endif
2080
2081 %if %{with_smponly}
2082 %if !%{with_smp}
2083 echo "Cannot build --with smponly, smp build is disabled"
2084 exit 1
2085 %endif
2086 %endif
2087
2088 %if %{with_fuzzy_patches}
2089   patch_command='patch -p1 -s'
2090 %else
2091   patch_command='patch -p1 -F1 -s'
2092 %endif
2093
2094 ApplyPatch()
2095 {
2096   local patch=$1
2097   shift
2098   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
2099     exit 1
2100   fi
2101   # check if the patch is empty
2102   if [ -z "$(lsdiff $RPM_SOURCE_DIR/$patch)" ]; then
2103     echo "WARNING: empty patch";
2104     return;
2105   fi
2106   case "$patch" in
2107   *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
2108   *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
2109   *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
2110   esac
2111 }
2112
2113 # don't apply patch if it's empty
2114 ApplyOptionalPatch()
2115 {
2116   local patch=$1
2117   shift
2118   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
2119     exit 1
2120   fi
2121   local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
2122   if [ "$C" -gt 9 ]; then
2123     ApplyPatch $patch ${1+"$@"}
2124   fi
2125 }
2126
2127 # we don't want a .config file when building firmware: it just confuses the build system
2128 %define build_firmware \
2129    mv .config .config.firmware_save \
2130    make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install \
2131    mv .config.firmware_save .config
2132
2133 # First we unpack the kernel tarball.
2134 # If this isn't the first make prep, we use links to the existing clean tarball
2135 # which speeds things up quite a bit.
2136
2137 # Update to latest upstream.
2138 %if 0%{?released_kernel}
2139 %define vanillaversion 2.6.%{base_sublevel}
2140 # non-released_kernel case
2141 %else
2142 %if 0%{?rcrev}
2143 %define vanillaversion 2.6.%{upstream_sublevel}-rc%{rcrev}
2144 %if 0%{?gitrev}
2145 %define vanillaversion 2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}
2146 %endif
2147 %else
2148 # pre-{base_sublevel+1}-rc1 case
2149 %if 0%{?gitrev}
2150 %define vanillaversion 2.6.%{base_sublevel}-git%{gitrev}
2151 %else
2152 %define vanillaversion 2.6.%{base_sublevel}
2153 %endif
2154 %endif
2155 %endif
2156
2157 # We can share hardlinked source trees by putting a list of
2158 # directory names of the CVS checkouts that we want to share
2159 # with in .shared-srctree. (Full pathnames are required.)
2160 [ -f .shared-srctree ] && sharedirs=$(cat .shared-srctree)
2161
2162 if [ ! -d kernel-%{kversion}/vanilla-%{vanillaversion} ]; then
2163
2164   if [ -d kernel-%{kversion}/vanilla-%{kversion} ]; then
2165
2166     cd kernel-%{kversion}
2167
2168     # Any vanilla-* directories other than the base one are stale.
2169     for dir in vanilla-*; do
2170       [ "$dir" = vanilla-%{kversion} ] || rm -rf $dir &
2171     done
2172
2173   else
2174
2175     # Ok, first time we do a make prep.
2176     rm -f pax_global_header
2177     for sharedir in $sharedirs ; do
2178       if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{kversion} ]] ; then
2179         break
2180       fi
2181     done
2182     if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{kversion} ]] ; then
2183 %setup -q -n kernel-%{kversion} -c -T
2184       cp -rl $sharedir/kernel-%{kversion}/vanilla-%{kversion} .
2185     else
2186 %setup -q -n kernel-%{kversion} -c
2187       mv linux-%{kversion} vanilla-%{kversion}
2188     fi
2189
2190   fi
2191
2192 %if "%{kversion}" != "%{vanillaversion}"
2193
2194   for sharedir in $sharedirs ; do
2195     if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} ]] ; then
2196       break
2197     fi
2198   done
2199   if [[ ! -z $sharedir  &&  -d $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} ]] ; then
2200
2201     cp -rl $sharedir/kernel-%{kversion}/vanilla-%{vanillaversion} .
2202
2203   else
2204
2205     cp -rl vanilla-%{kversion} vanilla-%{vanillaversion}
2206     cd vanilla-%{vanillaversion}
2207
2208 # Update vanilla to the latest upstream.
2209 # (non-released_kernel case only)
2210 %if 0%{?rcrev}
2211     ApplyPatch patch-2.6.%{upstream_sublevel}-rc%{rcrev}.bz2
2212 %if 0%{?gitrev}
2213     ApplyPatch patch-2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.bz2
2214 %endif
2215 %else
2216 # pre-{base_sublevel+1}-rc1 case
2217 %if 0%{?gitrev}
2218     ApplyPatch patch-2.6.%{base_sublevel}-git%{gitrev}.bz2
2219 %endif
2220 %endif
2221
2222     cd ..
2223
2224   fi
2225
2226 %endif
2227
2228 else
2229   # We already have a vanilla dir.
2230   cd kernel-%{kversion}
2231 fi
2232
2233 if [ -d linux-%{kversion}.%{_target_cpu} ]; then
2234   # Just in case we ctrl-c'd a prep already
2235   rm -rf deleteme.%{_target_cpu}
2236   # Move away the stale away, and delete in background.
2237   mv linux-%{kversion}.%{_target_cpu} deleteme.%{_target_cpu}
2238   rm -rf deleteme.%{_target_cpu} &
2239 fi
2240
2241 cp -rl vanilla-%{vanillaversion} linux-%{kversion}.%{_target_cpu}
2242
2243 cd linux-%{kversion}.%{_target_cpu}
2244
2245 # Drop some necessary files from the source dir into the buildroot
2246 cp $RPM_SOURCE_DIR/config-* .
2247 cp %{SOURCE15} %{SOURCE1} %{SOURCE16} %{SOURCE17} %{SOURCE18} .
2248
2249 # Dynamically generate kernel .config files from config-* files
2250 make -f %{SOURCE20} VERSION=%{version} configs
2251
2252 ApplyPatch Fedora-redhat-introduce-nonint_oldconfig-target.patch
2253 ApplyPatch Fedora-build-introduce-AFTER_LINK-variable.patch
2254 ApplyPatch Fedora-utrace-introduce-utrace-implementation.patch
2255 ApplyPatch Fedora-hwmon-add-VIA-hwmon-temperature-sensor-support.patch
2256 ApplyPatch Fedora-powerpc-add-modalias_show-operation.patch
2257 ApplyPatch Fedora-execshield-introduce-execshield.patch
2258 ApplyPatch Fedora-nfsd4-proots.patch
2259 ApplyPatch Fedora-nfs-make-nfs4-callback-hidden.patch
2260 ApplyPatch Fedora-usb-Allow-drivers-to-enable-USB-autosuspend-on-a-per-device-basis.patch
2261 ApplyPatch Fedora-usb-enable-autosuspend-by-default-on-qcserial.patch
2262 ApplyPatch Fedora-usb-enable-autosuspend-on-UVC-by-default.patch
2263 ApplyPatch Fedora-acpi-Disable-brightness-switch-by-default.patch
2264 ApplyPatch Fedora-acpi-Disable-firmware-video-brightness-change-by-default.patch
2265 ApplyPatch Fedora-debug-print-common-struct-sizes-at-boot-time.patch
2266 ApplyPatch Fedora-x86-add-option-to-control-the-NMI-watchdog-timeout.patch
2267 ApplyPatch Fedora-debug-display-tainted-information-on-other-places.patch
2268 ApplyPatch Fedora-debug-add-calls-to-print_tainted-on-spinlock-functions.patch
2269 ApplyPatch Fedora-debug-add-would_have_oomkilled-procfs-ctl.patch
2270 ApplyPatch Fedora-debug-always-inline-kzalloc.patch
2271 ApplyPatch Fedora-pci-add-config-option-to-control-the-default-state-of-PCI-MSI-interrupts.patch
2272 ApplyPatch Fedora-pci-sets-PCIE-ASPM-default-policy-to-POWERSAVE.patch
2273 ApplyPatch Fedora-sound-disables-hda-beep-by-default.patch
2274 ApplyPatch Fedora-sound-hda-intel-prealloc-4mb-dmabuffer.patch
2275 ApplyPatch Fedora-input-remove-unwanted-messages-on-spurious-events.patch
2276 ApplyPatch Fedora-floppy-remove-the-floppy-pnp-modalias.patch
2277 ApplyPatch Fedora-input-remove-pcspkr-modalias.patch
2278 ApplyPatch Fedora-serial-Enable-higher-baud-rates-for-16C95x.patch
2279 ApplyPatch Fedora-serio-disable-error-messages-when-i8042-isn-t-found.patch
2280 ApplyPatch Fedora-pci-silence-some-PCI-resource-allocation-errors.patch
2281 ApplyPatch Fedora-fb-disable-fbcon-logo-with-parameter.patch
2282 ApplyPatch Fedora-crash-add-crash-driver.patch
2283 ApplyPatch Fedora-pci-cacheline-sizing.patch
2284 ApplyPatch Fedora-e1000-add-quirk-for-ich9.patch
2285 ApplyPatch Fedora-drm-intel-big-hammer.patch
2286 ApplyPatch Fedora-acpi-be-less-verbose-about-old-BIOSes.patch
2287 ApplyPatch Fedora-rfkill-add-support-to-a-key-to-control-all-radios.patch
2288 ApplyPatch redhat-adding-redhat-directory.patch
2289 ApplyPatch redhat-Importing-config-options.patch
2290 ApplyPatch redhat-s390x-adding-zfcpdump-application-used-by-s390x-kdump-kernel.patch
2291 ApplyPatch redhat-Include-FIPS-required-checksum-of-the-kernel-image.patch
2292 ApplyPatch redhat-Silence-tagging-messages-by-rh-release.patch
2293 ApplyPatch redhat-Disabling-debug-options-for-beta.patch
2294 ApplyPatch redhat-kernel-requires-udev-145-11-or-newer.patch
2295 ApplyPatch redhat-tagging-2-6-31-50-el6.patch
2296 ApplyPatch redhat-updating-lastcommit-for-2-6-31-50.patch
2297 ApplyPatch block-get-rid-of-the-WRITE_ODIRECT-flag.patch
2298 ApplyPatch block-aio-implement-request-batching.patch
2299 ApplyPatch kdump-x86-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2300 ApplyPatch kdump-x86-implement-crashkernel-auto.patch
2301 ApplyPatch kdump-ia64-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2302 ApplyPatch kdump-ia64-implement-crashkernel-auto.patch
2303 ApplyPatch kdump-powerpc-add-CONFIG_KEXEC_AUTO_RESERVE.patch
2304 ApplyPatch kdump-powerpc-implement-crashkernel-auto.patch
2305 ApplyPatch kdump-doc-update-the-kdump-document.patch
2306 ApplyPatch kdump-kexec-allow-to-shrink-reserved-memory.patch
2307 ApplyPatch kernel-Set-panic_on_oops-to-1.patch
2308 ApplyPatch redhat-fix-BZ-and-CVE-info-printing-on-changelog-when-HIDE_REDHAT-is-enabled.patch
2309 ApplyPatch redhat-tagging-2-6-31-51-el6.patch
2310 ApplyPatch redhat-updating-lastcommit-for-2-6-31-51.patch
2311 ApplyPatch redhat-fixing-the-kernel-versions-on-the-SPEC-changelog.patch
2312 ApplyPatch redhat-Fix-version-passed-to-update_changelog-sh.patch
2313 ApplyPatch mm-Limit-32-bit-x86-systems-to-16GB-and-prevent-panic-on-boot-when-system-has-more-than-30GB.patch
2314 ApplyPatch ppc64-Fix-kcrctab_-sections-to-undo-undesireable-relocations-that-break-kdump.patch
2315 ApplyPatch net-export-device-speed-and-duplex-via-sysfs.patch
2316 ApplyPatch scsi-devinfo-update-for-Hitachi-entries.patch
2317 ApplyPatch x86-AMD-Northbridge-Verify-NB-s-node-is-online.patch
2318 ApplyPatch redhat-tagging-2-6-32-0-52-el6.patch
2319 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-52.patch
2320 ApplyPatch redhat-fix-STAMP-version-on-rh-release-commit-phase.patch
2321 ApplyPatch redhat-enable-debug-builds-also-on-s390x-and-ppc64.patch
2322 ApplyPatch s390x-fix-build-failure-with-CONFIG_FTRACE_SYSCALLS.patch
2323 ApplyPatch procfs-add-ability-to-modify-proc-file-limits-from-outside-a-processes-own-context.patch
2324 ApplyPatch modsign-Multiprecision-maths-library.patch
2325 ApplyPatch modsign-Add-indications-of-module-ELF-types.patch
2326 ApplyPatch modsign-Module-ELF-verifier.patch
2327 ApplyPatch modsign-Module-signature-checker-and-key-manager.patch
2328 ApplyPatch modsign-Apply-signature-checking-to-modules-on-module-load.patch
2329 ApplyPatch modsign-Don-t-include-note-gnu-build-id-in-the-digest.patch
2330 ApplyPatch modsign-Enable-module-signing-in-the-RHEL-RPM.patch
2331 ApplyPatch net-Add-acession-counts-to-all-datagram-protocols.patch
2332 ApplyPatch redhat-tagging-2-6-32-0-53-el6.patch
2333 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-53.patch
2334 ApplyPatch redhat-fixing-wrong-bug-number-536759-536769.patch
2335 ApplyPatch redhat-adding-top-makefile-to-enable-rh-targets.patch
2336 ApplyPatch redhat-add-temporary-framepointer-variant.patch
2337 ApplyPatch redhat-add-rh-key-target-to-Makefile.patch
2338 ApplyPatch infiniband-Rewrite-SG-handling-for-RDMA-logic.patch
2339 ApplyPatch x86-panic-if-AMD-cpu_khz-is-wrong.patch
2340 ApplyPatch x86-Enable-CONFIG_SPARSE_IRQ.patch
2341 ApplyPatch edac-amd64_edac-disabling-temporarily.patch
2342 ApplyPatch redhat-tagging-2-6-32-0-54-el6.patch
2343 ApplyPatch redhat-updating-lastcommit-for-2-6-32-0-54.patch
2344 ApplyPatch redhat-create-patches-sh-use-first-parent-to-use-the-right-branch-history.patch
2345 ApplyPatch redhat-Rebasing-to-kernel-2-6-32.patch
2346 ApplyPatch redhat-updating-lastcommit-for-2-6-32-1.patch
2347 ApplyPatch redhat-introduce-rh-kernel-debug-target.patch
2348 ApplyPatch redhat-update-build-targets-in-Makefile.patch
2349 ApplyPatch redhat-include-missing-System-map-file-for-debug-only-builds.patch
2350 ApplyPatch Fedora-updating-linux-2-6-execshield-patch-2-6-32-8-fc13-reference.patch
2351 ApplyPatch Fedora-updating-patch-linux-2-6-nfsd4-proots-patch-2-6-32-8-fc13-reference.patch
2352 ApplyPatch Fedora-intel-iommu-backport.patch
2353 ApplyPatch Fedora-ath9k-backports.patch
2354 ApplyPatch Fedora-KVM-allow-userspace-to-adjust-kvmclock-offset.patch
2355 ApplyPatch Fedora-drm-radeon-fixes.patch
2356 ApplyPatch Fedora-drm-radeon-dp-support.patch
2357 ApplyPatch Fedora-drm-nouveau-fixes.patch
2358 ApplyPatch Fedora-drm-i915-Fix-sync-to-vblank-when-VGA-output-is-turned-off.patch
2359 ApplyPatch Fedora-agp-clear-GTT-on-intel.patch
2360 ApplyPatch Fedora-ext4-Fix-insuficient-checks-in-EXT4_IOC_MOVE_EXT.patch
2361 ApplyPatch Fedora-perf-Don-t-free-perf_mmap_data-until-work-has-been-done.patch
2362 ApplyPatch redhat-updating-config-files-based-on-current-requests-12-10.patch
2363 ApplyPatch redhat-Config-updates-12-15.patch
2364 ApplyPatch block-revert-cfq-iosched-limit-coop-preemption.patch
2365 ApplyPatch block-CFQ-is-more-than-a-desktop-scheduler.patch
2366 ApplyPatch block-cfq-calculate-the-seek_mean-per-cfq_queue-not-per-cfq_io_context.patch
2367 ApplyPatch block-cfq-merge-cooperating-cfq_queues.patch
2368 ApplyPatch block-cfq-change-the-meaning-of-the-cfqq_coop-flag.patch
2369 ApplyPatch block-cfq-break-apart-merged-cfqqs-if-they-stop-cooperating.patch
2370 ApplyPatch block-cfq-iosched-improve-hw_tag-detection.patch
2371 ApplyPatch block-cfq-iosched-adapt-slice-to-number-of-processes-doing-I-O.patch
2372 ApplyPatch block-cfq-iosched-preparation-to-handle-multiple-service-trees.patch
2373 ApplyPatch block-cfq-iosched-reimplement-priorities-using-different-service-trees.patch
2374 ApplyPatch block-cfq-iosched-enable-idling-for-last-queue-on-priority-class.patch
2375 ApplyPatch block-cfq-iosched-fairness-for-sync-no-idle-queues.patch
2376 ApplyPatch block-cfq-iosched-fix-style-issue-in-cfq_get_avg_queues.patch
2377 ApplyPatch block-blkdev-flush-disk-cache-on-fsync.patch
2378 ApplyPatch block-cfq-iosched-simplify-prio-unboost-code.patch
2379 ApplyPatch block-cfq-iosched-fix-next_rq-computation.patch
2380 ApplyPatch block-Expose-discard-granularity.patch
2381 ApplyPatch block-partitions-use-sector-size-for-EFI-GPT.patch
2382 ApplyPatch block-partitions-read-whole-sector-with-EFI-GPT-header.patch
2383 ApplyPatch block-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
2384 ApplyPatch block-cfq-iosched-cleanup-unreachable-code.patch
2385 ApplyPatch block-cfq-iosched-fix-ncq-detection-code.patch
2386 ApplyPatch block-cfq-iosched-fix-no-idle-preemption-logic.patch
2387 ApplyPatch block-cfq-iosched-idling-on-deep-seeky-sync-queues.patch
2388 ApplyPatch block-cfq-iosched-fix-corner-cases-in-idling-logic.patch
2389 ApplyPatch block-Revert-cfq-Make-use-of-service-count-to-estimate-the-rb_key-offset.patch
2390 ApplyPatch block-Allow-devices-to-indicate-whether-discarded-blocks-are-zeroed.patch
2391 ApplyPatch block-cfq-iosched-no-dispatch-limit-for-single-queue.patch
2392 ApplyPatch block-blkio-Set-must_dispatch-only-if-we-decided-to-not-dispatch-the-request.patch
2393 ApplyPatch block-blkio-Introduce-the-notion-of-cfq-groups.patch
2394 ApplyPatch block-blkio-Implement-macro-to-traverse-each-service-tree-in-group.patch
2395 ApplyPatch block-blkio-Keep-queue-on-service-tree-until-we-expire-it.patch
2396 ApplyPatch block-blkio-Introduce-the-root-service-tree-for-cfq-groups.patch
2397 ApplyPatch block-blkio-Introduce-blkio-controller-cgroup-interface.patch
2398 ApplyPatch block-blkio-Introduce-per-cfq-group-weights-and-vdisktime-calculations.patch
2399 ApplyPatch block-blkio-Implement-per-cfq-group-latency-target-and-busy-queue-avg.patch
2400 ApplyPatch block-blkio-Group-time-used-accounting-and-workload-context-save-restore.patch
2401 ApplyPatch block-blkio-Dynamic-cfq-group-creation-based-on-cgroup-tasks-belongs-to.patch
2402 ApplyPatch block-blkio-Take-care-of-cgroup-deletion-and-cfq-group-reference-counting.patch
2403 ApplyPatch block-blkio-Some-debugging-aids-for-CFQ.patch
2404 ApplyPatch block-blkio-Export-disk-time-and-sectors-used-by-a-group-to-user-space.patch
2405 ApplyPatch block-blkio-Provide-some-isolation-between-groups.patch
2406 ApplyPatch block-blkio-Drop-the-reference-to-queue-once-the-task-changes-cgroup.patch
2407 ApplyPatch block-blkio-Propagate-cgroup-weight-updation-to-cfq-groups.patch
2408 ApplyPatch block-blkio-Wait-for-cfq-queue-to-get-backlogged-if-group-is-empty.patch
2409 ApplyPatch block-blkio-Determine-async-workload-length-based-on-total-number-of-queues.patch
2410 ApplyPatch block-blkio-Implement-group_isolation-tunable.patch
2411 ApplyPatch block-blkio-Wait-on-sync-noidle-queue-even-if-rq_noidle-1.patch
2412 ApplyPatch block-blkio-Documentation.patch
2413 ApplyPatch block-cfq-iosched-fix-compile-problem-with-CONFIG_CGROUP.patch
2414 ApplyPatch block-cfq-iosched-move-IO-controller-declerations-to-a-header-file.patch
2415 ApplyPatch block-io-controller-quick-fix-for-blk-cgroup-and-modular-CFQ.patch
2416 ApplyPatch block-cfq-iosched-make-nonrot-check-logic-consistent.patch
2417 ApplyPatch block-blkio-Export-some-symbols-from-blkio-as-its-user-CFQ-can-be-a-module.patch
2418 ApplyPatch block-blkio-Implement-dynamic-io-controlling-policy-registration.patch
2419 ApplyPatch block-blkio-Allow-CFQ-group-IO-scheduling-even-when-CFQ-is-a-module.patch
2420 ApplyPatch block-cfq-iosched-use-call_rcu-instead-of-doing-grace-period-stall-on-queue-exit.patch
2421 ApplyPatch block-include-linux-err-h-to-use-ERR_PTR.patch
2422 ApplyPatch block-cfq-iosched-Do-not-access-cfqq-after-freeing-it.patch
2423 ApplyPatch block-dio-fix-performance-regression.patch
2424 ApplyPatch block-Add-support-for-the-ATA-TRIM-command-in-libata.patch
2425 ApplyPatch scsi-Add-missing-command-definitions.patch
2426 ApplyPatch scsi-scsi_debug-Thin-provisioning-support.patch
2427 ApplyPatch scsi-sd-WRITE-SAME-16-UNMAP-support.patch
2428 ApplyPatch scsi-Correctly-handle-thin-provisioning-write-error.patch
2429 ApplyPatch libata-Report-zeroed-read-after-Trim-and-max-discard-size.patch
2430 ApplyPatch libata-Clarify-ata_set_lba_range_entries-function.patch
2431 ApplyPatch block-config-enable-CONFIG_BLK_CGROUP.patch
2432 ApplyPatch block-config-enable-CONFIG_BLK_DEV_INTEGRITY.patch
2433 ApplyPatch redhat-tagging-2-6-32-2-el6.patch
2434 ApplyPatch redhat-updating-lastcommit-for-2-6-32-2.patch
2435 ApplyPatch redhat-force-to-run-rh-key-target-when-compiling-the-kernel-locally-without-RPM.patch
2436 ApplyPatch redhat-run-rngd-on-rh-key-to-speed-up-key-generation.patch
2437 ApplyPatch redhat-make-the-documentation-build-j1.patch
2438 ApplyPatch redhat-remove-unused-config-file-config-powerpc64-generic-rhel.patch
2439 ApplyPatch redhat-fix-problem-when-using-other-rh-targets.patch
2440 ApplyPatch redhat-reverting-makefile-magic.patch
2441 ApplyPatch redhat-remove-gcc-bug-workaround.patch
2442 ApplyPatch redhat-run-rh-key-when-the-GPG-keys-aren-t-present.patch
2443 ApplyPatch nfs-convert-proto-option-to-use-netids-rather-than-a-protoname.patch
2444 ApplyPatch scsi-fix-dma-handling-when-using-virtual-hosts.patch
2445 ApplyPatch dm-core-and-mpath-changes-from-2-6-33.patch
2446 ApplyPatch dm-raid1-changes-from-2-6-33.patch
2447 ApplyPatch dm-crypt-changes-from-2-6-33.patch
2448 ApplyPatch dm-snapshot-changes-from-2-6-33.patch
2449 ApplyPatch dm-snapshot-merge-support-from-2-6-33.patch
2450 ApplyPatch redhat-add-vhost-to-config-generic-rhel.patch
2451 ApplyPatch virt-tun-export-underlying-socket.patch
2452 ApplyPatch virt-mm-export-use_mm-unuse_mm-to-modules.patch
2453 ApplyPatch virt-vhost_net-a-kernel-level-virtio-server.patch
2454 ApplyPatch virt-vhost-add-missing-architectures.patch
2455 ApplyPatch s390-kernel-clear-high-order-bits-after-switching-to-64-bit-mode.patch
2456 ApplyPatch s390-zcrypt-Do-not-simultaneously-schedule-hrtimer.patch
2457 ApplyPatch s390-dasd-support-DIAG-access-for-read-only-devices.patch
2458 ApplyPatch s390-kernel-fix-dump-indicator.patch
2459 ApplyPatch s390-kernel-performance-counter-fix-and-page-fault-optimization.patch
2460 ApplyPatch s390-zcrypt-initialize-ap_messages-for-cex3-exploitation.patch
2461 ApplyPatch s390-zcrypt-special-command-support-for-cex3-exploitation.patch
2462 ApplyPatch s390-zcrypt-add-support-for-cex3-device-types.patch
2463 ApplyPatch s390-zcrypt-use-definitions-for-cex3.patch
2464 ApplyPatch s390-zcrypt-adjust-speed-rating-between-cex2-and-pcixcc.patch
2465 ApplyPatch s390-zcrypt-adjust-speed-rating-of-cex3-adapters.patch
2466 ApplyPatch s390-OSA-QDIO-data-connection-isolation.patch
2467 ApplyPatch redhat-Build-in-standard-PCI-hotplug-support.patch
2468 ApplyPatch pci-pciehp-Provide-an-option-to-disable-native-PCIe-hotplug.patch
2469 ApplyPatch modsign-Don-t-check-e_entry-in-ELF-header.patch
2470 ApplyPatch redhat-fixing-lastcommit-contents-for-2-6-32-2-el6.patch
2471 ApplyPatch redhat-tagging-2-6-32-3-el6.patch
2472 ApplyPatch redhat-updating-lastcommit-for-2-6-32-3.patch
2473 ApplyPatch misc-Revert-utrace-introduce-utrace-implementation.patch
2474 ApplyPatch ptrace-cleanup-ptrace_init_task-ptrace_link-path.patch
2475 ApplyPatch ptrace-copy_process-should-disable-stepping.patch
2476 ApplyPatch ptrace-introduce-user_single_step_siginfo-helper.patch
2477 ApplyPatch ptrace-powerpc-implement-user_single_step_siginfo.patch
2478 ApplyPatch ptrace-change-tracehook_report_syscall_exit-to-handle-stepping.patch
2479 ApplyPatch ptrace-x86-implement-user_single_step_siginfo.patch
2480 ApplyPatch ptrace-x86-change-syscall_trace_leave-to-rely-on-tracehook-when-stepping.patch
2481 ApplyPatch signals-check-group_stop_count-after-tracehook_get_signal.patch
2482 ApplyPatch tracehooks-kill-some-PT_PTRACED-checks.patch
2483 ApplyPatch tracehooks-check-PT_PTRACED-before-reporting-the-single-step.patch
2484 ApplyPatch ptrace_signal-check-PT_PTRACED-before-reporting-a-signal.patch
2485 ApplyPatch ptrace-export-__ptrace_detach-and-do_notify_parent_cldstop.patch
2486 ApplyPatch ptrace-reorder-the-code-in-kernel-ptrace-c.patch
2487 ApplyPatch utrace-implement-utrace-ptrace.patch
2488 ApplyPatch utrace-utrace-core.patch
2489 ApplyPatch sound-ALSA-HDA-driver-update-2009-12-15.patch
2490 ApplyPatch s390-dasd-enable-prefix-independent-of-pav-support.patch
2491 ApplyPatch s390-dasd-remove-strings-from-s390dbf.patch
2492 ApplyPatch s390-dasd-let-device-initialization-wait-for-LCU-setup.patch
2493 ApplyPatch redhat-kernel-enable-hibernation-support-on-s390x.patch
2494 ApplyPatch s390-iucv-add-work_queue-cleanup-for-suspend.patch
2495 ApplyPatch s390-cmm-free-pages-on-hibernate.patch
2496 ApplyPatch s390-ctcm-suspend-has-to-wait-for-outstanding-I-O.patch
2497 ApplyPatch s390-zfcp-Don-t-fail-SCSI-commands-when-transitioning-to-blocked-fc_rport.patch
2498 ApplyPatch s390-zfcp-Assign-scheduled-work-to-driver-queue.patch
2499 ApplyPatch s390-zfcp-fix-ELS-ADISC-handling-to-prevent-QDIO-errors.patch
2500 ApplyPatch s390-zfcp-improve-FSF-error-reporting.patch
2501 ApplyPatch scsi-scsi_transport_fc-Introduce-helper-function-for-blocking-scsi_eh.patch
2502 ApplyPatch s390-zfcp-Block-SCSI-EH-thread-for-rport-state-BLOCKED.patch
2503 ApplyPatch uv-x86-SGI-UV-Fix-BAU-initialization.patch
2504 ApplyPatch uv-x86-function-to-translate-from-gpa-socket_paddr.patch
2505 ApplyPatch uv-x86-introduce-uv_gpa_is_mmr.patch
2506 ApplyPatch uv-x86-RTC-Fix-early-expiry-handling.patch
2507 ApplyPatch uv-x86-RTC-Add-clocksource-only-boot-option.patch
2508 ApplyPatch uv-x86-RTC-Clean-up-error-handling.patch
2509 ApplyPatch uv-gru-function-to-generate-chipset-IPI-values.patch
2510 ApplyPatch uv-x86-SGI-Map-low-MMR-ranges.patch
2511 ApplyPatch xen-wait-up-to-5-minutes-for-device-connetion-and-fix-fallout.patch
2512 ApplyPatch xen-support-MAXSMP.patch
2513 ApplyPatch mm-move-inc_zone_page_state-NR_ISOLATED-to-just-isolated-place.patch
2514 ApplyPatch mm-swap_info-private-to-swapfile-c.patch
2515 ApplyPatch mm-swap_info-change-to-array-of-pointers.patch
2516 ApplyPatch mm-swap_info-include-first_swap_extent.patch
2517 ApplyPatch mm-swap_info-miscellaneous-minor-cleanups.patch
2518 ApplyPatch mm-swap_info-SWAP_HAS_CACHE-cleanups.patch
2519 ApplyPatch mm-swap_info-swap_map-of-chars-not-shorts.patch
2520 ApplyPatch mm-swap_info-swap-count-continuations.patch
2521 ApplyPatch mm-swap_info-note-SWAP_MAP_SHMEM.patch
2522 ApplyPatch mm-define-PAGE_MAPPING_FLAGS.patch
2523 ApplyPatch mm-mlocking-in-try_to_unmap_one.patch
2524 ApplyPatch mm-CONFIG_MMU-for-PG_mlocked.patch
2525 ApplyPatch mm-pass-address-down-to-rmap-ones.patch
2526 ApplyPatch mm-vmscan-have-kswapd-sleep-for-a-short-interval-and-double-check-it-should-be-asleep.patch
2527 ApplyPatch mm-vmscan-stop-kswapd-waiting-on-congestion-when-the-min-watermark-is-not-being-met.patch
2528 ApplyPatch mm-vmscan-separate-sc-swap_cluster_max-and-sc-nr_max_reclaim.patch
2529 ApplyPatch mm-vmscan-kill-hibernation-specific-reclaim-logic-and-unify-it.patch
2530 ApplyPatch mm-vmscan-zone_reclaim-dont-use-insane-swap_cluster_max.patch
2531 ApplyPatch mm-vmscan-kill-sc-swap_cluster_max.patch
2532 ApplyPatch mm-vmscan-make-consistent-of-reclaim-bale-out-between-do_try_to_free_page-and-shrink_zone.patch
2533 ApplyPatch mm-vmscan-do-not-evict-inactive-pages-when-skipping-an-active-list-scan.patch
2534 ApplyPatch mm-stop-ptlock-enlarging-struct-page.patch
2535 ApplyPatch ksm-three-remove_rmap_item_from_tree-cleanups.patch
2536 ApplyPatch ksm-remove-redundancies-when-merging-page.patch
2537 ApplyPatch ksm-cleanup-some-function-arguments.patch
2538 ApplyPatch ksm-singly-linked-rmap_list.patch
2539 ApplyPatch ksm-separate-stable_node.patch
2540 ApplyPatch ksm-stable_node-point-to-page-and-back.patch
2541 ApplyPatch ksm-fix-mlockfreed-to-munlocked.patch
2542 ApplyPatch ksm-let-shared-pages-be-swappable.patch
2543 ApplyPatch ksm-hold-anon_vma-in-rmap_item.patch
2544 ApplyPatch ksm-take-keyhole-reference-to-page.patch
2545 ApplyPatch ksm-share-anon-page-without-allocating.patch
2546 ApplyPatch ksm-mem-cgroup-charge-swapin-copy.patch
2547 ApplyPatch ksm-rmap_walk-to-remove_migation_ptes.patch
2548 ApplyPatch ksm-memory-hotremove-migration-only.patch
2549 ApplyPatch ksm-remove-unswappable-max_kernel_pages.patch
2550 ApplyPatch ksm-fix-ksm-h-breakage-of-nommu-build.patch
2551 ApplyPatch mm-Add-mm-tracepoint-definitions-to-kmem-h.patch
2552 ApplyPatch mm-Add-anonynmous-page-mm-tracepoints.patch
2553 ApplyPatch mm-Add-file-page-mm-tracepoints.patch
2554 ApplyPatch mm-Add-page-reclaim-mm-tracepoints.patch
2555 ApplyPatch mm-Add-file-page-writeback-mm-tracepoints.patch
2556 ApplyPatch scsi-hpsa-new-driver.patch
2557 ApplyPatch scsi-cciss-remove-pci-ids.patch
2558 ApplyPatch quota-Move-definition-of-QFMT_OCFS2-to-linux-quota-h.patch
2559 ApplyPatch quota-Implement-quota-format-with-64-bit-space-and-inode-limits.patch
2560 ApplyPatch quota-ext3-Support-for-vfsv1-quota-format.patch
2561 ApplyPatch quota-ext4-Support-for-64-bit-quota-format.patch
2562 ApplyPatch kvm-core-x86-Add-user-return-notifiers.patch
2563 ApplyPatch kvm-VMX-Move-MSR_KERNEL_GS_BASE-out-of-the-vmx-autoload-msr-area.patch
2564 ApplyPatch kvm-x86-shared-msr-infrastructure.patch
2565 ApplyPatch kvm-VMX-Use-shared-msr-infrastructure.patch
2566 ApplyPatch redhat-excluding-Reverts-from-changelog-too.patch
2567 ApplyPatch redhat-tagging-2-6-32-4-el6.patch
2568 ApplyPatch redhat-updating-lastcommit-for-2-6-32-4.patch
2569 ApplyPatch redhat-do-not-export-redhat-directory-contents.patch
2570 ApplyPatch x86-Remove-the-CPU-cache-size-printk-s.patch
2571 ApplyPatch x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch
2572 ApplyPatch x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch
2573 ApplyPatch x86-Limit-the-number-of-processor-bootup-messages.patch
2574 ApplyPatch init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch
2575 ApplyPatch sched-Limit-the-number-of-scheduler-debug-messages.patch
2576 ApplyPatch x86-Limit-number-of-per-cpu-TSC-sync-messages.patch
2577 ApplyPatch x86-Remove-enabling-x2apic-message-for-every-CPU.patch
2578 ApplyPatch x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch
2579 ApplyPatch block-cfq-iosched-reduce-write-depth-only-if-sync-was-delayed.patch
2580 ApplyPatch block-cfq-Optimization-for-close-cooperating-queue-searching.patch
2581 ApplyPatch block-cfq-iosched-Get-rid-of-cfqq-wait_busy_done-flag.patch
2582 ApplyPatch block-cfq-iosched-Take-care-of-corner-cases-of-group-losing-share-due-to-deletion.patch
2583 ApplyPatch block-cfq-iosched-commenting-non-obvious-initialization.patch
2584 ApplyPatch block-cfq-Remove-wait_request-flag-when-idle-time-is-being-deleted.patch
2585 ApplyPatch block-Fix-a-CFQ-crash-in-for-2-6-33-branch-of-block-tree.patch
2586 ApplyPatch block-cfq-set-workload-as-expired-if-it-doesn-t-have-any-slice-left.patch
2587 ApplyPatch block-cfq-iosched-Remove-the-check-for-same-cfq-group-from-allow_merge.patch
2588 ApplyPatch block-cfq-iosched-Get-rid-of-nr_groups.patch
2589 ApplyPatch block-cfq-iosched-Remove-prio_change-logic-for-workload-selection.patch
2590 ApplyPatch netdrv-ixgbe-add-support-for-82599-KR-and-update-to-latest-upstream.patch
2591 ApplyPatch netdrv-bnx2x-update-to-1-52-1-5.patch
2592 ApplyPatch netdrv-update-tg3-to-version-3-105.patch
2593 ApplyPatch scsi-scsi_dh-Change-the-scsidh_activate-interface-to-be-asynchronous.patch
2594 ApplyPatch scsi-scsi_dh-Make-rdac-hardware-handler-s-activate-async.patch
2595 ApplyPatch scsi-scsi_dh-Make-hp-hardware-handler-s-activate-async.patch
2596 ApplyPatch scsi-scsi_dh-Make-alua-hardware-handler-s-activate-async.patch
2597 ApplyPatch block-Fix-topology-stacking-for-data-and-discard-alignment.patch
2598 ApplyPatch dlm-always-use-GFP_NOFS.patch
2599 ApplyPatch redhat-Some-storage-related-kernel-config-parameter-changes.patch
2600 ApplyPatch scsi-eliminate-double-free.patch
2601 ApplyPatch scsi-make-driver-PCI-legacy-I-O-port-free.patch
2602 ApplyPatch gfs2-Fix-potential-race-in-glock-code.patch
2603 ApplyPatch netdrv-cnic-fixes-for-RHEL6.patch
2604 ApplyPatch netdrv-bnx2i-update-to-2-1-0.patch
2605 ApplyPatch mm-hwpoison-backport-the-latest-patches-from-linux-2-6-33.patch
2606 ApplyPatch fs-ext4-wait-for-log-to-commit-when-unmounting.patch
2607 ApplyPatch cifs-NULL-out-tcon-pSesInfo-and-srvTcp-pointers-when-chasing-DFS-referrals.patch
2608 ApplyPatch fusion-remove-unnecessary-printk.patch
2609 ApplyPatch fusion-fix-for-incorrect-data-underrun.patch
2610 ApplyPatch fusion-bump-version-to-3-04-13.patch
2611 ApplyPatch ext4-make-trim-discard-optional-and-off-by-default.patch
2612 ApplyPatch fat-make-discard-a-mount-option.patch
2613 ApplyPatch fs-fs-writeback-Add-helper-function-to-start-writeback-if-idle.patch
2614 ApplyPatch fs-ext4-flush-delalloc-blocks-when-space-is-low.patch
2615 ApplyPatch scsi-scsi_dh_rdac-add-two-IBM-devices-to-rdac_dev_list.patch
2616 ApplyPatch vfs-force-reval-of-target-when-following-LAST_BIND-symlinks.patch
2617 ApplyPatch input-Add-support-for-adding-i8042-filters.patch
2618 ApplyPatch input-dell-laptop-Update-rfkill-state-on-switch-change.patch
2619 ApplyPatch sunrpc-Deprecate-support-for-site-local-addresses.patch
2620 ApplyPatch sunrpc-Don-t-display-zero-scope-IDs.patch
2621 ApplyPatch s390-cio-double-free-under-memory-pressure.patch
2622 ApplyPatch s390-cio-device-recovery-stalls-after-multiple-hardware-events.patch
2623 ApplyPatch s390-cio-device-recovery-fails-after-concurrent-hardware-changes.patch
2624 ApplyPatch s390-cio-setting-a-device-online-or-offline-fails-for-unknown-reasons.patch
2625 ApplyPatch s390-cio-incorrect-device-state-after-device-recognition-and-recovery.patch
2626 ApplyPatch s390-cio-kernel-panic-after-unexpected-interrupt.patch
2627 ApplyPatch s390-cio-initialization-of-I-O-devices-fails.patch
2628 ApplyPatch s390-cio-not-operational-devices-cannot-be-deactivated.patch
2629 ApplyPatch s390-cio-erratic-DASD-I-O-behavior.patch
2630 ApplyPatch s390-cio-DASD-cannot-be-set-online.patch
2631 ApplyPatch s390-cio-DASD-steal-lock-task-hangs.patch
2632 ApplyPatch s390-cio-memory-leaks-when-checking-unusable-devices.patch
2633 ApplyPatch s390-cio-deactivated-devices-can-cause-use-after-free-panic.patch
2634 ApplyPatch nfs-NFS-update-to-2-6-33-part-1.patch
2635 ApplyPatch nfs-NFS-update-to-2-6-33-part-2.patch
2636 ApplyPatch nfs-NFS-update-to-2-6-33-part-3.patch
2637 ApplyPatch nfs-fix-insecure-export-option.patch
2638 ApplyPatch redhat-enable-NFS_V4_1.patch
2639 ApplyPatch x86-Compile-mce-inject-module.patch
2640 ApplyPatch modsign-Don-t-attempt-to-sign-a-module-if-there-are-no-key-files.patch
2641 ApplyPatch scsi-cciss-hpsa-reassign-controllers.patch
2642 ApplyPatch scsi-cciss-fix-spinlock-use.patch
2643 ApplyPatch redhat-disabling-temporaly-DEVTMPFS.patch
2644 ApplyPatch redhat-don-t-use-PACKAGE_VERSION-and-PACKAGE_RELEASE.patch
2645 ApplyPatch redhat-tagging-2-6-32-5-el6.patch
2646 ApplyPatch redhat-updating-lastcommit-for-2-6-32-5.patch
2647 ApplyPatch redhat-add-symbol-to-look-on-while-building-modules-block.patch
2648 ApplyPatch stable-signal-Fix-alternate-signal-stack-check.patch
2649 ApplyPatch stable-SCSI-osd_protocol-h-Add-missing-include.patch
2650 ApplyPatch stable-SCSI-megaraid_sas-fix-64-bit-sense-pointer-truncation.patch
2651 ApplyPatch stable-ext4-fix-potential-buffer-head-leak-when-add_dirent_to_buf-returns-ENOSPC.patch
2652 ApplyPatch stable-ext4-avoid-divide-by-zero-when-trying-to-mount-a-corrupted-file-system.patch
2653 ApplyPatch stable-ext4-fix-the-returned-block-count-if-EXT4_IOC_MOVE_EXT-fails.patch
2654 ApplyPatch stable-ext4-fix-lock-order-problem-in-ext4_move_extents.patch
2655 ApplyPatch stable-ext4-fix-possible-recursive-locking-warning-in-EXT4_IOC_MOVE_EXT.patch
2656 ApplyPatch stable-ext4-plug-a-buffer_head-leak-in-an-error-path-of-ext4_iget.patch
2657 ApplyPatch stable-ext4-make-sure-directory-and-symlink-blocks-are-revoked.patch
2658 ApplyPatch stable-ext4-fix-i_flags-access-in-ext4_da_writepages_trans_blocks.patch
2659 ApplyPatch stable-ext4-journal-all-modifications-in-ext4_xattr_set_handle.patch
2660 ApplyPatch stable-ext4-don-t-update-the-superblock-in-ext4_statfs.patch
2661 ApplyPatch stable-ext4-fix-uninit-block-bitmap-initialization-when-s_meta_first_bg-is-non-zero.patch
2662 ApplyPatch stable-ext4-fix-block-validity-checks-so-they-work-correctly-with-meta_bg.patch
2663 ApplyPatch stable-ext4-avoid-issuing-unnecessary-barriers.patch
2664 ApplyPatch stable-ext4-fix-error-handling-in-ext4_ind_get_blocks.patch
2665 ApplyPatch stable-ext4-make-norecovery-an-alias-for-noload.patch
2666 ApplyPatch stable-ext4-Fix-double-free-of-blocks-with-EXT4_IOC_MOVE_EXT.patch
2667 ApplyPatch stable-ext4-initialize-moved_len-before-calling-ext4_move_extents.patch
2668 ApplyPatch stable-ext4-move_extent_per_page-cleanup.patch
2669 ApplyPatch stable-jbd2-Add-ENOMEM-checking-in-and-for-jbd2_journal_write_metadata_buffer.patch
2670 ApplyPatch stable-ext4-Return-the-PTR_ERR-of-the-correct-pointer-in-setup_new_group_blocks.patch
2671 ApplyPatch stable-ext4-Avoid-data-filesystem-corruption-when-write-fails-to-copy-data.patch
2672 ApplyPatch stable-ext4-remove-blocks-from-inode-prealloc-list-on-failure.patch
2673 ApplyPatch stable-ext4-ext4_get_reserved_space-must-return-bytes-instead-of-blocks.patch
2674 ApplyPatch stable-ext4-quota-macros-cleanup.patch
2675 ApplyPatch stable-ext4-fix-incorrect-block-reservation-on-quota-transfer.patch
2676 ApplyPatch stable-ext4-Wait-for-proper-transaction-commit-on-fsync.patch
2677 ApplyPatch stable-ext4-Fix-potential-fiemap-deadlock-mmap_sem-vs-i_data_sem.patch
2678 ApplyPatch stable-USB-usb-storage-fix-bug-in-fill_inquiry.patch
2679 ApplyPatch stable-USB-option-add-pid-for-ZTE.patch
2680 ApplyPatch stable-firewire-ohci-handle-receive-packets-with-a-data-length-of-zero.patch
2681 ApplyPatch stable-rcu-Prepare-for-synchronization-fixes-clean-up-for-non-NO_HZ-handling-of-completed-counter.patch
2682 ApplyPatch stable-rcu-Fix-synchronization-for-rcu_process_gp_end-uses-of-completed-counter.patch
2683 ApplyPatch stable-rcu-Fix-note_new_gpnum-uses-of-gpnum.patch
2684 ApplyPatch stable-rcu-Remove-inline-from-forward-referenced-functions.patch
2685 ApplyPatch stable-perf_event-Fix-invalid-type-in-ioctl-definition.patch
2686 ApplyPatch stable-perf_event-Initialize-data-period-in-perf_swevent_hrtimer.patch
2687 ApplyPatch stable-PM-Runtime-Fix-lockdep-warning-in-__pm_runtime_set_status.patch
2688 ApplyPatch stable-sched-Check-for-an-idle-shared-cache-in-select_task_rq_fair.patch
2689 ApplyPatch stable-sched-Fix-affinity-logic-in-select_task_rq_fair.patch
2690 ApplyPatch stable-sched-Rate-limit-newidle.patch
2691 ApplyPatch stable-sched-Fix-and-clean-up-rate-limit-newidle-code.patch
2692 ApplyPatch stable-x86-amd-iommu-attach-devices-to-pre-allocated-domains-early.patch
2693 ApplyPatch stable-x86-amd-iommu-un__init-iommu_setup_msi.patch
2694 ApplyPatch stable-x86-Calgary-IOMMU-quirk-Find-nearest-matching-Calgary-while-walking-up-the-PCI-tree.patch
2695 ApplyPatch stable-x86-Fix-iommu-nodac-parameter-handling.patch
2696 ApplyPatch stable-x86-GART-pci-gart_64-c-Use-correct-length-in-strncmp.patch
2697 ApplyPatch stable-x86-ASUS-P4S800-reboot-bios-quirk.patch
2698 ApplyPatch stable-x86-apic-Enable-lapic-nmi-watchdog-on-AMD-Family-11h.patch
2699 ApplyPatch stable-ssb-Fix-range-check-in-sprom-write.patch
2700 ApplyPatch stable-ath5k-allow-setting-txpower-to-0.patch
2701 ApplyPatch stable-ath5k-enable-EEPROM-checksum-check.patch
2702 ApplyPatch stable-hrtimer-Fix-proc-timer_list-regression.patch
2703 ApplyPatch stable-ALSA-hrtimer-Fix-lock-up.patch
2704 ApplyPatch stable-KVM-x86-emulator-limit-instructions-to-15-bytes.patch
2705 ApplyPatch stable-KVM-s390-Fix-prefix-register-checking-in-arch-s390-kvm-sigp-c.patch
2706 ApplyPatch stable-KVM-s390-Make-psw-available-on-all-exits-not-just-a-subset.patch
2707 ApplyPatch stable-KVM-fix-irq_source_id-size-verification.patch
2708 ApplyPatch stable-KVM-x86-include-pvclock-MSRs-in-msrs_to_save.patch
2709 ApplyPatch stable-x86-Prevent-GCC-4-4-x-pentium-mmx-et-al-function-prologue-wreckage.patch
2710 ApplyPatch stable-x86-Use-maccumulate-outgoing-args-for-sane-mcount-prologues.patch
2711 ApplyPatch stable-x86-mce-don-t-restart-timer-if-disabled.patch
2712 ApplyPatch stable-x86-mce-Set-up-timer-unconditionally.patch
2713 ApplyPatch stable-x86-Fix-duplicated-UV-BAU-interrupt-vector.patch
2714 ApplyPatch stable-x86-Add-new-Intel-CPU-cache-size-descriptors.patch
2715 ApplyPatch stable-x86-Fix-typo-in-Intel-CPU-cache-size-descriptor.patch
2716 ApplyPatch stable-pata_hpt-37x-3x2n-fix-timing-register-masks-take-2.patch
2717 ApplyPatch stable-V4L-DVB-Fix-test-in-copy_reg_bits.patch
2718 ApplyPatch stable-bsdacct-fix-uid-gid-misreporting.patch
2719 ApplyPatch stable-UBI-flush-wl-before-clearing-update-marker.patch
2720 ApplyPatch stable-jbd2-don-t-wipe-the-journal-on-a-failed-journal-checksum.patch
2721 ApplyPatch stable-USB-xhci-Add-correct-email-and-files-to-MAINTAINERS-entry.patch
2722 ApplyPatch stable-USB-musb_gadget_ep0-fix-unhandled-endpoint-0-IRQs-again.patch
2723 ApplyPatch stable-USB-option-c-add-support-for-D-Link-DWM-162-U5.patch
2724 ApplyPatch stable-USB-usbtmc-repeat-usb_bulk_msg-until-whole-message-is-transfered.patch
2725 ApplyPatch stable-USB-usb-storage-add-BAD_SENSE-flag.patch
2726 ApplyPatch stable-USB-Close-usb_find_interface-race-v3.patch
2727 ApplyPatch stable-pxa-em-x270-fix-usb-hub-power-up-reset-sequence.patch
2728 ApplyPatch stable-hfs-fix-a-potential-buffer-overflow.patch
2729 ApplyPatch stable-md-bitmap-protect-against-bitmap-removal-while-being-updated.patch
2730 ApplyPatch stable-futex-Take-mmap_sem-for-get_user_pages-in-fault_in_user_writeable.patch
2731 ApplyPatch stable-devpts_get_tty-should-validate-inode.patch
2732 ApplyPatch stable-debugfs-fix-create-mutex-racy-fops-and-private-data.patch
2733 ApplyPatch stable-Driver-core-fix-race-in-dev_driver_string.patch
2734 ApplyPatch stable-Serial-Do-not-read-IIR-in-serial8250_start_tx-when-UART_BUG_TXEN.patch
2735 ApplyPatch stable-mac80211-Fix-bug-in-computing-crc-over-dynamic-IEs-in-beacon.patch
2736 ApplyPatch stable-mac80211-Fixed-bug-in-mesh-portal-paths.patch
2737 ApplyPatch stable-mac80211-Revert-Use-correct-sign-for-mesh-active-path-refresh.patch
2738 ApplyPatch stable-mac80211-fix-scan-abort-sanity-checks.patch
2739 ApplyPatch stable-wireless-correctly-report-signal-value-for-IEEE80211_HW_SIGNAL_UNSPEC.patch
2740 ApplyPatch stable-rtl8187-Fix-wrong-rfkill-switch-mask-for-some-models.patch
2741 ApplyPatch stable-x86-Fix-bogus-warning-in-apic_noop-apic_write.patch
2742 ApplyPatch stable-mm-hugetlb-fix-hugepage-memory-leak-in-mincore.patch
2743 ApplyPatch stable-mm-hugetlb-fix-hugepage-memory-leak-in-walk_page_range.patch
2744 ApplyPatch stable-powerpc-windfarm-Add-detection-for-second-cpu-pump.patch
2745 ApplyPatch stable-powerpc-therm_adt746x-Record-pwm-invert-bit-at-module-load-time.patch
2746 ApplyPatch stable-powerpc-Fix-usage-of-64-bit-instruction-in-32-bit-altivec-code.patch
2747 ApplyPatch stable-drm-radeon-kms-Add-quirk-for-HIS-X1300-board.patch
2748 ApplyPatch stable-drm-radeon-kms-handle-vblanks-properly-with-dpms-on.patch
2749 ApplyPatch stable-drm-radeon-kms-fix-legacy-crtc2-dpms.patch
2750 ApplyPatch stable-drm-radeon-kms-fix-vram-setup-on-rs600.patch
2751 ApplyPatch stable-drm-radeon-kms-rs6xx-rs740-clamp-vram-to-aperture-size.patch
2752 ApplyPatch stable-drm-ttm-Fix-build-failure-due-to-missing-struct-page.patch
2753 ApplyPatch stable-drm-i915-Set-the-error-code-after-failing-to-insert-new-offset-into-mm-ht.patch
2754 ApplyPatch stable-drm-i915-Add-the-missing-clonemask-for-display-port-on-Ironlake.patch
2755 ApplyPatch stable-xen-xenbus-make-DEVICE_ATTR-s-static.patch
2756 ApplyPatch stable-xen-re-register-runstate-area-earlier-on-resume.patch
2757 ApplyPatch stable-xen-restore-runstate_info-even-if-have_vcpu_info_placement.patch
2758 ApplyPatch stable-xen-correctly-restore-pfn_to_mfn_list_list-after-resume.patch
2759 ApplyPatch stable-xen-register-timer-interrupt-with-IRQF_TIMER.patch
2760 ApplyPatch stable-xen-register-runstate-on-secondary-CPUs.patch
2761 ApplyPatch stable-xen-don-t-call-dpm_resume_noirq-with-interrupts-disabled.patch
2762 ApplyPatch stable-xen-register-runstate-info-for-boot-CPU-early.patch
2763 ApplyPatch stable-xen-call-clock-resume-notifier-on-all-CPUs.patch
2764 ApplyPatch stable-xen-improve-error-handling-in-do_suspend.patch
2765 ApplyPatch stable-xen-don-t-leak-IRQs-over-suspend-resume.patch
2766 ApplyPatch stable-xen-use-iret-for-return-from-64b-kernel-to-32b-usermode.patch
2767 ApplyPatch stable-xen-explicitly-create-destroy-stop_machine-workqueues-outside-suspend-resume-region.patch
2768 ApplyPatch stable-Xen-balloon-fix-totalram_pages-counting.patch
2769 ApplyPatch stable-xen-try-harder-to-balloon-up-under-memory-pressure.patch
2770 ApplyPatch stable-slc90e66-fix-UDMA-handling.patch
2771 ApplyPatch stable-tcp-Stalling-connections-Fix-timeout-calculation-routine.patch
2772 ApplyPatch stable-ip_fragment-also-adjust-skb-truesize-for-packets-not-owned-by-a-socket.patch
2773 ApplyPatch stable-b44-WOL-setup-one-bit-off-stack-corruption-kernel-panic-fix.patch
2774 ApplyPatch stable-sparc64-Don-t-specify-IRQF_SHARED-for-LDC-interrupts.patch
2775 ApplyPatch stable-sparc64-Fix-overly-strict-range-type-matching-for-PCI-devices.patch
2776 ApplyPatch stable-sparc64-Fix-stack-debugging-IRQ-stack-regression.patch
2777 ApplyPatch stable-sparc-Set-UTS_MACHINE-correctly.patch
2778 ApplyPatch stable-b43legacy-avoid-PPC-fault-during-resume.patch
2779 ApplyPatch stable-tracing-Fix-event-format-export.patch
2780 ApplyPatch stable-ath9k-fix-tx-status-reporting.patch
2781 ApplyPatch stable-mac80211-Fix-dynamic-power-save-for-scanning.patch
2782 ApplyPatch stable-memcg-fix-memory-memsw-usage_in_bytes-for-root-cgroup.patch
2783 ApplyPatch stable-thinkpad-acpi-fix-default-brightness_mode-for-R50e-R51.patch
2784 ApplyPatch stable-thinkpad-acpi-preserve-rfkill-state-across-suspend-resume.patch
2785 ApplyPatch stable-ipw2100-fix-rebooting-hang-with-driver-loaded.patch
2786 ApplyPatch stable-matroxfb-fix-problems-with-display-stability.patch
2787 ApplyPatch stable-acerhdf-add-new-BIOS-versions.patch
2788 ApplyPatch stable-asus-laptop-change-light-sens-default-values.patch
2789 ApplyPatch stable-vmalloc-conditionalize-build-of-pcpu_get_vm_areas.patch
2790 ApplyPatch stable-ACPI-Use-the-ARB_DISABLE-for-the-CPU-which-model-id-is-less-than-0x0f.patch
2791 ApplyPatch stable-net-Fix-userspace-RTM_NEWLINK-notifications.patch
2792 ApplyPatch stable-ext3-Fix-data-filesystem-corruption-when-write-fails-to-copy-data.patch
2793 ApplyPatch stable-V4L-DVB-13116-gspca-ov519-Webcam-041e-4067-added.patch
2794 ApplyPatch stable-bcm63xx_enet-fix-compilation-failure-after-get_stats_count-removal.patch
2795 ApplyPatch stable-x86-Under-BIOS-control-restore-AP-s-APIC_LVTTHMR-to-the-BSP-value.patch
2796 ApplyPatch stable-drm-i915-Avoid-NULL-dereference-with-component_only-tv_modes.patch
2797 ApplyPatch stable-drm-i915-PineView-only-has-LVDS-and-CRT-ports.patch
2798 ApplyPatch stable-drm-i915-Fix-LVDS-stability-issue-on-Ironlake.patch
2799 ApplyPatch stable-mm-sigbus-instead-of-abusing-oom.patch
2800 ApplyPatch stable-ipvs-zero-usvc-and-udest.patch
2801 ApplyPatch stable-jffs2-Fix-long-standing-bug-with-symlink-garbage-collection.patch
2802 ApplyPatch stable-intel-iommu-ignore-page-table-validation-in-pass-through-mode.patch
2803 ApplyPatch stable-netfilter-xtables-document-minimal-required-version.patch
2804 ApplyPatch stable-perf_event-Fix-incorrect-range-check-on-cpu-number.patch
2805 ApplyPatch stable-implement-early_io-re-un-map-for-ia64.patch
2806 ApplyPatch stable-SCSI-ipr-fix-EEH-recovery.patch
2807 ApplyPatch stable-SCSI-qla2xxx-dpc-thread-can-execute-before-scsi-host-has-been-added.patch
2808 ApplyPatch stable-SCSI-st-fix-mdata-page_order-handling.patch
2809 ApplyPatch stable-SCSI-fc-class-fix-fc_transport_init-error-handling.patch
2810 ApplyPatch stable-sched-Fix-task_hot-test-order.patch
2811 ApplyPatch stable-x86-cpuid-Add-volatile-to-asm-in-native_cpuid.patch
2812 ApplyPatch stable-sched-Select_task_rq_fair-must-honour-SD_LOAD_BALANCE.patch
2813 ApplyPatch stable-clockevents-Prevent-clockevent_devices-list-corruption-on-cpu-hotplug.patch
2814 ApplyPatch stable-pata_hpt3x2n-fix-clock-turnaround.patch
2815 ApplyPatch stable-pata_cmd64x-fix-overclocking-of-UDMA0-2-modes.patch
2816 ApplyPatch stable-ASoC-wm8974-fix-a-wrong-bit-definition.patch
2817 ApplyPatch stable-sound-sgio2audio-pdaudiocf-usb-audio-initialize-PCM-buffer.patch
2818 ApplyPatch stable-ALSA-hda-Fix-missing-capsrc_nids-for-ALC88x.patch
2819 ApplyPatch stable-acerhdf-limit-modalias-matching-to-supported.patch
2820 ApplyPatch stable-ACPI-EC-Fix-MSI-DMI-detection.patch
2821 ApplyPatch stable-ACPI-Use-the-return-result-of-ACPI-lid-notifier-chain-correctly.patch
2822 ApplyPatch stable-powerpc-Handle-VSX-alignment-faults-correctly-in-little-endian-mode.patch
2823 ApplyPatch stable-ASoC-Do-not-write-to-invalid-registers-on-the-wm9712.patch
2824 ApplyPatch stable-drm-radeon-fix-build-on-64-bit-with-some-compilers.patch
2825 ApplyPatch stable-USB-emi62-fix-crash-when-trying-to-load-EMI-6-2-firmware.patch
2826 ApplyPatch stable-USB-option-support-hi-speed-for-modem-Haier-CE100.patch
2827 ApplyPatch stable-USB-Fix-a-bug-on-appledisplay-c-regarding-signedness.patch
2828 ApplyPatch stable-USB-musb-gadget_ep0-avoid-SetupEnd-interrupt.patch
2829 ApplyPatch stable-Bluetooth-Prevent-ill-timed-autosuspend-in-USB-driver.patch
2830 ApplyPatch stable-USB-rename-usb_configure_device.patch
2831 ApplyPatch stable-USB-fix-bugs-in-usb_-de-authorize_device.patch
2832 ApplyPatch stable-drivers-net-usb-Correct-code-taking-the-size-of-a-pointer.patch
2833 ApplyPatch stable-x86-SGI-UV-Fix-writes-to-led-registers-on-remote-uv-hubs.patch
2834 ApplyPatch stable-md-Fix-unfortunate-interaction-with-evms.patch
2835 ApplyPatch stable-dma-at_hdmac-correct-incompatible-type-for-argument-1-of-spin_lock_bh.patch
2836 ApplyPatch stable-dma-debug-Do-not-add-notifier-when-dma-debugging-is-disabled.patch
2837 ApplyPatch stable-dma-debug-Fix-bug-causing-build-warning.patch
2838 ApplyPatch stable-x86-amd-iommu-Fix-initialization-failure-panic.patch
2839 ApplyPatch stable-ioat3-fix-p-disabled-q-continuation.patch
2840 ApplyPatch stable-ioat2-3-put-channel-hardware-in-known-state-at-init.patch
2841 ApplyPatch stable-KVM-MMU-remove-prefault-from-invlpg-handler.patch
2842 ApplyPatch stable-KVM-LAPIC-make-sure-IRR-bitmap-is-scanned-after-vm-load.patch
2843 ApplyPatch stable-Libertas-fix-buffer-overflow-in-lbs_get_essid.patch
2844 ApplyPatch stable-iwmc3200wifi-fix-array-out-of-boundary-access.patch
2845 ApplyPatch stable-mac80211-fix-propagation-of-failed-hardware-reconfigurations.patch
2846 ApplyPatch stable-mac80211-fix-WMM-AP-settings-application.patch
2847 ApplyPatch stable-mac80211-Fix-IBSS-merge.patch
2848 ApplyPatch stable-cfg80211-fix-race-between-deauth-and-assoc-response.patch
2849 ApplyPatch stable-ath5k-fix-SWI-calibration-interrupt-storm.patch
2850 ApplyPatch stable-ath9k-wake-hardware-for-interface-IBSS-AP-Mesh-removal.patch
2851 ApplyPatch stable-ath9k-Fix-TX-queue-draining.patch
2852 ApplyPatch stable-ath9k-fix-missed-error-codes-in-the-tx-status-check.patch
2853 ApplyPatch stable-ath9k-wake-hardware-during-AMPDU-TX-actions.patch
2854 ApplyPatch stable-ath9k-fix-suspend-by-waking-device-prior-to-stop.patch
2855 ApplyPatch stable-ath9k_hw-Fix-possible-OOB-array-indexing-in-gen_timer_index-on-64-bit.patch
2856 ApplyPatch stable-ath9k_hw-Fix-AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB-and-its-shift-value-in-0x4054.patch
2857 ApplyPatch stable-iwl3945-disable-power-save.patch
2858 ApplyPatch stable-iwl3945-fix-panic-in-iwl3945-driver.patch
2859 ApplyPatch stable-iwlwifi-fix-EEPROM-OTP-reading-endian-annotations-and-a-bug.patch
2860 ApplyPatch stable-iwlwifi-fix-more-eeprom-endian-bugs.patch
2861 ApplyPatch stable-iwlwifi-fix-40MHz-operation-setting-on-cards-that-do-not-allow-it.patch
2862 ApplyPatch stable-mac80211-fix-race-with-suspend-and-dynamic_ps_disable_work.patch
2863 ApplyPatch stable-NOMMU-Optimise-away-the-dac_-mmap_min_addr-tests.patch
2864 ApplyPatch stable-sysctl_max_map_count-should-be-non-negative.patch
2865 ApplyPatch stable-kernel-sysctl-c-fix-the-incomplete-part-of-sysctl_max_map_count-should-be-non-negative-patch.patch
2866 ApplyPatch stable-V4L-DVB-13596-ov511-c-typo-lock-unlock.patch
2867 ApplyPatch stable-x86-ptrace-make-genregs-32-_get-set-more-robust.patch
2868 ApplyPatch stable-memcg-avoid-oom-killing-innocent-task-in-case-of-use_hierarchy.patch
2869 ApplyPatch stable-e100-Fix-broken-cbs-accounting-due-to-missing-memset.patch
2870 ApplyPatch stable-ipv6-reassembly-use-seperate-reassembly-queues-for-conntrack-and-local-delivery.patch
2871 ApplyPatch stable-netfilter-fix-crashes-in-bridge-netfilter-caused-by-fragment-jumps.patch
2872 ApplyPatch stable-hwmon-sht15-Off-by-one-error-in-array-index-incorrect-constants.patch
2873 ApplyPatch stable-b43-avoid-PPC-fault-during-resume.patch
2874 ApplyPatch stable-Keys-KEYCTL_SESSION_TO_PARENT-needs-TIF_NOTIFY_RESUME-architecture-support.patch
2875 ApplyPatch stable-sched-Fix-balance-vs-hotplug-race.patch
2876 ApplyPatch stable-drm-radeon-kms-fix-crtc-vblank-update-for-r600.patch
2877 ApplyPatch stable-drm-disable-all-the-possible-outputs-crtcs-before-entering-KMS-mode.patch
2878 ApplyPatch stable-orinoco-fix-GFP_KERNEL-in-orinoco_set_key-with-interrupts-disabled.patch
2879 ApplyPatch stable-udf-Try-harder-when-looking-for-VAT-inode.patch
2880 ApplyPatch stable-Add-unlocked-version-of-inode_add_bytes-function.patch
2881 ApplyPatch stable-quota-decouple-fs-reserved-space-from-quota-reservation.patch
2882 ApplyPatch stable-ext4-Convert-to-generic-reserved-quota-s-space-management.patch
2883 ApplyPatch stable-ext4-fix-sleep-inside-spinlock-issue-with-quota-and-dealloc-14739.patch
2884 ApplyPatch stable-x86-msr-Unify-rdmsr_on_cpus-wrmsr_on_cpus.patch
2885 ApplyPatch stable-cpumask-use-modern-cpumask-style-in-drivers-edac-amd64_edac-c.patch
2886 ApplyPatch stable-amd64_edac-unify-MCGCTL-ECC-switching.patch
2887 ApplyPatch stable-x86-msr-Add-support-for-non-contiguous-cpumasks.patch
2888 ApplyPatch stable-x86-msr-msrs_alloc-free-for-CONFIG_SMP-n.patch
2889 ApplyPatch stable-amd64_edac-fix-driver-instance-freeing.patch
2890 ApplyPatch stable-amd64_edac-make-driver-loading-more-robust.patch
2891 ApplyPatch stable-amd64_edac-fix-forcing-module-load-unload.patch
2892 ApplyPatch stable-sched-Sched_rt_periodic_timer-vs-cpu-hotplug.patch
2893 ApplyPatch stable-ext4-Update-documentation-to-correct-the-inode_readahead_blks-option-name.patch
2894 ApplyPatch stable-lguest-fix-bug-in-setting-guest-GDT-entry.patch
2895 ApplyPatch stable-rt2x00-Disable-powersaving-for-rt61pci-and-rt2800pci.patch
2896 ApplyPatch stable-generic_permission-MAY_OPEN-is-not-write-access.patch
2897 ApplyPatch redhat-fix-typo-while-disabling-CONFIG_CPU_SUP_CENTAUR.patch
2898 ApplyPatch redhat-check-if-patchutils-is-installed-before-creating-patches.patch
2899 ApplyPatch redhat-do-a-basic-sanity-check-to-verify-the-modules-are-being-signed.patch
2900 ApplyPatch redhat-Fix-kABI-dependency-generation.patch
2901 ApplyPatch tpm-autoload-tpm_tis-driver.patch
2902 ApplyPatch x86-mce-fix-confusion-between-bank-attributes-and-mce-attributes.patch
2903 ApplyPatch netdrv-be2net-update-be2net-driver-to-latest-upstream.patch
2904 ApplyPatch s390x-tape-incomplete-device-removal.patch
2905 ApplyPatch s390-kernel-improve-code-generated-by-atomic-operations.patch
2906 ApplyPatch x86-AMD-Fix-stale-cpuid4_info-shared_map-data-in-shared_cpu_map-cpumasks.patch
2907 ApplyPatch nfs-fix-oops-in-nfs_rename.patch
2908 ApplyPatch modsign-Remove-Makefile-modpost-qualifying-message-for-module-sign-failure.patch
2909 ApplyPatch redhat-disable-framepointer-build-by-default.patch
2910 ApplyPatch redhat-use-sysconf-_SC_PAGESIZE-instead-of-getpagesize.patch
2911 ApplyPatch redhat-tagging-2-6-32-6-el6.patch
2912 ApplyPatch redhat-updating-lastcommit-for-2-6-32-6.patch
2913 ApplyPatch kvm-Dont-pass-kvm_run-arguments.patch
2914 ApplyPatch kvm-Call-pic_clear_isr-on-pic-reset-to-reuse-logic-there.patch
2915 ApplyPatch kvm-Move-irq-sharing-information-to-irqchip-level.patch
2916 ApplyPatch kvm-Change-irq-routing-table-to-use-gsi-indexed-array.patch
2917 ApplyPatch kvm-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch
2918 ApplyPatch kvm-Move-irq-routing-data-structure-to-rcu-locking.patch
2919 ApplyPatch kvm-Move-irq-ack-notifier-list-to-arch-independent-code.patch
2920 ApplyPatch kvm-Convert-irq-notifiers-lists-to-RCU-locking.patch
2921 ApplyPatch kvm-Move-IO-APIC-to-its-own-lock.patch
2922 ApplyPatch kvm-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch
2923 ApplyPatch kvm-Add-synchronize_srcu_expedited.patch
2924 ApplyPatch kvm-rcu-Add-synchronize_srcu_expedited-to-the-rcutorture-test-suite.patch
2925 ApplyPatch kvm-rcu-Add-synchronize_srcu_expedited-to-the-documentation.patch
2926 ApplyPatch kvm-rcu-Enable-synchronize_sched_expedited-fastpath.patch
2927 ApplyPatch kvm-modify-memslots-layout-in-struct-kvm.patch
2928 ApplyPatch kvm-modify-alias-layout-in-x86s-struct-kvm_arch.patch
2929 ApplyPatch kvm-split-kvm_arch_set_memory_region-into-prepare-and-commit.patch
2930 ApplyPatch kvm-introduce-gfn_to_pfn_memslot.patch
2931 ApplyPatch kvm-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch
2932 ApplyPatch kvm-introduce-kvm-srcu-and-convert-kvm_set_memory_region-to-SRCU-update.patch
2933 ApplyPatch kvm-use-SRCU-for-dirty-log.patch
2934 ApplyPatch kvm-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch
2935 ApplyPatch kvm-convert-io_bus-to-SRCU.patch
2936 ApplyPatch kvm-switch-vcpu-context-to-use-SRCU.patch
2937 ApplyPatch kvm-convert-slots_lock-to-a-mutex.patch
2938 ApplyPatch kvm-Bump-maximum-vcpu-count-to-64.patch
2939 ApplyPatch kvm-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch
2940 ApplyPatch kvm-VMX-Use-macros-instead-of-hex-value-on-cr0-initialization.patch
2941 ApplyPatch kvm-SVM-Reset-cr0-properly-on-vcpu-reset.patch
2942 ApplyPatch kvm-SVM-init_vmcb-remove-redundant-save-cr0-initialization.patch
2943 ApplyPatch kvm-fix-kvmclock-adjust-offset-ioctl-to-match-upstream.patch
2944 ApplyPatch kvm-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch
2945 ApplyPatch kvm-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective-updates.patch
2946 ApplyPatch kvm-remove-pre_task_link-setting-in-save_state_to_tss16.patch
2947 ApplyPatch kvm-SVM-Move-INTR-vmexit-out-of-atomic-code.patch
2948 ApplyPatch kvm-SVM-Notify-nested-hypervisor-of-lost-event-injections.patch
2949 ApplyPatch kvm-SVM-remove-needless-mmap_sem-acquision-from-nested_svm_map.patch
2950 ApplyPatch kvm-VMX-Disable-unrestricted-guest-when-EPT-disabled.patch
2951 ApplyPatch kvm-x86-disallow-multiple-KVM_CREATE_IRQCHIP.patch
2952 ApplyPatch kvm-x86-disallow-KVM_-SET-GET-_LAPIC-without-allocated-in-kernel-lapic.patch
2953 ApplyPatch kvm-x86-disable-paravirt-mmu-reporting.patch
2954 ApplyPatch kvm-Allow-internal-errors-reported-to-userspace-to-carry-extra-data.patch
2955 ApplyPatch kvm-VMX-Report-unexpected-simultaneous-exceptions-as-internal-errors.patch
2956 ApplyPatch kvm-fix-lock-imbalance-in-kvm_-_irq_source_id.patch
2957 ApplyPatch kvm-only-clear-irq_source_id-if-irqchip-is-present.patch
2958 ApplyPatch kvm-Fix-possible-circular-locking-in-kvm_vm_ioctl_assign_device.patch
2959 ApplyPatch block-Fix-incorrect-alignment-offset-reporting-and-update-documentation.patch
2960 ApplyPatch block-Correct-handling-of-bottom-device-misaligment.patch
2961 ApplyPatch block-Fix-discard-alignment-calculation-and-printing.patch
2962 ApplyPatch block-bdev_stack_limits-wrapper.patch
2963 ApplyPatch dm-Fix-device-mapper-topology-stacking.patch
2964 ApplyPatch block-Stop-using-byte-offsets.patch
2965 ApplyPatch dm-add-feature-flags-to-reduce-future-kABI-impact.patch
2966 ApplyPatch netdrv-igb-Update-igb-driver-to-support-Barton-Hills.patch
2967 ApplyPatch redhat-Don-t-compile-DECNET.patch
2968 ApplyPatch redhat-fs-don-t-build-freevxfs.patch
2969 ApplyPatch redhat-disable-KVM-on-non-x86_64-arches.patch
2970 ApplyPatch gfs-GFS2-Fix-up-system-xattrs.patch
2971 ApplyPatch gfs-VFS-Add-forget_all_cached_acls.patch
2972 ApplyPatch gfs-GFS2-Use-forget_all_cached_acls.patch
2973 ApplyPatch gfs-GFS2-Use-gfs2_set_mode-instead-of-munge_mode.patch
2974 ApplyPatch gfs-GFS2-Clean-up-ACLs.patch
2975 ApplyPatch gfs-GFS2-Add-cached-ACLs-support.patch
2976 ApplyPatch gfs-VFS-Use-GFP_NOFS-in-posix_acl_from_xattr.patch
2977 ApplyPatch gfs-GFS2-Fix-gfs2_xattr_acl_chmod.patch
2978 ApplyPatch gfs2-Fix-o-meta-mounts-for-subsequent-mounts.patch
2979 ApplyPatch gfs2-Alter-arguments-of-gfs2_quota-statfs_sync.patch
2980 ApplyPatch gfs2-Hook-gfs2_quota_sync-into-VFS-via-gfs2_quotactl_ops.patch
2981 ApplyPatch gfs2-Remove-obsolete-code-in-quota-c.patch
2982 ApplyPatch gfs2-Add-get_xstate-quota-function.patch
2983 ApplyPatch gfs2-Add-proper-error-reporting-to-quota-sync-via-sysfs.patch
2984 ApplyPatch gfs2-Remove-constant-argument-from-qdsb_get.patch
2985 ApplyPatch gfs2-Remove-constant-argument-from-qd_get.patch
2986 ApplyPatch gfs2-Clean-up-gfs2_adjust_quota-and-do_glock.patch
2987 ApplyPatch gfs2-Add-get_xquota-support.patch
2988 ApplyPatch gfs2-Add-set_xquota-support.patch
2989 ApplyPatch gfs2-Improve-statfs-and-quota-usability.patch
2990 ApplyPatch gfs2-remove-division-from-new-statfs-code.patch
2991 ApplyPatch gfs2-add-barrier-nobarrier-mount-options.patch
2992 ApplyPatch gfs2-only-show-nobarrier-option-on-proc-mounts-when-the-option-is-active.patch
2993 ApplyPatch gfs-GFS2-Fix-lock-ordering-in-gfs2_check_blk_state.patch
2994 ApplyPatch gfs-GFS2-Fix-locking-bug-in-rename.patch
2995 ApplyPatch gfs-GFS2-Ensure-uptodate-inode-size-when-using-O_APPEND.patch
2996 ApplyPatch gfs-GFS2-Fix-glock-refcount-issues.patch
2997 ApplyPatch powerpc-pseries-Add-extended_cede_processor-helper-function.patch
2998 ApplyPatch powerpc-pseries-Add-hooks-to-put-the-CPU-into-an-appropriate-offline-state.patch
2999 ApplyPatch powerpc-Kernel-handling-of-Dynamic-Logical-Partitioning.patch
3000 ApplyPatch powerpc-sysfs-cpu-probe-release-files.patch
3001 ApplyPatch powerpc-CPU-DLPAR-handling.patch
3002 ApplyPatch powerpc-Add-code-to-online-offline-CPUs-of-a-DLPAR-node.patch
3003 ApplyPatch powerpc-cpu-allocation-deallocation-process.patch
3004 ApplyPatch powerpc-pseries-Correct-pseries-dlpar-c-build-break-without-CONFIG_SMP.patch
3005 ApplyPatch net-dccp-fix-module-load-dependency-btw-dccp_probe-and-dccp.patch
3006 ApplyPatch drm-drm-edid-update-to-2-6-33-EDID-parser-code.patch
3007 ApplyPatch drm-mm-patch-drm-core-memory-range-manager-up-to-2-6-33.patch
3008 ApplyPatch drm-ttm-rollup-upstream-TTM-fixes.patch
3009 ApplyPatch drm-unlocked-ioctl-support-for-core-macro-fixes.patch
3010 ApplyPatch drm-add-new-userspace-core-drm-interfaces-from-2-6-33.patch
3011 ApplyPatch drm-remove-address-mask-param-for-drm_pci_alloc.patch
3012 ApplyPatch drm-kms-rollup-KMS-core-and-helper-changes-to-2-6-33.patch
3013 ApplyPatch drm-radeon-intel-realign-displayport-helper-code-with-upstream.patch
3014 ApplyPatch drm-i915-bring-Intel-DRM-KMS-driver-up-to-2-6-33.patch
3015 ApplyPatch drm-radeon-kms-update-to-2-6-33-without-TTM-API-changes.patch
3016 ApplyPatch drm-ttm-validation-API-changes-ERESTART-fixes.patch
3017 ApplyPatch drm-nouveau-update-to-2-6-33-level.patch
3018 ApplyPatch x86-allow-fbdev-primary-video-code-on-64-bit.patch
3019 ApplyPatch offb-add-support-for-framebuffer-handoff-to-offb.patch
3020 ApplyPatch drm-minor-printk-fixes-from-upstream.patch
3021 ApplyPatch redhat-tagging-2-6-32-7-el6.patch
3022 ApplyPatch redhat-updating-lastcommit-for-2-6-32-7.patch
3023 ApplyPatch build-Revert-redhat-disabling-temporaly-DEVTMPFS.patch
3024 ApplyPatch redhat-tagging-2-6-32-8-el6.patch
3025 ApplyPatch redhat-updating-lastcommit-for-2-6-32-8.patch
3026 ApplyPatch serial-8250-add-support-for-DTR-DSR-hardware-flow-control.patch
3027 ApplyPatch s390x-qeth-Support-for-HiperSockets-Network-Traffic-Analyzer.patch
3028 ApplyPatch s390-qeth-fix-packet-loss-if-TSO-is-switched-on.patch
3029 ApplyPatch s390x-tape-Add-pr_fmt-macro-to-all-tape-source-files.patch
3030 ApplyPatch net-dccp-modify-how-dccp-creates-slab-caches-to-prevent-bug-halt-in-SLUB.patch
3031 ApplyPatch scsi-sync-fcoe-with-upstream.patch
3032 ApplyPatch block-Honor-the-gfp_mask-for-alloc_page-in-blkdev_issue_discard.patch
3033 ApplyPatch sound-ALSA-HDA-driver-update-2009-12-15-2.patch
3034 ApplyPatch scsi-mpt2sas-use-sas-address-instead-of-handle-as-a-lookup.patch
3035 ApplyPatch scsi-mpt2sas-fix-expander-remove-fail.patch
3036 ApplyPatch scsi-mpt2sas-check-for-valid-response-info.patch
3037 ApplyPatch scsi-mpt2sas-new-device-SAS2208-support.patch
3038 ApplyPatch scsi-mpt2sas-adding-MPI-Headers-revision-L.patch
3039 ApplyPatch scsi-mpt2sas-stop-driver-when-firmware-encounters-faults.patch
3040 ApplyPatch scsi-mpt2sas-fix-some-comments.patch
3041 ApplyPatch scsi-mpt2sas-add-command-line-option-diag_buffer_enable.patch
3042 ApplyPatch scsi-mpt2sas-add-extended-type-for-diagnostic-buffer-support.patch
3043 ApplyPatch scsi-mpt2sas-add-TimeStamp-support-when-sending-ioc_init.patch
3044 ApplyPatch scsi-mpt2sas-limit-the-max_depth-to-32-for-SATA-devices.patch
3045 ApplyPatch scsi-mpt2sas-add-new-info-messages-for-IR-and-Expander-events.patch
3046 ApplyPatch scsi-mpt2sas-retrieve-the-ioc-facts-prior-to-putting-the-controller-into-READY-state.patch
3047 ApplyPatch scsi-mpt2sas-return-DID_TRANSPORT_DISRUPTED-in-nexus-loss-and-SCSI_MLQUEUE_DEVICE_BUSY-if-device-is-busy.patch
3048 ApplyPatch scsi-mpt2sas-mpt2sas_base_get_sense_buffer_dma-returns-little-endian.patch
3049 ApplyPatch scsi-mpt2sas-fix-PPC-endian-bug.patch
3050 ApplyPatch scsi-mpt2sas-freeze-the-sdev-IO-queue-when-firmware-sends-internal-device-reset.patch
3051 ApplyPatch scsi-mpt2sas-add-support-for-RAID-Action-System-Shutdown-Initiated-at-OS-Shutdown.patch
3052 ApplyPatch scsi-mpt2sas-don-t-update-links-nor-unblock-device-at-no-link-rate-change.patch
3053 ApplyPatch scsi-mpt2sas-Bump-version-03-100-03-00.patch
3054 ApplyPatch scsi-megaraid-upgrade-to-4-17.patch
3055 ApplyPatch uv-x86-SGI-Dont-track-GRU-space-in-PAT.patch
3056 ApplyPatch uv-x86-mm-Call-is_untracked_pat_range-rather-than-is_ISA_range.patch
3057 ApplyPatch uv-x86-mm-is_untracked_pat_range-takes-a-normal-semiclosed-range.patch
3058 ApplyPatch uv-x86-platform-Change-is_untracked_pat_range-to-bool.patch
3059 ApplyPatch uv-x86-Change-is_ISA_range-into-an-inline-function.patch
3060 ApplyPatch uv-x86-mm-Correct-the-implementation-of-is_untracked_pat_range.patch
3061 ApplyPatch uv-x86-RTC-Rename-generic_interrupt-to-x86_platform_ipi.patch
3062 ApplyPatch uv-x86-RTC-Always-enable-RTC-clocksource.patch
3063 ApplyPatch uv-x86-SGI-Fix-irq-affinity-for-hub-based-interrupts.patch
3064 ApplyPatch uv-x86-apic-Move-SGI-UV-functionality-out-of-generic-IO-APIC-code.patch
3065 ApplyPatch uv-x86-irq-Allow-0xff-for-proc-irq-n-smp_affinity-on-an-8-cpu-system.patch
3066 ApplyPatch uv-x86-Remove-move_cleanup_count-from-irq_cfg.patch
3067 ApplyPatch uv-x86-irq-Check-move_in_progress-before-freeing-the-vector-mapping.patch
3068 ApplyPatch uv-xpc-needs-to-provide-an-abstraction-for-uv_gpa.patch
3069 ApplyPatch uv-x86-update-XPC-to-handle-updated-BIOS-interface.patch
3070 ApplyPatch uv-x86-xpc-NULL-deref-when-mesq-becomes-empty.patch
3071 ApplyPatch uv-x86-xpc_make_first_contact-hang-due-to-not-accepting-ACTIVE-state.patch
3072 ApplyPatch uv-x86-XPC-receive-message-reuse-triggers-invalid-BUG_ON.patch
3073 ApplyPatch uv-XPC-pass-nasid-instead-of-nid-to-gru_create_message_queue.patch
3074 ApplyPatch gru-GRU-Rollup-patch.patch
3075 ApplyPatch uv-React-2-6-32-y-isolcpus-broken-in-2-6-32-y-kernel.patch
3076 ApplyPatch nfs-nfsd-make-sure-data-is-on-disk-before-calling-fsync.patch
3077 ApplyPatch nfs-sunrpc-fix-peername-failed-on-closed-listener.patch
3078 ApplyPatch nfs-SUNRPC-Fix-up-an-error-return-value-in-gss_import_sec_context_kerberos.patch
3079 ApplyPatch nfs-SUNRPC-Fix-the-return-value-in-gss_import_sec_context.patch
3080 ApplyPatch nfs-sunrpc-on-successful-gss-error-pipe-write-don-t-return-error.patch
3081 ApplyPatch nfs-sunrpc-fix-build-time-warning.patch
3082 ApplyPatch scsi-bfa-update-from-2-1-2-0-to-2-1-2-1.patch
3083 ApplyPatch scsi-qla2xxx-Update-support-for-FC-FCoE-HBA-CNA.patch
3084 ApplyPatch irq-Expose-the-irq_desc-node-as-proc-irq-node.patch
3085 ApplyPatch cgroups-fix-for-kernel-BUG-at-kernel-cgroup-c-790.patch
3086 ApplyPatch tracing-tracepoint-Add-signal-tracepoints.patch
3087 ApplyPatch block-direct-io-cleanup-blockdev_direct_IO-locking.patch
3088 ApplyPatch pci-PCIe-AER-honor-ACPI-HEST-FIRMWARE-FIRST-mode.patch
3089 ApplyPatch x86-Add-kernel-pagefault-tracepoint-for-x86-x86_64.patch
3090 ApplyPatch fs-xfs-2-6-33-updates.patch
3091 ApplyPatch x86-dell-wmi-Add-support-for-new-Dell-systems.patch
3092 ApplyPatch x86-core-make-LIST_POISON-less-deadly.patch
3093 ApplyPatch kvm-fix-cleanup_srcu_struct-on-vm-destruction.patch
3094 ApplyPatch redhat-tagging-2-6-32-9-el6.patch
3095 ApplyPatch redhat-updating-lastcommit-for-2-6-32-9.patch
3096 ApplyPatch scsi-scsi_transport_fc-Allow-LLD-to-reset-FC-BSG-timeout.patch
3097 ApplyPatch s390x-zfcp-introduce-BSG-timeout-callback.patch
3098 ApplyPatch s390x-zfcp-set-HW-timeout-requested-by-BSG-request.patch
3099 ApplyPatch redhat-config-increase-printk-buffer.patch
3100 ApplyPatch netdrv-qlge-update-to-upstream-version-v1-00-00-23-00-00-01.patch
3101 ApplyPatch gfs-Add-quota-netlink-support.patch
3102 ApplyPatch gfs-Use-dquot_send_warning.patch
3103 ApplyPatch netdrv-e1000e-update-to-the-latest-upstream.patch
3104 ApplyPatch x86-Disable-Memory-hot-add-on-x86-32-bit.patch
3105 ApplyPatch utrace-fix-utrace_maybe_reap-vs-find_matching_engine-race.patch
3106 ApplyPatch perf-add-kernel-internal-interface.patch
3107 ApplyPatch perf-improve-error-reporting.patch
3108 ApplyPatch perf-Add-a-callback-to-perf-events.patch
3109 ApplyPatch perf-Allow-for-custom-overflow-handlers.patch
3110 ApplyPatch perf-Fix-PERF_FORMAT_GROUP-scale-info.patch
3111 ApplyPatch perf-Fix-event-scaling-for-inherited-counters.patch
3112 ApplyPatch perf-Fix-locking-for-PERF_FORMAT_GROUP.patch
3113 ApplyPatch perf-Use-overflow-handler-instead-of-the-event-callback.patch
3114 ApplyPatch perf-Remove-the-event-callback-from-perf-events.patch
3115 ApplyPatch s390x-ptrace-dont-abuse-PT_PTRACED.patch
3116 ApplyPatch s390x-fix-loading-of-PER-control-registers-for-utrace.patch
3117 ApplyPatch scsi-aic79xx-check-for-non-NULL-scb-in-ahd_handle_nonpkt_busfree.patch
3118 ApplyPatch sound-Fix-SPDIF-In-for-AD1988-codecs-add-Intel-Cougar-IDs.patch
3119 ApplyPatch x86-Force-irq-complete-move-during-cpu-offline.patch
3120 ApplyPatch netdrv-vxge-fix-issues-found-in-Neterion-testing.patch
3121 ApplyPatch mm-mmap-don-t-return-ENOMEM-when-mapcount-is-temporarily-exceeded-in-munmap.patch
3122 ApplyPatch redhat-tagging-2-6-32-10-el6.patch
3123 ApplyPatch redhat-updating-lastcommit-for-2-6-32-10.patch
3124 ApplyPatch stable-untangle-the-do_mremap-mess.patch
3125 ApplyPatch stable-fasync-split-fasync_helper-into-separate-add-remove-functions.patch
3126 ApplyPatch stable-ASoC-fix-params_rate-macro-use-in-several-codecs.patch
3127 ApplyPatch stable-modules-Skip-empty-sections-when-exporting-section-notes.patch
3128 ApplyPatch stable-exofs-simple_write_end-does-not-mark_inode_dirty.patch
3129 ApplyPatch stable-Revert-x86-Side-step-lguest-problem-by-only-building-cmpxchg8b_emu-for-pre-Pentium.patch
3130 ApplyPatch stable-rtc_cmos-convert-shutdown-to-new-pnp_driver-shutdown.patch
3131 ApplyPatch stable-drivers-cpuidle-governors-menu-c-fix-undefined-reference-to-__udivdi3.patch
3132 ApplyPatch stable-lib-rational-c-needs-module-h.patch
3133 ApplyPatch stable-dma-debug-allow-DMA_BIDIRECTIONAL-mappings-to-be-synced-with-DMA_FROM_DEVICE-and.patch
3134 ApplyPatch stable-kernel-signal-c-fix-kernel-information-leak-with-print-fatal-signals-1.patch
3135 ApplyPatch stable-mmc_block-add-dev_t-initialization-check.patch
3136 ApplyPatch stable-mmc_block-fix-probe-error-cleanup-bug.patch
3137 ApplyPatch stable-mmc_block-fix-queue-cleanup.patch
3138 ApplyPatch stable-ALSA-ac97-Add-Dell-Dimension-2400-to-Headphone-Line-Jack-Sense-blacklist.patch
3139 ApplyPatch stable-ALSA-atiixp-Specify-codec-for-Foxconn-RC4107MA-RS2.patch
3140 ApplyPatch stable-ASoC-Fix-WM8350-DSP-mode-B-configuration.patch
3141 ApplyPatch stable-netfilter-ebtables-enforce-CAP_NET_ADMIN.patch
3142 ApplyPatch stable-netfilter-nf_ct_ftp-fix-out-of-bounds-read-in-update_nl_seq.patch
3143 ApplyPatch stable-hwmon-coretemp-Fix-TjMax-for-Atom-N450-D410-D510-CPUs.patch
3144 ApplyPatch stable-hwmon-adt7462-Fix-pin-28-monitoring.patch
3145 ApplyPatch stable-quota-Fix-dquot_transfer-for-filesystems-different-from-ext4.patch
3146 ApplyPatch stable-xen-fix-hang-on-suspend.patch
3147 ApplyPatch stable-iwlwifi-fix-iwl_queue_used-bug-when-read_ptr-write_ptr.patch
3148 ApplyPatch stable-ath5k-Fix-eeprom-checksum-check-for-custom-sized-eeproms.patch
3149 ApplyPatch stable-cfg80211-fix-syntax-error-on-user-regulatory-hints.patch
3150 ApplyPatch stable-iwl-off-by-one-bug.patch
3151 ApplyPatch stable-mac80211-add-missing-sanity-checks-for-action-frames.patch
3152 ApplyPatch stable-libertas-Remove-carrier-signaling-from-the-scan-code.patch
3153 ApplyPatch stable-kernel-sysctl-c-fix-stable-merge-error-in-NOMMU-mmap_min_addr.patch
3154 ApplyPatch stable-mac80211-fix-skb-buffering-issue-and-fixes-to-that.patch
3155 ApplyPatch stable-fix-braindamage-in-audit_tree-c-untag_chunk.patch
3156 ApplyPatch stable-fix-more-leaks-in-audit_tree-c-tag_chunk.patch
3157 ApplyPatch stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
3158 ApplyPatch stable-ipv6-skb_dst-can-be-NULL-in-ipv6_hop_jumbo.patch
3159 ApplyPatch misc-Revert-stable-module-handle-ppc64-relocating-kcrctabs-when-CONFIG_RELOCATABLE-y.patch
3160 ApplyPatch netdrv-e1000e-enhance-frame-fragment-detection.patch
3161 ApplyPatch redhat-kABI-internal-only-files.patch
3162 ApplyPatch drm-bring-RHEL6-radeon-drm-up-to-2-6-33-rc4-5-level.patch
3163 ApplyPatch s390x-qeth-set-default-BLKT-settings-dependend-on-OSA-hw-level.patch
3164 ApplyPatch block-dm-replicator-documentation-and-module-registry.patch
3165 ApplyPatch block-dm-replicator-replication-log-and-site-link-handler-interfaces-and-main-replicator-module.patch
3166 ApplyPatch block-dm-replicator-ringbuffer-replication-log-handler.patch
3167 ApplyPatch block-dm-replicator-blockdev-site-link-handler.patch
3168 ApplyPatch block-dm-raid45-add-raid45-target.patch
3169 ApplyPatch dm-dm-raid45-export-missing-dm_rh_inc.patch
3170 ApplyPatch kdump-Remove-the-32MB-limitation-for-crashkernel.patch
3171 ApplyPatch redhat-tagging-2-6-32-11-el6.patch
3172 ApplyPatch redhat-updating-lastcommit-for-2-6-32-11.patch
3173 ApplyPatch redhat-Revert-edac-amd64_edac-disabling-temporarily.patch
3174 ApplyPatch x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch
3175 ApplyPatch x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch
3176 ApplyPatch x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch
3177 ApplyPatch x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch
3178 ApplyPatch x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch
3179 ApplyPatch x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch
3180 ApplyPatch redhat-rpadlpar_io-should-be-built-in-kernel.patch
3181 ApplyPatch x86-msr-cpuid-Register-enough-minors-for-the-MSR-and-CPUID-drivers.patch
3182 ApplyPatch scsi-Sync-be2iscsi-with-upstream.patch
3183 ApplyPatch redhat-config-disable-CONFIG_X86_CPU_DEBUG.patch
3184 ApplyPatch pci-Always-set-prefetchable-base-limit-upper32-registers.patch
3185 ApplyPatch mm-Memory-tracking-for-Stratus.patch
3186 ApplyPatch redhat-enable-Memory-tracking-for-Stratus.patch
3187 ApplyPatch drm-radeon-possible-security-issue.patch
3188 ApplyPatch redhat-tagging-2-6-32-12-el6.patch
3189 ApplyPatch redhat-updating-lastcommit-for-2-6-32-12.patch
3190 ApplyPatch mm-Memory-tracking-for-Stratus-2.patch
3191 ApplyPatch kdump-backport-upstream-ppc64-kcrctab-fixes.patch
3192 ApplyPatch x86-acpi-Export-acpi_pci_irq_-add-del-_prt.patch
3193 ApplyPatch kvm-Fix-race-between-APIC-TMR-and-IRR.patch
3194 ApplyPatch kvm-x86-Fix-host_mapping_level.patch
3195 ApplyPatch kvm-MMU-bail-out-pagewalk-on-kvm_read_guest-error.patch
3196 ApplyPatch kvm-x86-Fix-probable-memory-leak-of-vcpu-arch-mce_banks.patch
3197 ApplyPatch kvm-x86-Fix-leak-of-free-lapic-date-in-kvm_arch_vcpu_init.patch
3198 ApplyPatch kvm-only-allow-one-gsi-per-fd.patch
3199 ApplyPatch kvm-properly-check-max-PIC-pin-in-irq-route-setup.patch
3200 ApplyPatch kvm-eventfd-allow-atomic-read-and-waitqueue-remove.patch
3201 ApplyPatch kvm-fix-spurious-interrupt-with-irqfd.patch
3202 ApplyPatch x86-Add-AMD-Node-ID-MSR-support.patch
3203 ApplyPatch x86-Fix-crash-when-profiling-more-than-28-events.patch
3204 ApplyPatch virtio-console-comment-cleanup.patch
3205 ApplyPatch virtio-console-statically-initialize-virtio_cons.patch
3206 ApplyPatch virtio-hvc_console-make-the-ops-pointer-const.patch
3207 ApplyPatch virtio-hvc_console-Remove-__devinit-annotation-from-hvc_alloc.patch
3208 ApplyPatch virtio-console-We-support-only-one-device-at-a-time.patch
3209 ApplyPatch virtio-console-port-encapsulation.patch
3210 ApplyPatch virtio-console-encapsulate-buffer-information-in-a-struct.patch
3211 ApplyPatch virtio-console-ensure-add_inbuf-can-work-for-multiple-ports-as-well.patch
3212 ApplyPatch virtio-console-introduce-a-get_inbuf-helper-to-fetch-bufs-from-in_vq.patch
3213 ApplyPatch virtio-console-use-vdev-priv-to-avoid-accessing-global-var.patch
3214 ApplyPatch virtio-console-don-t-assume-a-single-console-port.patch
3215 ApplyPatch virtio-console-remove-global-var.patch
3216 ApplyPatch virtio-console-struct-ports-for-multiple-ports-per-device.patch
3217 ApplyPatch virtio-console-ensure-console-size-is-updated-on-hvc-open.patch
3218 ApplyPatch virtio-console-Separate-out-console-specific-data-into-a-separate-struct.patch
3219 ApplyPatch virtio-console-Separate-out-console-init-into-a-new-function.patch
3220 ApplyPatch virtio-console-Separate-out-find_vqs-operation-into-a-different-function.patch
3221 ApplyPatch virtio-console-Introduce-function-to-hand-off-data-from-host-to-readers.patch
3222 ApplyPatch virtio-console-Introduce-a-send_buf-function-for-a-common-path-for-sending-data-to-host.patch
3223 ApplyPatch virtio-console-Add-a-new-MULTIPORT-feature-support-for-generic-ports.patch
3224 ApplyPatch virtio-console-Prepare-for-writing-to-reading-from-userspace-buffers.patch
3225 ApplyPatch virtio-console-Associate-each-port-with-a-char-device.patch
3226 ApplyPatch virtio-console-Add-file-operations-to-ports-for-open-read-write-poll.patch
3227 ApplyPatch virtio-console-Ensure-only-one-process-can-have-a-port-open-at-a-time.patch
3228 ApplyPatch virtio-console-Register-with-sysfs-and-create-a-name-attribute-for-ports.patch
3229 ApplyPatch virtio-console-Remove-cached-data-on-port-close.patch
3230 ApplyPatch virtio-console-Handle-port-hot-plug.patch
3231 ApplyPatch virtio-Add-ability-to-detach-unused-buffers-from-vrings.patch
3232 ApplyPatch virtio-hvc_console-Export-GPL-ed-hvc_remove.patch
3233 ApplyPatch virtio-console-Add-ability-to-hot-unplug-ports.patch
3234 ApplyPatch virtio-console-Add-debugfs-files-for-each-port-to-expose-debug-info.patch
3235 ApplyPatch virtio-console-show-error-message-if-hvc_alloc-fails-for-console-ports.patch
3236 ApplyPatch redhat-tagging-2-6-32-13-el6.patch
3237 ApplyPatch redhat-updating-lastcommit-for-2-6-32-13.patch
3238 ApplyPatch uv-x86-Add-function-retrieving-node-controller-revision-number.patch
3239 ApplyPatch uv-x86-Ensure-hub-revision-set-for-all-ACPI-modes.patch
3240 ApplyPatch s390x-cio-channel-path-vary-operation-has-no-effect.patch
3241 ApplyPatch s390x-zcrypt-Do-not-remove-coprocessor-in-case-of-error-8-72.patch
3242 ApplyPatch s390x-dasd-Fix-null-pointer-in-s390dbf-and-discipline-checking.patch
3243 ApplyPatch redhat-Enable-oprofile-multiplexing-on-x86_64-and-x86-architectures-only.patch
3244 ApplyPatch netdrv-update-tg3-to-version-3-106-and-fix-panic.patch
3245 ApplyPatch redhat-disable-CONFIG_OPTIMIZE_FOR_SIZE.patch
3246 ApplyPatch s390x-dasd-fix-online-offline-race.patch
3247 ApplyPatch redhat-tagging-2-6-32-14-el6.patch
3248 ApplyPatch redhat-updating-lastcommit-for-2-6-32-14.patch
3249 ApplyPatch gfs-GFS2-Fix-refcnt-leak-on-gfs2_follow_link-error-path.patch
3250 ApplyPatch gfs-GFS2-Use-GFP_NOFS-for-alloc-structure.patch
3251 ApplyPatch gfs-GFS2-Use-MAX_LFS_FILESIZE-for-meta-inode-size.patch
3252 ApplyPatch gfs-GFS2-Wait-for-unlock-completion-on-umount.patch
3253 ApplyPatch gfs-GFS2-Extend-umount-wait-coverage-to-full-glock-lifetime.patch
3254 ApplyPatch x86-intr-remap-generic-support-for-remapping-HPET-MSIs.patch
3255 ApplyPatch x86-arch-specific-support-for-remapping-HPET-MSIs.patch
3256 ApplyPatch x86-Disable-HPET-MSI-on-ATI-SB700-SB800.patch
3257 ApplyPatch fs-ext4-fix-type-of-offset-in-ext4_io_end.patch
3258 ApplyPatch redhat-disable-CONFIG_DEBUG_PERF_USE_VMALLOC-on-production-kernels.patch
3259 ApplyPatch x86-fix-Add-AMD-Node-ID-MSR-support.patch
3260 ApplyPatch redhat-config-disable-CONFIG_VMI.patch
3261 ApplyPatch quota-64-bit-quota-format-fixes.patch
3262 ApplyPatch block-cfq-Do-not-idle-on-async-queues-and-drive-deeper-WRITE-depths.patch
3263 ApplyPatch block-blk-cgroup-Fix-lockdep-warning-of-potential-deadlock-in-blk-cgroup.patch
3264 ApplyPatch redhat-tagging-2-6-32-15-el6.patch
3265 ApplyPatch redhat-updating-lastcommit-for-2-6-32-15.patch
3266 ApplyPatch redhat-x86_64-enable-function-tracers.patch
3267 ApplyPatch nfs-nfsd41-nfsd4_decode_compound-does-not-recognize-all-ops.patch
3268 ApplyPatch nfs-nfsd4-Use-FIRST_NFS4_OP-in-nfsd4_decode_compound.patch
3269 ApplyPatch nfs-nfsd-use-vfs_fsync-for-non-directories.patch
3270 ApplyPatch nfs-nfsd41-Create-the-recovery-entry-for-the-NFSv4-1-client.patch
3271 ApplyPatch nfs-nfsd-4-1-has-an-rfc-number.patch
3272 ApplyPatch nfs-SUNRPC-Use-rpc_pton-in-ip_map_parse.patch
3273 ApplyPatch nfs-NFSD-Support-AF_INET6-in-svc_addsock-function.patch
3274 ApplyPatch nfs-SUNRPC-Bury-ifdef-IPV6-in-svc_create_xprt.patch
3275 ApplyPatch nfs-SUNRPC-NFS-kernel-APIs-shouldn-t-return-ENOENT-for-transport-not-found.patch
3276 ApplyPatch nfs-NFSD-Create-PF_INET6-listener-in-write_ports.patch
3277 ApplyPatch nfs-nfs41-Adjust-max-cache-response-size-value.patch
3278 ApplyPatch nfs-nfs41-Check-slot-table-for-referring-calls.patch
3279 ApplyPatch nfs-nfs41-Process-callback-s-referring-call-list.patch
3280 ApplyPatch nfs-nfs41-fix-wrong-error-on-callback-header-xdr-overflow.patch
3281 ApplyPatch nfs-nfs41-directly-encode-back-channel-error.patch
3282 ApplyPatch nfs-nfs41-remove-uneeded-checks-in-callback-processing.patch
3283 ApplyPatch nfs-nfs41-prepare-for-back-channel-drc.patch
3284 ApplyPatch nfs-nfs41-back-channel-drc-minimal-implementation.patch
3285 ApplyPatch nfs-nfs41-implement-cb_recall_slot.patch
3286 ApplyPatch nfs-nfs41-resize-slot-table-in-reset.patch
3287 ApplyPatch nfs-nfs41-fix-nfs4_callback_recallslot.patch
3288 ApplyPatch nfs-nfs41-clear-NFS4CLNT_RECALL_SLOT-bit-on-session-reset.patch
3289 ApplyPatch nfs-nfs41-cleanup-callback-code-to-use-__be32-type.patch
3290 ApplyPatch nfs-Fix-a-reference-leak-in-nfs_wb_cancel_page.patch
3291 ApplyPatch nfs-Try-to-commit-unstable-writes-in-nfs_release_page.patch
3292 ApplyPatch nfs-Make-nfs_commitdata_release-static.patch
3293 ApplyPatch nfs-Avoid-warnings-when-CONFIG_NFS_V4-n.patch
3294 ApplyPatch nfs-Ensure-that-the-NFSv4-locking-can-recover-from-stateid-errors.patch
3295 ApplyPatch nfs-NFSv4-Don-t-allow-posix-locking-against-servers-that-don-t-support-it.patch
3296 ApplyPatch nfs-NFSv4-1-Don-t-call-nfs4_schedule_state_recovery-unnecessarily.patch
3297 ApplyPatch nfs-Ensure-that-we-handle-NFS4ERR_STALE_STATEID-correctly.patch
3298 ApplyPatch nfs-sunrpc-cache-fix-module-refcnt-leak-in-a-failure-path.patch
3299 ApplyPatch scsi-lpfc-Update-from-8-3-4-to-8-3-5-4-FC-FCoE.patch
3300 ApplyPatch dm-fix-kernel-panic-at-releasing-bio-on-recovery-failed-region.patch
3301 ApplyPatch dm-dm-raid1-fix-deadlock-at-suspending-failed-device.patch
3302 ApplyPatch vhost-fix-high-32-bit-in-FEATURES-ioctls.patch
3303 ApplyPatch vhost-prevent-modification-of-an-active-ring.patch
3304 ApplyPatch vhost-add-access_ok-checks.patch
3305 ApplyPatch vhost-make-default-mapping-empty-by-default.patch
3306 ApplyPatch vhost-access-check-thinko-fixes.patch
3307 ApplyPatch vhost-vhost-net-comment-use-of-invalid-fd-when-setting-vhost-backend.patch
3308 ApplyPatch vhost-vhost-net-defer-f-private_data-until-setup-succeeds.patch
3309 ApplyPatch vhost-fix-TUN-m-VHOST_NET-y.patch
3310 ApplyPatch kvm-emulate-accessed-bit-for-EPT.patch
3311 ApplyPatch net-nf_conntrack-fix-memory-corruption.patch
3312 ApplyPatch nfs-nfs4-handle-EKEYEXPIRED-errors-from-RPC-layer.patch
3313 ApplyPatch nfs-sunrpc-parse-and-return-errors-reported-by-gssd.patch
3314 ApplyPatch nfs-handle-NFSv2-EKEYEXPIRED-returns-from-RPC-layer-appropriately.patch
3315 ApplyPatch nfs-nfs-handle-NFSv3-EKEYEXPIRED-errors-as-we-would-EJUKEBOX.patch
3316 ApplyPatch oprofile-Support-Nehalem-EX-CPU-in-Oprofile.patch
3317 ApplyPatch mm-define-MADV_HUGEPAGE.patch
3318 ApplyPatch mm-add-a-compound_lock.patch
3319 ApplyPatch mm-alter-compound-get_page-put_page.patch
3320 ApplyPatch mm-update-futex-compound-knowledge.patch
3321 ApplyPatch mm-clear-compound-mapping.patch
3322 ApplyPatch mm-add-native_set_pmd_at.patch
3323 ApplyPatch mm-add-pmd-paravirt-ops.patch
3324 ApplyPatch mm-no-paravirt-version-of-pmd-ops.patch
3325 ApplyPatch mm-export-maybe_mkwrite.patch
3326 ApplyPatch mm-comment-reminder-in-destroy_compound_page.patch
3327 ApplyPatch mm-config_transparent_hugepage.patch
3328 ApplyPatch mm-special-pmd_trans_-functions.patch
3329 ApplyPatch mm-add-pmd-mangling-generic-functions.patch
3330 ApplyPatch mm-add-pmd-mangling-functions-to-x86.patch
3331 ApplyPatch mm-bail-out-gup_fast-on-splitting-pmd.patch
3332 ApplyPatch mm-pte-alloc-trans-splitting.patch
3333 ApplyPatch mm-add-pmd-mmu_notifier-helpers.patch
3334 ApplyPatch mm-clear-page-compound.patch
3335 ApplyPatch mm-add-pmd_huge_pte-to-mm_struct.patch
3336 ApplyPatch mm-split_huge_page_mm-vma.patch
3337 ApplyPatch mm-split_huge_page-paging.patch
3338 ApplyPatch mm-clear_huge_page-fix.patch
3339 ApplyPatch mm-clear_copy_huge_page.patch
3340 ApplyPatch mm-kvm-mmu-transparent-hugepage-support.patch
3341 ApplyPatch mm-backport-page_referenced-microoptimization.patch
3342 ApplyPatch mm-introduce-_GFP_NO_KSWAPD.patch
3343 ApplyPatch mm-dont-alloc-harder-for-gfp-nomemalloc-even-if-nowait.patch
3344 ApplyPatch mm-transparent-hugepage-core.patch
3345 ApplyPatch mm-verify-pmd_trans_huge-isnt-leaking.patch
3346 ApplyPatch mm-madvise-MADV_HUGEPAGE.patch
3347 ApplyPatch mm-pmd_trans_huge-migrate-bugcheck.patch
3348 ApplyPatch mm-memcg-compound.patch
3349 ApplyPatch mm-memcg-huge-memory.patch
3350 ApplyPatch mm-transparent-hugepage-vmstat.patch
3351 ApplyPatch mm-introduce-khugepaged.patch
3352 ApplyPatch mm-hugepage-redhat-customization.patch
3353 ApplyPatch mm-remove-madvise-MADV_HUGEPAGE.patch
3354 ApplyPatch uv-PCI-update-pci_set_vga_state-to-call-arch-functions.patch
3355 ApplyPatch pci-update-pci_set_vga_state-to-call-arch-functions.patch
3356 ApplyPatch uv-x86_64-update-uv-arch-to-target-legacy-VGA-I-O-correctly.patch
3357 ApplyPatch gpu-vgaarb-fix-vga-arbiter-to-accept-PCI-domains-other-than-0.patch
3358 ApplyPatch uv-vgaarb-add-user-selectability-of-the-number-of-gpus-in-a-system.patch
3359 ApplyPatch s390x-ctcm-lcs-claw-remove-cu3088-layer.patch
3360 ApplyPatch uv-x86-Fix-RTC-latency-bug-by-reading-replicated-cachelines.patch
3361 ApplyPatch pci-PCI-ACS-support-functions.patch
3362 ApplyPatch pci-Enablement-of-PCI-ACS-control-when-IOMMU-enabled-on-system.patch
3363 ApplyPatch net-do-not-check-CAP_NET_RAW-for-kernel-created-sockets.patch
3364 ApplyPatch fs-inotify-fix-inotify-WARN-and-compatibility-issues.patch
3365 ApplyPatch redhat-kABI-updates-02-11.patch
3366 ApplyPatch mm-fix-BUG-s-caused-by-the-transparent-hugepage-patch.patch
3367 ApplyPatch redhat-Allow-only-particular-kernel-rpms-to-be-built.patch
3368 ApplyPatch nfs-Fix-a-bug-in-nfs_fscache_release_page.patch
3369 ApplyPatch nfs-Remove-a-redundant-check-for-PageFsCache-in-nfs_migrate_page.patch
3370 ApplyPatch redhat-tagging-2-6-32-16-el6.patch
3371 ApplyPatch redhat-updating-lastcommit-for-2-6-32-16.patch
3372 ApplyPatch redhat-find-provides-also-require-python.patch
3373 ApplyPatch ppc-Add-kdump-support-to-Collaborative-Memory-Manager.patch
3374 ApplyPatch gfs-GFS2-problems-on-single-node-cluster.patch
3375 ApplyPatch selinux-print-the-module-name-when-SELinux-denies-a-userspace-upcall.patch
3376 ApplyPatch kernel-Prevent-futex-user-corruption-to-crash-the-kernel.patch
3377 ApplyPatch kvm-PIT-control-word-is-write-only.patch
3378 ApplyPatch virt-virtio_blk-add-block-topology-support.patch
3379 ApplyPatch redhat-make-CONFIG_CRASH-built-in.patch
3380 ApplyPatch mm-anon_vma-linking-changes-to-improve-multi-process-scalability.patch
3381 ApplyPatch mm-anon_vma-locking-updates-for-transparent-hugepage-code.patch
3382 ApplyPatch dm-stripe-avoid-divide-by-zero-with-invalid-stripe-count.patch
3383 ApplyPatch dm-log-userspace-fix-overhead_size-calcuations.patch
3384 ApplyPatch dm-mpath-fix-stall-when-requeueing-io.patch
3385 ApplyPatch dm-raid1-fail-writes-if-errors-are-not-handled-and-log-fails.patch
3386 ApplyPatch kernel-time-Implement-logarithmic-time-accumalation.patch
3387 ApplyPatch kernel-time-Remove-xtime_cache.patch
3388 ApplyPatch watchdog-Add-support-for-iTCO-watchdog-on-Ibex-Peak-chipset.patch
3389 ApplyPatch block-fix-bio_add_page-for-non-trivial-merge_bvec_fn-case.patch
3390 ApplyPatch block-freeze_bdev-don-t-deactivate-successfully-frozen-MS_RDONLY-sb.patch
3391 ApplyPatch x86-nmi_watchdog-enable-by-default-on-RHEL-6.patch
3392 ApplyPatch x86-x86-32-clean-up-rwsem-inline-asm-statements.patch
3393 ApplyPatch x86-clean-up-rwsem-type-system.patch
3394 ApplyPatch x86-x86-64-support-native-xadd-rwsem-implementation.patch
3395 ApplyPatch x86-x86-64-rwsem-64-bit-xadd-rwsem-implementation.patch
3396 ApplyPatch x86-x86-64-rwsem-Avoid-store-forwarding-hazard-in-__downgrade_write.patch
3397 ApplyPatch nfs-mount-nfs-Unknown-error-526.patch
3398 ApplyPatch s390-zfcp-cancel-all-pending-work-for-a-to-be-removed-zfcp_port.patch
3399 ApplyPatch s390-zfcp-report-BSG-errors-in-correct-field.patch
3400 ApplyPatch s390-qdio-prevent-kernel-bug-message-in-interrupt-handler.patch
3401 ApplyPatch s390-qdio-continue-polling-for-buffer-state-ERROR.patch
3402 ApplyPatch s390-hvc_iucv-allocate-IUCV-send-receive-buffers-in-DMA-zone.patch
3403 ApplyPatch redhat-whitelists-intentional-kABI-Module-kabi-rebase-pre-beta1-for-VM-bits.patch
3404 ApplyPatch redhat-tagging-2-6-32-17-el6.patch
3405 ApplyPatch redhat-updating-lastcommit-for-2-6-32-17.patch
3406 ApplyPatch redhat-disable-GFS2-on-s390x.patch
3407 ApplyPatch redhat-disable-XFS-on-all-arches-except-x86_64.patch
3408 ApplyPatch redhat-disable-all-the-filesystems-we-aren-t-going-to-support-and-fix-ext3-4.patch
3409 ApplyPatch redhat-run-new-kernel-pkg-on-posttrans.patch
3410 ApplyPatch redhat-fix-typo-on-redhat-Makefile.patch
3411 ApplyPatch kvm-virtio-console-Allow-sending-variable-sized-buffers-to-host-efault-on-copy_from_user-err.patch
3412 ApplyPatch kvm-virtio-console-return-efault-for-fill_readbuf-if-copy_to_user-fails.patch
3413 ApplyPatch kvm-virtio-console-outbufs-are-no-longer-needed.patch
3414 ApplyPatch kvm-virtio-Initialize-vq-data-entries-to-NULL.patch
3415 ApplyPatch kvm-virtio-console-update-Red-Hat-copyright-for-2010.patch
3416 ApplyPatch kvm-virtio-console-Ensure-no-memleaks-in-case-of-unused-buffers.patch
3417 ApplyPatch kvm-virtio-console-Add-ability-to-remove-module.patch
3418 ApplyPatch kvm-virtio-console-Error-out-if-we-can-t-allocate-buffers-for-control-queue.patch
3419 ApplyPatch kvm-virtio-console-Fill-ports-entire-in_vq-with-buffers.patch
3420 ApplyPatch kvm-Add-MAINTAINERS-entry-for-virtio_console.patch
3421 ApplyPatch kvm-fix-large-packet-drops-on-kvm-hosts-with-ipv6.patch
3422 ApplyPatch scsi-megaraid_sas-fix-for-32bit-apps.patch
3423 ApplyPatch x86-AES-PCLMUL-Instruction-support-Add-PCLMULQDQ-accelerated-implementation.patch
3424 ApplyPatch x86-AES-PCLMUL-Instruction-support-Various-small-fixes-for-AES-PCMLMUL-and-generate-byte-code-for-some-new-instructions-via-gas-macro.patch
3425 ApplyPatch x86-AES-PCLMUL-Instruction-support-Use-gas-macro-for-AES-NI-instructions.patch
3426 ApplyPatch x86-AES-PCLMUL-Instruction-support-Various-fixes-for-AES-NI-and-PCLMMUL.patch
3427 ApplyPatch kvm-x86-emulator-Add-push-pop-sreg-instructions.patch
3428 ApplyPatch kvm-x86-emulator-Introduce-No64-decode-option.patch
3429 ApplyPatch kvm-x86-emulator-Add-group8-instruction-decoding.patch
3430 ApplyPatch kvm-x86-emulator-Add-group9-instruction-decoding.patch
3431 ApplyPatch kvm-x86-emulator-Add-Virtual-8086-mode-of-emulation.patch
3432 ApplyPatch kvm-x86-emulator-fix-memory-access-during-x86-emulation.patch
3433 ApplyPatch kvm-x86-emulator-Check-IOPL-level-during-io-instruction-emulation.patch
3434 ApplyPatch kvm-x86-emulator-Fix-popf-emulation.patch
3435 ApplyPatch kvm-x86-emulator-Check-CPL-level-during-privilege-instruction-emulation.patch
3436 ApplyPatch kvm-x86-emulator-Add-LOCK-prefix-validity-checking.patch
3437 ApplyPatch kvm-x86-emulator-code-style-cleanup.patch
3438 ApplyPatch kvm-x86-emulator-Fix-properties-of-instructions-in-group-1_82.patch
3439 ApplyPatch kvm-inject-UD-in-64bit-mode-from-instruction-that-are-not-valid-there.patch
3440 ApplyPatch kvm-x86-emulator-X86EMUL-macro-replacements-from-do_fetch_insn_byte-to-x86_decode_insn.patch
3441 ApplyPatch kvm-x86-emulator-X86EMUL-macro-replacements-x86_emulate_insn-and-its-helpers.patch
3442 ApplyPatch kvm-x86-emulator-Fix-x86_emulate_insn-not-to-use-the-variable-rc-for-non-X86EMUL-values.patch
3443 ApplyPatch kvm-x86-emulator-Forbid-modifying-CS-segment-register-by-mov-instruction.patch
3444 ApplyPatch kvm-Fix-load_guest_segment_descriptor-to-inject-page-fault.patch
3445 ApplyPatch kvm-Fix-segment-descriptor-loading.patch
3446 ApplyPatch kvm-Fix-emulate_sys-call-enter-exit-s-fault-handling.patch
3447 ApplyPatch netdrv-ixgbe-prevent-speculative-processing-of-descriptors.patch
3448 ApplyPatch x86-nmi_watchdog-use-__cpuinit-for-nmi_watchdog_default.patch
3449 ApplyPatch net-netfilter-nf_conntrack-per-netns-nf_conntrack_cachep.patch
3450 ApplyPatch scsi-mpt2sas-fix-missing-initialization.patch
3451 ApplyPatch dm-raid45-target-constructor-error-path-oops-fix.patch
3452 ApplyPatch netdrv-cxgb3-add-memory-barriers.patch
3453 ApplyPatch mm-fix-anon_vma-locking-updates-for-transparent-hugepage-code.patch
3454 ApplyPatch mm-Fix-hugetlb-c-clear_huge_page-parameter.patch
3455 ApplyPatch gfs2-print-glock-numbers-in-hex.patch
3456 ApplyPatch selinux-netlabel-fix-corruption-of-SELinux-MLS-categories-127.patch
3457 ApplyPatch ata-ahci-disable-FPDMA-auto-activate-optimization-on-NVIDIA-AHCI.patch
3458 ApplyPatch scsi-lpfc-Update-from-8-3-5-4-to-8-3-5-5-FC-FCoE.patch
3459 ApplyPatch scsi-pmcraid-bug-fixes-from-upstream.patch
3460 ApplyPatch mm-Fix-potential-crash-with-sys_move_pages.patch
3461 ApplyPatch s390x-qeth-avoid-recovery-during-device-online-setting.patch
3462 ApplyPatch kernel-Fix-SMT-scheduler-regression-in-find_busiest_queue.patch
3463 ApplyPatch drm-bring-drm-core-ttm-fb-layer-fixes-in-from-upstream.patch
3464 ApplyPatch s390x-vdso-glibc-does-not-use-vdso-functions.patch
3465 ApplyPatch kernel-sched-Fix-SCHED_MC-regression-caused-by-change-in-sched-cpu_power.patch
3466 ApplyPatch dvb-Fix-endless-loop-when-decoding-ULE-at-dvb-core.patch
3467 ApplyPatch drm-radeon-kms-bring-all-v2-6-33-fixes-into-EL6-kernel.patch
3468 ApplyPatch redhat-Change-RPM-name-format-for-custom-builds.patch
3469 ApplyPatch uv-Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch
3470 ApplyPatch uv-Fix-unmap_vma-bug-related-to-mmu_notifiers.patch
3471 ApplyPatch net-bug-fix-for-vlan-gro-issue.patch
3472 ApplyPatch redhat-add-suport-for-rhts-testing.patch
3473 ApplyPatch redhat-add-filesystem-test.patch
3474 ApplyPatch vhost-vhost-net-switch-to-smp-barriers.patch
3475 ApplyPatch vhost-logging-thinko-fix.patch
3476 ApplyPatch vhost-initialize-log-eventfd-context-pointer.patch
3477 ApplyPatch vhost-fix-get_user_pages_fast-error-handling.patch
3478 ApplyPatch vhost-vhost-net-restart-tx-poll-on-sk_sndbuf-full.patch
3479 ApplyPatch x86-Intel-Cougar-Point-chipset-support.patch
3480 ApplyPatch drm-Remove-loop-in-IronLake-graphics-interrupt-handler.patch
3481 ApplyPatch scsi-scsi_dh_emc-fix-mode-select-setup.patch
3482 ApplyPatch scsi-Add-netapp-to-scsi-dh-alua-dev-list.patch
3483 ApplyPatch virt-hvc_console-Fix-race-between-hvc_close-and-hvc_remove.patch
3484 ApplyPatch kernel-time-revert-cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8.patch
3485 ApplyPatch redhat-infiniband-remove-all-infiniband-symbols-from-RHEL6-kABI.patch
3486 ApplyPatch redhat-kABI-Update-the-RHEL6-kABI-for-kernel-2-6-32-18-el6.patch
3487 ApplyPatch redhat-tagging-2-6-32-18-el6.patch
3488 ApplyPatch redhat-updating-lastcommit-for-2-6-32-18.patch
3489 ApplyPatch mm-Switch-to-SLAB.patch
3490 ApplyPatch redhat-kABI-Update-the-kABI-for-2-6-18-el6.patch
3491
3492 ApplyPatch patch-2.6.32-19.el6-vs2.3.0.36.29.4.diff
3493 ApplyPatch linux-2.6-220-delta-ptrace-fix01.patch
3494 ApplyPatch linux-2.6-250-ipsets.patch
3495 ApplyPatch linux-2.6-510-ipod.patch
3496 ApplyPatch linux-2.6-521-packet-tagging.patch
3497 ApplyPatch linux-2.6-522-iptables-connection-tagging.patch
3498 ApplyPatch linux-2.6-523-raw-sockets.patch
3499 ApplyPatch linux-2.6-524-peercred.patch
3500 ApplyPatch linux-2.6-525-sknid-elevator.patch
3501 ApplyPatch linux-2.6-527-iptables-classify-add-mark.patch
3502 ApplyPatch linux-2.6-530-built-by-support.patch
3503 #ApplyPatch linux-2.6-540-oom-kill.patch
3504 ApplyPatch linux-2.6-550-raise-default-nfile-ulimit.patch
3505 ApplyPatch linux-2.6-570-tagxid.patch
3506 ApplyPatch linux-2.6-580-show-proc-virt.patch
3507 ApplyPatch linux-2.6-590-dcookies-mm.patch
3508 ApplyPatch linux-2.6-591-chopstix-intern.patch
3509 ApplyPatch linux-2.6-640-netlink-audit-hack.patch
3510 ApplyPatch linux-2.6-650-hangcheck-reboot.patch
3511 ApplyPatch linux-2.6-660-nmi-watchdog-default.patch
3512 ApplyPatch linux-2.6-680-htb-hysteresis-tso.patch
3513
3514 ApplyOptionalPatch linux-kernel-test.patch
3515
3516 # Any further pre-build tree manipulations happen here.
3517
3518 chmod +x scripts/checkpatch.pl
3519
3520 # only deal with configs if we are going to build for the arch
3521 %ifnarch %nobuildarches
3522
3523 mkdir configs
3524
3525 # Remove configs not for the buildarch
3526 for cfg in kernel-%{version}-*.config; do
3527   if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
3528     rm -f $cfg
3529   fi
3530 done
3531
3532 %if !%{debugbuildsenabled}
3533 rm -f kernel-%{version}-*debug.config
3534 %endif
3535
3536 # now run oldconfig over all the config files
3537 for i in *.config
3538 do
3539   mv $i .config
3540   Arch=`head -1 .config | cut -b 3-`
3541   make ARCH=$Arch %{oldconfig_target} > /dev/null
3542   echo "# $Arch" > configs/$i
3543   cat .config >> configs/$i
3544   rm -f include/generated/kernel.arch
3545   rm -f include/generated/kernel.cross
3546 done
3547 # end of kernel config
3548 %endif
3549
3550 # get rid of unwanted files resulting from patch fuzz
3551 find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
3552
3553 cd ..
3554
3555 ###
3556 ### build
3557 ###
3558 %build
3559
3560 %if %{with_sparse}
3561 %define sparse_mflags   C=1
3562 %endif
3563
3564 %if %{fancy_debuginfo}
3565 # This override tweaks the kernel makefiles so that we run debugedit on an
3566 # object before embedding it.  When we later run find-debuginfo.sh, it will
3567 # run debugedit again.  The edits it does change the build ID bits embedded
3568 # in the stripped object, but repeating debugedit is a no-op.  We do it
3569 # beforehand to get the proper final build ID bits into the embedded image.
3570 # This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
3571 export AFTER_LINK=\
3572 'sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug -i $@"'
3573 %endif
3574
3575 cp_vmlinux()
3576 {
3577   eu-strip --remove-comment -o "$2" "$1"
3578 }
3579
3580 BuildKernel() {
3581     MakeTarget=$1
3582     KernelImage=$2
3583     Flavour=$3
3584     InstallName=${4:-vmlinuz}
3585
3586     # Pick the right config file for the kernel we're building
3587     Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
3588     DevelDir=/usr/src/kernels/%{KVERREL}${Flavour:+.${Flavour}}
3589
3590     # When the bootable image is just the ELF kernel, strip it.
3591     # We already copy the unstripped file into the debuginfo package.
3592     if [ "$KernelImage" = vmlinux ]; then
3593       CopyKernel=cp_vmlinux
3594     else
3595       CopyKernel=cp
3596     fi
3597
3598     KernelVer=%{version}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}
3599     echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
3600
3601     # make sure EXTRAVERSION says what we want it to say
3602     perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = %{?stablerev}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
3603
3604     # if pre-rc1 devel kernel, must fix up SUBLEVEL for our versioning scheme
3605     %if !0%{?rcrev}
3606     %if 0%{?gitrev}
3607     perl -p -i -e 's/^SUBLEVEL.*/SUBLEVEL = %{upstream_sublevel}/' Makefile
3608     %endif
3609     %endif
3610
3611     # and now to start the build process
3612
3613     make -s mrproper
3614     cp configs/$Config .config
3615
3616     Arch=`head -1 .config | cut -b 3-`
3617     echo USING ARCH=$Arch
3618
3619     if [ "$Arch" == "s390" -a "$Flavour" == "kdump" ]; then
3620         pushd arch/s390/boot
3621         gcc -static -o zfcpdump zfcpdump.c
3622         popd
3623     fi
3624     make -s ARCH=$Arch %{oldconfig_target} > /dev/null
3625     make -s ARCH=$Arch V=1 %{?_smp_mflags} $MakeTarget %{?sparse_mflags}
3626     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
3627         make -s ARCH=$Arch V=1 %{?_smp_mflags} modules %{?sparse_mflags} || exit 1
3628     fi
3629
3630 %if %{with_perftool}
3631     pushd tools/perf
3632 # make sure the scripts are executable... won't be in tarball until 2.6.31 :/
3633     chmod +x util/generate-cmdlist.sh util/PERF-VERSION-GEN
3634     make -s V=1 %{?_smp_mflags} NO_DEMANGLE=1 perf
3635     mkdir -p $RPM_BUILD_ROOT/usr/libexec/
3636     install -m 755 perf $RPM_BUILD_ROOT/usr/libexec/perf.$KernelVer
3637     popd
3638 %endif
3639
3640     # Start installing the results
3641 %if %{with_debuginfo}
3642     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
3643     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
3644     install -m 644 System.map $RPM_BUILD_ROOT/%{debuginfodir}/boot/System.map-$KernelVer
3645 %endif
3646     mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
3647     install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
3648     install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
3649 %if %{with_dracut}
3650     # We estimate the size of the initramfs because rpm needs to take this size
3651     # into consideration when performing disk space calculations. (See bz #530778)
3652     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
3653 %else
3654     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initrd-$KernelVer.img bs=1M count=5
3655 %endif
3656     if [ -f arch/$Arch/boot/zImage.stub ]; then
3657       cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
3658     fi
3659     $CopyKernel $KernelImage \
3660                 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3661     chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3662
3663 %if %{with_fips}
3664     # hmac sign the kernel for FIPS
3665     echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
3666     ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
3667     sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
3668 %endif
3669
3670     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
3671     # Override $(mod-fw) because we don't want it to install any firmware
3672     # We'll do that ourselves with 'make firmware_install'
3673     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
3674       make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
3675
3676       # check if the modules are being signed
3677 %if %{signmodules}
3678       if [ -z "$(readelf -n $(find fs/ -name \*.ko | head -n 1) | grep module.sig)" ]; then
3679           echo "ERROR: modules are NOT signed" >&2;
3680           exit 1;
3681       fi
3682 %endif
3683     else
3684       mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/{kernel,extra}
3685     fi
3686
3687 %ifarch %{vdso_arches}
3688     make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
3689     if grep '^CONFIG_XEN=y$' .config >/dev/null; then
3690       echo > ldconfig-kernel.conf "\
3691 # This directive teaches ldconfig to search in nosegneg subdirectories
3692 # and cache the DSOs there with extra bit 0 set in their hwcap match
3693 # fields.  In Xen guest kernels, the vDSO tells the dynamic linker to
3694 # search in nosegneg subdirectories and to match this extra hwcap bit
3695 # in the ld.so.cache file.
3696 hwcap 0 nosegneg"
3697     fi
3698     if [ ! -s ldconfig-kernel.conf ]; then
3699       echo > ldconfig-kernel.conf "\
3700 # Placeholder file, no vDSO hwcap entries used in this kernel."
3701     fi
3702     %{__install} -D -m 444 ldconfig-kernel.conf \
3703         $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
3704 %endif
3705
3706     # And save the headers/makefiles etc for building modules against
3707     #
3708     # This all looks scary, but the end result is supposed to be:
3709     # * all arch relevant include/ files
3710     # * all Makefile/Kconfig files
3711     # * all script/ files
3712
3713     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3714     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
3715     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3716     (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
3717     # dirs for additional modules per module-init-tools, kbuild/modules.txt
3718     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
3719     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
3720     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
3721     # first copy everything
3722     cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3723     cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3724     cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3725     if [ -s Module.markers ]; then
3726       cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3727     fi
3728
3729     # create the kABI metadata for use in packaging
3730     echo "**** GENERATING kernel ABI metadata ****"
3731     gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
3732     chmod 0755 %_sourcedir/kabitool
3733     rm -f %{_tmppath}/kernel-$KernelVer-kabideps
3734     %_sourcedir/kabitool -s Module.symvers -o %{_tmppath}/kernel-$KernelVer-kabideps
3735
3736 %if %{with_kabichk}
3737     echo "**** kABI checking is enabled in kernel SPEC file. ****"
3738     chmod 0755 $RPM_SOURCE_DIR/check-kabi
3739     if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
3740         cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
3741         $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
3742         rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
3743     else
3744         echo "**** NOTE: Cannot find reference Module.kabi file. ****"
3745     fi
3746 %endif
3747     # then drop all but the needed Makefiles/Kconfig files
3748     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
3749     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
3750     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3751     cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3752     cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3753     if [ -d arch/$Arch/scripts ]; then
3754       cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
3755     fi
3756     if [ -f arch/$Arch/*lds ]; then
3757       cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
3758     fi
3759     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
3760     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
3761 %ifarch ppc
3762     cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
3763 %endif
3764     if [ -d arch/%{asmarch}/include ]; then
3765       cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
3766     fi
3767     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3768     cd include
3769     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
3770     asmdir=$(readlink asm)
3771     cp -a $asmdir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/
3772     pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
3773     ln -s $asmdir asm
3774     popd
3775     # Make sure the Makefile and version.h have a matching timestamp so that
3776     # external modules can be built
3777     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/version.h
3778     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
3779     # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
3780     cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
3781     cd ..
3782
3783     #
3784     # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
3785     #
3786 %if %{with_debuginfo}
3787     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
3788     cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
3789 %endif
3790
3791     find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
3792
3793     # mark modules executable so that strip-to-file can strip them
3794     xargs --no-run-if-empty chmod u+x < modnames
3795
3796     # Generate a list of modules for block and networking.
3797
3798     fgrep /drivers/ modnames | xargs --no-run-if-empty nm -upA |
3799     sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
3800
3801     collect_modules_list()
3802     {
3803       sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
3804       LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
3805     }
3806
3807     collect_modules_list networking \
3808                          'register_netdev|ieee80211_register_hw|usbnet_probe'
3809     collect_modules_list block \
3810                          'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler'
3811     collect_modules_list drm \
3812                          'drm_open|drm_init'
3813     collect_modules_list modesetting \
3814                          'drm_crtc_init'
3815
3816     # detect missing or incorrect license tags
3817     rm -f modinfo
3818     while read i
3819     do
3820       echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
3821       /sbin/modinfo -l $i >> modinfo
3822     done < modnames
3823
3824     egrep -v \
3825           'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' \
3826           modinfo && exit 1
3827
3828     rm -f modinfo modnames
3829
3830     # remove files that will be auto generated by depmod at rpm -i time
3831     for i in alias alias.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap
3832     do
3833       rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
3834     done
3835
3836     # Move the devel headers out of the root file system
3837     mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
3838     mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
3839     ln -sf ../../..$DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
3840 }
3841
3842 ###
3843 # DO it...
3844 ###
3845
3846 # prepare directories
3847 rm -rf $RPM_BUILD_ROOT
3848 mkdir -p $RPM_BUILD_ROOT/boot
3849
3850 cd linux-%{kversion}.%{_target_cpu}
3851
3852 %if %{signmodules}
3853 cp %{SOURCE19} .
3854 gpg --homedir . --batch --gen-key %{SOURCE11}
3855 # if there're external keys to be included
3856 if [ -s %{SOURCE19} ]; then
3857         gpg --homedir . --no-default-keyring --keyring kernel.pub --import %{SOURCE19}
3858 fi
3859 gpg --homedir . --export --keyring ./kernel.pub Red > extract.pub
3860 gcc -o scripts/bin2c scripts/bin2c.c
3861 scripts/bin2c ksign_def_public_key __initdata <extract.pub >crypto/signature/key.h
3862 %endif
3863
3864 %if %{with_debug}
3865 BuildKernel %make_target %kernel_image debug
3866 %endif
3867
3868 %if %{with_pae_debug}
3869 BuildKernel %make_target %kernel_image PAEdebug
3870 %endif
3871
3872 %if %{with_pae}
3873 BuildKernel %make_target %kernel_image PAE
3874 %endif
3875
3876 %if %{with_up}
3877 BuildKernel %make_target %kernel_image
3878 %endif
3879
3880 %if %{with_smp}
3881 BuildKernel %make_target %kernel_image smp
3882 %endif
3883
3884 %if %{with_kdump}
3885 %ifarch s390x
3886 BuildKernel %make_target %kernel_image kdump
3887 %else
3888 BuildKernel vmlinux vmlinux kdump vmlinux
3889 %endif
3890 %endif
3891
3892 %if %{with_framepointer}
3893 BuildKernel %make_target %kernel_image framepointer
3894 %endif
3895
3896 %if %{with_doc}
3897 # Make the HTML and man pages.
3898 make -j1 htmldocs mandocs || %{doc_build_fail}
3899
3900 # sometimes non-world-readable files sneak into the kernel source tree
3901 chmod -R a=rX Documentation
3902 find Documentation -type d | xargs chmod u+w
3903 %endif
3904
3905 %if %{with_perf}
3906 pushd tools/perf
3907 make %{?_smp_mflags} man || %{doc_build_fail}
3908 popd
3909 %endif
3910
3911 ###
3912 ### Special hacks for debuginfo subpackages.
3913 ###
3914
3915 # This macro is used by %%install, so we must redefine it before that.
3916 %define debug_package %{nil}
3917
3918 %if %{fancy_debuginfo}
3919 %define __debug_install_post \
3920   /usr/lib/rpm/find-debuginfo.sh %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
3921 %{nil}
3922 %endif
3923
3924 %if %{with_debuginfo}
3925 %ifnarch noarch
3926 %global __debug_package 1
3927 %files -f debugfiles.list debuginfo-common-%{_target_cpu}
3928 %defattr(-,root,root)
3929 %endif
3930 %endif
3931
3932 ###
3933 ### install
3934 ###
3935
3936 %install
3937 # for some reason, on RHEL-5 RPM_BUILD_ROOT doesn't get set
3938 if [ -z "$RPM_BUILD_ROOT" ]; then
3939         export RPM_BUILD_ROOT="%{buildroot}";
3940 fi
3941
3942 cd linux-%{kversion}.%{_target_cpu}
3943
3944 %if %{with_doc}
3945 docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
3946 man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
3947
3948 # copy the source over
3949 mkdir -p $docdir
3950 tar -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
3951
3952 # Install man pages for the kernel API.
3953 mkdir -p $man9dir
3954 find Documentation/DocBook/man -name '*.9.gz' -print0 |
3955 xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
3956 ls $man9dir | grep -q '' || > $man9dir/BROKEN
3957 %endif # with_doc
3958
3959 # perf docs
3960 %if %{with_perf}
3961 mandir=$RPM_BUILD_ROOT%{_datadir}/man
3962 man1dir=$mandir/man1
3963 pushd tools/perf/Documentation
3964 make install-man mandir=$mandir
3965 popd
3966
3967 pushd $man1dir
3968 for d in *.1; do
3969  gzip $d;
3970 done
3971 popd
3972 %endif # with_perf
3973
3974 # perf shell wrapper
3975 %if %{with_perf}
3976 mkdir -p $RPM_BUILD_ROOT/usr/sbin/
3977 cp $RPM_SOURCE_DIR/perf $RPM_BUILD_ROOT/usr/sbin/perf
3978 chmod 0755 $RPM_BUILD_ROOT/usr/sbin/perf
3979 mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/perf
3980 %endif
3981
3982 %if %{with_headers}
3983 # Install kernel headers
3984 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
3985
3986 # Do headers_check but don't die if it fails.
3987 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
3988      > hdrwarnings.txt || :
3989 if grep -q exist hdrwarnings.txt; then
3990    sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
3991    # Temporarily cause a build failure if header inconsistencies.
3992    # exit 1
3993 fi
3994
3995 find $RPM_BUILD_ROOT/usr/include \
3996      \( -name .install -o -name .check -o \
3997         -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
3998
3999 # glibc provides scsi headers for itself, for now
4000 rm -rf $RPM_BUILD_ROOT/usr/include/scsi
4001 rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
4002 rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
4003 rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
4004 %endif
4005
4006 %if %{with_firmware}
4007 %{build_firmware}
4008 %endif
4009
4010 %if %{with_bootwrapper}
4011 make DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
4012 %endif
4013
4014
4015 ###
4016 ### clean
4017 ###
4018
4019 %clean
4020 rm -rf $RPM_BUILD_ROOT
4021
4022 ###
4023 ### scripts
4024 ###
4025
4026 #
4027 # This macro defines a %%post script for a kernel*-devel package.
4028 #       %%kernel_devel_post [<subpackage>]
4029 #
4030 %define kernel_devel_post() \
4031 %{expand:%%post %{?1:%{1}-}devel}\
4032 if [ -f /etc/sysconfig/kernel ]\
4033 then\
4034     . /etc/sysconfig/kernel || exit $?\
4035 fi\
4036 if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
4037 then\
4038     (cd /usr/src/kernels/%{KVERREL}%{?1:.%{1}} &&\
4039      /usr/bin/find . -type f | while read f; do\
4040        hardlink -c /usr/src/kernels/*.fc*.*/$f $f\
4041      done)\
4042 fi\
4043 %{nil}
4044
4045 # This macro defines a %%posttrans script for a kernel package.
4046 #       %%kernel_variant_posttrans [<subpackage>]
4047 # More text can follow to go at the end of this variant's %%post.
4048 #
4049 %define kernel_variant_posttrans() \
4050 %{expand:%%posttrans %{?1}}\
4051 %{expand:\
4052 %if %{with_dracut}\
4053 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --dracut --depmod --install %{KVERREL}%{?1:.%{1}} --kernel-args="crashkernel=auto" || exit $?\
4054 %else\
4055 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --depmod --install %{KVERREL}%{?1:.%{1}} --kernel-args="crashkernel=auto" || exit $?\
4056 %endif}\
4057 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVERREL}%{?1:.%{1}} || exit $?\
4058 %{nil}
4059
4060 #
4061 # This macro defines a %%post script for a kernel package and its devel package.
4062 #       %%kernel_variant_post [-v <subpackage>] [-r <replace>]
4063 # More text can follow to go at the end of this variant's %%post.
4064 #
4065 %define kernel_variant_post(v:r:) \
4066 %{expand:%%kernel_devel_post %{?-v*}}\
4067 %{expand:%%kernel_variant_posttrans %{?-v*}}\
4068 %{expand:%%post %{?-v*}}\
4069 %{-r:\
4070 if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\
4071    [ -f /etc/sysconfig/kernel ]; then\
4072   /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
4073 fi}\
4074 if [ -x /sbin/weak-modules ]\
4075 then\
4076     /sbin/weak-modules --add-kernel %{KVERREL}%{?-v:.%{-v*}} || exit $?\
4077 fi\
4078 %{nil}
4079
4080 #
4081 # This macro defines a %%preun script for a kernel package.
4082 #       %%kernel_variant_preun <subpackage>
4083 #
4084 %define kernel_variant_preun() \
4085 %{expand:%%preun %{?1}}\
4086 /sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}%{?1:.%{1}} || exit $?\
4087 if [ -x /sbin/weak-modules ]\
4088 then\
4089     /sbin/weak-modules --remove-kernel %{KVERREL}%{?-v:.%{-v*}} || exit $?\
4090 fi\
4091 %{nil}
4092
4093 %kernel_variant_preun
4094 %ifarch x86_64
4095 %kernel_variant_post -r (kernel-smp|kernel-xen)
4096 %else
4097 %kernel_variant_post -r kernel-smp
4098 %endif
4099
4100 %kernel_variant_preun smp
4101 %kernel_variant_post -v smp
4102
4103 %kernel_variant_preun PAE
4104 %kernel_variant_post -v PAE -r (kernel|kernel-smp|kernel-xen)
4105
4106 %kernel_variant_preun debug
4107 %kernel_variant_post -v debug
4108
4109 %kernel_variant_post -v PAEdebug -r (kernel|kernel-smp|kernel-xen)
4110 %kernel_variant_preun PAEdebug
4111
4112 %if %{with_framepointer}
4113 %kernel_variant_preun framepointer
4114 %kernel_variant_post -v framepointer
4115 %endif
4116
4117 %ifarch s390x
4118 %postun kdump
4119     # Create softlink to latest remaining kdump kernel.
4120     # If no more kdump kernel is available, remove softlink.
4121     if [ "$(readlink /boot/zfcpdump)" == "/boot/vmlinuz-%{KVERREL}.kdump" ]
4122     then
4123         vmlinuz_next=$(ls /boot/vmlinuz-*.kdump 2> /dev/null | sort | tail -n1)
4124         if [ $vmlinuz_next ]
4125         then
4126             ln -sf $vmlinuz_next /boot/zfcpdump
4127         else
4128             rm -f /boot/zfcpdump
4129         fi
4130     fi
4131
4132 %post kdump
4133     ln -sf /boot/vmlinuz-%{KVERREL}.kdump /boot/zfcpdump
4134 %endif
4135
4136 if [ -x /sbin/ldconfig ]
4137 then
4138     /sbin/ldconfig -X || exit $?
4139 fi
4140
4141 ###
4142 ### file lists
4143 ###
4144
4145 %if %{with_headers}
4146 %files headers
4147 %defattr(-,root,root)
4148 /usr/include/*
4149 %endif
4150
4151 %if %{with_firmware}
4152 %files firmware
4153 %defattr(-,root,root)
4154 /lib/firmware/*
4155 %doc linux-%{kversion}.%{_target_cpu}/firmware/WHENCE
4156 %endif
4157
4158 %if %{with_bootwrapper}
4159 %files bootwrapper
4160 %defattr(-,root,root)
4161 /usr/sbin/*
4162 %{_libdir}/kernel-wrapper
4163 %endif
4164
4165 # only some architecture builds need kernel-doc
4166 %if %{with_doc}
4167 %files doc
4168 %defattr(-,root,root)
4169 %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
4170 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
4171 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}
4172 %{_datadir}/man/man9/*
4173 %endif
4174
4175 %if %{with_perf}
4176 %files -n perf
4177 %defattr(-,root,root)
4178 %{_datadir}/doc/perf
4179 /usr/sbin/perf
4180 %{_datadir}/man/man1/*
4181 %endif
4182
4183 # This is %{image_install_path} on an arch where that includes ELF files,
4184 # or empty otherwise.
4185 %define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
4186
4187 #
4188 # This macro defines the %%files sections for a kernel package
4189 # and its devel and debuginfo packages.
4190 #       %%kernel_variant_files [-k vmlinux] <condition> <subpackage>
4191 #
4192 %define kernel_variant_files(k:) \
4193 %if %{1}\
4194 %{expand:%%files %{?2}}\
4195 %defattr(-,root,root)\
4196 /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?2:.%{2}}\
4197 %if %{with_fips} \
4198 /%{image_install_path}/.vmlinuz-%{KVERREL}%{?2:.%{2}}.hmac \
4199 %endif \
4200 /boot/System.map-%{KVERREL}%{?2:.%{2}}\
4201 /boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
4202 %if %{with_perftool}\
4203 /usr/libexec/perf.%{KVERREL}%{?2:.%{2}}\
4204 %endif\
4205 #/boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
4206 /boot/config-%{KVERREL}%{?2:.%{2}}\
4207 %dir /lib/modules/%{KVERREL}%{?2:.%{2}}\
4208 /lib/modules/%{KVERREL}%{?2:.%{2}}/kernel\
4209 /lib/modules/%{KVERREL}%{?2:.%{2}}/extra\
4210 /lib/modules/%{KVERREL}%{?2:.%{2}}/build\
4211 /lib/modules/%{KVERREL}%{?2:.%{2}}/source\
4212 /lib/modules/%{KVERREL}%{?2:.%{2}}/updates\
4213 /lib/modules/%{KVERREL}%{?2:.%{2}}/weak-updates\
4214 %ifarch %{vdso_arches}\
4215 /lib/modules/%{KVERREL}%{?2:.%{2}}/vdso\
4216 /etc/ld.so.conf.d/kernel-%{KVERREL}%{?2:.%{2}}.conf\
4217 %endif\
4218 /lib/modules/%{KVERREL}%{?2:.%{2}}/modules.*\
4219 %if %{with_dracut}\
4220 %ghost /boot/initramfs-%{KVERREL}%{?2:.%{2}}.img\
4221 %else\
4222 %ghost /boot/initrd-%{KVERREL}%{?2:.%{2}}.img\
4223 %endif\
4224 %{expand:%%files %{?2:%{2}-}devel}\
4225 %defattr(-,root,root)\
4226 %dir /usr/src/kernels\
4227 %verify(not mtime) /usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4228 /usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4229 %if %{with_debuginfo}\
4230 %ifnarch noarch\
4231 %if %{fancy_debuginfo}\
4232 %{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
4233 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
4234 %else\
4235 %{expand:%%files %{?2:%{2}-}debuginfo}\
4236 %endif\
4237 %defattr(-,root,root)\
4238 %if !%{fancy_debuginfo}\
4239 %if "%{elf_image_install_path}" != ""\
4240 %{debuginfodir}/%{elf_image_install_path}/*-%{KVERREL}%{?2:.%{2}}.debug\
4241 %endif\
4242 %{debuginfodir}/lib/modules/%{KVERREL}%{?2:.%{2}}\
4243 %{debuginfodir}/usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
4244 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
4245 %endif\
4246 %endif\
4247 %endif\
4248 %endif\
4249 %{nil}
4250
4251
4252 %kernel_variant_files %{with_up}
4253 %kernel_variant_files %{with_smp} smp
4254 %kernel_variant_files %{with_debug} debug
4255 %kernel_variant_files %{with_pae} PAE
4256 %kernel_variant_files %{with_pae_debug} PAEdebug
4257 %ifarch s390x
4258 %kernel_variant_files %{with_kdump} kdump
4259 %else
4260 %kernel_variant_files -k vmlinux %{with_kdump} kdump
4261 %endif
4262 %kernel_variant_files %{with_framepointer} framepointer
4263
4264 %changelog
4265 * Tue Mar 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-19.el6]
4266 - [mm] Switch to SLAB (Aristeu Rozanski) [570614]
4267
4268 * Mon Mar 08 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-18.el6]
4269 - [kernel/time] revert cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8 (Aristeu Rozanski) [567551]
4270 - [virt] hvc_console: Fix race between hvc_close and hvc_remove (Amit Shah) [568624]
4271 - [scsi] Add netapp to scsi dh alua dev list (Mike Christie) [559586]
4272 - [scsi] scsi_dh_emc: fix mode select setup (Mike Christie) [570685]
4273 - [drm] Remove loop in IronLake graphics interrupt handler (John Villalovos) [557838]
4274 - [x86] Intel Cougar Point chipset support (John Villalovos) [560077]
4275 - [vhost] vhost-net: restart tx poll on sk_sndbuf full (Michael S. Tsirkin) [562837]
4276 - [vhost] fix get_user_pages_fast error handling (Michael S. Tsirkin) [562837]
4277 - [vhost] initialize log eventfd context pointer (Michael S. Tsirkin) [562837]
4278 - [vhost] logging thinko fix (Michael S. Tsirkin) [562837]
4279 - [vhost] vhost-net: switch to smp barriers (Michael S. Tsirkin) [562837]
4280 - [net] bug fix for vlan + gro issue (Andy Gospodarek) [569922]
4281 - [uv] Fix unmap_vma() bug related to mmu_notifiers (George Beshers) [253033]
4282 - [uv] Have mmu_notifiers use SRCU so they may safely schedule (George Beshers) [253033]
4283 - [drm] radeon/kms: bring all v2.6.33 fixes into EL6 kernel (Dave Airlie) [547422 554323 566618 569704]
4284 - [dvb] Fix endless loop when decoding ULE at dvb-core (Mauro Carvalho Chehab) [569243]
4285 - [kernel] sched: Fix SCHED_MC regression caused by change in sched cpu_power (Danny Feng) [568123]
4286 - [s390x] vdso: glibc does not use vdso functions (Hendrik Brueckner) [567755]
4287 - [drm] bring drm core/ttm/fb layer fixes in from upstream (Dave Airlie) [569701]
4288 - [kernel] Fix SMT scheduler regression in find_busiest_queue() (Danny Feng) [568120]
4289 - [s390x] qeth: avoid recovery during device online setting (Hendrik Brueckner) [568781]
4290 - [mm] Fix potential crash with sys_move_pages (Danny Feng) [562591] {CVE-2010-0415}
4291 - [scsi] pmcraid: bug fixes from upstream (Rob Evers) [567376]
4292 - [scsi] lpfc Update from 8.3.5.4 to 8.3.5.5 FC/FCoE (Rob Evers) [564508]
4293 - [ata] ahci: disable FPDMA auto-activate optimization on NVIDIA AHCI (David Milburn) [568815]
4294 - [selinux] netlabel: fix corruption of SELinux MLS categories > 127 (Eric Paris) [568370]
4295 - [gfs2] print glock numbers in hex (Robert S Peterson) [566755]
4296 - [mm] Fix hugetlb.c clear_huge_page parameter (Andrea Arcangeli) [566604]
4297 - [mm] fix anon_vma locking updates for transparent hugepage code (Andrea Arcangeli) [564515]
4298 - [netdrv] cxgb3: add memory barriers (Steve Best) [568390]
4299 - [dm] raid45 target: constructor error path oops fix (Heinz Mauelshagen) [567605]
4300 - [scsi] mpt2sas: fix missing initialization (Tomas Henzl) [567965]
4301 - [net] netfilter: nf_conntrack: per netns nf_conntrack_cachep (Jiri Pirko) [567181]
4302 - [x86] nmi_watchdog: use __cpuinit for nmi_watchdog_default (Don Zickus) [567601]
4303 - [netdrv] ixgbe: prevent speculative processing of descriptors (Steve Best) [568391]
4304 - [kvm] Fix emulate_sys[call, enter, exit]()'s fault handling (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4305 - [kvm] Fix segment descriptor loading (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4306 - [kvm] Fix load_guest_segment_descriptor() to inject page fault (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4307 - [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}
4308 - [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}
4309 - [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}
4310 - [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}
4311 - [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}
4312 - [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}
4313 - [kvm] x86 emulator: code style cleanup (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4314 - [kvm] x86 emulator: Add LOCK prefix validity checking (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4315 - [kvm] x86 emulator: Check CPL level during privilege instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4316 - [kvm] x86 emulator: Fix popf emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4317 - [kvm] x86 emulator: Check IOPL level during io instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4318 - [kvm] x86 emulator: fix memory access during x86 emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4319 - [kvm] x86 emulator: Add Virtual-8086 mode of emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4320 - [kvm] x86 emulator: Add group9 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4321 - [kvm] x86 emulator: Add group8 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4322 - [kvm] x86 emulator: Introduce No64 decode option (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4323 - [kvm] x86 emulator: Add 'push/pop sreg' instructions (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4324 - [x86] AES/PCLMUL Instruction support: Various fixes for AES-NI and PCLMMUL (John Villalovos) [463496]
4325 - [x86] AES/PCLMUL Instruction support: Use gas macro for AES-NI instructions (John Villalovos) [463496]
4326 - [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]
4327 - [x86] AES/PCLMUL Instruction support: Add PCLMULQDQ accelerated implementation (John Villalovos) [463496]
4328 - [scsi] megaraid_sas: fix for 32bit apps (Tomas Henzl) [559941]
4329 - [kvm] fix large packet drops on kvm hosts with ipv6 (Neil Horman) [565525]
4330 - [kvm] Add MAINTAINERS entry for virtio_console (Amit Shah) [566391]
4331 - [kvm] virtio: console: Fill ports' entire in_vq with buffers (Amit Shah) [566391]
4332 - [kvm] virtio: console: Error out if we can't allocate buffers for control queue (Amit Shah) [566391]
4333 - [kvm] virtio: console: Add ability to remove module (Amit Shah) [566391]
4334 - [kvm] virtio: console: Ensure no memleaks in case of unused buffers (Amit Shah) [566391]
4335 - [kvm] virtio: console: update Red Hat copyright for 2010 (Amit Shah) [566391]
4336 - [kvm] virtio: Initialize vq->data entries to NULL (Amit Shah) [566391]
4337 - [kvm] virtio: console: outbufs are no longer needed (Amit Shah) [566391]
4338 - [kvm] virtio: console: return -efault for fill_readbuf if copy_to_user fails (Amit Shah) [566391]
4339 - [kvm] virtio: console: Allow sending variable-sized buffers to host, efault on copy_from_user err (Amit Shah) [566391]
4340
4341 * Thu Feb 18 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-17.el6]
4342 - [s390] hvc_iucv: allocate IUCV send/receive buffers in DMA zone (Hendrik Brueckner) [566188]
4343 - [s390] qdio: continue polling for buffer state ERROR (Hendrik Brueckner) [565528]
4344 - [s390] qdio: prevent kernel bug message in interrupt handler (Hendrik Brueckner) [565542]
4345 - [s390] zfcp: report BSG errors in correct field (Hendrik Brueckner) [564378]
4346 - [s390] zfcp: cancel all pending work for a to be removed zfcp_port (Hendrik Brueckner) [564382]
4347 - [nfs] mount.nfs: Unknown error 526 (Steve Dickson) [561975]
4348 - [x86] x86-64, rwsem: Avoid store forwarding hazard in __downgrade_write (Avi Kivity) [563801]
4349 - [x86] x86-64, rwsem: 64-bit xadd rwsem implementation (Avi Kivity) [563801]
4350 - [x86] x86-64: support native xadd rwsem implementation (Avi Kivity) [563801]
4351 - [x86] clean up rwsem type system (Avi Kivity) [563801]
4352 - [x86] x86-32: clean up rwsem inline asm statements (Avi Kivity) [563801]
4353 - [x86] nmi_watchdog: enable by default on RHEL-6 (Don Zickus) [523857]
4354 - [block] freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb (Mike Snitzer) [565890]
4355 - [block] fix bio_add_page for non trivial merge_bvec_fn case (Mike Snitzer) [565890]
4356 - [watchdog] Add support for iTCO watchdog on Ibex Peak chipset (John Villalovos) [536698]
4357 - [kernel] time: Remove xtime_cache (Prarit Bhargava) [563135]
4358 - [kernel] time: Implement logarithmic time accumalation (Prarit Bhargava) [563135]
4359 - [dm] raid1: fail writes if errors are not handled and log fails (Mike Snitzer) [565890]
4360 - [dm] mpath: fix stall when requeueing io (Mike Snitzer) [565890]
4361 - [dm] log: userspace fix overhead_size calcuations (Mike Snitzer) [565890]
4362 - [dm] stripe: avoid divide by zero with invalid stripe count (Mike Snitzer) [565890]
4363 - [mm] anon_vma locking updates for transparent hugepage code (Rik van Riel) [564515]
4364 - [mm] anon_vma linking changes to improve multi-process scalability (Rik van Riel) [564515]
4365 - [virt] virtio_blk: add block topology support (Christoph Hellwig) [556477]
4366 - [kvm] PIT: control word is write-only (Eduardo Habkost) [560905] {CVE-2010-0309}
4367 - [kernel] Prevent futex user corruption to crash the kernel (Jerome Marchand) [563957]
4368 - [selinux] print the module name when SELinux denies a userspace upcall (Eric Paris) [563731]
4369 - [gfs] GFS2 problems on single node cluster (Steven Whitehouse) [564329]
4370 - [ppc] Add kdump support to Collaborative Memory Manager (Steve Best) [563316]
4371
4372 * Fri Feb 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-16.el6]
4373 - [nfs] Remove a redundant check for PageFsCache in nfs_migrate_page() (Steve Dickson) [563938]
4374 - [nfs] Fix a bug in nfs_fscache_release_page() (Steve Dickson) [563938]
4375 - [mm] fix BUG()s caused by the transparent hugepage patch (Larry Woodman) [556572]
4376 - [fs] inotify: fix inotify WARN and compatibility issues (Eric Paris) [563363]
4377 - [net] do not check CAP_NET_RAW for kernel created sockets (Eric Paris) [540560]
4378 - [pci] Enablement of PCI ACS control when IOMMU enabled on system (Don Dutile) [523278]
4379 - [pci] PCI ACS support functions (Don Dutile) [523278]
4380 - [uv] x86: Fix RTC latency bug by reading replicated cachelines (George Beshers) [562189]
4381 - [s390x] ctcm / lcs / claw: remove cu3088 layer (Hendrik Brueckner) [557522]
4382 - [uv] vgaarb: add user selectability of the number of gpus in a system (George Beshers) [555879]
4383 - [gpu] vgaarb: fix vga arbiter to accept PCI domains other than 0 (George Beshers) [555879]
4384 - [uv] x86_64: update uv arch to target legacy VGA I/O correctly (George Beshers) [555879]
4385 - [pci] update pci_set_vga_state to call arch functions (George Beshers) [555879]
4386 - [uv] PCI: update pci_set_vga_state to call arch functions (George Beshers) [555879]
4387 - [mm] remove madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4388 - [mm] hugepage redhat customization (Andrea Arcangeli) [556572]
4389 - [mm] introduce khugepaged (Andrea Arcangeli) [556572]
4390 - [mm] transparent hugepage vmstat (Andrea Arcangeli) [556572]
4391 - [mm] memcg huge memory (Andrea Arcangeli) [556572]
4392 - [mm] memcg compound (Andrea Arcangeli) [556572]
4393 - [mm] pmd_trans_huge migrate bugcheck (Andrea Arcangeli) [556572]
4394 - [mm] madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4395 - [mm] verify pmd_trans_huge isnt leaking (Andrea Arcangeli) [556572]
4396 - [mm] transparent hugepage core (Andrea Arcangeli) [556572]
4397 - [mm] dont alloc harder for gfp nomemalloc even if nowait (Andrea Arcangeli) [556572]
4398 - [mm] introduce _GFP_NO_KSWAPD (Andrea Arcangeli) [556572]
4399 - [mm] backport page_referenced microoptimization (Andrea Arcangeli) [556572]
4400 - [mm] kvm mmu transparent hugepage support (Andrea Arcangeli) [556572]
4401 - [mm] clear_copy_huge_page (Andrea Arcangeli) [556572]
4402 - [mm] clear_huge_page fix (Andrea Arcangeli) [556572]
4403 - [mm] split_huge_page paging (Andrea Arcangeli) [556572]
4404 - [mm] split_huge_page_mm/vma (Andrea Arcangeli) [556572]
4405 - [mm] add pmd_huge_pte to mm_struct (Andrea Arcangeli) [556572]
4406 - [mm] clear page compound (Andrea Arcangeli) [556572]
4407 - [mm] add pmd mmu_notifier helpers (Andrea Arcangeli) [556572]
4408 - [mm] pte alloc trans splitting (Andrea Arcangeli) [556572]
4409 - [mm] bail out gup_fast on splitting pmd (Andrea Arcangeli) [556572]
4410 - [mm] add pmd mangling functions to x86 (Andrea Arcangeli) [556572]
4411 - [mm] add pmd mangling generic functions (Andrea Arcangeli) [556572]
4412 - [mm] special pmd_trans_* functions (Andrea Arcangeli) [556572]
4413 - [mm] config_transparent_hugepage (Andrea Arcangeli) [556572]
4414 - [mm] comment reminder in destroy_compound_page (Andrea Arcangeli) [556572]
4415 - [mm] export maybe_mkwrite (Andrea Arcangeli) [556572]
4416 - [mm] no paravirt version of pmd ops (Andrea Arcangeli) [556572]
4417 - [mm] add pmd paravirt ops (Andrea Arcangeli) [556572]
4418 - [mm] add native_set_pmd_at (Andrea Arcangeli) [556572]
4419 - [mm] clear compound mapping (Andrea Arcangeli) [556572]
4420 - [mm] update futex compound knowledge (Andrea Arcangeli) [556572]
4421 - [mm] alter compound get_page/put_page (Andrea Arcangeli) [556572]
4422 - [mm] add a compound_lock (Andrea Arcangeli) [556572]
4423 - [mm] define MADV_HUGEPAGE (Andrea Arcangeli) [556572]
4424 - [oprofile] Support Nehalem-EX CPU in Oprofile (John Villalovos) [528998]
4425 - [nfs] nfs: handle NFSv3 -EKEYEXPIRED errors as we would -EJUKEBOX (Jeff Layton) [479359]
4426 - [nfs] handle NFSv2 -EKEYEXPIRED returns from RPC layer appropriately (Jeff Layton) [479359]
4427 - [nfs] sunrpc: parse and return errors reported by gssd (Jeff Layton) [479359]
4428 - [nfs] nfs4: handle -EKEYEXPIRED errors from RPC layer (Jeff Layton) [479359]
4429 - [net] nf_conntrack: fix memory corruption (Jon Masters) [559471]
4430 - [kvm] emulate accessed bit for EPT (Rik van Riel) [555106]
4431 - [vhost] fix TUN=m VHOST_NET=y (Michael S. Tsirkin) [562837]
4432 - [vhost] vhost-net: defer f->private_data until setup succeeds (Chris Wright) [562837]
4433 - [vhost] vhost-net: comment use of invalid fd when setting vhost backend (Chris Wright) [562837]
4434 - [vhost] access check thinko fixes (Michael S. Tsirkin) [562837]
4435 - [vhost] make default mapping empty by default (Michael S. Tsirkin) [562837]
4436 - [vhost] add access_ok checks (Michael S. Tsirkin) [562837]
4437 - [vhost] prevent modification of an active ring (Michael S. Tsirkin) [562837]
4438 - [vhost] fix high 32 bit in FEATURES ioctls (Michael S. Tsirkin) [562837]
4439 - [dm] dm-raid1: fix deadlock at suspending failed device (Takahiro Yasui) [557932]
4440 - [dm] fix kernel panic at releasing bio on recovery failed region (Takahiro Yasui) [557934]
4441 - [scsi] lpfc Update from 8.3.4 to 8.3.5.4 FC/FCoE (Rob Evers) [531028]
4442 - [nfs] sunrpc/cache: fix module refcnt leak in a failure path (Steve Dickson) [562285]
4443 - [nfs] Ensure that we handle NFS4ERR_STALE_STATEID correctly (Steve Dickson) [560784]
4444 - [nfs] NFSv4.1: Don't call nfs4_schedule_state_recovery() unnecessarily (Steve Dickson) [560784]
4445 - [nfs] NFSv4: Don't allow posix locking against servers that don't support it (Steve Dickson) [560784]
4446 - [nfs] Ensure that the NFSv4 locking can recover from stateid errors (Steve Dickson) [560784]
4447 - [nfs] Avoid warnings when CONFIG_NFS_V4=n (Steve Dickson) [560784]
4448 - [nfs] Make nfs_commitdata_release static (Steve Dickson) [560784]
4449 - [nfs] Try to commit unstable writes in nfs_release_page() (Steve Dickson) [560784]
4450 - [nfs] Fix a reference leak in nfs_wb_cancel_page() (Steve Dickson) [560784]
4451 - [nfs] nfs41: cleanup callback code to use __be32 type (Steve Dickson) [560785]
4452 - [nfs] nfs41: clear NFS4CLNT_RECALL_SLOT bit on session reset (Steve Dickson) [560785]
4453 - [nfs] nfs41: fix nfs4_callback_recallslot (Steve Dickson) [560785]
4454 - [nfs] nfs41: resize slot table in reset (Steve Dickson) [560785]
4455 - [nfs] nfs41: implement cb_recall_slot (Steve Dickson) [560785]
4456 - [nfs] nfs41: back channel drc minimal implementation (Steve Dickson) [560785]
4457 - [nfs] nfs41: prepare for back channel drc (Steve Dickson) [560785]
4458 - [nfs] nfs41: remove uneeded checks in callback processing (Steve Dickson) [560785]
4459 - [nfs] nfs41: directly encode back channel error (Steve Dickson) [560785]
4460 - [nfs] nfs41: fix wrong error on callback header xdr overflow (Steve Dickson) [560785]
4461 - [nfs] nfs41: Process callback's referring call list (Steve Dickson) [560785]
4462 - [nfs] nfs41: Check slot table for referring calls (Steve Dickson) [560785]
4463 - [nfs] nfs41: Adjust max cache response size value (Steve Dickson) [560785]
4464 - [nfs] NFSD: Create PF_INET6 listener in write_ports (Steve Dickson) [560785]
4465 - [nfs] SUNRPC: NFS kernel APIs shouldn't return ENOENT for "transport not found" (Steve Dickson) [560785]
4466 - [nfs] SUNRPC: Bury "#ifdef IPV6" in svc_create_xprt() (Steve Dickson) [560785]
4467 - [nfs] NFSD: Support AF_INET6 in svc_addsock() function (Steve Dickson) [560785]
4468 - [nfs] SUNRPC: Use rpc_pton() in ip_map_parse() (Steve Dickson) [560785]
4469 - [nfs] nfsd: 4.1 has an rfc number (Steve Dickson) [560785]
4470 - [nfs] nfsd41: Create the recovery entry for the NFSv4.1 client (Steve Dickson) [560785]
4471 - [nfs] nfsd: use vfs_fsync for non-directories (Steve Dickson) [560785]
4472 - [nfs] nfsd4: Use FIRST_NFS4_OP in nfsd4_decode_compound() (Steve Dickson) [560785]
4473 - [nfs] nfsd41: nfsd4_decode_compound() does not recognize all ops (Steve Dickson) [560785]
4474
4475 * Fri Feb 05 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-15.el6]
4476 - [block] blk-cgroup: Fix lockdep warning of potential deadlock in blk-cgroup (Vivek Goyal) [561903]
4477 - [block] cfq: Do not idle on async queues and drive deeper WRITE depths (Vivek Goyal) [561902]
4478 - [quota] 64-bit quota format fixes (Jerome Marchand) [546311]
4479 - [x86] fix Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4480 - [fs] ext4: fix type of "offset" in ext4_io_end (Eric Sandeen) [560097]
4481 - [x86] Disable HPET MSI on ATI SB700/SB800 (Prarit Bhargava) [557332]
4482 - [x86] arch specific support for remapping HPET MSIs (Prarit Bhargava) [557332]
4483 - [x86] intr-remap: generic support for remapping HPET MSIs (Prarit Bhargava) [557332]
4484 - [gfs] GFS2: Extend umount wait coverage to full glock lifetime (Steven Whitehouse) [561287]
4485 - [gfs] GFS2: Wait for unlock completion on umount (Steven Whitehouse) [561287]
4486 - [gfs] GFS2: Use MAX_LFS_FILESIZE for meta inode size (Steven Whitehouse) [561307]
4487 - [gfs] GFS2: Use GFP_NOFS for alloc structure (Steven Whitehouse) [561307]
4488 - [gfs] GFS2: Fix refcnt leak on gfs2_follow_link() error path (Steven Whitehouse) [561307]
4489
4490 * Wed Feb 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-14.el6]
4491 - [s390x] dasd: fix online/offline race (Hendrik Brueckner) [552840]
4492 - [netdrv] update tg3 to version 3.106 and fix panic (John Feeney) [555101]
4493 - [s390x] dasd: Fix null pointer in s390dbf and discipline checking (Hendrik Brueckner) [559615]
4494 - [s390x] zcrypt: Do not remove coprocessor in case of error 8/72 (Hendrik Brueckner) [559613]
4495 - [s390x] cio: channel path vary operation has no effect (Hendrik Brueckner) [559612]
4496 - [uv] x86: Ensure hub revision set for all ACPI modes (George Beshers) [559752]
4497 - [uv] x86: Add function retrieving node controller revision number (George Beshers) [559752]
4498
4499 * Fri Jan 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-13.el6]
4500 - [virtio] console: show error message if hvc_alloc fails for console ports (Amit Shah) [543824]
4501 - [virtio] console: Add debugfs files for each port to expose debug info (Amit Shah) [543824]
4502 - [virtio] console: Add ability to hot-unplug ports (Amit Shah) [543824]
4503 - [virtio] hvc_console: Export (GPL'ed) hvc_remove (Amit Shah) [543824]
4504 - [virtio] Add ability to detach unused buffers from vrings (Amit Shah) [543824]
4505 - [virtio] console: Handle port hot-plug (Amit Shah) [543824]
4506 - [virtio] console: Remove cached data on port close (Amit Shah) [543824]
4507 - [virtio] console: Register with sysfs and create a 'name' attribute for ports (Amit Shah) [543824]
4508 - [virtio] console: Ensure only one process can have a port open at a time (Amit Shah) [543824]
4509 - [virtio] console: Add file operations to ports for open/read/write/poll (Amit Shah) [543824]
4510 - [virtio] console: Associate each port with a char device (Amit Shah) [543824]
4511 - [virtio] console: Prepare for writing to / reading from userspace buffers (Amit Shah) [543824]
4512 - [virtio] console: Add a new MULTIPORT feature, support for generic ports (Amit Shah) [543824]
4513 - [virtio] console: Introduce a send_buf function for a common path for sending data to host (Amit Shah) [543824]
4514 - [virtio] console: Introduce function to hand off data from host to readers (Amit Shah) [543824]
4515 - [virtio] console: Separate out find_vqs operation into a different function (Amit Shah) [543824]
4516 - [virtio] console: Separate out console init into a new function (Amit Shah) [543824]
4517 - [virtio] console: Separate out console-specific data into a separate struct (Amit Shah) [543824]
4518 - [virtio] console: ensure console size is updated on hvc open (Amit Shah) [543824]
4519 - [virtio] console: struct ports for multiple ports per device. (Amit Shah) [543824]
4520 - [virtio] console: remove global var (Amit Shah) [543824]
4521 - [virtio] console: don't assume a single console port. (Amit Shah) [543824]
4522 - [virtio] console: use vdev->priv to avoid accessing global var. (Amit Shah) [543824]
4523 - [virtio] console: introduce a get_inbuf helper to fetch bufs from in_vq (Amit Shah) [543824]
4524 - [virtio] console: ensure add_inbuf can work for multiple ports as well (Amit Shah) [543824]
4525 - [virtio] console: encapsulate buffer information in a struct (Amit Shah) [543824]
4526 - [virtio] console: port encapsulation (Amit Shah) [543824]
4527 - [virtio] console: We support only one device at a time (Amit Shah) [543824]
4528 - [virtio] hvc_console: Remove __devinit annotation from hvc_alloc (Amit Shah) [543824]
4529 - [virtio] hvc_console: make the ops pointer const. (Amit Shah) [543824]
4530 - [virtio] console: statically initialize virtio_cons (Amit Shah) [543824]
4531 - [virtio] console: comment cleanup (Amit Shah) [543824]
4532 - [x86] Fix crash when profiling more than 28 events (Bhavna Sarathy) [557570]
4533 - [x86] Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4534 - [kvm] fix spurious interrupt with irqfd (Marcelo Tosatti) [559343]
4535 - [kvm] eventfd: allow atomic read and waitqueue remove (Marcelo Tosatti) [559343]
4536 - [kvm] properly check max PIC pin in irq route setup (Marcelo Tosatti) [559343]
4537 - [kvm] only allow one gsi per fd (Marcelo Tosatti) [559343]
4538 - [kvm] x86: Fix leak of free lapic date in kvm_arch_vcpu_init() (Marcelo Tosatti) [559343]
4539 - [kvm] x86: Fix probable memory leak of vcpu->arch.mce_banks (Marcelo Tosatti) [559343]
4540 - [kvm] MMU: bail out pagewalk on kvm_read_guest error (Marcelo Tosatti) [559343]
4541 - [kvm] x86: Fix host_mapping_level() (Marcelo Tosatti) [559343]
4542 - [kvm] Fix race between APIC TMR and IRR (Marcelo Tosatti) [559343]
4543 - [x86] acpi: Export acpi_pci_irq_{add|del}_prt() (James Paradis) [553781]
4544 - [kdump] backport upstream ppc64 kcrctab fixes (Neil Horman) [558803]
4545 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4546
4547 * Thu Jan 28 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-12.el6]
4548 - [drm] radeon possible security issue (Jerome Glisse) [556692]
4549 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4550 - [pci] Always set prefetchable base/limit upper32 registers (Prarit Bhargava) [553471]
4551 - [scsi] Sync be2iscsi with upstream (Mike Christie) [515256]
4552 - [x86] msr/cpuid: Register enough minors for the MSR and CPUID drivers (George Beshers) [557554]
4553 - [x86] Remove unnecessary mdelay() from cpu_disable_common() (Peter Bogdanovic) [463633]
4554 - [x86] ioapic: Document another case when level irq is seen as an edge (Peter Bogdanovic) [463633]
4555 - [x86] ioapic: Fix the EOI register detection mechanism (Peter Bogdanovic) [463633]
4556 - [x86] io-apic: Move the effort of clearing remoteIRR explicitly before migrating the irq (Peter Bogdanovic) [463633]
4557 - [x86] Remove local_irq_enable()/local_irq_disable() in fixup_irqs() (Peter Bogdanovic) [463633]
4558 - [x86] Use EOI register in io-apic on intel platforms (Peter Bogdanovic) [463633]
4559
4560 * Tue Jan 26 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-11.el6]
4561 - [kdump] Remove the 32MB limitation for crashkernel (Steve Best) [529270]
4562 - [dm] dm-raid45: export missing dm_rh_inc (Heinz Mauelshagen) [552329]
4563 - [block] dm-raid45: add raid45 target (Heinz Mauelshagen) [552329]
4564 - [block] dm-replicator: blockdev site link handler (Heinz Mauelshagen) [552364]
4565 - [block] dm-replicator: ringbuffer replication log handler (Heinz Mauelshagen) [552364]
4566 - [block] dm-replicator: replication log and site link handler interfaces and main replicator module (Heinz Mauelshagen) [552364]
4567 - [block] dm-replicator: documentation and module registry (Heinz Mauelshagen) [552364]
4568 - [s390x] qeth: set default BLKT settings dependend on OSA hw level (Hendrik Brueckner) [557474]
4569 - [drm] bring RHEL6 radeon drm up to 2.6.33-rc4/5 level (Jerome Glisse) [557539]
4570 - [netdrv] e1000e: enhance frame fragment detection (Andy Gospodarek) [462780]
4571 - [stable] ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). (David S. Miller) [555084]
4572 - [stable] module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y (Rusty Russell) [555084]
4573 - [stable] fix more leaks in audit_tree.c tag_chunk() (Al Viro) [555084]
4574 - [stable] fix braindamage in audit_tree.c untag_chunk() (Al Viro) [555084]
4575 - [stable] mac80211: fix skb buffering issue (and fixes to that) (Johannes Berg) [555084]
4576 - [stable] kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr (Mike Frysinger) [555084]
4577 - [stable] libertas: Remove carrier signaling from the scan code (Samuel Ortiz) [555084]
4578 - [stable] mac80211: add missing sanity checks for action frames (Felix Fietkau) [555084]
4579 - [stable] iwl: off by one bug (Dan Carpenter) [555084]
4580 - [stable] cfg80211: fix syntax error on user regulatory hints (Luis R. Rodriguez) [555084]
4581 - [stable] ath5k: Fix eeprom checksum check for custom sized eeproms (Luis R. Rodriguez) [555084]
4582 - [stable] iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr (Zhu Yi) [555084]
4583 - [stable] xen: fix hang on suspend. (Ian Campbell) [555084]
4584 - [stable] quota: Fix dquot_transfer for filesystems different from ext4 (Jan Kara) [555084]
4585 - [stable] hwmon: (adt7462) Fix pin 28 monitoring (Roger Blofeld) [555084]
4586 - [stable] hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs (Yong Wang) [555084]
4587 - [stable] netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() (Patrick McHardy) [555084]
4588 - [stable] netfilter: ebtables: enforce CAP_NET_ADMIN (Florian Westphal) [555084]
4589 - [stable] ASoC: Fix WM8350 DSP mode B configuration (Mark Brown) [555084]
4590 - [stable] ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 (Daniel T Chen) [555084]
4591 - [stable] ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense blacklist (Daniel T Chen) [555084]
4592 - [stable] mmc_block: fix queue cleanup (Adrian Hunter) [555084]
4593 - [stable] mmc_block: fix probe error cleanup bug (Jarkko Lavinen) [555084]
4594 - [stable] mmc_block: add dev_t initialization check (Anna Lemehova) [555084]
4595 - [stable] kernel/signal.c: fix kernel information leak with print-fatal-signals=1 (Andi Kleen) [555084]
4596 - [stable] dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with DMA_FROM_DEVICE and (Krzysztof Halasa) [555084]
4597 - [stable] lib/rational.c needs module.h (Sascha Hauer) [555084]
4598 - [stable] drivers/cpuidle/governors/menu.c: fix undefined reference to `__udivdi3' (Stephen Hemminger) [555084]
4599 - [stable] rtc_cmos: convert shutdown to new pnp_driver->shutdown (OGAWA Hirofumi) [555084]
4600 - [stable] Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu for pre-Pentium" (Rusty Russell) [555084]
4601 - [stable] exofs: simple_write_end does not mark_inode_dirty (Boaz Harrosh) [555084]
4602 - [stable] modules: Skip empty sections when exporting section notes (Ben Hutchings) [555084]
4603 - [stable] ASoC: fix params_rate() macro use in several codecs (Guennadi Liakhovetski) [555084]
4604 - [stable] fasync: split 'fasync_helper()' into separate add/remove functions (Linus Torvalds) [555084]
4605 - [stable] untangle the do_mremap() mess (Al Viro)
4606
4607 * Fri Jan 22 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-10.el6]
4608 - [mm] mmap: don't return ENOMEM when mapcount is temporarily exceeded in munmap() (Danny Feng) [557000]
4609 - [netdrv] vxge: fix issues found in Neterion testing (Michal Schmidt) [493985]
4610 - [x86] Force irq complete move during cpu offline (Prarit Bhargava) [541815]
4611 - [sound] Fix SPDIF-In for AD1988 codecs + add Intel Cougar IDs (Jaroslav Kysela) [557473]
4612 - [scsi] aic79xx: check for non-NULL scb in ahd_handle_nonpkt_busfree (Tomas Henzl) [557753]
4613 - [s390x] fix loading of PER control registers for utrace. (CAI Qian) [556410]
4614 - [s390x] ptrace: dont abuse PT_PTRACED (CAI Qian) [552102]
4615 - [perf] Remove the "event" callback from perf events (Jason Baron) [525517]
4616 - [perf] Use overflow handler instead of the event callback (Jason Baron) [525517]
4617 - [perf] Fix locking for PERF_FORMAT_GROUP (Jason Baron) [525517]
4618 - [perf] Fix event scaling for inherited counters (Jason Baron) [525517]
4619 - [perf] Fix PERF_FORMAT_GROUP scale info (Jason Baron) [525517]
4620 - [perf] Allow for custom overflow handlers (Jason Baron) [525517]
4621 - [perf] Add a callback to perf events (Jason Baron) [525517]
4622 - [perf] improve error reporting (Jason Baron) [525517]
4623 - [perf] add kernel internal interface (Jason Baron) [525517]
4624 - [utrace] fix utrace_maybe_reap() vs find_matching_engine() race (Oleg Nesterov) [557338]
4625 - [x86] Disable Memory hot add on x86 32-bit (Prarit Bhargava) [557131]
4626 - [netdrv] e1000e: update to the latest upstream (Andy Gospodarek) [462780]
4627 - [gfs] Use dquot_send_warning() (Steven Whitehouse) [557057]
4628 - [gfs] Add quota netlink support (Steven Whitehouse) [557057]
4629 - [netdrv] qlge: update to upstream version v1.00.00.23.00.00-01 (Andy Gospodarek) [553357]
4630 - [s390x] zfcp: set HW timeout requested by BSG request (Hendrik Brueckner) [556918]
4631 - [s390x] zfcp: introduce BSG timeout callback (Hendrik Brueckner) [556918]
4632 - [scsi] scsi_transport_fc: Allow LLD to reset FC BSG timeout (Hendrik Brueckner) [556918]
4633
4634 * Wed Jan 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-9.el6]
4635 - [kvm] fix cleanup_srcu_struct on vm destruction (Marcelo Tosatti) [554762]
4636 - [x86] core: make LIST_POISON less deadly (Avi Kivity) [554640]
4637 - [x86] dell-wmi: Add support for new Dell systems (Matthew Garrett) [525548]
4638 - [fs] xfs: 2.6.33 updates (Eric Sandeen) [554891]
4639 - [x86] Add kernel pagefault tracepoint for x86 & x86_64. (Larry Woodman) [526032]
4640 - [pci] PCIe AER: honor ACPI HEST FIRMWARE FIRST mode (Matthew Garrett) [537205]
4641 - [block] direct-io: cleanup blockdev_direct_IO locking (Eric Sandeen) [556547]
4642 - [tracing] tracepoint: Add signal tracepoints (Masami Hiramatsu) [526030]
4643 - [cgroups] fix for "kernel BUG at kernel/cgroup.c:790" (Dave Anderson) [547815]
4644 - [irq] Expose the irq_desc node as /proc/irq/*/node (George Beshers) [555866]
4645 - [scsi] qla2xxx - Update support for FC/FCoE HBA/CNA (Rob Evers) [553854]
4646 - [scsi] bfa update from 2.1.2.0 to 2.1.2.1 (Rob Evers) [475704]
4647 - [nfs] sunrpc: fix build-time warning (Steve Dickson) [437715]
4648 - [nfs] sunrpc: on successful gss error pipe write, don't return error (Steve Dickson) [437715]
4649 - [nfs] SUNRPC: Fix the return value in gss_import_sec_context() (Steve Dickson) [437715]
4650 - [nfs] SUNRPC: Fix up an error return value in gss_import_sec_context_kerberos() (Steve Dickson) [437715]
4651 - [nfs] sunrpc: fix peername failed on closed listener (Steve Dickson) [437715]
4652 - [nfs] nfsd: make sure data is on disk before calling ->fsync (Steve Dickson) [437715]
4653 - [uv] React 2.6.32.y: isolcpus broken in 2.6.32.y kernel (George Beshers) [548842]
4654 - [gru] GRU Rollup patch (George Beshers) [546680]
4655 - [uv] XPC: pass nasid instead of nid to gru_create_message_queue (George Beshers) [546695]
4656 - [uv] x86: XPC receive message reuse triggers invalid BUG_ON (George Beshers) [546695]
4657 - [uv] x86: xpc_make_first_contact hang due to not accepting ACTIVE state (George Beshers) [546695]
4658 - [uv] x86: xpc NULL deref when mesq becomes empty (George Beshers) [546695]
4659 - [uv] x86: update XPC to handle updated BIOS interface (George Beshers) [546695]
4660 - [uv] xpc needs to provide an abstraction for uv_gpa (George Beshers) [546695]
4661 - [uv] x86, irq: Check move_in_progress before freeing the vector mapping (George Beshers) [546668]
4662 - [uv] x86: Remove move_cleanup_count from irq_cfg (George Beshers) [546668]
4663 - [uv] x86, irq: Allow 0xff for /proc/irq/[n]/smp_affinity on an 8-cpu system (George Beshers) [546668]
4664 - [uv] x86, apic: Move SGI UV functionality out of generic IO-APIC code (George Beshers) [546668]
4665 - [uv] x86 SGI: Fix irq affinity for hub based interrupts (George Beshers) [546668]
4666 - [uv] x86 RTC: Always enable RTC clocksource (George Beshers) [546668]
4667 - [uv] x86 RTC: Rename generic_interrupt to x86_platform_ipi (George Beshers) [546668]
4668 - [uv] x86, mm: Correct the implementation of is_untracked_pat_range() (George Beshers) [548524]
4669 - [uv] x86: Change is_ISA_range() into an inline function (George Beshers) [548524]
4670 - [uv] x86, platform: Change is_untracked_pat_range() to bool (George Beshers) [548524]
4671 - [uv] x86, mm: is_untracked_pat_range() takes a normal semiclosed range (George Beshers) [548524]
4672 - [uv] x86, mm: Call is_untracked_pat_range() rather than is_ISA_range() (George Beshers) [548524]
4673 - [uv] x86 SGI: Dont track GRU space in PAT (George Beshers) [548524]
4674 - [scsi] megaraid: upgrade to 4.17 (Tomas Henzl) [520729]
4675 - [scsi] mpt2sas: Bump version 03.100.03.00 (Tomas Henzl) [470848]
4676 - [scsi] mpt2sas: don't update links nor unblock device at no link rate change (Tomas Henzl) [470848]
4677 - [scsi] mpt2sas: add support for RAID Action System Shutdown Initiated at OS Shutdown (Tomas Henzl) [470848]
4678 - [scsi] mpt2sas: freeze the sdev IO queue when firmware sends internal device reset (Tomas Henzl) [470848]
4679 - [scsi] mpt2sas: fix PPC endian bug (Tomas Henzl) [470848]
4680 - [scsi] mpt2sas: mpt2sas_base_get_sense_buffer_dma returns little endian (Tomas Henzl) [470848]
4681 - [scsi] mpt2sas: return DID_TRANSPORT_DISRUPTED in nexus loss and SCSI_MLQUEUE_DEVICE_BUSY if device is busy (Tomas Henzl) [470848]
4682 - [scsi] mpt2sas: retrieve the ioc facts prior to putting the controller into READY state (Tomas Henzl) [470848]
4683 - [scsi] mpt2sas: add new info messages for IR and Expander events (Tomas Henzl) [470848]
4684 - [scsi] mpt2sas: limit the max_depth to 32 for SATA devices (Tomas Henzl) [470848]
4685 - [scsi] mpt2sas: add TimeStamp support when sending ioc_init (Tomas Henzl) [470848]
4686 - [scsi] mpt2sas: add extended type for diagnostic buffer support (Tomas Henzl) [470848]
4687 - [scsi] mpt2sas: add command line option diag_buffer_enable (Tomas Henzl) [470848]
4688 - [scsi] mpt2sas: fix some comments (Tomas Henzl) [470848]
4689 - [scsi] mpt2sas: stop driver when firmware encounters faults (Tomas Henzl) [470848]
4690 - [scsi] mpt2sas: adding MPI Headers - revision L (Tomas Henzl) [470848]
4691 - [scsi] mpt2sas: new device SAS2208 support (Tomas Henzl) [470848]
4692 - [scsi] mpt2sas: check for valid response info (Tomas Henzl) [470848]
4693 - [scsi] mpt2sas: fix expander remove fail (Tomas Henzl) [470848]
4694 - [scsi] mpt2sas: use sas address instead of handle as a lookup (Tomas Henzl) [470848]
4695 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [555812]
4696 - [block] Honor the gfp_mask for alloc_page() in blkdev_issue_discard() (Mike Snitzer) [554719]
4697 - [scsi] sync fcoe with upstream (Mike Christie) [549945]
4698 - [net] dccp: modify how dccp creates slab caches to prevent bug halt in SLUB (Neil Horman) [553698]
4699 - [s390x] tape: Add pr_fmt() macro to all tape source files (Hendrik Brueckner) [554380]
4700 - [s390] qeth: fix packet loss if TSO is switched on (Hendrik Brueckner) [546632]
4701 - [s390x] qeth: Support for HiperSockets Network Traffic Analyzer (Hendrik Brueckner) [463706]
4702 - [serial] 8250: add support for DTR/DSR hardware flow control (Mauro Carvalho Chehab) [523848]
4703
4704 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-8.el6]
4705 - [build] Revert "[redhat] disabling temporaly DEVTMPFS" (Aristeu Rozanski)
4706
4707 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-7.el6]
4708 - [drm] minor printk fixes from upstream (Dave Airlie) [554601]
4709 - [offb] add support for framebuffer handoff to offb. (Dave Airlie) [554948]
4710 - [x86] allow fbdev primary video code on 64-bit. (Dave Airlie) [554930]
4711 - [drm] nouveau: update to 2.6.33 level (Dave Airlie) [549930]
4712 - [drm] ttm: validation API changes + ERESTART fixes. (Dave Airlie) [554918]
4713 - [drm] radeon/kms: update to 2.6.33 (without TTM API changes) (Dave Airlie) [554918]
4714 - [drm] i915: bring Intel DRM/KMS driver up to 2.6.33 (Dave Airlie) [554616]
4715 - [drm] radeon/intel: realign displayport helper code with upstream. (Dave Airlie) [554601]
4716 - [drm] kms: rollup KMS core and helper changes to 2.6.33 (Dave Airlie) [554601]
4717 - [drm] remove address mask param for drm_pci_alloc() (Dave Airlie) [554601]
4718 - [drm] add new userspace core drm interfaces from 2.6.33 (Dave Airlie) [554601]
4719 - [drm] unlocked ioctl support for core + macro fixes (Dave Airlie) [554601]
4720 - [drm] ttm: rollup upstream TTM fixes (Dave Airlie) [554601]
4721 - [drm] mm: patch drm core memory range manager up to 2.6.33 (Dave Airlie) [554601]
4722 - [drm] drm/edid: update to 2.6.33 EDID parser code (Dave Airlie) [554601]
4723 - [net] dccp: fix module load dependency btw dccp_probe and dccp (Neil Horman) [554840]
4724 - [powerpc] pseries: Correct pseries/dlpar.c build break without CONFIG_SMP (Steve Best) [539318]
4725 - [powerpc] cpu-allocation/deallocation process (Steve Best) [539318]
4726 - [powerpc] Add code to online/offline CPUs of a DLPAR node (Steve Best) [539318]
4727 - [powerpc] CPU DLPAR handling (Steve Best) [539318]
4728 - [powerpc] sysfs cpu probe/release files (Steve Best) [539318]
4729 - [powerpc] Kernel handling of Dynamic Logical Partitioning (Steve Best) [539318]
4730 - [powerpc] pseries: Add hooks to put the CPU into an appropriate offline state (Steve Best) [539318]
4731 - [powerpc] pseries: Add extended_cede_processor() helper function. (Steve Best) [539318]
4732 - [gfs] GFS2: Fix glock refcount issues (Steven Whitehouse) [546634]
4733 - [gfs] GFS2: Ensure uptodate inode size when using O_APPEND (Steven Whitehouse) [547639]
4734 - [gfs] GFS2: Fix locking bug in rename (Steven Whitehouse) [547640]
4735 - [gfs] GFS2: Fix lock ordering in gfs2_check_blk_state() (Steven Whitehouse) [554673]
4736 - [gfs2] only show nobarrier option on /proc/mounts when the option is active (Steven Whitehouse) [546665]
4737 - [gfs2] add barrier/nobarrier mount options (Steven Whitehouse) [546665]
4738 - [gfs2] remove division from new statfs code (Steven Whitehouse) [298561]
4739 - [gfs2] Improve statfs and quota usability (Steven Whitehouse) [298561]
4740 - [gfs2] Add set_xquota support (Steven Whitehouse) [298561]
4741 - [gfs2] Add get_xquota support (Steven Whitehouse) [298561]
4742 - [gfs2] Clean up gfs2_adjust_quota() and do_glock() (Steven Whitehouse) [298561]
4743 - [gfs2] Remove constant argument from qd_get() (Steven Whitehouse) [298561]
4744 - [gfs2] Remove constant argument from qdsb_get() (Steven Whitehouse) [298561]
4745 - [gfs2] Add proper error reporting to quota sync via sysfs (Steven Whitehouse) [298561]
4746 - [gfs2] Add get_xstate quota function (Steven Whitehouse) [298561]
4747 - [gfs2] Remove obsolete code in quota.c (Steven Whitehouse) [298561]
4748 - [gfs2] Hook gfs2_quota_sync into VFS via gfs2_quotactl_ops (Steven Whitehouse) [298561]
4749 - [gfs2] Alter arguments of gfs2_quota/statfs_sync (Steven Whitehouse) [298561]
4750 - [gfs2] Fix -o meta mounts for subsequent mounts (Steven Whitehouse) [546664]
4751 - [gfs] GFS2: Fix gfs2_xattr_acl_chmod() (Steven Whitehouse) [546294]
4752 - [gfs] VFS: Use GFP_NOFS in posix_acl_from_xattr() (Steven Whitehouse) [546294]
4753 - [gfs] GFS2: Add cached ACLs support (Steven Whitehouse) [546294]
4754 - [gfs] GFS2: Clean up ACLs (Steven Whitehouse) [546294]
4755 - [gfs] GFS2: Use gfs2_set_mode() instead of munge_mode() (Steven Whitehouse) [546294]
4756 - [gfs] GFS2: Use forget_all_cached_acls() (Steven Whitehouse) [546294]
4757 - [gfs] VFS: Add forget_all_cached_acls() (Steven Whitehouse) [546294]
4758 - [gfs] GFS2: Fix up system xattrs (Steven Whitehouse) [546294]
4759 - [netdrv] igb: Update igb driver to support Barton Hills (Stefan Assmann) [462783]
4760 - [dm] add feature flags to reduce future kABI impact (Mike Snitzer) [547756]
4761 - [block] Stop using byte offsets (Mike Snitzer) [554718]
4762 - [dm] Fix device mapper topology stacking (Mike Snitzer) [554718]
4763 - [block] bdev_stack_limits wrapper (Mike Snitzer) [554718]
4764 - [block] Fix discard alignment calculation and printing (Mike Snitzer) [554718]
4765 - [block] Correct handling of bottom device misaligment (Mike Snitzer) [554718]
4766 - [block] Fix incorrect alignment offset reporting and update documentation (Mike Snitzer) [554718]
4767 - [kvm] Fix possible circular locking in kvm_vm_ioctl_assign_device() (Marcelo Tosatti) [554762]
4768 - [kvm] only clear irq_source_id if irqchip is present (Marcelo Tosatti) [554762]
4769 - [kvm] fix lock imbalance in kvm_*_irq_source_id() (Marcelo Tosatti) [554762]
4770 - [kvm] VMX: Report unexpected simultaneous exceptions as internal errors (Marcelo Tosatti) [554762]
4771 - [kvm] Allow internal errors reported to userspace to carry extra data (Marcelo Tosatti) [554762]
4772 - [kvm] x86: disable paravirt mmu reporting (Marcelo Tosatti) [554762]
4773 - [kvm] x86: disallow KVM_{SET, GET}_LAPIC without allocated in-kernel lapic (Marcelo Tosatti) [554762]
4774 - [kvm] x86: disallow multiple KVM_CREATE_IRQCHIP (Marcelo Tosatti) [554762]
4775 - [kvm] VMX: Disable unrestricted guest when EPT disabled (Marcelo Tosatti) [554762]
4776 - [kvm] SVM: remove needless mmap_sem acquision from nested_svm_map (Marcelo Tosatti) [554762]
4777 - [kvm] SVM: Notify nested hypervisor of lost event injections (Marcelo Tosatti) [554762]
4778 - [kvm] SVM: Move INTR vmexit out of atomic code (Marcelo Tosatti) [554762]
4779 - [kvm] remove pre_task_link setting in save_state_to_tss16 (Marcelo Tosatti) [554762]
4780 - [kvm] x86: Extend KVM_SET_VCPU_EVENTS with selective updates (Marcelo Tosatti) [554500]
4781 - [kvm] x86: Add KVM_GET/SET_VCPU_EVENTS (Marcelo Tosatti) [554500]
4782 - [kvm] fix kvmclock-adjust-offset ioctl to match upstream (Marcelo Tosatti) [554524]
4783 - [kvm] SVM: init_vmcb(): remove redundant save->cr0 initialization (Marcelo Tosatti) [554506]
4784 - [kvm] SVM: Reset cr0 properly on vcpu reset (Marcelo Tosatti) [554506]
4785 - [kvm] VMX: Use macros instead of hex value on cr0 initialization (Marcelo Tosatti) [554506]
4786 - [kvm] avoid taking ioapic mutex for non-ioapic EOIs (Marcelo Tosatti) [550809]
4787 - [kvm] Bump maximum vcpu count to 64 (Marcelo Tosatti) [550809]
4788 - [kvm] convert slots_lock to a mutex (Marcelo Tosatti) [550809]
4789 - [kvm] switch vcpu context to use SRCU (Marcelo Tosatti) [550809]
4790 - [kvm] convert io_bus to SRCU (Marcelo Tosatti) [550809]
4791 - [kvm] x86: switch kvm_set_memory_alias to SRCU update (Marcelo Tosatti) [550809]
4792 - [kvm] use SRCU for dirty log (Marcelo Tosatti) [550809]
4793 - [kvm] introduce kvm->srcu and convert kvm_set_memory_region to SRCU update (Marcelo Tosatti) [550809]
4794 - [kvm] use gfn_to_pfn_memslot in kvm_iommu_map_pages (Marcelo Tosatti) [550809]
4795 - [kvm] introduce gfn_to_pfn_memslot (Marcelo Tosatti) [550809]
4796 - [kvm] split kvm_arch_set_memory_region into prepare and commit (Marcelo Tosatti) [550809]
4797 - [kvm] modify alias layout in x86s struct kvm_arch (Marcelo Tosatti) [550809]
4798 - [kvm] modify memslots layout in struct kvm (Marcelo Tosatti) [550809]
4799 - [kvm] rcu: Enable synchronize_sched_expedited() fastpath (Marcelo Tosatti) [550809]
4800 - [kvm] rcu: Add synchronize_srcu_expedited() to the documentation (Marcelo Tosatti) [550809]
4801 - [kvm] rcu: Add synchronize_srcu_expedited() to the rcutorture test suite (Marcelo Tosatti) [550809]
4802 - [kvm] Add synchronize_srcu_expedited() (Marcelo Tosatti) [550809]
4803 - [kvm] Drop kvm->irq_lock lock from irq injection path (Marcelo Tosatti) [550809]
4804 - [kvm] Move IO APIC to its own lock (Marcelo Tosatti) [550809]
4805 - [kvm] Convert irq notifiers lists to RCU locking (Marcelo Tosatti) [550809]
4806 - [kvm] Move irq ack notifier list to arch independent code (Marcelo Tosatti) [550809]
4807 - [kvm] Move irq routing data structure to rcu locking (Marcelo Tosatti) [550809]
4808 - [kvm] Maintain back mapping from irqchip/pin to gsi (Marcelo Tosatti) [550809]
4809 - [kvm] Change irq routing table to use gsi indexed array (Marcelo Tosatti) [550809]
4810 - [kvm] Move irq sharing information to irqchip level (Marcelo Tosatti) [550809]
4811 - [kvm] Call pic_clear_isr() on pic reset to reuse logic there (Marcelo Tosatti) [550809]
4812 - [kvm] Dont pass kvm_run arguments (Marcelo Tosatti) [550809]
4813
4814 * Thu Jan 14 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-6.el6]
4815 - [modsign] Remove Makefile.modpost qualifying message for module sign failure (David Howells) [543529]
4816 - [nfs] fix oops in nfs_rename() (Jeff Layton) [554337]
4817 - [x86] AMD: Fix stale cpuid4_info shared_map data in shared_cpu_map cpumasks (Prarit Bhargava) [546610]
4818 - [s390] kernel: improve code generated by atomic operations (Hendrik Brueckner) [547411]
4819 - [s390x] tape: incomplete device removal (Hendrik Brueckner) [547415]
4820 - [netdrv] be2net: update be2net driver to latest upstream (Ivan Vecera) [515262]
4821 - [x86] mce: fix confusion between bank attributes and mce attributes (hiro muneda) [476606]
4822 - [tpm] autoload tpm_tis driver (John Feeney) [531891]
4823 - [stable] generic_permission: MAY_OPEN is not write access (Serge E. Hallyn) [555084]
4824 - [stable] rt2x00: Disable powersaving for rt61pci and rt2800pci. (Gertjan van Wingerde) [555084]
4825 - [stable] lguest: fix bug in setting guest GDT entry (Rusty Russell) [555084]
4826 - [stable] ext4: Update documentation to correct the inode_readahead_blks option name (Fang Wenqi) [555084]
4827 - [stable] sched: Sched_rt_periodic_timer vs cpu hotplug (Peter Zijlstra) [555084]
4828 - [stable] amd64_edac: fix forcing module load/unload (Borislav Petkov) [555084]
4829 - [stable] amd64_edac: make driver loading more robust (Borislav Petkov) [555084]
4830 - [stable] amd64_edac: fix driver instance freeing (Borislav Petkov) [555084]
4831 - [stable] x86, msr: msrs_alloc/free for CONFIG_SMP=n (Borislav Petkov) [555084]
4832 - [stable] x86, msr: Add support for non-contiguous cpumasks (Borislav Petkov) [555084]
4833 - [stable] amd64_edac: unify MCGCTL ECC switching (Borislav Petkov) [555084]
4834 - [stable] cpumask: use modern cpumask style in drivers/edac/amd64_edac.c (Rusty Russell) [555084]
4835 - [stable] x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus (Borislav Petkov) [555084]
4836 - [stable] ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) (Dmitry Monakhov) [555084]
4837 - [stable] ext4: Convert to generic reserved quota's space management. (Dmitry Monakhov) [555084]
4838 - [stable] quota: decouple fs reserved space from quota reservation (Dmitry Monakhov) [555084]
4839 - [stable] Add unlocked version of inode_add_bytes() function (Dmitry Monakhov) [555084]
4840 - [stable] udf: Try harder when looking for VAT inode (Jan Kara) [555084]
4841 - [stable] orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled (Andrey Borzenkov) [555084]
4842 - [stable] drm: disable all the possible outputs/crtcs before entering KMS mode (Zhao Yakui) [555084]
4843 - [stable] drm/radeon/kms: fix crtc vblank update for r600 (Dave Airlie) [555084]
4844 - [stable] sched: Fix balance vs hotplug race (Peter Zijlstra) [555084]
4845 - [stable] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support (Geert Uytterhoeven) [555084]
4846 - [stable] b43: avoid PPC fault during resume (Larry Finger) [555084]
4847 - [stable] hwmon: (sht15) Off-by-one error in array index + incorrect constants (Jonathan Cameron) [555084]
4848 - [stable] netfilter: fix crashes in bridge netfilter caused by fragment jumps (Patrick McHardy) [555084]
4849 - [stable] ipv6: reassembly: use seperate reassembly queues for conntrack and local delivery (Patrick McHardy) [555084]
4850 - [stable] e100: Fix broken cbs accounting due to missing memset. (Roger Oksanen) [555084]
4851 - [stable] memcg: avoid oom-killing innocent task in case of use_hierarchy (Daisuke Nishimura) [555084]
4852 - [stable] x86/ptrace: make genregs[32]_get/set more robust (Linus Torvalds) [555084]
4853 - [stable] V4L/DVB (13596): ov511.c typo: lock => unlock (Dan Carpenter) [555084]
4854 - [stable] kernel/sysctl.c: fix the incomplete part of sysctl_max_map_count-should-be-non-negative.patch (WANG Cong) [555084]
4855 - [stable] 'sysctl_max_map_count' should be non-negative (Amerigo Wang) [555084]
4856 - [stable] NOMMU: Optimise away the {dac_,}mmap_min_addr tests (David Howells) [555084]
4857 - [stable] mac80211: fix race with suspend and dynamic_ps_disable_work (Luis R. Rodriguez) [555084]
4858 - [stable] iwlwifi: fix 40MHz operation setting on cards that do not allow it (Reinette Chatre) [555084]
4859 - [stable] iwlwifi: fix more eeprom endian bugs (Johannes Berg) [555084]
4860 - [stable] iwlwifi: fix EEPROM/OTP reading endian annotations and a bug (Johannes Berg) [555084]
4861 - [stable] iwl3945: fix panic in iwl3945 driver (Zhu Yi) [555084]
4862 - [stable] iwl3945: disable power save (Reinette Chatre) [555084]
4863 - [stable] ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value in 0x4054 (Vasanthakumar Thiagarajan) [555084]
4864 - [stable] ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on 64-bit (Vasanthakumar Thiagarajan) [555084]
4865 - [stable] ath9k: fix suspend by waking device prior to stop (Sujith) [555084]
4866 - [stable] ath9k: wake hardware during AMPDU TX actions (Luis R. Rodriguez) [555084]
4867 - [stable] ath9k: fix missed error codes in the tx status check (Felix Fietkau) [555084]
4868 - [stable] ath9k: Fix TX queue draining (Sujith) [555084]
4869 - [stable] ath9k: wake hardware for interface IBSS/AP/Mesh removal (Luis R. Rodriguez) [555084]
4870 - [stable] ath5k: fix SWI calibration interrupt storm (Bob Copeland) [555084]
4871 - [stable] cfg80211: fix race between deauth and assoc response (Johannes Berg) [555084]
4872 - [stable] mac80211: Fix IBSS merge (Sujith) [555084]
4873 - [stable] mac80211: fix WMM AP settings application (Johannes Berg) [555084]
4874 - [stable] mac80211: fix propagation of failed hardware reconfigurations (Luis R. Rodriguez) [555084]
4875 - [stable] iwmc3200wifi: fix array out-of-boundary access (Zhu Yi) [555084]
4876 - [stable] Libertas: fix buffer overflow in lbs_get_essid() (Daniel Mack) [555084]
4877 - [stable] KVM: LAPIC: make sure IRR bitmap is scanned after vm load (Marcelo Tosatti) [555084]
4878 - [stable] KVM: MMU: remove prefault from invlpg handler (Marcelo Tosatti) [555084]
4879 - [stable] ioat2,3: put channel hardware in known state at init (Dan Williams) [555084]
4880 - [stable] ioat3: fix p-disabled q-continuation (Dan Williams) [555084]
4881 - [stable] x86/amd-iommu: Fix initialization failure panic (Joerg Roedel) [555084]
4882 - [stable] dma-debug: Fix bug causing build warning (Ingo Molnar) [555084]
4883 - [stable] dma-debug: Do not add notifier when dma debugging is disabled. (Shaun Ruffell) [555084]
4884 - [stable] dma: at_hdmac: correct incompatible type for argument 1 of 'spin_lock_bh' (Nicolas Ferre) [555084]
4885 - [stable] md: Fix unfortunate interaction with evms (NeilBrown) [555084]
4886 - [stable] x86: SGI UV: Fix writes to led registers on remote uv hubs (Mike Travis) [555084]
4887 - [stable] drivers/net/usb: Correct code taking the size of a pointer (Julia Lawall) [555084]
4888 - [stable] USB: fix bugs in usb_(de)authorize_device (Alan Stern) [555084]
4889 - [stable] USB: rename usb_configure_device (Alan Stern) [555084]
4890 - [stable] Bluetooth: Prevent ill-timed autosuspend in USB driver (Oliver Neukum) [555084]
4891 - [stable] USB: musb: gadget_ep0: avoid SetupEnd interrupt (Sergei Shtylyov) [555084]
4892 - [stable] USB: Fix a bug on appledisplay.c regarding signedness (pancho horrillo) [555084]
4893 - [stable] USB: option: support hi speed for modem Haier CE100 (Donny Kurnia) [555084]
4894 - [stable] USB: emi62: fix crash when trying to load EMI 6|2 firmware (Clemens Ladisch) [555084]
4895 - [stable] drm/radeon: fix build on 64-bit with some compilers. (Dave Airlie) [555084]
4896 - [stable] ASoC: Do not write to invalid registers on the wm9712. (Eric Millbrandt) [555084]
4897 - [stable] powerpc: Handle VSX alignment faults correctly in little-endian mode (Neil Campbell) [555084]
4898 - [stable] ACPI: Use the return result of ACPI lid notifier chain correctly (Zhao Yakui) [555084]
4899 - [stable] ACPI: EC: Fix MSI DMI detection (Alexey Starikovskiy) [555084]
4900 - [stable] acerhdf: limit modalias matching to supported (Stefan Bader) [555084]
4901 - [stable] ALSA: hda - Fix missing capsrc_nids for ALC88x (Takashi Iwai) [555084]
4902 - [stable] sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer (Clemens Ladisch) [555084]
4903 - [stable] ASoC: wm8974: fix a wrong bit definition (Guennadi Liakhovetski) [555084]
4904 - [stable] pata_cmd64x: fix overclocking of UDMA0-2 modes (Bartlomiej Zolnierkiewicz) [555084]
4905 - [stable] pata_hpt3x2n: fix clock turnaround (Sergei Shtylyov) [555084]
4906 - [stable] clockevents: Prevent clockevent_devices list corruption on cpu hotplug (Thomas Gleixner) [555084]
4907 - [stable] sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE (Peter Zijlstra) [555084]
4908 - [stable] x86, cpuid: Add "volatile" to asm in native_cpuid() (Suresh Siddha) [555084]
4909 - [stable] sched: Fix task_hot() test order (Peter Zijlstra) [555084]
4910 - [stable] SCSI: fc class: fix fc_transport_init error handling (Mike Christie) [555084]
4911 - [stable] SCSI: st: fix mdata->page_order handling (FUJITA Tomonori) [555084]
4912 - [stable] SCSI: qla2xxx: dpc thread can execute before scsi host has been added (Michael Reed) [555084]
4913 - [stable] SCSI: ipr: fix EEH recovery (Kleber Sacilotto de Souza) [555084]
4914 - [stable] implement early_io{re,un}map for ia64 (Luck, Tony) [555084]
4915 - [stable] perf_event: Fix incorrect range check on cpu number (Paul Mackerras) [555084]
4916 - [stable] netfilter: xtables: document minimal required version (Jan Engelhardt) [555084]
4917 - [stable] intel-iommu: ignore page table validation in pass through mode (Chris Wright) [555084]
4918 - [stable] jffs2: Fix long-standing bug with symlink garbage collection. (David Woodhouse) [555084]
4919 - [stable] ipvs: zero usvc and udest (Simon Horman) [555084]
4920 - [stable] mm: sigbus instead of abusing oom (Hugh Dickins) [555084]
4921 - [stable] drm/i915: Fix LVDS stability issue on Ironlake (Zhenyu Wang) [555084]
4922 - [stable] drm/i915: PineView only has LVDS and CRT ports (Zhenyu Wang) [555084]
4923 - [stable] drm/i915: Avoid NULL dereference with component_only tv_modes (Chris Wilson) [555084]
4924 - [stable] x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value (Yong Wang) [555084]
4925 - [stable] bcm63xx_enet: fix compilation failure after get_stats_count removal (Florian Fainelli) [555084]
4926 - [stable] V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. (Rafal Milecki) [555084]
4927 - [stable] ext3: Fix data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
4928 - [stable] net: Fix userspace RTM_NEWLINK notifications. (Eric W. Biederman) [555084]
4929 - [stable] ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. (Zhao Yakui) [555084]
4930 - [stable] vmalloc: conditionalize build of pcpu_get_vm_areas() (Tejun Heo) [555084]
4931 - [stable] asus-laptop: change light sens default values. (Corentin Chary) [555084]
4932 - [stable] acerhdf: add new BIOS versions (Peter Feuerer) [555084]
4933 - [stable] matroxfb: fix problems with display stability (Alan Cox) [555084]
4934 - [stable] ipw2100: fix rebooting hang with driver loaded (Zhu Yi) [555084]
4935 - [stable] thinkpad-acpi: preserve rfkill state across suspend/resume (Henrique de Moraes Holschuh) [555084]
4936 - [stable] thinkpad-acpi: fix default brightness_mode for R50e/R51 (Henrique de Moraes Holschuh) [555084]
4937 - [stable] memcg: fix memory.memsw.usage_in_bytes for root cgroup (Kirill A. Shutemov) [555084]
4938 - [stable] mac80211: Fix dynamic power save for scanning. (Vivek Natarajan) [555084]
4939 - [stable] ath9k: fix tx status reporting (Felix Fietkau) [555084]
4940 - [stable] tracing: Fix event format export (Johannes Berg) [555084]
4941 - [stable] b43legacy: avoid PPC fault during resume (Larry Finger) [555084]
4942 - [stable] sparc: Set UTS_MACHINE correctly. (David S. Miller) [555084]
4943 - [stable] sparc64: Fix stack debugging IRQ stack regression. (David S. Miller) [555084]
4944 - [stable] sparc64: Fix overly strict range type matching for PCI devices. (David S. Miller) [555084]
4945 - [stable] sparc64: Don't specify IRQF_SHARED for LDC interrupts. (David S. Miller) [555084]
4946 - [stable] b44 WOL setup: one-bit-off stack corruption kernel panic fix (Stanislav Brabec) [555084]
4947 - [stable] ip_fragment: also adjust skb->truesize for packets not owned by a socket (Patrick McHardy) [555084]
4948 - [stable] tcp: Stalling connections: Fix timeout calculation routine (Damian Lukowski) [555084]
4949 - [stable] slc90e66: fix UDMA handling (Bartlomiej Zolnierkiewicz) [555084]
4950 - [stable] xen: try harder to balloon up under memory pressure. (Ian Campbell) [555084]
4951 - [stable] Xen balloon: fix totalram_pages counting. (Gianluca Guida) [555084]
4952 - [stable] xen: explicitly create/destroy stop_machine workqueues outside suspend/resume region. (Ian Campbell) [555084]
4953 - [stable] xen: use iret for return from 64b kernel to 32b usermode (Jeremy Fitzhardinge) [555084]
4954 - [stable] xen: don't leak IRQs over suspend/resume. (Ian Campbell) [555084]
4955 - [stable] xen: improve error handling in do_suspend. (Ian Campbell) [555084]
4956 - [stable] xen: call clock resume notifier on all CPUs (Ian Campbell) [555084]
4957 - [stable] xen: register runstate info for boot CPU early (Jeremy Fitzhardinge) [555084]
4958 - [stable] xen: don't call dpm_resume_noirq() with interrupts disabled. (Jeremy Fitzhardinge) [555084]
4959 - [stable] xen: register runstate on secondary CPUs (Ian Campbell) [555084]
4960 - [stable] xen: register timer interrupt with IRQF_TIMER (Ian Campbell) [555084]
4961 - [stable] xen: correctly restore pfn_to_mfn_list_list after resume (Ian Campbell) [555084]
4962 - [stable] xen: restore runstate_info even if !have_vcpu_info_placement (Jeremy Fitzhardinge) [555084]
4963 - [stable] xen: re-register runstate area earlier on resume. (Ian Campbell) [555084]
4964 - [stable] xen/xenbus: make DEVICE_ATTR()s static (Jeremy Fitzhardinge) [555084]
4965 - [stable] drm/i915: Add the missing clonemask for display port on Ironlake (Zhao Yakui) [555084]
4966 - [stable] drm/i915: Set the error code after failing to insert new offset into mm ht. (Chris Wilson) [555084]
4967 - [stable] drm/ttm: Fix build failure due to missing struct page (Martin Michlmayr) [555084]
4968 - [stable] drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size (Alex Deucher) [555084]
4969 - [stable] drm/radeon/kms: fix vram setup on rs600 (Alex Deucher) [555084]
4970 - [stable] drm/radeon/kms: fix legacy crtc2 dpms (Alex Deucher) [555084]
4971 - [stable] drm/radeon/kms: handle vblanks properly with dpms on (Alex Deucher) [555084]
4972 - [stable] drm/radeon/kms: Add quirk for HIS X1300 board (Alex Deucher) [555084]
4973 - [stable] powerpc: Fix usage of 64-bit instruction in 32-bit altivec code (Benjamin Herrenschmidt) [555084]
4974 - [stable] powerpc/therm_adt746x: Record pwm invert bit at module load time] (Darrick J. Wong) [555084]
4975 - [stable] powerpc/windfarm: Add detection for second cpu pump (Bolko Maass) [555084]
4976 - [stable] mm: hugetlb: fix hugepage memory leak in walk_page_range() (Naoya Horiguchi) [555084]
4977 - [stable] mm: hugetlb: fix hugepage memory leak in mincore() (Naoya Horiguchi) [555084]
4978 - [stable] x86: Fix bogus warning in apic_noop.apic_write() (Thomas Gleixner) [555084]
4979 - [stable] rtl8187: Fix wrong rfkill switch mask for some models (Larry Finger) [555084]
4980 - [stable] wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC (John W. Linville) [555084]
4981 - [stable] mac80211: fix scan abort sanity checks (Johannes Berg) [555084]
4982 - [stable] mac80211: Revert 'Use correct sign for mesh active path refresh' (Javier Cardona) [555084]
4983 - [stable] mac80211: Fixed bug in mesh portal paths (Javier Cardona) [555084]
4984 - [stable] mac80211: Fix bug in computing crc over dynamic IEs in beacon (Vasanthakumar Thiagarajan) [555084]
4985 - [stable] Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN (Ian Jackson) [555084]
4986 - [stable] Driver core: fix race in dev_driver_string (Alan Stern) [555084]
4987 - [stable] debugfs: fix create mutex racy fops and private data (Mathieu Desnoyers) [555084]
4988 - [stable] devpts_get_tty() should validate inode (Sukadev Bhattiprolu) [555084]
4989 - [stable] futex: Take mmap_sem for get_user_pages in fault_in_user_writeable (Andi Kleen) [555084]
4990 - [stable] md/bitmap: protect against bitmap removal while being updated. (NeilBrown) [555084]
4991 - [stable] hfs: fix a potential buffer overflow (Amerigo Wang) [555084]
4992 - [stable] pxa/em-x270: fix usb hub power up/reset sequence (Igor Grinberg) [555084]
4993 - [stable] USB: Close usb_find_interface race v3 (Russ Dill) [555084]
4994 - [stable] USB: usb-storage: add BAD_SENSE flag (Alan Stern) [555084]
4995 - [stable] USB: usbtmc: repeat usb_bulk_msg until whole message is transfered (Andre Herms) [555084]
4996 - [stable] USB: option.c: add support for D-Link DWM-162-U5 (Zhang Le) [555084]
4997 - [stable] USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again (Sergei Shtylyov) [555084]
4998 - [stable] USB: xhci: Add correct email and files to MAINTAINERS entry. (Sarah Sharp) [555084]
4999 - [stable] jbd2: don't wipe the journal on a failed journal checksum (Theodore Ts'o) [555084]
5000 - [stable] UBI: flush wl before clearing update marker (Sebastian Andrzej Siewior) [555084]
5001 - [stable] bsdacct: fix uid/gid misreporting (Alexey Dobriyan) [555084]
5002 - [stable] V4L/DVB: Fix test in copy_reg_bits() (Roel Kluin) [555084]
5003 - [stable] pata_hpt{37x|3x2n}: fix timing register masks (take 2) (Sergei Shtylyov) [555084]
5004 - [stable] x86: Fix typo in Intel CPU cache size descriptor (Dave Jones) [555084]
5005 - [stable] x86: Add new Intel CPU cache size descriptors (Dave Jones) [555084]
5006 - [stable] x86: Fix duplicated UV BAU interrupt vector (Cliff Wickman) [555084]
5007 - [stable] x86/mce: Set up timer unconditionally (Jan Beulich) [555084]
5008 - [stable] x86, mce: don't restart timer if disabled (Hidetoshi Seto) [555084]
5009 - [stable] x86: Use -maccumulate-outgoing-args for sane mcount prologues (Thomas Gleixner) [555084]
5010 - [stable] x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage (Thomas Gleixner) [555084]
5011 - [stable] KVM: x86: include pvclock MSRs in msrs_to_save (Glauber Costa) [555084]
5012 - [stable] KVM: fix irq_source_id size verification (Marcelo Tosatti) [555084]
5013 - [stable] KVM: s390: Make psw available on all exits, not just a subset (Carsten Otte) [555084]
5014 - [stable] KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c (Carsten Otte) [555084]
5015 - [stable] KVM: x86 emulator: limit instructions to 15 bytes (Avi Kivity) [555084]
5016 - [stable] ALSA: hrtimer - Fix lock-up (Takashi Iwai) [555084]
5017 - [stable] hrtimer: Fix /proc/timer_list regression (Feng Tang) [555084]
5018 - [stable] ath5k: enable EEPROM checksum check (Luis R. Rodriguez) [555084]
5019 - [stable] ath5k: allow setting txpower to 0 (Bob Copeland) [555084]
5020 - [stable] ssb: Fix range check in sprom write (Michael Buesch) [555084]
5021 - [stable] x86, apic: Enable lapic nmi watchdog on AMD Family 11h (Mikael Pettersson) [555084]
5022 - [stable] x86: ASUS P4S800 reboot=bios quirk (Leann Ogasawara) [555084]
5023 - [stable] x86: GART: pci-gart_64.c: Use correct length in strncmp (Joe Perches) [555084]
5024 - [stable] x86: Fix iommu=nodac parameter handling (Tejun Heo) [555084]
5025 - [stable] x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking up the PCI tree (Darrick J. Wong) [555084]
5026 - [stable] x86/amd-iommu: un__init iommu_setup_msi (Joerg Roedel) [555084]
5027 - [stable] x86/amd-iommu: attach devices to pre-allocated domains early (Joerg Roedel) [555084]
5028 - [stable] sched: Fix and clean up rate-limit newidle code (Mike Galbraith) [555084]
5029 - [stable] sched: Rate-limit newidle (Mike Galbraith) [555084]
5030 - [stable] sched: Fix affinity logic in select_task_rq_fair() (Mike Galbraith) [555084]
5031 - [stable] sched: Check for an idle shared cache in select_task_rq_fair() (Mike Galbraith) [555084]
5032 - [stable] PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() (Rafael J. Wysocki) [555084]
5033 - [stable] perf_event: Initialize data.period in perf_swevent_hrtimer() (Xiao Guangrong) [555084]
5034 - [stable] perf_event: Fix invalid type in ioctl definition (Arjan van de Ven) [555084]
5035 - [stable] rcu: Remove inline from forward-referenced functions (Paul E. McKenney) [555084]
5036 - [stable] rcu: Fix note_new_gpnum() uses of ->gpnum (Paul E. McKenney) [555084]
5037 - [stable] rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed counter (Paul E. McKenney) [555084]
5038 - [stable] rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling of ->completed counter (Paul E. McKenney) [555084]
5039 - [stable] firewire: ohci: handle receive packets with a data length of zero (Jay Fenlason) [555084]
5040 - [stable] USB: option: add pid for ZTE (zhao.ming9@zte.com.cn) [555084]
5041 - [stable] USB: usb-storage: fix bug in fill_inquiry (Alan Stern) [555084]
5042 - [stable] ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) (Theodore Ts'o) [555084]
5043 - [stable] ext4: Wait for proper transaction commit on fsync (Jan Kara) [555084]
5044 - [stable] ext4: fix incorrect block reservation on quota transfer. (Dmitry Monakhov) [555084]
5045 - [stable] ext4: quota macros cleanup (Dmitry Monakhov) [555084]
5046 - [stable] ext4: ext4_get_reserved_space() must return bytes instead of blocks (Dmitry Monakhov) [555084]
5047 - [stable] ext4: remove blocks from inode prealloc list on failure (Curt Wohlgemuth) [555084]
5048 - [stable] ext4: Avoid data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
5049 - [stable] ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks() (Roel Kluin) [555084]
5050 - [stable] jbd2: Add ENOMEM checking in and for jbd2_journal_write_metadata_buffer() (Theodore Ts'o) [555084]
5051 - [stable] ext4: move_extent_per_page() cleanup (Akira Fujita) [555084]
5052 - [stable] ext4: initialize moved_len before calling ext4_move_extents() (Kazuya Mio) [555084]
5053 - [stable] ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5054 - [stable] ext4: make "norecovery" an alias for "noload" (Eric Sandeen) [555084]
5055 - [stable] ext4: fix error handling in ext4_ind_get_blocks() (Jan Kara) [555084]
5056 - [stable] ext4: avoid issuing unnecessary barriers (Theodore Ts'o) [555084]
5057 - [stable] ext4: fix block validity checks so they work correctly with meta_bg (Theodore Ts'o) [555084]
5058 - [stable] ext4: fix uninit block bitmap initialization when s_meta_first_bg is non-zero (Theodore Ts'o) [555084]
5059 - [stable] ext4: don't update the superblock in ext4_statfs() (Theodore Ts'o) [555084]
5060 - [stable] ext4: journal all modifications in ext4_xattr_set_handle (Eric Sandeen) [555084]
5061 - [stable] ext4: fix i_flags access in ext4_da_writepages_trans_blocks() (Julia Lawall) [555084]
5062 - [stable] ext4: make sure directory and symlink blocks are revoked (Theodore Ts'o) [555084]
5063 - [stable] ext4: plug a buffer_head leak in an error path of ext4_iget() (Theodore Ts'o) [555084]
5064 - [stable] ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5065 - [stable] ext4: fix lock order problem in ext4_move_extents() (Akira Fujita) [555084]
5066 - [stable] ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails (Akira Fujita) [555084]
5067 - [stable] ext4: avoid divide by zero when trying to mount a corrupted file system (Theodore Ts'o) [555084]
5068 - [stable] ext4: fix potential buffer head leak when add_dirent_to_buf() returns ENOSPC (Theodore Ts'o) [555084]
5069 - [stable] SCSI: megaraid_sas: fix 64 bit sense pointer truncation (Yang, Bo) [555084]
5070 - [stable] SCSI: osd_protocol.h: Add missing #include (Martin Michlmayr) [555084]
5071 - [stable] signal: Fix alternate signal stack check (Sebastian Andrzej Siewior) [555084]
5072
5073 * Sat Jan 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-5.el6]
5074 - [scsi] cciss: fix spinlock use (Tomas Henzl) [552910]
5075 - [scsi] cciss,hpsa: reassign controllers (Tomas Henzl) [552192]
5076 - [modsign] Don't attempt to sign a module if there are no key files (David Howells) [543529]
5077 - [x86] Compile mce-inject module (Prarit Bhargava) [553323]
5078 - [nfs] fix insecure export option (Steve Dickson) [437715]
5079 - [nfs] NFS update to 2.6.33 part 3 (Steve Dickson) [437715]
5080 - [nfs] NFS update to 2.6.33 part 2 (Steve Dickson) [437715]
5081 - [nfs] NFS update to 2.6.33 part 1 (Steve Dickson) [437715]
5082 - [s390] cio: deactivated devices can cause use after free panic (Hendrik Brueckner) [548490]
5083 - [s390] cio: memory leaks when checking unusable devices (Hendrik Brueckner) [548490]
5084 - [s390] cio: DASD steal lock task hangs (Hendrik Brueckner) [548490]
5085 - [s390] cio: DASD cannot be set online (Hendrik Brueckner) [548490]
5086 - [s390] cio: erratic DASD I/O behavior (Hendrik Brueckner) [548490]
5087 - [s390] cio: not operational devices cannot be deactivated (Hendrik Brueckner) [548490]
5088 - [s390] cio: initialization of I/O devices fails (Hendrik Brueckner) [548490]
5089 - [s390] cio: kernel panic after unexpected interrupt (Hendrik Brueckner) [548490]
5090 - [s390] cio: incorrect device state after device recognition and recovery (Hendrik Brueckner) [548490]
5091 - [s390] cio: setting a device online or offline fails for unknown reasons (Hendrik Brueckner) [548490]
5092 - [s390] cio: device recovery fails after concurrent hardware changes (Hendrik Brueckner) [548490]
5093 - [s390] cio: device recovery stalls after multiple hardware events (Hendrik Brueckner) [548490]
5094 - [s390] cio: double free under memory pressure (Hendrik Brueckner) [548490]
5095 - [sunrpc] Don't display zero scope IDs (Jeff Layton) [463530]
5096 - [sunrpc] Deprecate support for site-local addresses (Jeff Layton) [463530]
5097 - [input] dell-laptop: Update rfkill state on switch change (Matthew Garrett) [547892]
5098 - [input] Add support for adding i8042 filters (Matthew Garrett) [547892]
5099 - [vfs] force reval of target when following LAST_BIND symlinks (Jeff Layton) [548153]
5100 - [scsi] scsi_dh_rdac: add two IBM devices to rdac_dev_list (Rob Evers) [528576]
5101 - [fs] ext4: flush delalloc blocks when space is low (Eric Sandeen) [526758]
5102 - [fs] fs-writeback: Add helper function to start writeback if idle (Eric Sandeen) [526758]
5103 - [fat] make discard a mount option (Jeff Moyer) [552355]
5104 - [ext4] make trim/discard optional (and off by default) (Jeff Moyer) [552355]
5105 - [fusion] bump version to 3.04.13 (Tomas Henzl) [548408]
5106 - [fusion] fix for incorrect data underrun (Tomas Henzl) [548408]
5107 - [fusion] remove unnecessary printk (Tomas Henzl) [548408]
5108 - [cifs] NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS referrals (Jeff Layton) [545984]
5109 - [fs] ext4: wait for log to commit when unmounting (Josef Bacik) [524267]
5110 - [mm] hwpoison: backport the latest patches from linux-2.6.33 (Dean Nelson) [547705]
5111 - [netdrv] bnx2i: update to 2.1.0 (Stanislaw Gruszka) [463268]
5112 - [netdrv] cnic: fixes for RHEL6 (Stanislaw Gruszka) [463268]
5113 - [gfs2] Fix potential race in glock code (Steven Whitehouse) [546279]
5114 - [scsi] make driver PCI legacy I/O port free (Tomas Henzl) [549118]
5115 - [scsi] eliminate double free (Tomas Henzl) [549351]
5116 - [dlm] always use GFP_NOFS (David Teigland) [545904]
5117 - [block] Fix topology stacking for data and discard alignment (Mike Snitzer) [549766]
5118 - [scsi] scsi_dh: Make alua hardware handler s activate async (Rob Evers) [537257]
5119 - [scsi] scsi_dh: Make hp hardware handler s activate async (Rob Evers) [537257]
5120 - [scsi] scsi_dh: Make rdac hardware handler s activate async (Rob Evers) [537257]
5121 - [scsi] scsi_dh: Change the scsidh_activate interface to be asynchronous (Rob Evers) [537257]
5122 - [netdrv] update tg3 to version 3.105 (John Feeney) [465194]
5123 - [netdrv] bnx2x: update to 1.52.1-5 (Stanislaw Gruszka) [464427]
5124 - [netdrv] ixgbe: add support for 82599-KR and update to latest upstream (Andy Gospodarek) [462781]
5125 - [block] cfq-iosched: Remove prio_change logic for workload selection (Jeff Moyer) [548796]
5126 - [block] cfq-iosched: Get rid of nr_groups (Jeff Moyer) [548796]
5127 - [block] cfq-iosched: Remove the check for same cfq group from allow_merge (Jeff Moyer) [548796]
5128 - [block] cfq: set workload as expired if it doesn't have any slice left (Jeff Moyer) [548796]
5129 - [block] Fix a CFQ crash in "for-2.6.33" branch of block tree (Jeff Moyer) [548796]
5130 - [block] cfq: Remove wait_request flag when idle time is being deleted (Jeff Moyer) [548796]
5131 - [block] cfq-iosched: commenting non-obvious initialization (Jeff Moyer) [548796]
5132 - [block] cfq-iosched: Take care of corner cases of group losing share due to deletion (Jeff Moyer) [548796]
5133 - [block] cfq-iosched: Get rid of cfqq wait_busy_done flag (Jeff Moyer) [548796]
5134 - [block] cfq: Optimization for close cooperating queue searching (Jeff Moyer) [548796]
5135 - [block] cfq-iosched: reduce write depth only if sync was delayed (Jeff Moyer) [548796]
5136 - [x86] ucode-amd: Load ucode-patches once and not separately of each CPU (George Beshers) [548840]
5137 - [x86] Remove enabling x2apic message for every CPU (George Beshers) [548840]
5138 - [x86] Limit number of per cpu TSC sync messages (George Beshers) [548840]
5139 - [sched] Limit the number of scheduler debug messages (George Beshers) [548840]
5140 - [init] Limit the number of per cpu calibration bootup messages (George Beshers) [548840]
5141 - [x86] Limit the number of processor bootup messages (George Beshers) [548840]
5142 - [x86] cpu: mv display_cacheinfo -> cpu_detect_cache_sizes (George Beshers) [548840]
5143 - [x86] Remove CPU cache size output for non-Intel too (George Beshers) [548840]
5144 - [x86] Remove the CPU cache size printk's (George Beshers) [548840]
5145
5146 * Wed Dec 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-4.el6]
5147 - [kvm] VMX: Use shared msr infrastructure (Avi Kivity) [547777]
5148 - [kvm] x86 shared msr infrastructure (Avi Kivity) [547777]
5149 - [kvm] VMX: Move MSR_KERNEL_GS_BASE out of the vmx autoload msr area (Avi Kivity) [547777]
5150 - [kvm] core, x86: Add user return notifiers (Avi Kivity) [547777]
5151 - [quota] ext4: Support for 64-bit quota format (Jerome Marchand) [546311]
5152 - [quota] ext3: Support for vfsv1 quota format (Jerome Marchand) [546311]
5153 - [quota] Implement quota format with 64-bit space and inode limits (Jerome Marchand) [546311]
5154 - [quota] Move definition of QFMT_OCFS2 to linux/quota.h (Jerome Marchand) [546311]
5155 - [scsi] cciss: remove pci-ids (Tomas Henzl) [464649]
5156 - [scsi] hpsa: new driver (Tomas Henzl) [464649]
5157 - [mm] Add file page writeback mm tracepoints. (Larry Woodman) [523093]
5158 - [mm] Add page reclaim mm tracepoints. (Larry Woodman) [523093]
5159 - [mm] Add file page mm tracepoints. (Larry Woodman) [523093]
5160 - [mm] Add anonynmous page mm tracepoints. (Larry Woodman) [523093]
5161 - [mm] Add mm tracepoint definitions to kmem.h (Larry Woodman) [523093]
5162 - [ksm] fix ksm.h breakage of nommu build (Izik Eidus) [548586]
5163 - [ksm] remove unswappable max_kernel_pages (Izik Eidus) [548586]
5164 - [ksm] memory hotremove migration only (Izik Eidus) [548586]
5165 - [ksm] rmap_walk to remove_migation_ptes (Izik Eidus) [548586]
5166 - [ksm] mem cgroup charge swapin copy (Izik Eidus) [548586]
5167 - [ksm] share anon page without allocating (Izik Eidus) [548586]
5168 - [ksm] take keyhole reference to page (Izik Eidus) [548586]
5169 - [ksm] hold anon_vma in rmap_item (Izik Eidus) [548586]
5170 - [ksm] let shared pages be swappable (Izik Eidus) [548586]
5171 - [ksm] fix mlockfreed to munlocked (Izik Eidus) [548586]
5172 - [ksm] stable_node point to page and back (Izik Eidus) [548586]
5173 - [ksm] separate stable_node (Izik Eidus) [548586]
5174 - [ksm] singly-linked rmap_list (Izik Eidus) [548586]
5175 - [ksm] cleanup some function arguments (Izik Eidus) [548586]
5176 - [ksm] remove redundancies when merging page (Izik Eidus) [548586]
5177 - [ksm] three remove_rmap_item_from_tree cleanups (Izik Eidus) [548586]
5178 - [mm] stop ptlock enlarging struct page (Izik Eidus) [548586]
5179 - [mm] vmscan: do not evict inactive pages when skipping an active list scan (Rik van Riel) [548457]
5180 - [mm] vmscan: make consistent of reclaim bale out between do_try_to_free_page and shrink_zone (Rik van Riel) [548457]
5181 - [mm] vmscan: kill sc.swap_cluster_max (Rik van Riel) [548457]
5182 - [mm] vmscan: zone_reclaim() dont use insane swap_cluster_max (Rik van Riel) [548457]
5183 - [mm] vmscan: kill hibernation specific reclaim logic and unify it (Rik van Riel) [548457]
5184 - [mm] vmscan: separate sc.swap_cluster_max and sc.nr_max_reclaim (Rik van Riel) [548457]
5185 - [mm] vmscan: stop kswapd waiting on congestion when the min watermark is not being met (Rik van Riel) [548457]
5186 - [mm] vmscan: have kswapd sleep for a short interval and double check it should be asleep (Rik van Riel) [548457]
5187 - [mm] pass address down to rmap ones (Rik van Riel) [548457]
5188 - [mm] CONFIG_MMU for PG_mlocked (Rik van Riel) [548457]
5189 - [mm] mlocking in try_to_unmap_one (Rik van Riel) [548457]
5190 - [mm] define PAGE_MAPPING_FLAGS (Rik van Riel) [548457]
5191 - [mm] swap_info: note SWAP_MAP_SHMEM (Rik van Riel) [548457]
5192 - [mm] swap_info: swap count continuations (Rik van Riel) [548457]
5193 - [mm] swap_info: swap_map of chars not shorts (Rik van Riel) [548457]
5194 - [mm] swap_info: SWAP_HAS_CACHE cleanups (Rik van Riel) [548457]
5195 - [mm] swap_info: miscellaneous minor cleanups (Rik van Riel) [548457]
5196 - [mm] swap_info: include first_swap_extent (Rik van Riel) [548457]
5197 - [mm] swap_info: change to array of pointers (Rik van Riel) [548457]
5198 - [mm] swap_info: private to swapfile.c (Rik van Riel) [548457]
5199 - [mm] move inc_zone_page_state(NR_ISOLATED) to just isolated place (Rik van Riel) [548457]
5200 - [xen] support MAXSMP (Andrew Jones) [547129]
5201 - [xen] wait up to 5 minutes for device connetion and fix fallout (Paolo Bonzini) [523630]
5202 - [uv] x86 SGI: Map low MMR ranges (George Beshers) [548181]
5203 - [uv] gru: function to generate chipset IPI values (George Beshers) [548181]
5204 - [uv] x86 RTC: Clean up error handling (George Beshers) [548181]
5205 - [uv] x86: RTC: Add clocksource only boot option (George Beshers) [548181]
5206 - [uv] x86: RTC: Fix early expiry handling (George Beshers) [548181]
5207 - [uv] x86: introduce uv_gpa_is_mmr (George Beshers) [548181]
5208 - [uv] x86: function to translate from gpa -> socket_paddr (George Beshers) [548181]
5209 - [uv] x86: SGI UV: Fix BAU initialization (George Beshers) [548181]
5210 - [s390] zfcp: Block SCSI EH thread for rport state BLOCKED (Hendrik Brueckner) [547413]
5211 - [scsi] scsi_transport_fc: Introduce helper function for blocking scsi_eh (Hendrik Brueckner) [547413]
5212 - [s390] zfcp: improve FSF error reporting (Hendrik Brueckner) [547386]
5213 - [s390] zfcp: fix ELS ADISC handling to prevent QDIO errors (Hendrik Brueckner) [547385]
5214 - [s390] zfcp: Assign scheduled work to driver queue (Hendrik Brueckner) [547377]
5215 - [s390] zfcp: Don't fail SCSI commands when transitioning to blocked fc_rport (Hendrik Brueckner) [547379]
5216 - [s390] ctcm: suspend has to wait for outstanding I/O (Hendrik Brueckner) [546633]
5217 - [s390] cmm: free pages on hibernate (Hendrik Brueckner) [546407]
5218 - [s390] iucv: add work_queue cleanup for suspend (Hendrik Brueckner) [546319]
5219 - [s390] dasd: let device initialization wait for LCU setup (Hendrik Brueckner) [547735]
5220 - [s390] dasd: remove strings from s390dbf (Hendrik Brueckner) [547735]
5221 - [s390] dasd: enable prefix independent of pav support (Hendrik Brueckner) [547735]
5222 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [525391]
5223 - [utrace] utrace core (Roland McGrath) [549491]
5224 - [utrace] implement utrace-ptrace (Roland McGrath) [549491]
5225 - [ptrace] reorder the code in kernel/ptrace.c (Roland McGrath) [549491]
5226 - [ptrace] export __ptrace_detach() and do_notify_parent_cldstop() (Roland McGrath) [549491]
5227 - [ptrace_signal] check PT_PTRACED before reporting a signal (Roland McGrath) [549491]
5228 - [tracehooks] check PT_PTRACED before reporting the single-step (Roland McGrath) [549491]
5229 - [tracehooks] kill some PT_PTRACED checks (Roland McGrath) [549491]
5230 - [signals] check ->group_stop_count after tracehook_get_signal() (Roland McGrath) [549491]
5231 - [ptrace] x86: change syscall_trace_leave() to rely on tracehook when stepping (Roland McGrath) [549491]
5232 - [ptrace] x86: implement user_single_step_siginfo() (Roland McGrath) [549491]
5233 - [ptrace] change tracehook_report_syscall_exit() to handle stepping (Roland McGrath) [549491]
5234 - [ptrace] powerpc: implement user_single_step_siginfo() (Roland McGrath) [549491]
5235 - [ptrace] introduce user_single_step_siginfo() helper (Roland McGrath) [549491]
5236 - [ptrace] copy_process() should disable stepping (Roland McGrath) [549491]
5237 - [ptrace] cleanup ptrace_init_task()->ptrace_link() path (Roland McGrath) [549491]
5238
5239 * Thu Dec 17 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-3.el6]
5240 - [modsign] Don't check e_entry in ELF header (David Howells) [548027]
5241 - [pci] pciehp: Provide an option to disable native PCIe hotplug (Matthew Garrett) [517050]
5242 - [s390] OSA QDIO data connection isolation (Hendrik Brueckner) [537496]
5243 - [s390] zcrypt: adjust speed rating of cex3 adapters (Hendrik Brueckner) [537495]
5244 - [s390] zcrypt: adjust speed rating between cex2 and pcixcc (Hendrik Brueckner) [537495]
5245 - [s390] zcrypt: use definitions for cex3 (Hendrik Brueckner) [537495]
5246 - [s390] zcrypt: add support for cex3 device types (Hendrik Brueckner) [537495]
5247 - [s390] zcrypt: special command support for cex3 exploitation (Hendrik Brueckner) [537495]
5248 - [s390] zcrypt: initialize ap_messages for cex3 exploitation (Hendrik Brueckner) [537495]
5249 - [s390] kernel: performance counter fix and page fault optimization (Hendrik Brueckner) [546396]
5250 - [s390] kernel: fix dump indicator (Hendrik Brueckner) [546285]
5251 - [s390] dasd: support DIAG access for read-only devices (Hendrik Brueckner) [546309]
5252 - [s390] zcrypt: Do not simultaneously schedule hrtimer (Hendrik Brueckner) [546291]
5253 - [s390] kernel: clear high-order bits after switching to 64-bit mode (Hendrik Brueckner) [546314]
5254 - [virt] vhost: add missing architectures (Michael S. Tsirkin) [540389]
5255 - [virt] vhost_net: a kernel-level virtio server (Michael S. Tsirkin) [540389]
5256 - [virt] mm: export use_mm/unuse_mm to modules (Michael S. Tsirkin) [540389]
5257 - [virt] tun: export underlying socket (Michael S. Tsirkin) [540389]
5258 - [dm] snapshot-merge support from 2.6.33 (Mike Snitzer) [547563]
5259 - [dm] snapshot changes from 2.6.33 (Mike Snitzer) [547563]
5260 - [dm] crypt changes from 2.6.33 (Mike Snitzer) [547563]
5261 - [dm] raid1 changes from 2.6.33 (Mike Snitzer) [547563]
5262 - [dm] core and mpath changes from 2.6.33 (Mike Snitzer) [547563]
5263 - [scsi] fix dma handling when using virtual hosts (Mike Christie) [525241]
5264 - [nfs] convert proto= option to use netids rather than a protoname (Jeff Layton) [545973]
5265
5266 * Fri Dec 11 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-2.el6]
5267 - [block] config: enable CONFIG_BLK_DEV_INTEGRITY (Jeff Moyer) [490732]
5268 - [block] config: enable CONFIG_BLK_CGROUP (Jeff Moyer) [425895]
5269 - [libata] Clarify ata_set_lba_range_entries function (Jeff Moyer) [528046]
5270 - [libata] Report zeroed read after Trim and max discard size (Jeff Moyer) [528046]
5271 - [scsi] Correctly handle thin provisioning write error (Jeff Moyer) [528046]
5272 - [scsi] sd: WRITE SAME(16) / UNMAP support (Jeff Moyer) [528046]
5273 - [scsi] scsi_debug: Thin provisioning support (Jeff Moyer) [528046]
5274 - [scsi] Add missing command definitions (Jeff Moyer) [528046]
5275 - [block] Add support for the ATA TRIM command in libata. (Jeff Moyer) [528046]
5276 - [block] dio: fix performance regression (Jeff Moyer) [545507]
5277 - [block] cfq-iosched: Do not access cfqq after freeing it (Jeff Moyer) [425895]
5278 - [block] include linux/err.h to use ERR_PTR (Jeff Moyer) [425895]
5279 - [block] cfq-iosched: use call_rcu() instead of doing grace period stall on queue exit (Jeff Moyer) [425895]
5280 - [block] blkio: Allow CFQ group IO scheduling even when CFQ is a module (Jeff Moyer) [425895]
5281 - [block] blkio: Implement dynamic io controlling policy registration (Jeff Moyer) [425895]
5282 - [block] blkio: Export some symbols from blkio as its user CFQ can be a module (Jeff Moyer) [425895]
5283 - [block] cfq-iosched: make nonrot check logic consistent (Jeff Moyer) [545225]
5284 - [block] io controller: quick fix for blk-cgroup and modular CFQ (Jeff Moyer) [425895]
5285 - [block] cfq-iosched: move IO controller declerations to a header file (Jeff Moyer) [425895]
5286 - [block] cfq-iosched: fix compile problem with !CONFIG_CGROUP (Jeff Moyer) [425895]
5287 - [block] blkio: Documentation (Jeff Moyer) [425895]
5288 - [block] blkio: Wait on sync-noidle queue even if rq_noidle = 1 (Jeff Moyer) [425895]
5289 - [block] blkio: Implement group_isolation tunable (Jeff Moyer) [425895]
5290 - [block] blkio: Determine async workload length based on total number of queues (Jeff Moyer) [425895]
5291 - [block] blkio: Wait for cfq queue to get backlogged if group is empty (Jeff Moyer) [425895]
5292 - [block] blkio: Propagate cgroup weight updation to cfq groups (Jeff Moyer) [425895]
5293 - [block] blkio: Drop the reference to queue once the task changes cgroup (Jeff Moyer) [425895]
5294 - [block] blkio: Provide some isolation between groups (Jeff Moyer) [425895]
5295 - [block] blkio: Export disk time and sectors used by a group to user space (Jeff Moyer) [425895]
5296 - [block] blkio: Some debugging aids for CFQ (Jeff Moyer) [425895]
5297 - [block] blkio: Take care of cgroup deletion and cfq group reference counting (Jeff Moyer) [425895]
5298 - [block] blkio: Dynamic cfq group creation based on cgroup tasks belongs to (Jeff Moyer) [425895]
5299 - [block] blkio: Group time used accounting and workload context save restore (Jeff Moyer) [425895]
5300 - [block] blkio: Implement per cfq group latency target and busy queue avg (Jeff Moyer) [425895]
5301 - [block] blkio: Introduce per cfq group weights and vdisktime calculations (Jeff Moyer) [425895]
5302 - [block] blkio: Introduce blkio controller cgroup interface (Jeff Moyer) [425895]
5303 - [block] blkio: Introduce the root service tree for cfq groups (Jeff Moyer) [425895]
5304 - [block] blkio: Keep queue on service tree until we expire it (Jeff Moyer) [425895]
5305 - [block] blkio: Implement macro to traverse each service tree in group (Jeff Moyer) [425895]
5306 - [block] blkio: Introduce the notion of cfq groups (Jeff Moyer) [425895]
5307 - [block] blkio: Set must_dispatch only if we decided to not dispatch the request (Jeff Moyer) [425895]
5308 - [block] cfq-iosched: no dispatch limit for single queue (Jeff Moyer) [425895]
5309 - [block] Allow devices to indicate whether discarded blocks are zeroed (Jeff Moyer) [545203]
5310 - [block] Revert "cfq: Make use of service count to estimate the rb_key offset" (Jeff Moyer) [425895]
5311 - [block] cfq-iosched: fix corner cases in idling logic (Jeff Moyer) [425895]
5312 - [block] cfq-iosched: idling on deep seeky sync queues (Jeff Moyer) [425895]
5313 - [block] cfq-iosched: fix no-idle preemption logic (Jeff Moyer) [425895]
5314 - [block] cfq-iosched: fix ncq detection code (Jeff Moyer) [425895]
5315 - [block] cfq-iosched: cleanup unreachable code (Jeff Moyer) [425895]
5316 - [block] cfq: Make use of service count to estimate the rb_key offset (Jeff Moyer) [425895]
5317 - [block] partitions: read whole sector with EFI GPT header (Jeff Moyer) [463632]
5318 - [block] partitions: use sector size for EFI GPT (Jeff Moyer) [463632]
5319 - [block] Expose discard granularity (Jeff Moyer) [545203]
5320 - [block] cfq-iosched: fix next_rq computation (Jeff Moyer) [425895]
5321 - [block] cfq-iosched: simplify prio-unboost code (Jeff Moyer) [425895]
5322 - [block] blkdev: flush disk cache on ->fsync (Jeff Moyer) [545199]
5323 - [block] cfq-iosched: fix style issue in cfq_get_avg_queues() (Jeff Moyer) [425895]
5324 - [block] cfq-iosched: fairness for sync no-idle queues (Jeff Moyer) [425895]
5325 - [block] cfq-iosched: enable idling for last queue on priority class (Jeff Moyer) [425895]
5326 - [block] cfq-iosched: reimplement priorities using different service trees (Jeff Moyer) [425895]
5327 - [block] cfq-iosched: preparation to handle multiple service trees (Jeff Moyer) [425895]
5328 - [block] cfq-iosched: adapt slice to number of processes doing I/O (Jeff Moyer) [425895]
5329 - [block] cfq-iosched: improve hw_tag detection (Jeff Moyer) [425895]
5330 - [block] cfq: break apart merged cfqqs if they stop cooperating (Jeff Moyer) [533932]
5331 - [block] cfq: change the meaning of the cfqq_coop flag (Jeff Moyer) [533932]
5332 - [block] cfq: merge cooperating cfq_queues (Jeff Moyer) [533932]
5333 - [block] cfq: calculate the seek_mean per cfq_queue not per cfq_io_context (Jeff Moyer) [533932]
5334 - [block] CFQ is more than a desktop scheduler (Jeff Moyer) [533932]
5335 - [block] revert: cfq-iosched: limit coop preemption (Jeff Moyer) [533932]
5336 - perf: Don't free perf_mmap_data until work has been done (Aristeu Rozanski) [547432]
5337 - ext4: Fix insuficient checks in EXT4_IOC_MOVE_EXT (Aristeu Rozanski) [547432]
5338 - agp: clear GTT on intel (Aristeu Rozanski) [547432]
5339 - drm/i915: Fix sync to vblank when VGA output is turned off (Aristeu Rozanski) [547432]
5340 - drm: nouveau fixes (Aristeu Rozanski) [547432]
5341 - drm: radeon dp support (Aristeu Rozanski) [547432]
5342 - drm: radeon fixes (Aristeu Rozanski) [547432]
5343 - KVM: allow userspace to adjust kvmclock offset (Aristeu Rozanski) [547432]
5344 - ath9k backports (Aristeu Rozanski) [547432]
5345 - intel-iommu backport (Aristeu Rozanski) [547432]
5346 - updating patch linux-2.6-nfsd4-proots.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5347 - updating linux-2.6-execshield.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5348
5349 * Tue Dec 08 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-1.el6]
5350 - [rebase] Rebased to 2.6.32
5351
5352 * Mon Dec 07 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.54.el6]
5353 - [edac] amd64_edac: disabling temporarily (Aristeu Rozanski)
5354 - [x86] Enable CONFIG_SPARSE_IRQ (Prarit Bhargava) [543174]
5355 - [x86] panic if AMD cpu_khz is wrong (Prarit Bhargava) [523468]
5356 - [infiniband] Rewrite SG handling for RDMA logic (Mike Christie) [540269]
5357
5358 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.53.el6]
5359 - [net] Add acession counts to all datagram protocols (Neil Horman) [445366]
5360 - [modsign] Enable module signing in the RHEL RPM (David Howells) [517341]
5361 - [modsign] Don't include .note.gnu.build-id in the digest (David Howells) [517341]
5362 - [modsign] Apply signature checking to modules on module load (David Howells) [517341]
5363 - [modsign] Module signature checker and key manager (David Howells) [517341]
5364 - [modsign] Module ELF verifier (David Howells) [517341]
5365 - [modsign] Add indications of module ELF types (David Howells) [517341]
5366 - [modsign] Multiprecision maths library (David Howells) [517341]
5367 - [procfs] add ability to modify proc file limits from outside a processes own context (Neil Horman) [461946]
5368 - [s390x] fix build failure with CONFIG_FTRACE_SYSCALLS (Aristeu Rozanski) [538978]
5369
5370 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.52.el6]
5371 - [x86] AMD Northbridge: Verify NB's node is online (Prarit Bhargava) [536769]
5372 - [scsi] devinfo update for Hitachi entries (Takahiro Yasui) [526763]
5373 - [net] export device speed and duplex via sysfs (Andy Gospodarek) [453432]
5374 - [ppc64] Fix kcrctab_ sections to undo undesireable relocations that break kdump (Neil Horman) [509012]
5375 - [mm] Limit 32-bit x86 systems to 16GB and prevent panic on boot when system has more than ~30GB (Larry Woodman) [532039]
5376
5377 * Mon Nov 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.51.el6]
5378 - [kernel] Set panic_on_oops to 1 (Prarit Bhargava) [529963]
5379 - [kdump] kexec: allow to shrink reserved memory (Amerigo Wang) [523091]
5380 - [kdump] doc: update the kdump document (Amerigo Wang) [523091]
5381 - [kdump] powerpc: implement crashkernel=auto (Amerigo Wang) [523091]
5382 - [kdump] powerpc: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5383 - [kdump] ia64: implement crashkernel=auto (Amerigo Wang) [523091]
5384 - [kdump] ia64: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5385 - [kdump] x86: implement crashkernel=auto (Amerigo Wang) [523091]
5386 - [kdump] x86: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5387 - [block] aio: implement request batching (Jeff Moyer) [533931]
5388 - [block] get rid of the WRITE_ODIRECT flag (Jeff Moyer) [533931]
5389
5390 * Sat Nov 21 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.50.el6]
5391 - [crypto] padlock-aes: Use the correct mask when checking whether copying is required (Chuck Ebbert)
5392 - [rfkill] add support to a key to control all radios (Aristeu Rozanski)
5393 - [acpi] be less verbose about old BIOSes (Aristeu Rozanski)
5394 - [drm] intel big hammer (Aristeu Rozanski)
5395 - [e1000] add quirk for ich9 (Aristeu Rozanski)
5396 - [pci] cacheline sizing (Dave Jones)
5397 - [crash] add crash driver (Dave Anderson)
5398 - [fb] disable fbcon logo with parameter (Aristeu Rozanski)
5399 - [pci] silence some PCI resource allocation errors (Aristeu Rozanski)
5400 - [serio] disable error messages when i8042 isn't found (Peter Jones)
5401 - [serial] Enable higher baud rates for 16C95x (Aristeu Rozanski)
5402 - [input] remove pcspkr modalias (Aristeu Rozanski)
5403 - [floppy] remove the floppy pnp modalias (Aristeu Rozanski)
5404 - [input] remove unwanted messages on spurious events (Aristeu Rozanski)
5405 - [sound] hda intel prealloc 4mb dmabuffer (Aristeu Rozanski)
5406 - [sound] disables hda beep by default (Aristeu Rozanski)
5407 - [pci] sets PCIE ASPM default policy to POWERSAVE (Aristeu Rozanski)
5408 - [pci] add config option to control the default state of PCI MSI interrupts (Aristeu Rozanski)
5409 - [debug] always inline kzalloc (Aristeu Rozanski)
5410 - [debug] add would_have_oomkilled procfs ctl (Aristeu Rozanski)
5411 - [debug] add calls to print_tainted() on spinlock functions (Aristeu Rozanski)
5412 - [debug] display tainted information on other places (Aristeu Rozanski)
5413 - [x86] add option to control the NMI watchdog timeout (Aristeu Rozanski)
5414 - [debug] print common struct sizes at boot time (Aristeu Rozanski)
5415 - [acpi] Disable firmware video brightness change by default (Matthew Garrett)
5416 - [acpi] Disable brightness switch by default (Aristeu Rozanski)
5417 - [usb] enable autosuspend on UVC by default (Matthew Garrett)
5418 - [usb] enable autosuspend by default on qcserial (Matthew Garrett)
5419 - [usb] Allow drivers to enable USB autosuspend on a per-device basis (Matthew Garrett)
5420 - [nfs] make nfs4 callback hidden (Steve Dickson)
5421 - [nfsd4] proots (Aristeu Rozanski)
5422 - [execshield] introduce execshield (Aristeu Rozanski)
5423 - [powerpc] add modalias_show operation (Aristeu Rozanski)
5424 - [hwmon] add VIA hwmon temperature sensor support (Aristeu Rozanski)
5425 - [utrace] introduce utrace implementation (Aristeu Rozanski)
5426 - [build] introduce AFTER_LINK variable (Aristeu Rozanski)
5427
5428
5429 ###
5430 # The following Emacs magic makes C-c C-e use UTC dates.
5431 # Local Variables:
5432 # rpm-change-log-uses-utc: t
5433 # End:
5434 ###