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