simplify spec file and consider SL/CentOS 6 as a modern distro
[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: %{SCMURL}
8
9 %{!?pldistro:%global pldistro planetlab}
10
11 %define name linux-2.6
12 %define module_version_varname sublevel
13 %define taglevel 12
14
15 %define sublevel 32
16
17 %if ("%{distro}" == "Fedora" && %{distrorelease} >= 12) || ("%{distro}" == "SL" && %{distrorelease} >= 6) || ("%{distro}" == "CentOS" && %{distrorelease} >= 6)
18 %define modern_distro 1
19 %endif
20 #### Planet-Lab ####
21
22 Summary: The Linux kernel
23
24 # For a stable, released kernel, released_kernel should be 1. For rawhide
25 # and/or a kernel built from an rc or git snapshot, released_kernel should
26 # be 0.
27 %define released_kernel 1
28 %define dist .el6
29
30 # Versions of various parts
31
32 # Polite request for people who spin their own kernel rpms:
33 # please modify the "buildid" define in a way that identifies
34 # that the kernel isn't the stock distribution kernel, for example,
35 # by setting the define to ".local" or ".bz123456"
36 #
37 # % define buildid .local
38
39 %define rhel 1
40 %if %{rhel}
41 %define distro_build 71.18.1
42 #### Planet-Lab ####
43 %define signmodules 0
44 #### Planet-Lab ####
45 %else
46 # fedora_build defines which build revision of this kernel version we're
47 # building. Rather than incrementing forever, as with the prior versioning
48 # setup, we set fedora_cvs_origin to the current cvs revision s/1.// of the
49 # kernel spec when the kernel is rebased, so fedora_build automatically
50 # works out to the offset from the rebase, so it doesn't get too ginormous.
51 #
52 # If you're building on a branch, the RCS revision will be something like
53 # 1.1205.1.1.  In this case we drop the initial 1, subtract fedora_cvs_origin
54 # from the second number, and then append the rest of the RCS string as is.
55 # Don't stare at the awk too long, you'll go blind.
56 %define fedora_cvs_origin   1462
57 %define fedora_cvs_revision() %2
58 %global distro_build %(echo %{fedora_cvs_origin}.%{fedora_cvs_revision $Revision: 1.18.2.18 $} | awk -F . '{ OFS = "."; ORS = ""; print $3 - $1 ; i = 4 ; OFS = ""; while (i <= NF) { print ".", $i ; i++} }')
59 %define distro_build %{fedora_build}
60 %define signmodules 0
61 %endif
62
63 # if patch fuzzy patch applying will be forbidden
64 %define with_fuzzy_patches 0
65
66 # base_sublevel is the kernel version we're starting with and patching
67 # on top of -- for example, 2.6.22-rc7-git1 starts with a 2.6.21 base,
68 # which yields a base_sublevel of 21.
69 %define base_sublevel 32
70
71 ## If this is a released kernel ##
72 %if 0%{?released_kernel}
73
74 # Do we have a -stable update to apply?
75 %define stable_update 0
76 # Is it a -stable RC?
77 %define stable_rc 0
78 # Set rpm version accordingly
79 %if 0%{?stable_update}
80 %define stablerev .%{stable_update}
81 %define stable_base %{stable_update}
82 %if 0%{?stable_rc}
83 # stable RCs are incremental patches, so we need the previous stable patch
84 %define stable_base %(echo $((%{stable_update} - 1)))
85 %endif
86 %endif
87 %define rpmversion 2.6.%{base_sublevel}%{?stablerev}
88
89 ## The not-released-kernel case ##
90 %else
91 # The next upstream release sublevel (base_sublevel+1)
92 %define upstream_sublevel %(echo $((%{base_sublevel} + 1)))
93 # The rc snapshot level
94 %define rcrev 0
95 # The git snapshot level
96 %define gitrev 0
97 # Set rpm version accordingly
98 %define rpmversion 2.6.%{upstream_sublevel}
99 %endif
100 # Nb: The above rcrev and gitrev values automagically define Patch00 and Patch01 below.
101
102 # What parts do we want to build?  We must build at least one kernel.
103 # These are the kernels that are built IF the architecture allows it.
104 # All should default to 1 (enabled) and be flipped to 0 (disabled)
105 # by later arch-specific checks.
106
107 # The following build options are enabled by default.
108 # Use either --without <opt> in your rpmbuild command or force values
109 # to 0 in here to disable them.
110 #
111 # standard kernel
112 %define with_up        %{?_without_up:        0} %{?!_without_up:        1}
113 # kernel-smp (only valid for ppc 32-bit)
114 %define with_smp       %{?_without_smp:       0} %{?!_without_smp:       1}
115 # kernel-kdump
116 %define with_kdump     %{?_without_kdump:     0} %{?!_without_kdump:     1}
117 # kernel-debug
118 %define with_debug     %{?_without_debug:     1} %{?!_without_debug:     0}
119 # kernel-doc
120 %define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
121 # kernel-headers
122 %define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
123 #### Planet-Lab ####
124 # kernel-firmware
125 %define with_firmware  %{?_with_firmware:     0} %{?!_with_firmware:     1}
126 #### Planet-Lab ####
127 # tools/perf
128 %define with_perftool  %{?_without_perftool:  0} %{?!_without_perftool:  1}
129 # perf noarch subpkg
130 %define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
131 #### Planet-Lab ####
132 # kernel-debuginfo
133 %define with_debuginfo %{?_without_debuginfo: 1} %{?!_without_debuginfo: 0}
134 #### Planet-Lab ####
135 # kernel-bootwrapper (for creating zImages from kernel + initrd)
136 %define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 1}
137 # Want to build a the vsdo directories installed
138 %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1}
139 #### Planet-Lab ####
140 # Use dracut instead of mkinitrd for initrd image generation
141 %if %{modern_distro}
142 %define with_dracut       %{?_without_dracut:       0} %{?!_without_dracut:       1}
143 %else
144 %define with_dracut       %{?_without_dracut:       1} %{?!_without_dracut:       0}
145 %endif
146 #### Planet-Lab ####
147
148 # Build the kernel-doc package, but don't fail the build if it botches.
149 # Here "true" means "continue" and "false" means "fail the build".
150 %if 0%{?released_kernel}
151 %define doc_build_fail false
152 %else
153 %define doc_build_fail true
154 %endif
155
156 #### Planet-Lab ####
157 # Control whether we perform a compat. check against published ABI.
158 %define with_kabichk   %{?_without_kabichk:   1} %{?!_without_kabichk: 0}
159 # Control whether we perform a compat. check against published ABI.
160 %define with_fips      %{?_without_fips:      1} %{?!_without_fips:      0}
161 #### Planet-Lab ####
162
163 # Additional options for user-friendly one-off kernel building:
164 #
165 # Only build the base kernel (--with baseonly):
166 %define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
167 # Only build the smp kernel (--with smponly):
168 %define with_smponly   %{?_with_smponly:      1} %{?!_with_smponly:      0}
169 # Only build the debug kernel (--with dbgonly):
170 %define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
171
172 # should we do C=1 builds with sparse
173 %define with_sparse     %{?_with_sparse:      1} %{?!_with_sparse:      0}
174
175 # Set debugbuildsenabled to 1 for production (build separate debug kernels)
176 #  and 0 for rawhide (all kernels are debug kernels).
177 # See also 'make debug' and 'make release'.
178 %define debugbuildsenabled 1
179
180 # pkg_release is what we'll fill in for the rpm Release: field
181 %if 0%{?released_kernel}
182
183 %if 0%{?stable_rc}
184 %define stable_rctag .rc%{stable_rc}
185 %endif
186 %define pkg_release %{distro_build}%{?stable_rctag}%{?dist}%{?buildid}
187
188 %else
189
190 # non-released_kernel
191 %if 0%{?rcrev}
192 %define rctag .rc%rcrev
193 %else
194 %define rctag .rc0
195 %endif
196 %if 0%{?gitrev}
197 %define gittag .git%gitrev
198 %else
199 %define gittag .git0
200 %endif
201 %define pkg_release 0.%{distro_build}%{?rctag}%{?gittag}%{?dist}%{?buildid}
202
203 %endif
204
205 # The kernel tarball/base version
206 %define kversion 2.6.32-71.18.1.el6
207
208 %define make_target bzImage
209
210 %define hdrarch %_target_cpu
211 %define asmarch %_target_cpu
212
213 %if 0%{!?nopatches:1}
214 %define nopatches 0
215 %endif
216
217 %if %{nopatches}
218 %define with_bootwrapper 0
219 %define variant -vanilla
220 %else
221 %define variant_fedora -fedora
222 %endif
223
224 %define using_upstream_branch 0
225 %if 0%{?upstream_branch:1}
226 %define stable_update 0
227 %define using_upstream_branch 1
228 %define variant -%{upstream_branch}%{?variant_fedora}
229 %define pkg_release 0.%{distro_build}%{upstream_branch_tag}%{?dist}%{?buildid}
230 %endif
231
232 %if %{rhel}
233 %define pkg_release %{distro_build}%{?dist}%{?buildid}
234 %endif
235 #### Planet-Lab ####
236 %define pkg_release %{taglevel}%{?pldistro:.%{pldistro}}%{?date:.%{date}}
237 #### Planet-Lab ####
238 %define KVERREL %{rpmversion}-%{pkg_release}.%{_target_cpu}
239
240 %if !%{debugbuildsenabled}
241 %define with_debug 0
242 %endif
243
244 %if !%{with_debuginfo}
245 %define _enable_debug_packages 0
246 %endif
247 %define debuginfodir /usr/lib/debug
248
249 %define with_pae 0
250
251 # if requested, only build base kernel
252 %if %{with_baseonly}
253 %define with_smp 0
254 %define with_kdump 0
255 %define with_debug 0
256 %endif
257
258 # if requested, only build smp kernel
259 %if %{with_smponly}
260 %define with_up 0
261 %define with_kdump 0
262 %define with_debug 0
263 %endif
264
265 # if requested, only build debug kernel
266 %if %{with_dbgonly}
267 %if %{debugbuildsenabled}
268 %define with_up 0
269 %endif
270 %define with_smp 0
271 %define with_pae 0
272 %define with_xen 0
273 %define with_kdump 0
274 %define with_perftool 0
275 %endif
276
277 %define all_x86 i386 i686
278
279 %if %{with_vdso_install}
280 # These arches install vdso/ directories.
281 %define vdso_arches %{all_x86} x86_64 ppc ppc64 s390 s390x
282 %endif
283
284 # Overrides for generic default options
285
286 # only ppc and alphav56 need separate smp kernels
287 %ifnarch ppc alphaev56
288 %define with_smp 0
289 %endif
290
291 %ifarch s390x
292 %define with_kdump 1
293 %else
294 %define with_kdump 0
295 %endif
296
297 # don't do debug builds on anything but i686 and x86_64
298 %ifnarch i686 x86_64 s390x ppc64
299 %define with_debug 0
300 %endif
301
302 # only package docs noarch
303 %ifnarch noarch
304 %define with_doc 0
305 %define with_perf 0
306 %endif
307
308 # don't build noarch kernels or headers (duh)
309 %ifarch noarch
310 %define with_up 0
311 %define with_headers 0
312 %define all_arch_configs kernel-%{version}-*.config
313 %define with_firmware  %{?_without_firmware:  0} %{?!_without_firmware:  1}
314 %endif
315
316 # bootwrapper is only on ppc
317 %ifnarch ppc ppc64
318 %define with_bootwrapper 0
319 %endif
320
321 # sparse blows up on ppc64 alpha and sparc64
322 %ifarch ppc64 ppc alpha sparc64
323 %define with_sparse 0
324 %endif
325
326 # Per-arch tweaks
327
328 %ifarch %{all_x86}
329 %define asmarch x86
330 %define hdrarch i386
331 %define all_arch_configs kernel-%{version}-i?86*.config
332 %define image_install_path boot
333 %define kernel_image arch/x86/boot/bzImage
334 %endif
335
336 %ifarch x86_64
337 %define asmarch x86
338 %define all_arch_configs kernel-%{version}-x86_64*.config
339 %define image_install_path boot
340 %define kernel_image arch/x86/boot/bzImage
341 %endif
342
343 %ifarch ppc64
344 %define asmarch powerpc
345 %define hdrarch powerpc
346 %define all_arch_configs kernel-%{version}-ppc64*.config
347 %define image_install_path boot
348 %define make_target vmlinux
349 %define kernel_image vmlinux
350 %define kernel_image_elf 1
351 %endif
352
353 %ifarch s390
354 %define all_arch_configs kernel-%{kversion}-s390*.config
355 %define image_install_path boot
356 %define make_target image
357 %define kernel_image arch/s390/boot/image
358 %endif
359
360 %ifarch s390x
361 %define asmarch s390
362 %define hdrarch s390
363 %define all_arch_configs kernel-%{version}-s390x*.config
364 %define image_install_path boot
365 %define make_target image
366 %define kernel_image arch/s390/boot/image
367 %endif
368
369 %ifarch sparc
370 # We only build sparc headers since we dont support sparc32 hardware
371 %endif
372
373 %ifarch sparc64
374 %define asmarch sparc
375 %define all_arch_configs kernel-%{version}-sparc64*.config
376 %define make_target image
377 %define kernel_image arch/sparc/boot/image
378 %define image_install_path boot
379 %define with_perftool 0
380 %endif
381
382 %ifarch ppc
383 %define asmarch powerpc
384 %define hdrarch powerpc
385 %define all_arch_configs kernel-%{version}-ppc{-,.}*config
386 %define image_install_path boot
387 %define make_target vmlinux
388 %define kernel_image vmlinux
389 %define kernel_image_elf 1
390 %endif
391
392 %ifarch ia64
393 %define all_arch_configs kernel-%{version}-ia64*.config
394 %define image_install_path boot/efi/EFI/redhat
395 %define make_target compressed
396 %define kernel_image vmlinux.gz
397 %endif
398
399 %ifarch alpha alphaev56
400 %define all_arch_configs kernel-%{version}-alpha*.config
401 %define image_install_path boot
402 %define make_target vmlinux
403 %define kernel_image vmlinux
404 %endif
405
406 %ifarch %{arm}
407 %define all_arch_configs kernel-%{version}-arm*.config
408 %define image_install_path boot
409 %define hdrarch arm
410 %define make_target vmlinux
411 %define kernel_image vmlinux
412 %endif
413
414 %if %{nopatches}
415 # XXX temporary until last vdso patches are upstream
416 %define vdso_arches ppc ppc64
417 %endif
418
419 %if %{nopatches}%{using_upstream_branch}
420 # Ignore unknown options in our config-* files.
421 # Some options go with patches we're not applying.
422 %define oldconfig_target loose_nonint_oldconfig
423 %else
424 %define oldconfig_target nonint_oldconfig
425 %endif
426
427 # To temporarily exclude an architecture from being built, add it to
428 # %nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
429 # don't build kernel-headers then the new build system will no longer let
430 # us use the previous build of that package -- it'll just be completely AWOL.
431 # Which is a BadThing(tm).
432
433 # We don't build a kernel on i386; we only do kernel-headers there,
434 # and we no longer build for 31bit S390. Same for 32bit sparc and arm.
435 %define nobuildarches i386 i586 s390 sparc sparc64 ppc ia64 %{arm}
436
437 %ifarch %nobuildarches
438 %define with_up 0
439 %define with_smp 0
440 %define with_pae 0
441 %define with_kdump 0
442 %define with_debuginfo 0
443 %define with_perftool 0
444 %define _enable_debug_packages 0
445 %endif
446
447 %define with_pae_debug 0
448 %if %{with_pae}
449 %define with_pae_debug %{with_debug}
450 %endif
451
452 #
453 # Three sets of minimum package version requirements in the form of Conflicts:
454 # to versions below the minimum
455 #
456
457 #
458 # First the general kernel 2.6 required versions as per
459 # Documentation/Changes
460 #
461 %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
462
463 #
464 # Then a series of requirements that are distribution specific, either
465 # because we add patches for something, or the older versions have
466 # problems with the newer kernel or lack certain things that make
467 # integration in the distro harder than needed.
468 #
469 #### Planet-Lab ####
470 %if %{modern_distro}
471 %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
472 %else
473 %define package_conflicts initscripts < 7.23, 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
474 %endif
475 #### Planet-Lab ####
476
477 #
478 # The ld.so.conf.d file we install uses syntax older ldconfig's don't grok.
479 #
480 %define kernel_xen_conflicts glibc < 2.3.5-1, xen < 3.0.1
481
482 %define kernel_PAE_obsoletes kernel-smp < 2.6.17, kernel-xen <= 2.6.27-0.2.rc0.git6.fc10
483 %define kernel_PAE_provides kernel-xen = %{rpmversion}-%{pkg_release}
484
485 %ifarch x86_64
486 %define kernel_obsoletes kernel-xen <= 2.6.27-0.2.rc0.git6.fc10
487 %define kernel_provides kernel-xen = %{rpmversion}-%{pkg_release}
488 %endif
489
490 # We moved the drm include files into kernel-headers, make sure there's
491 # a recent enough libdrm-devel on the system that doesn't have those.
492 %define kernel_headers_conflicts libdrm-devel < 2.4.0-0.15
493
494 #
495 # Packages that need to be installed before the kernel is, because the %post
496 # scripts use them.
497 #
498 #### Planet-Lab ####
499 %if %{modern_distro}
500 %define kernel_prereq  fileutils, module-init-tools, initscripts >= 8.11.1-1, grubby >= 7.0.4-1
501 %else
502 %define kernel_prereq  fileutils, module-init-tools, initscripts >= 8.11.1-1, 
503 %endif
504 #### Planet-Lab ####
505
506 %if %{with_dracut}
507 %define initrd_prereq  dracut-kernel >= 002-18.git413bcf78
508 %else
509 #### Planet-Lab ####
510 %if %{modern_distro}
511 %define initrd_prereq  mkinitrd >= 6.0.61-1
512 %else
513 %define initrd_prereq  mkinitrd >= 5.1
514 %endif
515 #### Planet-Lab ####
516 %endif
517
518 #
519 # This macro does requires, provides, conflicts, obsoletes for a kernel package.
520 #       %%kernel_reqprovconf <subpackage>
521 # It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
522 # macros defined above.
523 #
524 %define kernel_reqprovconf \
525 Provides: kernel = %{rpmversion}-%{pkg_release}\
526 Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\
527 Provides: kernel-drm = 4.3.0\
528 Provides: kernel-drm-nouveau = 16\
529 Provides: kernel-modeset = 1\
530 Provides: kernel-uname-r = %{KVERREL}%{?1:.%{1}}\
531 Requires(pre): %{kernel_prereq}\
532 Requires(pre): %{initrd_prereq}\
533 Requires(post): /sbin/new-kernel-pkg\
534 Requires(preun): /sbin/new-kernel-pkg\
535 Conflicts: %{kernel_dot_org_conflicts}\
536 Conflicts: %{package_conflicts}\
537 %{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
538 %{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
539 %{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
540 # We can't let RPM do the dependencies automatic because it'll then pick up\
541 # a correct but undesirable perl dependency from the module headers which\
542 # isn't required for the kernel proper to function\
543 AutoReq: no\
544 AutoProv: yes\
545 %{nil}
546
547 Name: kernel%{?variant}
548 Group: System Environment/Kernel
549 License: GPLv2
550 #### Planet-Lab ####
551 #URL: http://www.kernel.org/
552 #### Planet-Lab ####
553 Version: %{rpmversion}
554 Release: %{pkg_release}
555 # DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
556 # SET %%nobuildarches (ABOVE) INSTEAD
557 ExclusiveArch: noarch %{all_x86} x86_64 ppc ppc64 ia64 sparc sparc64 s390 s390x alpha alphaev56 %{arm}
558 ExclusiveOS: Linux
559
560 %kernel_reqprovconf
561 %ifarch x86_64 sparc64
562 Obsoletes: kernel-smp
563 %endif
564
565
566 #
567 # List the packages used during the kernel build
568 #
569 BuildRequires: module-init-tools, patch >= 2.5.4, bash >= 2.03, sh-utils, tar
570 BuildRequires: bzip2, findutils, gzip, m4, perl, make >= 3.78, diffutils, gawk
571 BuildRequires: gcc >= 3.4.2, binutils >= 2.12, redhat-rpm-config
572 #### Planet-Lab ####
573 BuildRequires: net-tools, patchutils, rpm-build
574 #### Planet-Lab ####
575 %if %{with_doc}
576 BuildRequires: xmlto
577 BuildRequires: asciidoc
578 %endif
579 %if %{with_sparse}
580 BuildRequires: sparse >= 0.4.1
581 %endif
582 %if %{with_perftool}
583 BuildRequires: elfutils-libelf-devel zlib-devel binutils-devel
584 %endif
585 %if %{signmodules}
586 BuildRequires: gnupg
587 %endif
588 BuildRequires: python
589 %if %{with_fips}
590 BuildRequires: hmaccalc
591 %endif
592 %ifarch s390x
593 # Ensure glibc{,-devel} is installed so zfcpdump can be built
594 BuildRequires: glibc-static
595 %endif
596
597 BuildConflicts: rhbuildsys(DiskFree) < 7Gb
598
599 %define fancy_debuginfo 1
600
601 %if %{fancy_debuginfo}
602 # Fancy new debuginfo generation introduced in Fedora 8.
603 %define debuginfo_args --strict-build-id
604 %endif
605
606 Source0: linux-2.6.32-71.18.1.el6.tar.bz2
607
608 Source1: Makefile.common
609
610 %if 0%{?rcrev}
611 Source2: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/incr/patch-2.6.%{upstream_sublevel}-rc%{rcrev}.bz2
612 %if 0%{?gitrev}
613 Source3: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/incr/patch-2.6.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.bz2
614 %endif
615 %endif
616
617 Source11: genkey
618 Source13: perf-archive
619 Source14: find-provides
620 Source15: merge.pl
621 Source16: perf
622 Source17: kabitool
623 Source18: check-kabi
624 Source19: extrakeys.pub
625
626 Source20: Makefile.config
627
628 Source30: Module.kabi_i686
629 Source31: Module.kabi_ppc64
630 Source32: Module.kabi_s390x
631 Source33: Module.kabi_x86_64
632
633 Source50: config-i686
634 Source51: config-s390x-kdump-rhel
635 Source52: config-generic
636 Source53: config-x86-generic-rhel
637 Source54: config-s390x-generic-rhel
638 Source55: config-x86-generic
639 Source56: config-x86_64-nodebug-rhel
640 Source57: config-s390x-rhel
641 Source58: config-powerpc64-kdump
642 Source59: config-i686-debug-rhel
643 Source60: config-nodebug
644 Source61: config-s390x
645 Source62: config-powerpc-generic-rhel
646 Source63: config-ia64-generic-rhel
647 Source64: config-s390x-kdump
648 Source65: config-nodebug-rhel
649 Source66: config-i686-nodebug
650 Source67: config-i686-debug
651 Source68: config-powerpc-generic
652 Source69: config-x86_64-debug
653 Source70: config-framepointer
654 Source71: config-i686-rhel
655 Source72: config-i686-nodebug-rhel
656 Source73: config-x86_64-nodebug
657 Source74: config-powerpc64-rhel
658 Source75: config-debug
659 Source76: config-x86_64-generic
660 Source77: config-x86_64-debug-rhel
661 Source78: config-x86_64-generic-rhel
662 Source79: config-debug-rhel
663 Source80: config-generic-rhel
664 Source81: config-powerpc64
665
666 Patch1: patch-2.6.32-71.18.1.el6-vs2.3.0.36.29.4.diff
667 Patch2: linux-2.6-220-delta-ptrace-fix01.patch
668 Patch3: linux-2.6-250-ipsets.patch
669 Patch4: linux-2.6-510-ipod.patch
670 Patch5: linux-2.6-521-packet-tagging.patch
671 Patch6: linux-2.6-522-iptables-connection-tagging.patch
672 Patch7: linux-2.6-523-raw-sockets.patch
673 Patch8: linux-2.6-524-peercred.patch
674 Patch9: linux-2.6-525-sknid-elevator.patch
675 Patch10: linux-2.6-527-iptables-classify-add-mark.patch
676 Patch11: linux-2.6-530-built-by-support.patch
677 Patch12: linux-2.6-550-raise-default-nfile-ulimit.patch
678 Patch13: linux-2.6-570-tagxid.patch
679 Patch14: linux-2.6-580-show-proc-virt.patch
680 Patch15: linux-2.6-590-dcookies-mm.patch
681 Patch16: linux-2.6-591-chopstix-intern.patch
682 Patch17: linux-2.6-640-netlink-audit-hack.patch
683 Patch18: linux-2.6-650-hangcheck-reboot.patch
684 Patch19: linux-2.6-660-nmi-watchdog-default.patch
685 Patch20: linux-2.6-680-htb-hysteresis-tso.patch
686
687 Patch10000: linux-2.6-10000-gcc-4.5.patch
688 # empty final patch file to facilitate testing of kernel patches
689 Patch999999: linux-kernel-test.patch
690
691 BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
692
693 # Override find_provides to use a script that provides "kernel(symbol) = hash".
694 # Pass path of the RPM temp dir containing kabideps to find-provides script.
695 %global _use_internal_dependency_generator 0
696 %define __find_provides %_sourcedir/find-provides %{_tmppath}
697 %define __find_requires /usr/lib/rpm/redhat/find-requires kernel
698
699 %description
700 The kernel package contains the Linux kernel (vmlinuz), the core of any
701 Linux operating system.  The kernel handles the basic functions
702 of the operating system: memory allocation, process allocation, device
703 input and output, etc.
704
705
706 %package doc
707 Summary: Various documentation bits found in the kernel source
708 Group: Documentation
709 %description doc
710 This package contains documentation files from the kernel
711 source. Various bits of information about the Linux kernel and the
712 device drivers shipped with it are documented in these files.
713
714 You'll want to install this package if you need a reference to the
715 options that can be passed to Linux kernel modules at load time.
716
717
718 %package headers
719 Summary: Header files for the Linux kernel for use by glibc
720 Group: Development/System
721 Obsoletes: glibc-kernheaders
722 Provides: glibc-kernheaders = 3.0-46
723 %description headers
724 Kernel-headers includes the C header files that specify the interface
725 between the Linux kernel and userspace libraries and programs.  The
726 header files define structures and constants that are needed for
727 building most standard programs and are also needed for rebuilding the
728 glibc package.
729
730 %package firmware
731 Summary: Firmware files used by the Linux kernel
732 Group: Development/System
733 # This is... complicated.
734 # Look at the WHENCE file.
735 License: GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted
736 %if "x%{?variant}" != "x"
737 Provides: kernel-firmware = %{rpmversion}-%{pkg_release}
738 %endif
739 %description firmware
740 Kernel-firmware includes firmware files required for some devices to
741 operate.
742
743 %package bootwrapper
744 Summary: Boot wrapper files for generating combined kernel + initrd images
745 Group: Development/System
746 Requires: gzip
747 %description bootwrapper
748 Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
749 files combining both kernel and initial ramdisk.
750
751 %package debuginfo-common-%{_target_cpu}
752 Summary: Kernel source files used by %{name}-debuginfo packages
753 Group: Development/Debug
754 %description debuginfo-common-%{_target_cpu}
755 This package is required by %{name}-debuginfo subpackages.
756 It provides the kernel source files common to all builds.
757
758 %package -n perf
759 Summary: Performance monitoring for the Linux kernel
760 Group: Development/System
761 License: GPLv2
762 %description -n perf
763 This package provides the supporting documentation for the perf tool
764 shipped in each kernel image subpackage.
765
766 #
767 # This macro creates a kernel-<subpackage>-debuginfo package.
768 #       %%kernel_debuginfo_package <subpackage>
769 #
770 %define kernel_debuginfo_package() \
771 %package %{?1:%{1}-}debuginfo\
772 Summary: Debug information for package %{name}%{?1:-%{1}}\
773 Group: Development/Debug\
774 Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
775 Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
776 AutoReqProv: no\
777 %description -n %{name}%{?1:-%{1}}-debuginfo\
778 This package provides debug information for package %{name}%{?1:-%{1}}.\
779 This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\
780 %{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVERREL}%{?1:\.%{1}}/.*|/.*%%{KVERREL}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
781 %{nil}
782
783 #
784 # This macro creates a kernel-<subpackage>-devel package.
785 #       %%kernel_devel_package <subpackage> <pretty-name>
786 #
787 %define kernel_devel_package() \
788 %package %{?1:%{1}-}devel\
789 Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
790 Group: System Environment/Kernel\
791 Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
792 Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
793 Provides: kernel-devel = %{version}-%{release}%{?1:.%{1}}\
794 Provides: kernel-devel-uname-r = %{KVERREL}%{?1:.%{1}}\
795 AutoReqProv: no\
796 Requires(pre): /usr/bin/find\
797 %description -n kernel%{?variant}%{?1:-%{1}}-devel\
798 This package provides kernel headers and makefiles sufficient to build modules\
799 against the %{?2:%{2} }kernel package.\
800 %{nil}
801
802 #
803 # This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
804 #       %%define variant_summary The Linux kernel compiled for <configuration>
805 #       %%kernel_variant_package [-n <pretty-name>] <subpackage>
806 #
807 %define kernel_variant_package(n:) \
808 %package %1\
809 Summary: %{variant_summary}\
810 Group: System Environment/Kernel\
811 %kernel_reqprovconf\
812 %{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
813 %{expand:%%kernel_debuginfo_package %1}\
814 %{nil}
815
816
817 # First the auxiliary packages of the main kernel package.
818 %kernel_devel_package
819 %kernel_debuginfo_package
820
821
822 # Now, each variant package.
823
824 %define variant_summary The Linux kernel compiled for SMP machines
825 %kernel_variant_package -n SMP smp
826 %description smp
827 This package includes a SMP version of the Linux kernel. It is
828 required only on machines with two or more CPUs as well as machines with
829 hyperthreading technology.
830
831 Install the kernel-smp package if your machine uses two or more CPUs.
832
833
834 %define variant_summary The Linux kernel compiled for PAE capable machines
835 %kernel_variant_package PAE
836 %description PAE
837 This package includes a version of the Linux kernel with support for up to
838 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
839 The non-PAE kernel can only address up to 4GB of memory.
840 Install the kernel-PAE package if your machine has more than 4GB of memory.
841
842
843 %define variant_summary The Linux kernel compiled with extra debugging enabled for PAE capable machines
844 %kernel_variant_package PAEdebug
845 Obsoletes: kernel-PAE-debug
846 %description PAEdebug
847 This package includes a version of the Linux kernel with support for up to
848 64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
849 The non-PAE kernel can only address up to 4GB of memory.
850 Install the kernel-PAE package if your machine has more than 4GB of memory.
851
852 This variant of the kernel has numerous debugging options enabled.
853 It should only be installed when trying to gather additional information
854 on kernel bugs, as some of these options impact performance noticably.
855
856
857 %define variant_summary The Linux kernel compiled with extra debugging enabled
858 %kernel_variant_package debug
859 %description debug
860 The kernel package contains the Linux kernel (vmlinuz), the core of any
861 Linux operating system.  The kernel handles the basic functions
862 of the operating system:  memory allocation, process allocation, device
863 input and output, etc.
864
865 This variant of the kernel has numerous debugging options enabled.
866 It should only be installed when trying to gather additional information
867 on kernel bugs, as some of these options impact performance noticably.
868
869
870 %define variant_summary A minimal Linux kernel compiled for crash dumps
871 %kernel_variant_package kdump
872 %description kdump
873 This package includes a kdump version of the Linux kernel. It is
874 required only on machines which will use the kexec-based kernel crash dump
875 mechanism.
876
877
878 %prep
879 # do a few sanity-checks for --with *only builds
880 %if %{with_baseonly}
881 %if !%{with_up}%{with_pae}
882 echo "Cannot build --with baseonly, up build is disabled"
883 exit 1
884 %endif
885 %endif
886
887 %if %{with_smponly}
888 %if !%{with_smp}
889 echo "Cannot build --with smponly, smp build is disabled"
890 exit 1
891 %endif
892 %endif
893
894 %if %{with_fuzzy_patches}
895   patch_command='patch -p1 -s'
896 %else
897   patch_command='patch -p1 -F1 -s'
898 %endif
899
900 ApplyPatch()
901 {
902   local patch=$1
903   shift
904   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
905     exit 1
906   fi
907   case "$patch" in
908   *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
909   *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
910   *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
911   esac
912 }
913
914 # don't apply patch if it's empty
915 ApplyOptionalPatch()
916 {
917   local patch=$1
918   shift
919   if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
920     exit 1
921   fi
922   local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
923   if [ "$C" -gt 9 ]; then
924     ApplyPatch $patch ${1+"$@"}
925   fi
926 }
927
928 # we don't want a .config file when building firmware: it just confuses the build system
929 %define build_firmware \
930    mv .config .config.firmware_save \
931    make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install \
932    mv .config.firmware_save .config
933
934 if [ ! -d kernel-%{kversion}/vanilla-%{kversion}/ ]; then
935         rm -f pax_global_header;
936 %setup -q -n kernel-%{kversion} -c
937         mv linux-%{kversion} vanilla-%{kversion};
938 else
939         cd kernel-%{kversion}/;
940 fi
941
942 if [ -d linux-%{kversion}.%{_target_cpu} ]; then
943   # Just in case we ctrl-c'd a prep already
944   rm -rf deleteme.%{_target_cpu}
945   # Move away the stale away, and delete in background.
946   mv linux-%{kversion}.%{_target_cpu} deleteme.%{_target_cpu}
947   rm -rf deleteme.%{_target_cpu} &
948 fi
949
950 cp -rl vanilla-%{kversion} linux-%{kversion}.%{_target_cpu}
951
952 cd linux-%{kversion}.%{_target_cpu}
953
954 # Drop some necessary files from the source dir into the buildroot
955 cp $RPM_SOURCE_DIR/config-* .
956 cp %{SOURCE15} %{SOURCE1} %{SOURCE16} %{SOURCE17} %{SOURCE18} .
957
958 # Dynamically generate kernel .config files from config-* files
959 make -f %{SOURCE20} VERSION=%{version} configs
960
961 #### Planet-Lab ####
962 ApplyPatch patch-2.6.32-71.18.1.el6-vs2.3.0.36.29.4.diff
963 ApplyPatch linux-2.6-220-delta-ptrace-fix01.patch
964 ApplyPatch linux-2.6-250-ipsets.patch
965 ApplyPatch linux-2.6-510-ipod.patch
966 ApplyPatch linux-2.6-521-packet-tagging.patch
967 ApplyPatch linux-2.6-522-iptables-connection-tagging.patch
968 ApplyPatch linux-2.6-523-raw-sockets.patch
969 ApplyPatch linux-2.6-524-peercred.patch
970 ApplyPatch linux-2.6-525-sknid-elevator.patch
971 ApplyPatch linux-2.6-527-iptables-classify-add-mark.patch
972 ApplyPatch linux-2.6-530-built-by-support.patch
973 #ApplyPatch linux-2.6-540-oom-kill.patch
974 ApplyPatch linux-2.6-550-raise-default-nfile-ulimit.patch
975 ApplyPatch linux-2.6-570-tagxid.patch
976 ApplyPatch linux-2.6-580-show-proc-virt.patch
977 ApplyPatch linux-2.6-590-dcookies-mm.patch
978 ApplyPatch linux-2.6-591-chopstix-intern.patch
979 ApplyPatch linux-2.6-640-netlink-audit-hack.patch
980 ApplyPatch linux-2.6-650-hangcheck-reboot.patch
981 ApplyPatch linux-2.6-660-nmi-watchdog-default.patch
982 ApplyPatch linux-2.6-680-htb-hysteresis-tso.patch
983 ApplyPatch linux-2.6-10000-gcc-4.5.patch
984 #### Planet-Lab ####
985
986 ApplyOptionalPatch linux-kernel-test.patch
987
988 # Any further pre-build tree manipulations happen here.
989
990 chmod +x scripts/checkpatch.pl
991
992 # only deal with configs if we are going to build for the arch
993 %ifnarch %nobuildarches
994
995 mkdir configs
996
997 # Remove configs not for the buildarch
998 for cfg in kernel-%{version}-*.config; do
999   if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
1000     rm -f $cfg
1001   fi
1002 done
1003
1004 %if !%{debugbuildsenabled}
1005 rm -f kernel-%{version}-*debug.config
1006 %endif
1007
1008 # now run oldconfig over all the config files
1009 for i in *.config
1010 do
1011   mv $i .config
1012   Arch=`head -1 .config | cut -b 3-`
1013   make ARCH=$Arch %{oldconfig_target} > /dev/null
1014   echo "# $Arch" > configs/$i
1015   cat .config >> configs/$i
1016   rm -f include/generated/kernel.arch
1017   rm -f include/generated/kernel.cross
1018 done
1019 # end of kernel config
1020 %endif
1021
1022 # get rid of unwanted files resulting from patch fuzz
1023 find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
1024
1025 %if %{signmodules}
1026 cp %{SOURCE19} .
1027 cat <<EOF
1028 ###
1029 ### Now generating a PGP key pair to be used for signing modules.
1030 ###
1031 ### If this takes a long time, you might wish to run rngd in the background to
1032 ### keep the supply of entropy topped up.  It needs to be run as root, and
1033 ### should use a hardware random number generator if one is available, eg:
1034 ###
1035 ###     rngd -r /dev/hwrandom
1036 ###
1037 ### If one isn't available, the pseudo-random number generator can be used:
1038 ###
1039 ###     rngd -r /dev/urandom
1040 ###
1041 EOF
1042 gpg --homedir . --batch --gen-key %{SOURCE11}
1043 cat <<EOF
1044 ###
1045 ### Key pair generated.
1046 ###
1047 EOF
1048 # if there're external keys to be included
1049 if [ -s %{SOURCE19} ]; then
1050         gpg --homedir . --no-default-keyring --keyring kernel.pub --import %{SOURCE19}
1051 fi
1052 gpg --homedir . --export --keyring ./kernel.pub Red > extract.pub
1053 gcc -o scripts/bin2c scripts/bin2c.c
1054 scripts/bin2c ksign_def_public_key __initdata <extract.pub >crypto/signature/key.h
1055 %endif
1056
1057 cd ..
1058
1059 ###
1060 ### build
1061 ###
1062 %build
1063
1064 %if %{with_sparse}
1065 %define sparse_mflags   C=1
1066 %endif
1067
1068 %if %{fancy_debuginfo}
1069 # This override tweaks the kernel makefiles so that we run debugedit on an
1070 # object before embedding it.  When we later run find-debuginfo.sh, it will
1071 # run debugedit again.  The edits it does change the build ID bits embedded
1072 # in the stripped object, but repeating debugedit is a no-op.  We do it
1073 # beforehand to get the proper final build ID bits into the embedded image.
1074 # This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
1075 export AFTER_LINK=\
1076 'sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug -i $@"'
1077 %endif
1078
1079 cp_vmlinux()
1080 {
1081   eu-strip --remove-comment -o "$2" "$1"
1082 }
1083
1084 BuildKernel() {
1085     MakeTarget=$1
1086     KernelImage=$2
1087     Flavour=$3
1088     InstallName=${4:-vmlinuz}
1089
1090     # Pick the right config file for the kernel we're building
1091     Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
1092     DevelDir=/usr/src/kernels/%{KVERREL}${Flavour:+.${Flavour}}
1093
1094     # When the bootable image is just the ELF kernel, strip it.
1095     # We already copy the unstripped file into the debuginfo package.
1096     if [ "$KernelImage" = vmlinux ]; then
1097       CopyKernel=cp_vmlinux
1098     else
1099       CopyKernel=cp
1100     fi
1101
1102     KernelVer=%{version}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}
1103     echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
1104
1105     # make sure EXTRAVERSION says what we want it to say
1106     perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = %{?stablerev}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
1107
1108     # if pre-rc1 devel kernel, must fix up SUBLEVEL for our versioning scheme
1109     %if !0%{?rcrev}
1110     %if 0%{?gitrev}
1111     perl -p -i -e 's/^SUBLEVEL.*/SUBLEVEL = %{upstream_sublevel}/' Makefile
1112     %endif
1113     %endif
1114
1115     #### Planet-Lab ####
1116     # -Werror breaks F14 builds
1117     sed -i -e "s:-Wno-array-bounds -Werror:-Wno-array-bounds:g" Makefile
1118     #### Planet-Lab ####
1119
1120     # and now to start the build process
1121
1122     make -s mrproper
1123     cp configs/$Config .config
1124
1125     Arch=`head -1 .config | cut -b 3-`
1126     echo USING ARCH=$Arch
1127
1128     if [ "$Arch" == "s390" -a "$Flavour" == "kdump" ]; then
1129         pushd arch/s390/boot
1130         gcc -static -o zfcpdump zfcpdump.c
1131         popd
1132     fi
1133     make -s ARCH=$Arch %{oldconfig_target} > /dev/null
1134     make -s ARCH=$Arch V=1 %{?_smp_mflags} $MakeTarget %{?sparse_mflags}
1135     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
1136         make -s ARCH=$Arch V=1 %{?_smp_mflags} modules %{?sparse_mflags} || exit 1
1137     fi
1138
1139 %if %{with_perftool}
1140     pushd tools/perf
1141 # make sure the scripts are executable... won't be in tarball until 2.6.31 :/
1142     chmod +x util/generate-cmdlist.sh util/PERF-VERSION-GEN
1143     make -s V=1 %{?_smp_mflags} NO_DEMANGLE=1 perf
1144     mkdir -p $RPM_BUILD_ROOT/usr/libexec/
1145     install -m 755 perf $RPM_BUILD_ROOT/usr/libexec/perf.$KernelVer
1146     popd
1147 %endif
1148
1149     # Start installing the results
1150 %if %{with_debuginfo}
1151     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
1152     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
1153     install -m 644 System.map $RPM_BUILD_ROOT/%{debuginfodir}/boot/System.map-$KernelVer
1154 %endif
1155     mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
1156     install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
1157     install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
1158 %if %{with_dracut}
1159     # We estimate the size of the initramfs because rpm needs to take this size
1160     # into consideration when performing disk space calculations. (See bz #530778)
1161     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
1162 %else
1163     dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initrd-$KernelVer.img bs=1M count=5
1164 %endif
1165     if [ -f arch/$Arch/boot/zImage.stub ]; then
1166       cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
1167     fi
1168     $CopyKernel $KernelImage \
1169                 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
1170     chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
1171
1172 %if %{with_fips}
1173     # hmac sign the kernel for FIPS
1174     echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
1175     ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
1176     sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
1177 %endif
1178
1179     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
1180     # Override $(mod-fw) because we don't want it to install any firmware
1181     # We'll do that ourselves with 'make firmware_install'
1182     if [ "$Arch" != "s390" -o "$Flavour" != "kdump" ]; then
1183       make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
1184
1185       # check if the modules are being signed
1186 %if %{signmodules}
1187       if [ -z "$(readelf -n $(find fs/ -name \*.ko | head -n 1) | grep module.sig)" ]; then
1188           echo "ERROR: modules are NOT signed" >&2;
1189           exit 1;
1190       fi
1191 %endif
1192     else
1193       mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/{kernel,extra}
1194     fi
1195
1196 %ifarch %{vdso_arches}
1197     make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
1198     if grep '^CONFIG_XEN=y$' .config >/dev/null; then
1199       echo > ldconfig-kernel.conf "\
1200 # This directive teaches ldconfig to search in nosegneg subdirectories
1201 # and cache the DSOs there with extra bit 0 set in their hwcap match
1202 # fields.  In Xen guest kernels, the vDSO tells the dynamic linker to
1203 # search in nosegneg subdirectories and to match this extra hwcap bit
1204 # in the ld.so.cache file.
1205 hwcap 0 nosegneg"
1206     fi
1207     if [ ! -s ldconfig-kernel.conf ]; then
1208       echo > ldconfig-kernel.conf "\
1209 # Placeholder file, no vDSO hwcap entries used in this kernel."
1210     fi
1211     %{__install} -D -m 444 ldconfig-kernel.conf \
1212         $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
1213 %endif
1214
1215     # And save the headers/makefiles etc for building modules against
1216     #
1217     # This all looks scary, but the end result is supposed to be:
1218     # * all arch relevant include/ files
1219     # * all Makefile/Kconfig files
1220     # * all script/ files
1221
1222     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1223     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
1224     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1225     (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
1226     # dirs for additional modules per module-init-tools, kbuild/modules.txt
1227     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
1228     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
1229     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
1230     # first copy everything
1231     cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1232     cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1233     cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1234     if [ -s Module.markers ]; then
1235       cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1236     fi
1237
1238     # create the kABI metadata for use in packaging
1239     echo "**** GENERATING kernel ABI metadata ****"
1240     gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
1241     chmod 0755 %_sourcedir/kabitool
1242     rm -f %{_tmppath}/kernel-$KernelVer-kabideps
1243     %_sourcedir/kabitool -s Module.symvers -o %{_tmppath}/kernel-$KernelVer-kabideps
1244
1245 %if %{with_kabichk}
1246     echo "**** kABI checking is enabled in kernel SPEC file. ****"
1247     chmod 0755 $RPM_SOURCE_DIR/check-kabi
1248     if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
1249         cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
1250         $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
1251         rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
1252     else
1253         echo "**** NOTE: Cannot find reference Module.kabi file. ****"
1254     fi
1255 %endif
1256     # then drop all but the needed Makefiles/Kconfig files
1257     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
1258     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
1259     rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
1260     cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1261     cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1262     if [ -d arch/$Arch/scripts ]; then
1263       cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
1264     fi
1265     if [ -f arch/$Arch/*lds ]; then
1266       cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
1267     fi
1268     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
1269     rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
1270 %ifarch ppc
1271     cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
1272 %endif
1273     if [ -d arch/%{asmarch}/include ]; then
1274       cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
1275     fi
1276     mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
1277     cd include
1278     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
1279     asmdir=$(readlink asm)
1280     cp -a $asmdir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/
1281     pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
1282     ln -s $asmdir asm
1283     popd
1284     # Make sure the Makefile and version.h have a matching timestamp so that
1285     # external modules can be built
1286     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/version.h
1287     touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
1288     # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
1289     cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
1290     cd ..
1291
1292     #
1293     # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
1294     #
1295 %if %{with_debuginfo}
1296     mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
1297     cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
1298 %endif
1299
1300     find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
1301
1302     # mark modules executable so that strip-to-file can strip them
1303     xargs --no-run-if-empty chmod u+x < modnames
1304
1305     # Generate a list of modules for block and networking.
1306
1307     fgrep /drivers/ modnames | xargs --no-run-if-empty nm -upA |
1308     sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
1309
1310     collect_modules_list()
1311     {
1312       sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
1313       LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
1314     }
1315
1316     collect_modules_list networking \
1317                          'register_netdev|ieee80211_register_hw|usbnet_probe'
1318     collect_modules_list block \
1319                          'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler'
1320     collect_modules_list drm \
1321                          'drm_open|drm_init'
1322     collect_modules_list modesetting \
1323                          'drm_crtc_init'
1324
1325     # detect missing or incorrect license tags
1326     rm -f modinfo
1327     while read i
1328     do
1329       echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
1330       /sbin/modinfo -l $i >> modinfo
1331     done < modnames
1332
1333     egrep -v \
1334           'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' \
1335           modinfo && exit 1
1336
1337     rm -f modinfo modnames
1338
1339     # remove files that will be auto generated by depmod at rpm -i time
1340     for i in alias alias.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap
1341     do
1342       rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
1343     done
1344
1345     # Move the devel headers out of the root file system
1346     mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
1347     mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
1348     ln -sf ../../..$DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
1349 }
1350
1351 ###
1352 # DO it...
1353 ###
1354
1355 # prepare directories
1356 rm -rf $RPM_BUILD_ROOT
1357 mkdir -p $RPM_BUILD_ROOT/boot
1358
1359 cd linux-%{kversion}.%{_target_cpu}
1360
1361 %if %{with_debug}
1362 BuildKernel %make_target %kernel_image debug
1363 %endif
1364
1365 %if %{with_pae_debug}
1366 BuildKernel %make_target %kernel_image PAEdebug
1367 %endif
1368
1369 %if %{with_pae}
1370 BuildKernel %make_target %kernel_image PAE
1371 %endif
1372
1373 %if %{with_up}
1374 BuildKernel %make_target %kernel_image
1375 %endif
1376
1377 %if %{with_smp}
1378 BuildKernel %make_target %kernel_image smp
1379 %endif
1380
1381 %if %{with_kdump}
1382 %ifarch s390x
1383 BuildKernel %make_target %kernel_image kdump
1384 %else
1385 BuildKernel vmlinux vmlinux kdump vmlinux
1386 %endif
1387 %endif
1388
1389 %if %{with_doc}
1390 # Make the HTML and man pages.
1391 make -j1 htmldocs mandocs || %{doc_build_fail}
1392
1393 # sometimes non-world-readable files sneak into the kernel source tree
1394 chmod -R a=rX Documentation
1395 find Documentation -type d | xargs chmod u+w
1396 %endif
1397
1398 %if %{with_perf}
1399 pushd tools/perf
1400 make %{?_smp_mflags} man || %{doc_build_fail}
1401 popd
1402 %endif
1403
1404 ###
1405 ### Special hacks for debuginfo subpackages.
1406 ###
1407
1408 # This macro is used by %%install, so we must redefine it before that.
1409 %define debug_package %{nil}
1410
1411 %if %{fancy_debuginfo}
1412 %define __debug_install_post \
1413   /usr/lib/rpm/find-debuginfo.sh %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
1414 %{nil}
1415 %endif
1416
1417 %if %{with_debuginfo}
1418 %ifnarch noarch
1419 %global __debug_package 1
1420 %files -f debugfiles.list debuginfo-common-%{_target_cpu}
1421 %defattr(-,root,root)
1422 %endif
1423 %endif
1424
1425 ###
1426 ### install
1427 ###
1428
1429 %install
1430 # for some reason, on RHEL-5 RPM_BUILD_ROOT doesn't get set
1431 if [ -z "$RPM_BUILD_ROOT" ]; then
1432         export RPM_BUILD_ROOT="%{buildroot}";
1433 fi
1434
1435 cd linux-%{kversion}.%{_target_cpu}
1436
1437 %if %{with_doc}
1438 docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
1439 man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
1440
1441 # copy the source over
1442 mkdir -p $docdir
1443 tar -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
1444
1445 # Install man pages for the kernel API.
1446 mkdir -p $man9dir
1447 find Documentation/DocBook/man -name '*.9.gz' -print0 |
1448 xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
1449 ls $man9dir | grep -q '' || > $man9dir/BROKEN
1450 %endif # with_doc
1451
1452 # perf docs
1453 %if %{with_perf}
1454 mandir=$RPM_BUILD_ROOT%{_datadir}/man
1455 man1dir=$mandir/man1
1456 pushd tools/perf/Documentation
1457 make install-man mandir=$mandir
1458 popd
1459
1460 pushd $man1dir
1461 for d in *.1; do
1462  gzip $d;
1463 done
1464 popd
1465 %endif # with_perf
1466
1467 # perf shell wrapper
1468 %if %{with_perf}
1469 mkdir -p $RPM_BUILD_ROOT/usr/sbin/
1470 cp $RPM_SOURCE_DIR/perf $RPM_BUILD_ROOT/usr/sbin/perf
1471 chmod 0755 $RPM_BUILD_ROOT/usr/sbin/perf
1472 cp $RPM_SOURCE_DIR/perf-archive $RPM_BUILD_ROOT/usr/sbin/perf-archive
1473 chmod 0755 $RPM_BUILD_ROOT/usr/sbin/perf-archive
1474 mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/perf
1475 %endif
1476
1477 %if %{with_headers}
1478 # Install kernel headers
1479 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
1480
1481 # Do headers_check but don't die if it fails.
1482 make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
1483      > hdrwarnings.txt || :
1484 if grep -q exist hdrwarnings.txt; then
1485    sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
1486    # Temporarily cause a build failure if header inconsistencies.
1487    # exit 1
1488 fi
1489
1490 find $RPM_BUILD_ROOT/usr/include \
1491      \( -name .install -o -name .check -o \
1492         -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
1493
1494 # glibc provides scsi headers for itself, for now
1495 rm -rf $RPM_BUILD_ROOT/usr/include/scsi
1496 rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
1497 rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
1498 rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
1499 %endif
1500
1501 %if %{with_firmware}
1502 %{build_firmware}
1503 %endif
1504
1505 %if %{with_bootwrapper}
1506 make DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
1507 %endif
1508
1509
1510 ###
1511 ### clean
1512 ###
1513
1514 %clean
1515 rm -rf $RPM_BUILD_ROOT
1516
1517 ###
1518 ### scripts
1519 ###
1520
1521 #
1522 # This macro defines a %%post script for a kernel*-devel package.
1523 #       %%kernel_devel_post [<subpackage>]
1524 #
1525 %define kernel_devel_post() \
1526 %{expand:%%post %{?1:%{1}-}devel}\
1527 if [ -f /etc/sysconfig/kernel ]\
1528 then\
1529     . /etc/sysconfig/kernel || exit $?\
1530 fi\
1531 if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
1532 then\
1533     (cd /usr/src/kernels/%{KVERREL}%{?1:.%{1}} &&\
1534      /usr/bin/find . -type f | while read f; do\
1535        hardlink -c /usr/src/kernels/*.fc*.*/$f $f\
1536      done)\
1537 fi\
1538 %{nil}
1539
1540 # This macro defines a %%posttrans script for a kernel package.
1541 #       %%kernel_variant_posttrans [<subpackage>]
1542 # More text can follow to go at the end of this variant's %%post.
1543 #
1544 # grubby might be called during installation when a boot loader configuration
1545 # file is not present, so just drop any error messages. See BZ#610813 for
1546 # more details.
1547 %define kernel_variant_posttrans() \
1548 %{expand:%%posttrans %{?1}}\
1549 %{expand:\
1550 NEWKERNARGS=""\
1551 (/sbin/grubby --info=`/sbin/grubby --default-kernel`) 2>/dev/null | grep -q crashkernel\
1552 if [ $? -ne 0 ]\
1553 then\
1554         NEWKERNARGS="--kernel-args=\"crashkernel=auto\""\
1555 fi\
1556 %if %{with_dracut}\
1557 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --dracut --depmod --update %{KVERREL}%{?1:.%{1}} $NEWKERNARGS || exit $?\
1558 %else\
1559 %if %{modern_distro}\
1560 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --mkinitrd --depmod --update %{KVERREL}%{?1:.%{1}} $NEWKERNARGS || exit $?\
1561 %else\
1562 /sbin/new-kernel-pkg --mkinitrd --depmod --install %{KVERREL}%{?1:.%{1}} || exit $?\
1563 %endif\
1564 %endif}\
1565 %if %{modern_distro}\
1566 /sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVERREL}%{?1:.%{1}} || exit $?\
1567 if [ -x /sbin/weak-modules ]\
1568 then\
1569     /sbin/weak-modules --add-kernel %{KVERREL}%{?1:.%{1}} || exit $?\
1570 fi\
1571 %endif\
1572 pushd /boot > /dev/null\
1573 ln -sf config-%{KVERREL}%{?1:.%{1}} config\
1574 ln -sf config-%{KVERREL}%{?1:.%{1}} configsmp\
1575 ln -sf initrd-%{KVERREL}%{?1:.%{1}}.img initrd-boot\
1576 ln -sf initrd-%{KVERREL}%{?1:.%{1}}.img initrd-bootsmp\
1577 ln -sf vmlinuz-%{KVERREL}%{?1:.%{1}} kernel-boot\
1578 ln -sf vmlinuz-%{KVERREL}%{?1:.%{1}} kernel-bootsmp\
1579 popd > /dev/null\
1580 mkdir -p /etc/planetlab\
1581 touch /etc/planetlab/update-reboot\
1582 %{nil}
1583
1584 #
1585 # This macro defines a %%post script for a kernel package and its devel package.
1586 #       %%kernel_variant_post [-v <subpackage>] [-r <replace>]
1587 # More text can follow to go at the end of this variant's %%post.
1588 #
1589 %define kernel_variant_post(v:r:) \
1590 %{expand:%%kernel_devel_post %{?-v*}}\
1591 %{expand:%%kernel_variant_posttrans %{?-v*}}\
1592 %{expand:%%post %{?-v*}}\
1593 %{-r:\
1594 if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\
1595    [ -f /etc/sysconfig/kernel ]; then\
1596   /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
1597 fi}\
1598 %{expand:\
1599 /sbin/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --install %{KVERREL}%{?-v:.%{-v*}} || exit $?\
1600 }\
1601 %{nil}
1602
1603 #
1604 # This macro defines a %%preun script for a kernel package.
1605 #       %%kernel_variant_preun <subpackage>
1606 #
1607 %define kernel_variant_preun() \
1608 %{expand:%%preun %{?1}}\
1609 /sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}%{?1:.%{1}} || exit $?\
1610 if [ -x /sbin/weak-modules ]\
1611 then\
1612     /sbin/weak-modules --remove-kernel %{KVERREL}%{?-v:.%{-v*}} || exit $?\
1613 fi\
1614 %{nil}
1615
1616 %kernel_variant_preun
1617 %ifarch x86_64
1618 %kernel_variant_post -r (kernel-smp|kernel-xen)
1619 %else
1620 %kernel_variant_post -r kernel-smp
1621 %endif
1622
1623 %kernel_variant_preun smp
1624 %kernel_variant_post -v smp
1625
1626 %kernel_variant_preun PAE
1627 %kernel_variant_post -v PAE -r (kernel|kernel-smp|kernel-xen)
1628
1629 %kernel_variant_preun debug
1630 %kernel_variant_post -v debug
1631
1632 %kernel_variant_post -v PAEdebug -r (kernel|kernel-smp|kernel-xen)
1633 %kernel_variant_preun PAEdebug
1634
1635 %ifarch s390x
1636 %postun kdump
1637     # Create softlink to latest remaining kdump kernel.
1638     # If no more kdump kernel is available, remove softlink.
1639     if [ "$(readlink /boot/zfcpdump)" == "/boot/vmlinuz-%{KVERREL}.kdump" ]
1640     then
1641         vmlinuz_next=$(ls /boot/vmlinuz-*.kdump 2> /dev/null | sort | tail -n1)
1642         if [ $vmlinuz_next ]
1643         then
1644             ln -sf $vmlinuz_next /boot/zfcpdump
1645         else
1646             rm -f /boot/zfcpdump
1647         fi
1648     fi
1649
1650 %post kdump
1651     ln -sf /boot/vmlinuz-%{KVERREL}.kdump /boot/zfcpdump
1652 %endif
1653
1654 if [ -x /sbin/ldconfig ]
1655 then
1656     /sbin/ldconfig -X || exit $?
1657 fi
1658
1659 ###
1660 ### file lists
1661 ###
1662
1663 %if %{with_headers}
1664 %files headers
1665 %defattr(-,root,root)
1666 /usr/include/*
1667 %endif
1668
1669 %if 0
1670 %if %{with_firmware}
1671 %files firmware
1672 %defattr(-,root,root)
1673 /lib/firmware/*
1674 %doc linux-%{kversion}.%{_target_cpu}/firmware/WHENCE
1675 %endif
1676 %endif
1677
1678 %if %{with_bootwrapper}
1679 %files bootwrapper
1680 %defattr(-,root,root)
1681 /usr/sbin/*
1682 %{_libdir}/kernel-wrapper
1683 %endif
1684
1685 # only some architecture builds need kernel-doc
1686 %if %{with_doc}
1687 %files doc
1688 %defattr(-,root,root)
1689 %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
1690 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
1691 %dir %{_datadir}/doc/kernel-doc-%{rpmversion}
1692 %{_datadir}/man/man9/*
1693 %endif
1694
1695 %if %{with_perf}
1696 %files -n perf
1697 %defattr(-,root,root)
1698 %{_datadir}/doc/perf
1699 /usr/sbin/perf
1700 /usr/sbin/perf-archive
1701 %{_datadir}/man/man1/*
1702 %endif
1703
1704 # This is %{image_install_path} on an arch where that includes ELF files,
1705 # or empty otherwise.
1706 %define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
1707
1708 #
1709 # This macro defines the %%files sections for a kernel package
1710 # and its devel and debuginfo packages.
1711 #       %%kernel_variant_files [-k vmlinux] <condition> <subpackage>
1712 #
1713 %define kernel_variant_files(k:) \
1714 %if %{1}\
1715 %{expand:%%files %{?2}}\
1716 %defattr(-,root,root)\
1717 /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?2:.%{2}}\
1718 %if %{with_fips} \
1719 /%{image_install_path}/.vmlinuz-%{KVERREL}%{?2:.%{2}}.hmac \
1720 %endif \
1721 /boot/System.map-%{KVERREL}%{?2:.%{2}}\
1722 /boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
1723 %if %{with_perftool}\
1724 /usr/libexec/perf.%{KVERREL}%{?2:.%{2}}\
1725 %endif\
1726 #/boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\
1727 /boot/config-%{KVERREL}%{?2:.%{2}}\
1728 %dir /lib/modules/%{KVERREL}%{?2:.%{2}}\
1729 /lib/modules/%{KVERREL}%{?2:.%{2}}/kernel\
1730 /lib/modules/%{KVERREL}%{?2:.%{2}}/extra\
1731 /lib/modules/%{KVERREL}%{?2:.%{2}}/build\
1732 /lib/modules/%{KVERREL}%{?2:.%{2}}/source\
1733 /lib/modules/%{KVERREL}%{?2:.%{2}}/updates\
1734 /lib/modules/%{KVERREL}%{?2:.%{2}}/weak-updates\
1735 %ifarch %{vdso_arches}\
1736 /lib/modules/%{KVERREL}%{?2:.%{2}}/vdso\
1737 /etc/ld.so.conf.d/kernel-%{KVERREL}%{?2:.%{2}}.conf\
1738 %endif\
1739 /lib/modules/%{KVERREL}%{?2:.%{2}}/modules.*\
1740 /lib/firmware/*\
1741 %if %{with_dracut}\
1742 %ghost /boot/initramfs-%{KVERREL}%{?2:.%{2}}.img\
1743 %else\
1744 %ghost /boot/initrd-%{KVERREL}%{?2:.%{2}}.img\
1745 %endif\
1746 %{expand:%%files %{?2:%{2}-}devel}\
1747 %defattr(-,root,root)\
1748 %dir /usr/src/kernels\
1749 /usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
1750 %if %{with_debuginfo}\
1751 %ifnarch noarch\
1752 %if %{fancy_debuginfo}\
1753 %{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
1754 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
1755 %else\
1756 %{expand:%%files %{?2:%{2}-}debuginfo}\
1757 %endif\
1758 %defattr(-,root,root)\
1759 %if !%{fancy_debuginfo}\
1760 %if "%{elf_image_install_path}" != ""\
1761 %{debuginfodir}/%{elf_image_install_path}/*-%{KVERREL}%{?2:.%{2}}.debug\
1762 %endif\
1763 %{debuginfodir}/lib/modules/%{KVERREL}%{?2:.%{2}}\
1764 %{debuginfodir}/usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
1765 %{debuginfodir}/boot/System.map-%{KVERREL}%{?2:.%{2}}\
1766 %endif\
1767 %endif\
1768 %endif\
1769 %endif\
1770 %{nil}
1771
1772
1773 %kernel_variant_files %{with_up}
1774 %kernel_variant_files %{with_smp} smp
1775 %kernel_variant_files %{with_debug} debug
1776 %kernel_variant_files %{with_pae} PAE
1777 %kernel_variant_files %{with_pae_debug} PAEdebug
1778 %ifarch s390x
1779 %kernel_variant_files %{with_kdump} kdump
1780 %else
1781 %kernel_variant_files -k vmlinux %{with_kdump} kdump
1782 %endif
1783
1784 %changelog
1785 * Wed Feb 23 2011 S.ÇaÄŸlar Onur <caglar@verivue.com> - linux-2.6-32-12
1786 - bump to 2.6.32-71.18.1.el6, see https://rhn.redhat.com/errata/RHSA-2011-0283.html
1787
1788 * Wed Feb 2 2011 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.18.1.el6]
1789 - [netdrv] ixgbe: make sure FCoE DDP user buffers are really released by the HW (Frantisek Hrbata) [674002 617193]
1790 - [netdrv] ixgbe: invalidate FCoE DDP context when no error status is available (Frantisek Hrbata) [674002 617193]
1791 - [netdrv] ixgbe: avoid doing FCoE DDP when adapter is DOWN or RESETTING (Frantisek Hrbata) [674002 617193]
1792 - [fcoe] libfc: remove tgt_flags from fc_fcp_pkt struct (Mike Christie) [666797 633915]
1793 - [fcoe] libfc: use rport timeout values for fcp recovery (Frantisek Hrbata) [666797 633915]
1794 - [fcoe] libfc: incorrect scsi host byte codes returned to scsi-ml (Mike Christie) [666797 633915]
1795 - [scsi] scsi_dh_alua: fix overflow in alua_rtpg port group id check (Mike Snitzer) [673978 670572]
1796
1797 * Wed Feb 02 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-11
1798 - older modutils do not support --package and --update option
1799
1800 * Fri Jan 28 2011 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.17.1.el6]
1801 - [s390x] kdump: allow zfcpdump to mount and write to ext4 file systems (Amerigo Wang) [661667 628676]
1802 - [scsi] qla2xxx: Properly set the return value in function qla2xxx_eh_abort (Chad Dupuis) [664398 635710]
1803 - [scsi] qla2xxx: Drop srb reference before waiting for completion (Chad Dupuis) [664398 635710]
1804 - [virt] KVM: VMX: Really clear cr0.ts when giving the guest ownership of the fpu (Avi Kivity) [658891 645898]
1805 - [virt] KVM: SVM: Initialize fpu_active in init_vmcb() (Avi Kivity) [658891 645898]
1806 - [virt] KVM: x86: Use unlazy_fpu() for host FPU (Avi Kivity) [658891 645898]
1807 - [virt] KVM: Set cr0.et when the guest writes cr0 (Avi Kivity) [658891 645898]
1808 - [virt] KVM: VMX: Give the guest ownership of cr0.ts when the fpu is active (Avi Kivity) [658891 645898]
1809 - [virt] KVM: Lazify fpu activation and deactivation (Avi Kivity) [658891 645898]
1810 - [virt] KVM: VMX: Allow the guest to own some cr0 bits (Avi Kivity) [658891 645898]
1811 - [virt] KVM: Replace read accesses of vcpu->arch.cr0 by an accessor (Avi Kivity) [658891 645898]
1812 - [virt] KVM: VMX: trace clts and lmsw instructions as cr accesses (Avi Kivity) [658891 645898]
1813
1814 * Tue Jan 25 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-10
1815 - disable debug and debuginfo packages for all flavors. Also incorporate kernel-firmware package's content into kernel RPM.
1816
1817 * Mon Jan 24 2011 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.16.1.el6]
1818 - [net] ipsec: fragment locally generated tunnel-mode IPSec6 packets as needed (Herbert Xu) [670421 661113]
1819 - [net] tcp: Increase TCP_MAXSEG socket option minimum to TCP_MIN_MSS (Frantisek Hrbata) [652510 652511] {CVE-2010-4165}
1820 - [perf] perf_events: Fix perf_counter_mmap() hook in mprotect() (Oleg Nesterov) [651672 651673] {CVE-2010-4169}
1821 - [md] dm mpath: revert "dm: Call blk_abort_queue on failed paths" (Mike Snitzer) [658854 636771]
1822 - [x86] UV: Address interrupt/IO port operation conflict (George Beshers) [662921 659480]
1823 - [mm] guard page for stacks that grow upwards (Johannes Weiner) [666796 630562]
1824 - [scsi] enable state transistions from OFFLINE to RUNNING (Mike Christie) [660590 643237]
1825 - [scsi] set queue limits no_cluster for stacked devices (Mike Snitzer) [662050 658293]
1826 - [mm] Out-of-memory under memory cgroup can call both of oom-killer-for-memcg and oom-killer-for-page-fault (Larry Woodman) [661732 592879]
1827 - [scsi] libfc: possible race could panic system due to NULL fsp->cmd (Mike Christie) [662049 638297]
1828 - [kernel] exec: copy-and-paste the fixes into compat_do_execve() paths (Oleg Nesterov) [627811 625695] {CVE-2010-4243}
1829 - [kernel] exec: make argv/envp memory visible to oom-killer (Oleg Nesterov) [627811 625695] {CVE-2010-4243}
1830 - [virt] virtio: console: Send SIGIO in case of port unplug (Amit Shah) [652720 624628]
1831 - [virt] virtio: console: Send SIGIO on new data arrival on ports (Amit Shah) [652720 624628]
1832 - [virt] virtio: console: Send SIGIO to processes that request it for host events (Amit Shah) [652720 624628]
1833 - [virt] virtio: console: Reference counting portdev structs is not needed (Amit Shah) [662721 628805]
1834 - [virt] virtio: console: Add reference counting for port struct (Amit Shah) [662721 628805]
1835 - [virt] virtio: console: Use cdev_alloc() instead of cdev_init() (Amit Shah) [662721 628805]
1836 - [virt] virtio: console: Add a find_port_by_devt() function (Amit Shah) [662721 628805]
1837 - [virt] virtio: console: Add a list of portdevs that are active (Amit Shah) [662721 628805]
1838 - [virt] virtio: console: open: Use a common path for error handling (Amit Shah) [662721 628805]
1839 - [virt] virtio: console: remove_port() should return void (Amit Shah) [662721 628805]
1840 - [virt] virtio: console: Make write() return -ENODEV on hot-unplug (Amit Shah) [662721 628805]
1841 - [virt] virtio: console: Make read() return -ENODEV on hot-unplug (Amit Shah) [662721 628805]
1842 - [virt] virtio: console: Unblock poll on port hot-unplug (Amit Shah) [662721 628805]
1843 - [virt] virtio: console: Un-block reads on chardev close (Amit Shah) [662721 628805]
1844 - [virt] virtio: console: Check if portdev is valid in send_control_msg() (Amit Shah) [662721 628805]
1845 - [virt] virtio: console: Remove control vq data only if using multiport support (Amit Shah) [662721 628805]
1846 - [virt] virtio: console: Reset vdev before removing device (Amit Shah) [662721 628805]
1847 - [fs] Fix nfsv4 client lock reclaim behaviour (Sachin Prabhu) [661730 638269]
1848 - [scsi] scsi_dh_alua: Handle all states correctly (Mike Snitzer) [659610 636994]
1849 - [kernel] execve: improve interactivity and respond to SIGKILL with large arguments (Dave Anderson) [661731 629178]
1850 - [virt] xen: handle events as edge-triggered (Andrew Jones) [661737 550724]
1851 - [virt] xen: use percpu interrupts for IPIs and VIRQs (Andrew Jones) [661737 550724]
1852
1853 * Sun Jan 23 2011 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.15.1.el6]
1854 - [net] bonding: prevent oopsing on calling pskb_may_pull on shared skb (Andy Gospodarek) [671342 665110]
1855
1856 * Wed Jan 12 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-9
1857 - bump to kernel-2.6.32-71.14.1.el6, see https://rhn.redhat.com/errata/RHSA-2011-0007.html for details
1858
1859 * Mon Jan 10 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-8
1860 - Fix override: reassigning to symbol SYSFS_DEPRECATED_V2 build warning
1861
1862 * Thu Jan 06 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-7
1863 - Adjust mkinitrd requirement for CentOS 5
1864
1865 * Wed Jan 05 2011 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-6
1866 - Disable debuginfo packages for CentOS 5
1867
1868 * Wed Jan 5 2011 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.14.1.el6]
1869 - [kvm] x86: zero kvm_vcpu_events->interrupt.pad (Marcelo Tosatti) [665471 665409] {CVE-2010-4525}
1870
1871 * Wed Dec 22 2010 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-5
1872 - Fix problems caused by gcc 4.5.1 on F14
1873
1874 * Fri Dec 17 2010 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-4
1875 - Fix build problems for Fedora 8 and 12
1876
1877 * Thu Dec 16 2010 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-3
1878 - Tweak vserver configs based on Daniel's suggestions
1879 - Add appropriate postinstall steps required by PL nodes
1880 - Tweak dependencies for F8 compatibility
1881
1882 * Fri Dec 10 2010 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-2
1883 - Fix F14 build problems
1884
1885 * Thu Dec 9 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.13.1.el6]
1886 - [scsi] lpfc: Fixed crashes for NULL pnode dereference (Rob Evers) [660589 635733]
1887
1888 * Wed Dec 08 2010 S.ÇaÄŸlar Onur <caglar@cs.princeton.edu> - linux-2.6-32-1
1889 - Bump to latest RHEL6 kernel
1890
1891 * Wed Dec 8 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.12.1.el6]
1892 - [netdrv] igb: only use vlan_gro_receive if vlans are registered (Stefan Assmann) [652804 660192] {CVE-2010-4263}
1893 - [net] core: neighbour update Oops (Jiri Pirko) [660591 658518]
1894 - [scsi] lpfc: Set heartbeat timer off by default (Rob Evers) [660244 655935]
1895 - [scsi] lpfc: Fixed crashes for BUG_ONs hit in the lpfc_abort_handler (Rob Evers) [659611 645882]
1896
1897 * Mon Dec 6 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.11.1.el6]
1898 - [kernel] posix-cpu-timers: workaround to suppress the problems with mt exec (Oleg Nesterov) [656267 656268] {CVE-2010-4248}
1899 - [fs] bio: take care not overflow page count when mapping/copying user data (Danny Feng) [652530 652531] {CVE-2010-4162}
1900 - [net] can-bcm: fix minor heap overflow (Danny Feng) [651846 651847] {CVE-2010-3874}
1901 - [net] filter: make sure filters dont read uninitialized memory (Jiri Pirko) [651704 651705] {CVE-2010-4158}
1902 - [net] inet_diag: Make sure we actually run the same bytecode we audited (Jiri Pirko) [651268 651269] {CVE-2010-3880}
1903 - [v4l] ivtvfb: prevent reading uninitialized stack memory (Mauro Carvalho Chehab) [648832 648833] {CVE-2010-4079}
1904 - [drm] via/ioctl.c: prevent reading uninitialized stack memory (Dave Airlie) [648718 648719] {CVE-2010-4082}
1905 - [char] nozomi: clear data before returning to userspace on TIOCGICOUNT (Mauro Carvalho Chehab) [648705 648706] {CVE-2010-4077}
1906 - [serial] clean data before filling it on TIOCGICOUNT (Mauro Carvalho Chehab) [648702 648703] {CVE-2010-4075}
1907 - [net] af_unix: limit unix_tot_inflight (Neil Horman) [656761 656762] {CVE-2010-4249}
1908 - [block] check for proper length of iov entries in blk_rq_map_user_iov() (Danny Feng) [652958 652959] {CVE-2010-4163}
1909 - [net] Limit sendto()/recvfrom()/iovec total length to INT_MAX (Jiri Pirko) [651894 651895] {CVE-2010-4160}
1910 - [netdrv] mlx4: Add OFED-1.5.2 patch to increase log_mtts_per_seg (Jay Fenlason) [643815 637284]
1911 - [kernel] kbuild: fix external module compiling (Aristeu Rozanski) [658879 655231]
1912 - [net] bluetooth: Fix missing NULL check (Jarod Wilson) [655667 655668] {CVE-2010-4242}
1913 - [kernel] ipc: initialize structure memory to zero for compat functions (Danny Feng) [648694 648695] {CVE-2010-4073}
1914 - [kernel] shm: fix information leak to userland (Danny Feng) [648688 648689] {CVE-2010-4072}
1915 - [md] dm: remove extra locking when changing device size (Mike Snitzer) [653900 644380]
1916 - [block] read i_size with i_size_read() (Mike Snitzer) [653900 644380]
1917 - [kbuild] don't sign out-of-tree modules (Aristeu Rozanski) [655122 653507]
1918
1919 * Mon Nov 29 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.10.1.el6]
1920 - [fs] xfs: prevent reading uninitialized stack memory (Dave Chinner) [630808 630809] {CVE-2010-3078}
1921 - [net] fix rds_iovec page count overflow (Jiri Pirko) [647423 647424] {CVE-2010-3865}
1922 - [scsi] Fix megaraid_sas driver SLAB memory leak detected with CONFIG_DEBUG_SLAB (Shyam Iyer) [649436 633836]
1923 - [usb] serial/mos*: prevent reading uninitialized stack memory (Don Zickus) [648697 648698] {CVE-2010-4074}
1924 - [kernel] ecryptfs_uid_hash() buffer overflow (Jerome Marchand) [626320 611388] {CVE-2010-2492}
1925 - [sound] seq/oss - Fix double-free at error path of snd_seq_oss_open() (Jaroslav Kysela) [630554 630555] {CVE-2010-3080}
1926 - [virt] virtio-net: init link state correctly (Jason Wang) [653340 646369]
1927 - [netdrv] prevent reading uninitialized memory in hso driver (Thomas Graf) [633143 633144] {CVE-2010-3298}
1928
1929 * Sun Nov 21 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.9.1.el6]
1930 - [fs] Do not mix FMODE_ and O_ flags with break_lease() and may_open() (Harshula Jayasuriya) [648408 642677]
1931 - [fs] aio: check for multiplication overflow in do_io_submit (Jeff Moyer) [629450 629451] {CVE-2010-3067}
1932 - [net] fix info leak from kernel in ethtool operation (Neil Horman) [646727 646728] {CVE-2010-3861}
1933 - [net] packet: fix information leak to userland (Jiri Pirko) [649899 649900] {CVE-2010-3876}
1934 - [net] clean up info leak in act_police (Neil Horman) [636393 636394] {CVE-2010-3477}
1935 - [kernel] sys_semctl: fix kernel stack leakage (Danny Feng) [648723 648724] {CVE-2010-4083}
1936 - [sound] sound/pci/rme9652: prevent reading uninitialized stack memory (Stanislaw Gruszka) [648710 648715 648711 648716] {CVE-2010-4080 CVE-2010-4081}
1937 - [mm] Prevent Out Of Memory when changing cpuset's mems on NUMA (Larry Woodman) [651996 597127]
1938
1939 * Thu Oct 28 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.8.1.el6]
1940 - [mm] remove false positive THP pmd_present BUG_ON (Andrea Arcangeli) [647391 646384]
1941
1942 * Wed Oct 27 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.7.1.el6]
1943 - [drm] ttm: fix regression introduced in dfb4a4250168008c5ac61e90ab2b86f074a83a6c (Dave Airlie) [646994 644896]
1944
1945 * Wed Oct 20 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.6.1.el6]
1946 - [block] fix a potential oops for callers of elevator_change (Jeff Moyer) [644926 641408]
1947
1948 * Tue Oct 19 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.5.1.el6]
1949 - [security] IMA: require command line option to enabled (Eric Paris) [644636 643667]
1950 - [net] Fix priv escalation in rds protocol (Neil Horman) [642899 642900] {CVE-2010-3904}
1951 - [v4l] Remove compat code for VIDIOCSMICROCODE (Mauro Carvalho Chehab) [642472 642473] {CVE-2010-2963}
1952 - [kernel] tracing: do not allow llseek to set_ftrace_filter (Jiri Olsa) [631625 631626] {CVE-2010-3079}
1953 - [virt] xen: hold mm->page_table_lock in vmalloc_sync (Andrew Jones) [644038 643371]
1954 - [fs] xfs: properly account for reclaimed inodes (Dave Chinner) [642680 641764]
1955 - [drm] fix ioctls infoleak (Danny Feng) [626319 621437] {CVE-2010-2803}
1956 - [netdrv] wireless extensions: fix kernel heap content leak (John Linville) [628437 628438] {CVE-2010-2955}
1957 - [netdrv] niu: buffer overflow for ETHTOOL_GRXCLSRLALL (Danny Feng) [632071 632072] {CVE-2010-3084}
1958 - [mm] add debug checks for mapcount related invariants (Andrea Arcangeli) [642679 622327 644037 642570]
1959 - [mm] move VM_BUG_ON inside the page_table_lock of zap_huge_pmd (Andrea Arcangeli) [642679 622327 644037 642570]
1960 - [mm] compaction: handle active and inactive fairly in too_many_isolated (Andrea Arcangeli) [642679 622327 644037 642570]
1961 - [mm] start_khugepaged after setting transparent_hugepage_flags (Andrea Arcangeli) [642679 622327 644037 642570]
1962 - [mm] fix hibernate memory corruption (Andrea Arcangeli) [644037 642570]
1963 - [mm] ksmd wait_event_freezable (Andrea Arcangeli) [642679 622327 644037 642570]
1964 - [mm] khugepaged wait_event_freezable (Andrea Arcangeli) [642679 622327 644037 642570]
1965 - [mm] unlink_anon_vmas in __split_vma in case of error (Andrea Arcangeli) [642679 622327 644037 642570]
1966 - [mm] fix memleak in copy_huge_pmd (Andrea Arcangeli) [642679 622327 644037 642570]
1967 - [mm] fix hang on anon_vma->root->lock (Andrea Arcangeli) [642679 622327 644037 642570]
1968 - [mm] avoid breaking huge pmd invariants in case of vma_adjust failures (Andrea Arcangeli) [642679 622327 644037 642570]
1969
1970 * Tue Oct 12 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.4.1.el6]
1971 - [scsi] fcoe: set default FIP mode as FIP_MODE_FABRIC (Mike Christie) [641457 636233]
1972 - [virt] KVM: Fix fs/gs reload oops with invalid ldt (Avi Kivity) [639884 639885] {CVE-2010-3698}
1973 - [drm] i915: prevent arbitrary kernel memory write (Jerome Marchand) [637690 637691] {CVE-2010-2962}
1974 - [scsi] libfc: adds flogi retry in case DID is zero in RJT (Mike Christie) [641456 633907]
1975 - [kernel] prevent heap corruption in snd_ctl_new() (Jerome Marchand) [638485 638486] {CVE-2010-3442}
1976 - [scsi] lpfc: lpfc driver oops during rhel6 installation with snapshot 12/13 and emulex FC (Rob Evers) [641907 634703]
1977 - [fs] ext4: Always journal quota file modifications (Eric Sandeen) [641454 624909]
1978 - [mm] fix split_huge_page error like mapcount 3 page_mapcount 2 (Andrea Arcangeli) [641258 640611]
1979 - [block] Fix pktcdvd ioctl dev_minor range check (Jerome Marchand) [638088 638089] {CVE-2010-3437}
1980 - [drm] ttm: Fix two race conditions + fix busy codepaths (Dave Airlie) [642045 640871]
1981 - [drm] Prune GEM vma entries (Dave Airlie) [642043 640870]
1982 - [virt] ksm: fix bad user data when swapping (Andrea Arcangeli) [641459 640579]
1983 - [virt] ksm: fix page_address_in_vma anon_vma oops (Andrea Arcangeli) [641460 640576]
1984 - [net] sctp: Fix out-of-bounds reading in sctp_asoc_get_hmac() (Jiri Pirko) [640461 640462] {CVE-2010-3705}
1985 - [mm] Move vma_stack_continue into mm.h (Mike Snitzer) [641483 638525]
1986 - [net] sctp: Do not reset the packet during sctp_packet_config() (Jiri Pirko) [637681 637682] {CVE-2010-3432}
1987 - [mm] vmstat incorrectly reports disk IO as swap in (Steve Best) [641458 636978]
1988 - [scsi] fcoe: Fix NPIV (Neil Horman) [641455 631246]
1989
1990 * Sun Oct 3 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.3.1.el6]
1991 - [block] prevent merges of discard and write requests (Mike Snitzer) [639412 637805]
1992 - [drm] nouveau: correct INIT_DP_CONDITION subcondition 5 (Ben Skeggs) [638973 636678]
1993 - [drm] nouveau: enable enhanced framing only if DP display supports it (Ben Skeggs) [638973 636678]
1994 - [drm] nouveau: fix required mode bandwidth calculation for DP (Ben Skeggs) [638973 636678]
1995 - [drm] nouveau: disable hotplug detect around DP link training (Ben Skeggs) [638973 636678]
1996 - [drm] nouveau: set DP display power state during DPMS (Ben Skeggs) [638973 636678]
1997 - [mm] remove "madvise" from possible /sys/kernel/mm/redhat_transparent_hugepage/enabled options (Larry Woodman) [636116 634500]
1998 - [netdrv] cxgb3: don't flush the workqueue if we are called from the workqueue (Doug Ledford) [634973 631547]
1999 - [netdrv] cxgb3: deal with fatal parity error status in interrupt handler (Doug Ledford) [634973 631547]
2000 - [netdrv] cxgb3: now that we define fatal parity errors, make sure they are cleared (Doug Ledford) [634973 631547]
2001 - [netdrv] cxgb3: Add define for fatal parity error bit manipulation (Doug Ledford) [634973 631547]
2002 - [virt] Emulate MSR_EBC_FREQUENCY_ID (Jes Sorensen) [633966 629836]
2003 - [virt] Define MSR_EBC_FREQUENCY_ID (Jes Sorensen) [633966 629836]
2004 - [kernel] initramfs: Fix initramfs size calculation (Hendrik Brueckner) [637087 626956]
2005 - [kernel] initramfs: Generalize initramfs_data.xxx.S variants (Hendrik Brueckner) [637087 626956]
2006 - [drm] radeon/kms: fix sideport detection on newer rs880 boards (Dave Airlie) [634984 626454]
2007 - [block] switch s390 tape_block and mg_disk to elevator_change() (Mike Snitzer) [633864 632631]
2008 - [block] add function call to switch the IO scheduler from a driver (Mike Snitzer) [633864 632631]
2009
2010 * Wed Sep 22 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.2.1.el6]
2011 - [misc] make compat_alloc_user_space() incorporate the access_ok() (Xiaotian Feng) [634465 634466] {CVE-2010-3081}
2012 - [x86] kernel: fix IA32 System Call Entry Point Vulnerability (Xiaotian Feng) [634451 634452] {CVE-2010-3301}
2013
2014 * Thu Sep 16 2010 Frantisek Hrbata <fhrbata@redhat.com> [2.6.32-71.1.1.el6]
2015 - [security] Make kernel panic in FIPS mode if modsign check fails (David Howells) [633865 625914]
2016 - [virt] Guests on AMD with CPU type 6 and model >= 8 trigger errata read of MSR_K7_CLK_CTL (Jes Sorensen) [632292 629066]
2017 - [x86] UV: use virtual efi on SGI systems (George Beshers) [633964 627653]
2018
2019 * Wed Sep 01 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-71.el6]
2020 - [fs] nfsd: initialize nfsd versions before creating svc (J. Bruce Fields) [628084]
2021 - [fs] nfsd: fix startup/shutdown order bug (J. Bruce Fields) [628084]
2022 - [security] KEYS: Fix bug in keyctl_session_to_parent() if parent has no session keyring (David Howells) [627808] {CVE-2010-2960}
2023 - [security] KEYS: Fix RCU no-lock warning in keyctl_session_to_parent() (David Howells) [627808] {CVE-2010-2960}
2024
2025 * Wed Aug 25 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-70.el6]
2026 - [x86] Disable AMD IOMMU by default (Matthew Garrett) [593787]
2027 - [netdrv] Revert "iwlwifi: disable hardware scanning by default" (Stanislaw Gruszka) [625981]
2028 - [s390x] kernel: fix tlb flushing vs. concurrent /proc accesses (Hendrik Brueckner) [587587]
2029 - [s390x] kernel: prepare mm_context_t for new tlb flush handling (Hendrik Brueckner) [587587]
2030 - [fs] NFS: Fix an Oops in the NFSv4 atomic open code (Jeff Layton) [625718]
2031 - [net] can: add limit for nframes and clean up signed/unsigned variables (Danny Feng) [625702] {CVE-2010-2959}
2032 - [fs] aio: bump i_count instead of using igrab (Jeff Moyer) [626595]
2033 - [fs] cifs: check for NULL session password (Jeff Layton) [625583]
2034 - [fs] cifs: fix NULL pointer dereference in cifs_find_smb_ses (Jeff Layton) [625583]
2035
2036 * Tue Aug 24 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-69.el6]
2037 - [mm] make stack guard page logic use vm_prev pointer (Mike Snitzer) [607859]
2038 - [mm] make the mlock() stack guard page checks stricter (Mike Snitzer) [607859]
2039 - [mm] make the vma list be doubly linked (Mike Snitzer) [607859]
2040 - [drm] nv50: insert a delay before fb change to prevent display engine hang (Ben Skeggs) [618225]
2041 - [mm] fix up some user-visible effects of the stack guard page (Mike Snitzer) [607859]
2042 - [net] sched: fix some kernel memory leaks (Jiri Pirko) [624637] {CVE-2010-2942}
2043
2044 * Mon Aug 23 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-68.el6]
2045 - [virt] xen pvhvm: don't start xenbus w/out pvhvm (Andrew Jones) [624665]
2046 - [virt] xen pvhvm: don't unplug emulated devs w/out pvhvm (Andrew Jones) [625460]
2047 - [virt] xen pvhvm: export xen_pv_hvm_enable (Andrew Jones) [625460]
2048 - [fs] ext4: fix one more tracing oops (Eric Sandeen) [619013]
2049 - [drm] Provide for HDMI output on NVIDIA GPUs (John Feeney) [619877]
2050 - [netdrv] iwlwifi: disable aspm by default (John Linville) [611075]
2051 - [x86] acpi: Update battery information on notification 0x81 (Matthew Garrett) [606388]
2052
2053 * Fri Aug 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-67.el6]
2054 - [x86] acpi: Update battery information on notification 0x81 (Matthew Garrett) [606388]
2055 - [mm] fix up some user-visible effects of the stack guard page (Mike Snitzer) [607859]
2056 - [mm] fix page table unmap for stack guard page properly (Mike Snitzer) [607859]
2057 - [x86] don't send SIGBUS for kernel page faults (Mike Snitzer) [607859]
2058 - [mm] fix missing page table unmap for stack guard page failure case (Mike Snitzer) [607859]
2059 - [mm] keep a guard page below a grow-down stack segment (Mike Snitzer) [607859]
2060 - [fs] xfs: fix untrusted inode number lookup (Dave Chinner) [624860]
2061 - [kernel] init, sched: Fix race between init and kthreadd (Gleb Natapov) [624329]
2062 - [net] Fix IGMP3 report parsing (Aristeu Rozanski) [621431]
2063
2064 * Tue Aug 17 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-66.el6]
2065 - [netdrv] be2net: maintain multicast packet count in driver (Ivan Vecera) [621287]
2066 - [scsi] hpsa: don't use doorbel reset (Tomas Henzl) [612486]
2067 - [x86] Fix the kdump kernel OOMs caused by passthrough mode setting (Bhavna Sarathy) [624059]
2068 - [acpi] Force "pci=noacpi" on HP xw9300 (Prarit Bhargava) [615276]
2069 - [mm] Revert mm-vmstat-Actively-update-vmstat-counters-in-low-memory-situations (Larry Woodman) [622328]
2070 - [x86] Run EFI in physical mode to enable kdump on EFI-booted system (Takao Indoh) [593111]
2071 - [fs] ext4: protect inode bitmap clearing w/ spinlock (Eric Sandeen) [623666]
2072 - [scsi] libfc: call fc_remote_port_chkready under the host lock (Mike Christie) [623786]
2073 - [x86] Ensure that we provide per-cpu ACPI support (Matthew Garrett) [623874]
2074 - [fs] ext4: consolidate in_range() definitions (Eric Sandeen) [621829]
2075 - [fs] ext4: fix NULL pointer dereference in tracing (Eric Sandeen) [619013]
2076 - [block] O_DIRECT: fix the splitting up of contiguous I/O (Jeff Moyer) [622504]
2077
2078 * Mon Aug 16 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-65.el6]
2079 - [fs] ext4: fix discard failure detection (Eric Sandeen) [608731]
2080 - [x86] Avoid potential NULL dereference in pcc-cpufreq (Matthew Garrett) [623768]
2081 - [scsi] bfa: vport create/delete fix (Rob Evers) [619226]
2082 - [net] tcp: fix crash in tcp_xmit_retransmit_queue (Jerome Marchand) [618386]
2083 - [build] Skip depmod when installing to non-standard INSTALL_MOD_PATH (Jon Masters) [609170]
2084 - [sound] disable NVIDIA HDMI PCI device for Lenovo T410 (Jaroslav Kysela) [605742]
2085 - [scsi] increase flush timeout (Mike Christie) [605322]
2086 - [x86] local_irq_save/restore when issuing IPI in early bootup (Prarit Bhargava) [602823]
2087
2088 * Fri Aug 13 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-64.el6]
2089 - [kernel] Revert "[kernel] sched: Fix a race between ttwu() and migrate_task()" (Matthew Garrett) [620883]
2090 - [fs] btrfs: fix checks in BTRFS_IOC_CLONE_RANGE (Eugene Teo) [617003] {CVE-2010-2537 CVE-2010-2538}
2091 - [kernel] Makefile.build: make KBUILD_SYMTYPES work again (Don Zickus) [617749]
2092 - [netdrv] iwlwifi: disable hardware scanning by default (Stanislaw Gruszka) [593566]
2093 - [scsi] Revert: qla2xxx: Propogate transport disrupted status for cable pull conditions for faster failover (Chad Dupuis) [622041]
2094 - [drm] radeon: Don't limit vram size to aperture size (Matthew Garrett) [622039]
2095 - [fs] xfs: don't walk AGs that can't hold inodes (Dave Chinner) [621044]
2096 - [mmc] add Ricoh e822 support (Stanislaw Gruszka) [619900]
2097 - [scsi] mvsas: fix hot plug handling and IO issues (David Milburn) [616178]
2098 - [dm] mpath: enable discard support (Mike Snitzer) [619196]
2099 - [block] update request stacking methods to support discards (Mike Snitzer) [619196]
2100 - [dm] stripe: enable discard support (Mike Snitzer) [619196]
2101 - [dm] stripe: optimize sector division (Mike Snitzer) [619196]
2102 - [dm] stripe: move sector translation to a function (Mike Snitzer) [619196]
2103 - [dm] error: return error for discards (Mike Snitzer) [619196]
2104 - [dm] delay: enable discard support (Mike Snitzer) [619196]
2105 - [dm] zero: silently drop discards (Mike Snitzer) [619196]
2106 - [dm] split discard requests on target boundaries (Mike Snitzer) [619196]
2107 - [dm] use dm_target_offset macro (Mike Snitzer) [619196]
2108 - [dm] factor out max_io_len_target_boundary (Mike Snitzer) [619196]
2109 - [dm] use common __issue_target_request for flush and discard support (Mike Snitzer) [619196]
2110 - [dm] rename map_info flush_request to target_request_nr (Mike Snitzer) [619196]
2111 - [dm] remove the DM_TARGET_SUPPORTS_DISCARDS feature flag (Mike Snitzer) [619196]
2112 - [dm] introduce num_discard_requests in dm_target structure (Mike Snitzer) [619196]
2113
2114 * Tue Aug 10 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-63.el6]
2115 - [fs] ext4: protect io completion lists with locking (Eric Sandeen) [621660]
2116 - [trace] Packport new mm tracepoint Documentation to RHEL6 (Larry Woodman) [618305]
2117 - [virt] KVM: Trace exception injection (Gleb Natapov) [616427]
2118 - [s390x] qeth: Clear mac_bits field when switching between l2/l3 (Hendrik Brueckner) [621333]
2119 - [net] ethtool: Fix potential kernel buffer overflow in ETHTOOL_GRXCLSRLALL (Jiri Pirko) [608953] {CVE-2010-2478}
2120 - [infiniband] Update QLogic QIB InfiniBand driver to version OFED 1.5.2 (Jay Fenlason) [572401]
2121 - [fs] update RWA_MASK, READA and SWRITE to match the corresponding BIO_RW_ bits (Jeff Moyer) [621693]
2122
2123 * Tue Aug 10 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-62.el6]
2124 - [drm] Revert matroxfb support for G200EV chip (Peter Bogdanovic) [604830]
2125 - [drm] i915: more DP/eDP backport fixes (Dave Airlie) [615058]
2126 - [drm] correctly update connector DPMS status in drm_fb_helper (Dave Airlie) [615058]
2127 - [x86] ACPI/PM: Move ACPI video resume to a PM notifier (Dave Airlie) [615058]
2128 - [virt] x86: preset lpj values when on VMware (Zachary Amsden) [617390]
2129 - [virt] Revert "vhost-net: utilize PUBLISH_USED_IDX feature" (Michael S. Tsirkin)
2130 - [virt] Revert "virtio: put last seen used index into ring itself" (Michael S. Tsirkin) [616503]
2131 - [virt] Revert "virtio: net: Remove net-specific advertising of PUBLISH_USED feature" (Michael S. Tsirkin) [616503]
2132 - [virt] vhost: max s/g to match qemu (Michael S. Tsirkin) [619002]
2133 - [kernel] sched: Fix set_cpu_active() in cpu_down() (Danny Feng) [620807]
2134 - [dm] separate device deletion from dm_put (Mike Snitzer) [619199]
2135 - [dm] prevent access to md being deleted (Mike Snitzer) [619199]
2136 - [dm] ioctl: release _hash_lock between devices in remove_all (Mike Snitzer) [619199]
2137
2138 * Fri Aug 06 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-61.el6]
2139 - [netdrv] r8169: disable PCIe ASPM (Michal Schmidt) [619880]
2140 - [fusion] mptfusion: fix DMA boudary (Tomas Henzl) [618625]
2141 - [fusion] mptfusion: Bump version to 3.04.16 (Tomas Henzl) [618625]
2142 - [fusion] mptfusion: Added code for occationally SATA hotplug failure (Tomas Henzl) [618625]
2143 - [fusion] mptfusion: schedule_target_reset from all Reset context (Tomas Henzl) [618625]
2144 - [fusion] mptfusion: Added sanity to check B_T mapping for device before adding to OS (Tomas Henzl) [618625]
2145 - [fusion] mptfusion: Corrected declaration of device_missing_delay (Tomas Henzl) [618625]
2146 - [fusion] mptfusion: Set fw_events_off to 1 at driver load time (Tomas Henzl) [618625]
2147 - [net] s2io: fixing DBG_PRINT() macro (Danny Feng) [619097]
2148 - [trace] backport file writeback tracepoints from upstream to RHEL6 (Larry Woodman) [618305]
2149 - [virt] vhost: thread per device attached to owner cgroups (Alex Williamson) [615118]
2150 - [cgroups] fix API thinko (Alex Williamson) [615118]
2151 - [cgroup] Revert: "workqueue: API to create a workqueue in cgroup" (Alex Williamson) [615118]
2152 - [net] bonding: allow arp_ip_targets on separate vlans to use arp validation (Andy Gospodarek) [581657]
2153 - [x86] Revert "[x86] kernel performance optimization with CONFIG_DEBUG_RODATA" (Aristeu Rozanski)
2154
2155 * Fri Aug 06 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-60.el6]
2156 - [security] selinux: convert the policy type_attr_map to flex_array (Eric Paris) [617255]
2157 - [net] bridge: Fix IGMPv3 report parsing (Herbert Xu) [621431]
2158 - [kernel] CRED: Fix get_task_cred() and task_state() to not resurrect dead credentials (Jiri Olsa) [620380]
2159 - [net] bonding: set device in RLB ARP packet handler (Andy Gospodarek) [619450]
2160 - [x86] Remove warning in p4-clockmod driver (Prarit Bhargava) [618415]
2161 - [trace] Back port upstream mm/vmscan.c tracepoints to RHEL6 (Larry Woodman) [618305]
2162 - [net] bridge: Fix skb leak when multicast parsing fails on TX (Jiri Pirko) [617505]
2163 - [x86] Retract nmi-stacktrace patch (George Beshers) [598586]
2164 - [fs] cifs: account for new creduid parameter in spnego upcall string (Jeff Layton) [618608]
2165 - [fs] cifs: add separate cred_uid field to sesInfo (Jeff Layton) [618608]
2166 - [fs] cifs: check kmalloc() result (Jeff Layton) [618608]
2167 - [fs] cifs: remove unused cifsUidInfo struct (Jeff Layton) [618608]
2168 - [fs] cifs: clean up cifs_find_smb_ses (Jeff Layton) [618608]
2169 - [fs] cifs: match secType when searching for existing tcp session (Jeff Layton) [618608]
2170 - [fs] cifs: move address comparison into separate function (Jeff Layton) [618608]
2171 - [fs] cifs: set the port in sockaddr in a more clearly defined fashion (Jeff Layton) [618608]
2172 - [fs] cifs: remove an potentially confusing, obsolete comment (Jeff Layton) [618608]
2173 - [fs] cifs: remove unused ip_address field in struct TCP_Server_Info (Jeff Layton) [618608]
2174 - [fs] cifs: have decode_negTokenInit set flags in server struct (Jeff Layton) [618608]
2175 - [fs] cifs: break negotiate protocol calls out of cifs_setup_session (Jeff Layton) [618608]
2176 - [fs] cifs: eliminate "first_time" parm to CIFS_SessSetup (Jeff Layton) [618608]
2177 - [fs] cifs: save the dialect chosen by server (Jeff Layton) [618608]
2178 - [fs] cifs: change && to || (Jeff Layton) [618608]
2179 - [fs] cifs: rename "extended_security" to "global_secflags" (Jeff Layton) [618608]
2180 - [fs] cifs: move tcon find/create into separate function (Jeff Layton) [618608]
2181 - [fs] cifs: move SMB session creation code into separate function (Jeff Layton) [618608]
2182 - [fs] cifs: track local_nls in volume info (Jeff Layton) [618608]
2183 - [drm] nouveau: support fetching LVDS EDID from ACPI (Ben Skeggs) [616860]
2184 - [drm] ACPI: Export EDID blocks to the kernel (Ben Skeggs) [616860]
2185 - [fs] Fix for stuck recovery issue in GFS2 (Steven Whitehouse) [590878]
2186 - [powerpc] fix unsupported hardware to only be power5 (Steve Best) [619501]
2187 - [scsi] megaraid: fix sas expander issue (Tomas Henzl) [607930]
2188 - [virt] Default Xen PV-HVM to off (Don Dutile) [618172]
2189 - [mm] Correctly assign the number of MIGRATE_RESERVE pageblocks (Andrea Arcangeli) [614427]
2190 - [fs] return EINVAL when thawing unfrozen filesystems (Eric Sandeen) [601324]
2191 - [fs] GFS2: Fix problem where try locks were trying too hard (Steven Whitehouse) [585299]
2192 - [scsi] bnx2i: Fix iscsi connection cleanup (Mike Christie) [616939]
2193 - [scsi] bfa: fix sysfs crash while reading error_frames stats (Rob Evers) [594882]
2194 - [fusion] Block Error handling for deleting devices or Device in DMD (Tomas Henzl) [615866]
2195 - [netdrv] tun: avoid BUG, dump packet on GSO errors (Herbert Xu) [616845]
2196 - [netdr] rt2500usb: Fix WEP Enterprise (Stanislaw Gruszka) [609721]
2197 - [kernel] cmdline disable real time scheduler (George Beshers) [607587]
2198 - [fs] ext4: re-inline ext4_rec_len_(to|from)_disk functions (Eric Sandeen) [522808]
2199 - [netdrv] be2net: include latest upstream fixes (Ivan Vecera) [617187]
2200
2201 * Wed Aug 04 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-59.el6]
2202 - [virt] Revert "[virt] vhost: create a vhost thread per device" (Aristeu Rozanski) [615118]
2203
2204 * Tue Aug 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-58.el6]
2205 - [scsi] Update lpfc version for 8.3.5.17 driver release (Rob Evers) [612235]
2206 - [scsi] Fix endian conversion for BlockGuard in IOCB response (Rob Evers) [612235]
2207 - [scsi] Fixed a driver discovery issue where driver was unable to discover a target after Eveready back link bounce test (Rob Evers) [612235]
2208 - [scsi] Update lpfc version for 8.3.5.16 driver release (Rob Evers) [612235]
2209 - [scsi] Fixed BlockGuard endian conversion problem for supporting PowerPC EEH (Rob Evers) [612235]
2210 - [scsi] Fixed VLAN ID 0xFFF set to reg_fcfi mailbox command on FCF empty FCF VLAN bitmap (Rob Evers) [612235]
2211 - [scsi] Update lpfc version for 8.3.5.15 driver release (Rob Evers) [612235]
2212 - [scsi] Fixed a race condition causing FLOGI issued from dual processes (Rob Evers) [612235]
2213 - [scsi] Fix bug with ct response data not being sent with sli4 (Rob Evers) [612235]
2214 - [scsi] Fixed RoundRobin FCF failover due to mis-interpretation of kernel find_next_bit (Rob Evers) [612235]
2215 - [scsi] Enhanced round-robin FCF failover algorithm to re-start on new FCF async event (Rob Evers) [612235]
2216 - [scsi] Clear Ignore Reg Login Flag when purging mailbox queue (Rob Evers) [612235]
2217 - [scsi] Fix for ELS commands stuck on txq (Rob Evers) [612235]
2218 - [scsi] Fix bug with unsolicited CT event command not setting a flag (Rob Evers) [612235]
2219 - [drm] radeon/kms: fix possible mis-detection of sideport on rs690/rs740 (Jerome Glisse) [614583]
2220 - [scsi] fcoe: remove check for zero fabric name (Mike Christie) [614264]
2221 - [scsi] libfc: Add retry logic to lport state machine when receiving LS_RJT (Mike Christie) [614264]
2222 - [scsi] fcoe: fix offload feature flag change from netdev (Mike Christie) [614264]
2223 - [scsi] fcoe: adds src and dest mac address checking for fcoe frames (Mike Christie) [614264]
2224 - [scsi] fcoe: cleans up fcoe_disable and fcoe_enable (Mike Christie) [614264]
2225 - [scsi] lpfc Update from 8.3.5.13 to 8.3.5.14 FC/FCoE (Rob Evers) [603808]
2226 - [fusion] mptfusion: release resources in error return path (Tomas Henzl) [618560]
2227 - [scsi] IO error on SuperTrak EX4650 (Muuhh IKEDA) [593969]
2228 - [virt] vhost: create a vhost thread per device (Michael S. Tsirkin) [615118]
2229 - [kernel] workqueue: API to create a workqueue in cgroup (Michael S. Tsirkin) [615118]
2230 - [cgroup] Add an API to attach a task to current task's cgroup (Michael S. Tsirkin) [615118]
2231
2232 * Tue Aug 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-57.el6]
2233 - [mm] avoid stalling allocations by introducing watermark_wait (Rik van Riel) [589604]
2234 - [mm] scale nr_rotated to balance memory pressure (Rik van Riel) [619384]
2235 - [mm] fix anon memory statistics with transparent hugepages (Rik van Riel) [619384]
2236 - [pci] avoid compiler warning in quirks.c (Alex Williamson) [619525]
2237 - [pci] Fix build if quirks are not enabled (Alex Williamson) [619525]
2238 - [pci] add Intel 82599 Virtual Function specific reset method (Alex Williamson) [619525]
2239 - [pci] add Intel USB specific reset method (Alex Williamson) [619525]
2240 - [pci] support device-specific reset methods (Alex Williamson) [619525]
2241 - [kernel] Documentation: Update memory-hotplug documentation (Steve Best) [612579]
2242 - [powerpc] Define memory_block_size_bytes() for ppc/pseries (Steve Best) [612579]
2243 - [kernel] Update the node sysfs code (Steve Best) [612579]
2244 - [kernel] Allow memory_block to span multiple memory sections (Steve Best) [612579]
2245 - [kernel] Add section count to memory_block (Steve Best) [612579]
2246 - [kernel] Add new phys_index properties (Steve Best) [612579]
2247 - [kernel] Move the find_memory_block() routine up (Steve Best) [612579]
2248 - [usb] xhci: rename driver to xhci_hcd (Don Zickus) [617217]
2249 - [usb] kabi placeholders for xhci (Don Zickus) [617217]
2250 - [fs] nfsd: minor nfsd_svc() cleanup (Jeff Layton) [599675]
2251 - [fs] nfsd: move more into nfsd_startup() (Jeff Layton) [599675]
2252 - [fs] nfsd: just keep single lockd reference for nfsd (Jeff Layton) [599675]
2253 - [fs] nfsd: clean up nfsd_create_serv error handling (Jeff Layton) [599675]
2254 - [fs] nfsd: fix error handling in __write_ports_addxprt (Jeff Layton) [599675]
2255 - [fs] nfsd: fix error handling when starting nfsd with rpcbind down (Jeff Layton) [599675]
2256 - [fs] nfsd4: fix v4 state shutdown error paths (Jeff Layton) [599675]
2257 - [mm] page allocator: Update free page counters after pages are placed on the free list (Andrea Arcangeli) [614427]
2258 - [mm] page allocator: Drain per-cpu lists after direct reclaim allocation fails (Andrea Arcangeli) [614427]
2259 - [mm] vmstat: Actively update vmstat counters in low memory situations (Andrea Arcangeli) [614427]
2260 - [kernel] mem-hotplug: fix potential race while building zonelist for new populated zone (John Villalovos) [581557]
2261 - [kernel] mem-hotplug: avoid multiple zones sharing same boot strapping boot_pageset (John Villalovos) [581557]
2262 - [kernel] cpu/mem hotplug: enable CPUs online before local memory online (John Villalovos) [581557]
2263 - [mm] remove khugepaged young bit check (Andrea Arcangeli) [615381]
2264
2265 * Fri Jul 30 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-56.el6]
2266 - [fs] GFS2: Backup plan for "vmalloc is slow" (Steven Whitehouse) [619331]
2267 - [s390x] zfcp: Do not try "forced close" when port is already closed (Hendrik Brueckner) [612594]
2268 - [s390x] zfcp: Do not unblock rport from REOPEN_PORT_FORCED (Hendrik Brueckner) [612597]
2269 - [s390x] zfcp: Fix retry after failed "open port" erp action (Hendrik Brueckner) [612601]
2270 - [s390x] zfcp: Fail erp after timeout (Hendrik Brueckner) [612618]
2271 - [s390x] zfcp: Use forced_reopen in terminate_rport_io callback (Hendrik Brueckner) [612621]
2272 - [s390x] zfcp: Register SCSI devices after fc_remote_port_add (Hendrik Brueckner) [612586]
2273 - [scsi] sg: fix bio leak with a detached device (Matthew Garrett) [619103]
2274 - [powerpc] hash_huge_page: pte_insert failed (Steve Best) [618831]
2275 - [block] md: fix lock ordering problem (Doug Ledford) [616103]
2276 - [fs] sysfs: add attribute to indicate hw address assignment type (Stefan Assmann) [614786]
2277 - [infiniband] ehca: init irq tasklet before irq can happen (Steve Best) [617741]
2278 - [netdrv] iwlwifi: fix scan abort (Stanislaw Gruszka) [619686]
2279 - [powerpc] ONLINE to OFFLINE CPU state transition during removal (Steve Best) [619212]
2280 - [fs] ext4: fix potential NULL dereference while tracing (Eric Sandeen) [619013]
2281 - [infiniband] ehca: Catch failing ioremap() (Steve Best) [617747]
2282 - [netdrv] Add missing read memory barrier to Intel Ethernet device (Steve Best) [617279]
2283 - [netdrv] igb: Fix Tx hangs seen when loading igb with max_vfs > 7 (Stefan Assmann) [617214]
2284 - [pci] Revert "[pci] update bridge resources to get more big ranges in PCI assign unssigned" (Shyam Iyer) [617007]
2285 - [netdrv] cnic: Fix context memory init on 5709 (Stanislaw Gruszka) [616952]
2286 - [virt] vmxnet3: fix network connectivity issues (Andy Gospodarek) [616252]
2287 - [drm] i915: eDP/DP fixes from upstream (Dave Airlie) [615058]
2288 - [ata] ata_piix: fix locking around SIDPR access (David Milburn) [608542]
2289 - [md] Fix md raid partition detection update (Doug Ledford) [607477]
2290 - [netdrv] e1000e: 82577/82578 PHY register access issues (Andy Gospodarek) [592480]
2291 - [s390x] Remove PSF order/suborder check for dasd ioctl (John Feeney) [566183]
2292 - [x86] kernel performance optimization with CONFIG_DEBUG_RODATA (Danny Feng) [557364]
2293 - [netdrv] Revert "[Fedora] [e1000] add quirk for ich9" (Andy Gospodarek) [613196]
2294 - [block] cfq: always return false from should_idle if slice_idle is set to zero (Jeff Moyer) [616904]
2295 - [block] cfq/jbd: Fix fsync performance for small files (Jeff Moyer) [578515]
2296
2297 * Thu Jul 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-55.el6]
2298 - [kernel] Add -Werror and WAR for bogus array bounds warnings (Prarit Bhargava) [603733]
2299 - [pci] Remove pci_bus_dump_resources() (Prarit Bhargava) [613972]
2300 - [fs] CIFS: Compile fix for malicious redirect fix (David Howells) [612136] {CVE-2010-2524}
2301
2302 * Tue Jul 27 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-54.el6]
2303 - [block] Disable async multicore raid xor function (Doug Ledford) [596490]
2304 - [kernel] taint: Add mark_hardware_unsupported() (Prarit Bhargava) [600509]
2305 - [kernel] panic: Allow warnings to set different taint flags (Prarit Bhargava) [600509]
2306 - [kernel] taint: Add taint padding and TAINT_HARDWARE_UNSUPPORTED (Prarit Bhargava) [600509]
2307 - [mm] disable transparent hugepages by default on small systems (Rik van Riel) [618444]
2308 - [net] Kernel lockups with bonding and IPV6 (Shyam Iyer) [614240]
2309 - [x86] ACPI: Improve C3 residency (Matthew Garrett) [583792]
2310 - [x86] cpufreq: pcc driver should check for pcch method before calling _OSC (Matthew Garrett) [616908]
2311 - [x86] Add PCC Cpufreq driver (Matthew Garrett) [465354]
2312 - [x86] Disable IOMMU graphics on Cantiga chipset (John Villalovos) [602207]
2313 - [fs] vfsmount: pad for future fanotify support (Eric Paris) [320631]
2314 - [ipmi] Run a dummy command before submitting a new command (Matthew Garrett) [616089]
2315 - [block] mmc: Avoid hangs with mounted SD cards (Matthew Garrett) [615318]
2316 - [md] Fix md raid partition detection (Doug Ledford) [607477]
2317 - [ipmi] Make sure drivers were registered before unregistering them (Matthew Garrett) [601376]
2318 - [s390x] Enhanced qeth for new network device type support (Hendrik Brueckner) [599650]
2319 - [fs] cifs: fix security issue with dns_resolver upcall (David Howells) [612136] {CVE-2010-2524}
2320
2321 * Mon Jul 26 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-53.el6]
2322 - [fs] xfs: track AGs with reclaimable inodes in per-ag radix tree (Dave Chinner) [617035]
2323 - [fs] xfs: convert inode shrinker to per-filesystem contexts (Dave Chinner) [617035]
2324 - [mm] add context argument to shrinker callback (Dave Chinner) [617035]
2325 - [netdrv] enic: bug fix: make the set/get netlink VF_PORT support symmetrical (Andy Gospodarek) [609635]
2326 - [netdrv] enic: Use random mac addr when associating port-profile (Andy Gospodarek) [609635]
2327 - [netdrv] enic: bug fix: sprintf UUID to string as u8 rather than u16 array (Andy Gospodarek) [609635]
2328 - [net] netlink: bug fix: don't overrun skbs on vf_port dump (Andy Gospodarek) [609635]
2329 - [netdrv] enic: Bug Fix: Handle surprise hardware removals (Andy Gospodarek) [609635]
2330 - [netdrv] enic: Bug Fix: Change hardware ingress vlan rewrite mode (Andy Gospodarek) [609635]
2331 - [drm] nouveau: cleanup connector/encoder creation (Ben Skeggs) [612402]
2332 - [drm] nouveau: move LVDS detection back to connector detect() time (Ben Skeggs) [612402]
2333 - [net] add missing header needed for sunrpc tracepoints (Steve Dickson) [567741]
2334 - [drm] nouveau: fix race condition when under memory pressure (Ben Skeggs) [602663]
2335 - [tty] fix tty->pgrp races (Jiri Olsa) [586022] {CVE-2009-4895}
2336 - [scsi] Log msg when getting Unit Attention (Mike Christie) [585432]
2337 - [scsi] be2iscsi: Fix for 64K data (Mike Christie) [608795]
2338 - [cgroups] Fix device cgroup not allowing access to a partition (Vivek Goyal) [589662]
2339 - [audit] fix for audit misreporting return code on amd64 if we had to reschedule (Alexander Viro) [604993]
2340 - [x86] Fix ioremap() so will boot on IA-32 system with PAE (John Feeney) [607029]
2341 - [netdrv] macvtap: Limit packet queue length (Herbert Xu) [614119]
2342 - [virt] vhost: avoid pr_err on condition guest can trigger (Michael S. Tsirkin) [607177]
2343 - [mm] ksmd and khugepaged freezing (Andrea Arcangeli) [617430]
2344 - [pci] Allow read/write access to sysfs I/O port resources (Alex Williamson) [616174]
2345 - [netdrv] improve ipv6 pkt throughput with TSO (John Feeney) [613770]
2346 - [netdrv] ixgbe: use GFP_ATOMIC when allocating FCoE DDP context from the dma pool (Andy Gospodarek) [614243]
2347 - [netdrv] ixgbe: properly toggling netdev feature flags when disabling FCoE (Andy Gospodarek) [614243]
2348 - [scsi] fcoe: remove vlan ID from WWPN (Neil Horman) [611974]
2349 - [fs] xfs: fix corruption case for block size < page size (Dave Chinner) [581432]
2350 - [fs] xfs: unregister inode shrinker before freeing filesystem structures (Dave Chinner) [607750]
2351 - [drm] i915: add 'reclaimable' to i915 self-reclaimable page allocations (Dave Airlie) [616614]
2352 - [drm] i915: fix 945GM stability issues on Lenovo T60 laptops (Dave Airlie) [568780]
2353 - [security] SELinux: check OPEN on truncate calls (Eric Paris) [578841]
2354 - [fs] ext4: Fix buffer dirtying in data=journal mode (Eric Sandeen) [602251]
2355 - [fs] ext3: Fix buffer dirtying in data=journal mode (Eric Sandeen) [602251]
2356
2357 * Tue Jul 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-52.el6]
2358 - [virt] Call mask notifiers from pic (Gleb Natapov) [608613]
2359 - [virt] Convert mask notifiers to use irqchip/pin instead of gsi (Gleb Natapov) [608613]
2360 - [virt] Reenter guest after instruction emulation failure if emulation was due to access to non-mmio address (Gleb Natapov) [608595]
2361 - [virt] Return EFAULT from kvm ioctl when guest access bad area (Gleb Natapov) [608595]
2362 - [drm] nouveau: fix dual-link displays when plugged into single-link outputs (Ben Skeggs) [615154]
2363 - [drm] nv50: obey dcb->duallink_possible (Ben Skeggs) [615154]
2364 - [drm] nv50: fix duallink_possible calculation for DCB 4.0 cards (Ben Skeggs) [615154]
2365 - [mm] Rename ramzswap to zram in documentation (Jerome Marchand) [578641]
2366 - [mm] Rename ramzswap to zram in code (Jerome Marchand) [578641]
2367 - [mm] Rename ramzswap files to zram (Jerome Marchand) [578641]
2368 - [mm] ramzswap: Support generic I_O requests (Jerome Marchand) [578641]
2369 - [mm] ramzswap: Handler for swap slot free callback (Jerome Marchand) [578641]
2370 - [mm] swap: Add swap slot free callback to block_device_operations (Jerome Marchand) [578641]
2371 - [mm] swapfile: Add flag to identify block swap devices (Jerome Marchand) [578641]
2372 - [mm] ramzswap: Remove backing swap support (Jerome Marchand) [578641]
2373 - [drm] i915: Output IRQ setup fixes (Adam Jackson) [591709]
2374 - [drm] nouveau: fix oops on chipsets that only have a single crtc (Ben Skeggs) [602290]
2375 - [drm] i915: fix oops on single crtc devices (Dave Airlie) [610002]
2376 - [drm] radeon: check/restore sanity before doing anything else with GPU (Dave Airlie) [612767]
2377 - [fs] jbd2: Fix I/O hang in jbd2_journal_release_jbd_inode (Steve Best) [607254]
2378 - [fs] GFS2: rename causes kernel Oops (Robert S Peterson) [614642]
2379 - [ipmi] Provide kipmid_max_busy_us parameter to cap CPU usage (Shyam Iyer) [609156]
2380 - [kernel] kprobes: "repz ret" causes bad EIP value crash (Dave Anderson) [607215]
2381 - [pci] panic on access to hot-removed device's proc fs (Don Zickus) [612024]
2382 - [pci] don't reassign to ROM res if it is not going to be enabled (Peter Bogdanovic) [612950]
2383 - [x86] i386: Update CPU & Memory Hot Add Not Supported messages (Prarit Bhargava) [600435]
2384 - [x86] nmi: limit hrtimer to lapic or ioapic mode (Don Zickus) [581722]
2385 - [virt] emulator: inc/dec can have lock prefix (Gleb Natapov) [615925]
2386 - [virt] Implement xen_panic_block notifier for RHEL6 Xen guests (Don Dutile) [614476]
2387 - [virt] KVM: MMU: fix conflict access permissions in direct sp (Avi Kivity) [607650]
2388 - [virt] vhost-net: avoid flush under lock (Michael S. Tsirkin) [612421]
2389 - [netdrv] bnx2x: Don't report link down if has been already down (Stanislaw Gruszka) [610311]
2390 - [netdrv] mac80211: improve error checking if WEP fails to init (John Linville) [608704]
2391 - [netdrv] ath9k: cleanup init error path (John Linville) [610224]
2392 - [mm] memcontrol: never oom when charging huge pages (Andrea Arcangeli) [608996]
2393 - [mm] memcontrol: prevent endless loop with huge pages and near-limit group (Andrea Arcangeli) [608996]
2394 - [virt] Xen PV-on-HVM: prevent null chip data ref ptr on newer xen hv (Don Dutile) [523134]
2395 - [virt] Xen PV-on-HVM: modularize platform-pci support (Don Dutile) [523134]
2396 - [virt] HPET: Do not disable hpet if not initialized (Don Dutile) [523134]
2397 - [virt] Xen PV-on-HVM: suspend-resume-support (Don Dutile) [523134]
2398 - [virt] Xen PV-on-HVM: refactor platform-pci, grant-table, enlighten support (Don Dutile) [523134 600360]
2399 - [virt] Xen PV-on-HVM: update evtchn delivery on HVM (Don Dutile) [523134]
2400 - [virt] Xen PV-on-HVM: update hvm_op hypercall & related h files to upstream (Don Dutile) [523134]
2401
2402 * Tue Jul 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-51.el6]
2403 - [block] cciss: bump version 3626RH (Tomas Henzl) [609522]
2404 - [block] cciss: cleanup compiletime warnings (Tomas Henzl) [609522]
2405 - [block] cciss: do not reset 640x boards (Tomas Henzl) [609522]
2406 - [block] cciss: fix hard reset (Tomas Henzl) [609522]
2407 - [block] cciss: factor out reset devices code (Tomas Henzl) [609522]
2408 - [block] cciss: factor out cciss find cfg addrs (Tomas Henzl) [609522]
2409 - [block] cciss: factor out cciss wait for mode change ack (Tomas Henzl) [609522]
2410 - [block] cciss: factor out cciss disable dma prefetch on p600 (Tomas Henzl) [609522]
2411 - [block] cciss: factor out cciss enable scsi prefetch (Tomas Henzl) [609522]
2412 - [block] cciss: factor out CISS signature present (Tomas Henzl) [609522]
2413 - [block] cciss: factor out cciss find board params (Tomas Henzl) [609522]
2414 - [block] cciss: factor out cciss find cfgtables (Tomas Henzl) [609522]
2415 - [block] cciss: factor out cciss wait for board ready (Tomas Henzl) [609522]
2416 - [block] cciss: factor out cciss find memory BAR (Tomas Henzl) [609522]
2417 - [block] cciss: remove board-id param from cciss interrupt mode (Tomas Henzl) [609522]
2418 - [block] cciss: factor out cciss_board_disabled (Tomas Henzl) [609522]
2419 - [block] cciss: factor out cciss lookup board id (Tomas Henzl) [609522]
2420 - [block] cciss: save pdev early to avoid passing it around (Tomas Henzl) [609522]
2421 - [audit] dynamically allocate audit_names when not enough space is in the names array (Eric Paris) [586108]
2422 - [mm] mmu notifier index huge spte fix (Andrea Arcangeli) [606131]
2423 - [x86] Update x86 MCE code part 2 (Prarit Bhargava) [580587]
2424 - [kernel] execshield: respect disabled randomization (Roland McGrath) [605516]
2425 - [scsi] mpt2sas: Fix to use sas device list instead of enclosure list (Tomas Henzl) [599049]
2426 - [kernel] disable kmemleak by default for -debug kernels (Jason Baron) [612244]
2427
2428 * Thu Jul 15 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-50.el6]
2429 - [net] CHECKSUM: header export and fixup (Michael S. Tsirkin) [605555]
2430 - [pci] iommu/intel: Disable IOMMU for graphics if BIOS is broken (Adam Jackson) [593516]
2431 - [fs] xfs: remove block number from inode lookup code (Jiri Pirko) [607031]
2432 - [fs] xfs: rename XFS_IGET_BULKSTAT to XFS_IGET_UNTRUSTED (Jiri Pirko) [607031]
2433 - [fs] xfs: validate untrusted inode numbers during lookup (Jiri Pirko) [607031]
2434 - [fs] xfs: always use iget in bulkstat (Jiri Pirko) [607031]
2435 - [igb] avoid platform reset and MCE with DCA (Stefan Assmann) [572732 606687]
2436 - [drm] nouveau: downgrade severity of most init table parser errors (Ben Skeggs) [596679]
2437 - [drm] nouveau: INIT_CONFIGURE_PREINIT/CLK/MEM on newer BIOSes is not an error (Ben Skeggs) [596679]
2438 - [netdrv] enic: Replace LRO with GRO (Andy Gospodarek) [609635]
2439 - [net] decreasing real_num_tx_queues needs to flush qdisc (Andy Gospodarek) [609260]
2440 - [net] sched: qdisc_reset_all_tx is calling qdisc_reset without qdisc_lock (Andy Gospodarek) [609260]
2441 - [fs] inotify: send IN_UNMOUNT events (Eric Paris) [580825]
2442 - [fs] inotify: fix inotify oneshot support (Eric Paris) [614595]
2443 - [s390x] zfcp: Zero memory for gpn_ft and adisc requests (Hendrik Brueckner) [609537]
2444 - [s390x] zfcp: Do not escalate scsi eh after fast_io_fail_tmo fired (Hendrik Brueckner) [606365]
2445 - [s390x] zfcp: Remove SCSI device during unit_remove (Hendrik Brueckner) [589278]
2446 - [scsi] Allow FC LLD to fast-fail scsi eh by introducing new eh return (Hendrik Brueckner) [606365]
2447 - [s390x] zfcp: Do not wait for SBALs on stopped queue (Hendrik Brueckner) [606359]
2448 - [x86] efi: Fill all reserved memmap entries if add_efi_memmap specified (George Beshers) [607386]
2449
2450 * Wed Jul 14 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-49.el6]
2451 - [edac] i7core_edac: Avoid doing multiple probes for the same card (Mauro Carvalho Chehab) [604564]
2452 - [edac] i7core_edac: Properly discover the first QPI device (Mauro Carvalho Chehab) [604564]
2453 - [usb] Disable XHCI (USB 3) HCD module autoloading (Matthew Garrett) [608343]
2454 - [fs] xfs: prevent swapext from operating on write-only files (Jiri Pirko) [605162] {CVE-2010-2226}
2455 - [powerpc] Add symbols to kernel to allow makedumpfile to filter on ppc64 (Neil Horman) [611710]
2456 - [net] netfilter: add CHECKSUM target (Michael S. Tsirkin) [605555]
2457 - [security] audit: dynamically allocate audit_names when not enough space is in the names array (Eric Paris) [586108]
2458 - [pci] iommu/intel: Disable IOMMU for graphics if BIOS is broken (Adam Jackson) [593516]
2459 - [virt] stop vpit before irq_routing freed (Gleb Natapov) [612648]
2460 - [netdrv] Allow for BCM5709S to dump vmcore via NFS (John Feeney) [577809]
2461 - [netdrv] igb: drop support for UDP hashing w/ RSS (Stefan Assmann) [613782]
2462 - [netdrv] mac80211: remove wep dependency (John Linville) [608704]
2463 - [mm] fix swapin race conditions (Andrea Arcangeli) [606131]
2464 - [crypto] authenc: Add EINPROGRESS check (Stanislaw Gruszka) [604611]
2465 - [fs] inotify: don't leak user struct on inotify release (Stanislaw Gruszka) [592399 604611]
2466 - [x86] amd: Check X86_FEATURE_OSVW bit before accessing OSVW MSRs (Stanislaw Gruszka) [604611]
2467 - [kernel] profile: fix stats and data leakage (Stanislaw Gruszka) [604611]
2468 - [sound] ice1724: Fix ESI Maya44 capture source control (Stanislaw Gruszka) [604611]
2469 - [mm] hugetlbfs: kill applications that use MAP_NORESERVE with SIGBUS instead of OOM-killer (Stanislaw Gruszka) [604611]
2470 - [dma] dma-mapping: fix dma_sync_single_range_* (Stanislaw Gruszka) [604611]
2471 - [hwmon] hp_accel: fix race in device removal (Stanislaw Gruszka) [604611]
2472 - [net] ipv4: udp: fix short packet and bad checksum logging (Stanislaw Gruszka) [604611]
2473
2474 * Tue Jul 13 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-48.el6]
2475 - [scsi] SCSI: Retry commands with UNIT_ATTENTION sense codes to fix ext3/ext4 I/O error (Stanislaw Gruszka) [604610]
2476 - [scsi] Enable retries for SYNCRONIZE_CACHE commands to fix I/O error (Stanislaw Gruszka) [604610]
2477 - [scsi] debug: virtual_gb ignores sector_size (Stanislaw Gruszka) [604610]
2478 - [x86] acpi power_meter: acpi_device_class "power_meter_resource" too long (Stanislaw Gruszka) [604610]
2479 - [v4l] budget: Oops: "BUG: unable to handle kernel NULL pointer dereference" (Stanislaw Gruszka) [604610]
2480 - [virt] virtio: initialize earlier (Stanislaw Gruszka) [604610]
2481 - [security] testing the wrong variable in create_by_name() (Stanislaw Gruszka) [604610]
2482 - [netdrv] r8169: more broken register writes workaround (Stanislaw Gruszka) [604610]
2483 - [netdrv] r8169: fix broken register writes (Stanislaw Gruszka) [604610]
2484 - [netdrv] r8169: use correct barrier between cacheable and non-cacheable memory (Stanislaw Gruszka) [604610]
2485 - [kernel] kgdb: don't needlessly skip PAGE_USER test for Fsl booke (Stanislaw Gruszka) [604610]
2486 - [kernel] initramfs: handle unrecognised decompressor when unpacking (Stanislaw Gruszka) [604610]
2487 - [sound] snd-meastro3: Ignore spurious HV interrupts during suspend / resume (Stanislaw Gruszka) [604610]
2488 - [sound] snd-meastro3: Add amp_gpio quirk for Compaq EVO N600C (Stanislaw Gruszka) [604610]
2489 - [x86] Disable large pages on CPUs with Atom erratum AAE44 (Stanislaw Gruszka) [604610]
2490 - [x86] x86-64: Clear a 64-bit FS/GS base on fork if selector is nonzero (Stanislaw Gruszka) [604610]
2491 - [edac] mce: Fix wrong mask and macro usage (Stanislaw Gruszka) [604610]
2492 - [netdrv] p54pci: fix bugs in p54p_check_tx_ring (Stanislaw Gruszka) [604610]
2493 - [netdrv] dm9601: fix phy/eeprom write routine (Stanislaw Gruszka) [604610]
2494 - [block] ensure jiffies wrap is handled correctly in blk_rq_timed_out_timer (Stanislaw Gruszka) [604610]
2495 - [serial] 8250_pnp: add Fujitsu Wacom device (Stanislaw Gruszka) [604610]
2496 - [block] raid6: fix recovery performance regression (Stanislaw Gruszka) [604610]
2497 - [fs] procfs: fix tid fdinfo (Stanislaw Gruszka) [604610]
2498 - [usb] xhci: properly set endpoint context fields for periodic eps (Stanislaw Gruszka) [604610]
2499 - [usb] xhci: properly set the "Mult" field of the endpoint context (Stanislaw Gruszka) [604610]
2500 - [usb] OHCI: don't look at the root hub to get the number of ports (Stanislaw Gruszka) [604610]
2501 - [usb] don't choose configs with no interfaces (Stanislaw Gruszka) [604610]
2502 - [usb] fix testing the wrong variable in fs_create_by_name() (Stanislaw Gruszka) [604610]
2503 - [usb] Add id for HP ev2210 a.k.a Sierra MC5725 miniPCI-e Cell Modem (Stanislaw Gruszka) [604610]
2504 - [usb] fix remote wakeup settings during system sleep (Stanislaw Gruszka) [604610]
2505 - [mm] hugetlb: fix infinite loop in get_futex_key() when backed by huge pages (Stanislaw Gruszka) [604610]
2506 - [kernel] flex_array: fix the panic when calling flex_array_alloc() without __GFP_ZERO (Stanislaw Gruszka) [604610]
2507 - [netdrv] mac80211: remove bogus TX agg state assignment (Stanislaw Gruszka) [604610]
2508 - [ata] libata: fix locking around blk_abort_request() (Stanislaw Gruszka) [604610]
2509 - [netdrv] p54usb: Add usbid for Corega CG-WLUSB2GT (Stanislaw Gruszka) [604610]
2510 - [usb] EHCI: defer reclamation of siTDs (Stanislaw Gruszka) [604610]
2511 - [drm] nouveau: initialise display before enabling interrupts (Ben Skeggs) [596703]
2512 - [drm] nv50: fix DP->DVI if output has been programmed for native DP previously (Ben Skeggs) [596703]
2513 - [block] dm ioctl: return uevent flag after rename (Mike Snitzer) [609591]
2514 - [block] dm ioctl: make __dev_status return void (Mike Snitzer) [609591]
2515 - [block] dm ioctl: remove __dev_status from geometry and target message (Mike Snitzer) [609591]
2516 - [infiniband] mlx4: enable IBoE feature (Doug Ledford) [529397]
2517 - [dm] dm-replicator: Fix replicator_ctr() error path (Heinz Mauelshagen) [612743]
2518 - [virt] vmware: disable NMI watchdog in guest (Don Zickus) [612321]
2519 - [virt] KVM: Expose MCE control MSRs to userspace (Avi Kivity) [558416]
2520
2521 * Mon Jul 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-47.el6]
2522 - [x86] eeepc-laptop: disable cpu speed control on EeePC 701 (Stanislaw Gruszka) [604608]
2523 - [x86] gart: Disable GART explicitly before initialization (Stanislaw Gruszka) [604608]
2524 - [netdrv] r8169: clean up my printk uglyness (Stanislaw Gruszka) [604608]
2525 - [input] wacom: switch mode upon system resume (Stanislaw Gruszka) [604608]
2526 - [fs] eCryptfs: Decrypt symlink target for stat size (Stanislaw Gruszka) [604608]
2527 - [usb] cdc-acm: Update to new autopm API (Stanislaw Gruszka) [604608]
2528 - [netdrv] e1000e: stop cleaning when we reach tx_ring->next_to_use (Stanislaw Gruszka) [604608]
2529 - [kernel] sched: Fix a race between ttwu() and migrate_task() (Stanislaw Gruszka) [604608]
2530 - [fs] ecryptfs: fix error code for missing xattrs in lower fs (Stanislaw Gruszka) [604608]
2531 - [pci] fix nested spinlock hang in aer_inject (Stanislaw Gruszka) [604608]
2532 - [fs] ecryptfs: fix use with tmpfs by removing d_drop from ecryptfs_destroy_inode (Stanislaw Gruszka) [604608]
2533 - [scsi] add scsi target reset support to scsi ioctl (Stanislaw Gruszka) [604608]
2534 - [pci] PCIe AER: prevent AER injection if hardware masks error reporting (Stanislaw Gruszka) [604608]
2535 - [fs] quota: Fix possible dq_flags corruption (Stanislaw Gruszka) [604608]
2536 - [fs] fix NFS4 handling of mountpoint stat (Stanislaw Gruszka) [604608]
2537 - [agp] intel-agp: Switch to wbinvd_on_all_cpus (Stanislaw Gruszka) [604608]
2538 - [drm] radeon/kms: add FireMV 2400 PCI ID (Stanislaw Gruszka) [604608]
2539 - [x86] amd-iommu: Use helper function to destroy domain (Stanislaw Gruszka) [604608]
2540 - [hwmon] sht15: Fix sht15_calc_temp interpolation function (Stanislaw Gruszka) [604608]
2541 - [hwmon] sht15: Properly handle the case CONFIG_REGULATOR=n (Stanislaw Gruszka) [604608]
2542 - [ata] libata: disable NCQ on Crucial C300 SSD (Stanislaw Gruszka) [604608]
2543 - [x86] thinkpad-acpi: lock down video output state access (Stanislaw Gruszka) [604608]
2544 - [x86] thinkpad-acpi: convert to seq_file (Stanislaw Gruszka) [604608]
2545 - [sound] usb: Fix Oops after usb-midi disconnection (Stanislaw Gruszka) [604608]
2546 - [x86] thinkpad-acpi: log initial state of rfkill switches (Stanislaw Gruszka) [604608]
2547 - [x86] thinkpad-acpi: use input_set_capability (Stanislaw Gruszka) [604608]
2548 - [x86] thinkpad-acpi: expose module parameters (Stanislaw Gruszka) [604608]
2549 - [fs] ext3: Don't update the superblock in ext3_statfs() (Stanislaw Gruszka) [604608]
2550 - [x86] thinkpad-acpi: log temperatures on termal alarm (Stanislaw Gruszka) [604608]
2551 - [x86] thinkpad-acpi: adopt input device (Stanislaw Gruszka) [604608]
2552 - [x86] thinkpad-acpi: issue backlight class events (Stanislaw Gruszka) [604608]
2553 - [x86] thinkpad-acpi: silence bogus complain during rmmod (Stanislaw Gruszka) [604608]
2554 - [x86] thinkpad-acpi: fix some version quirks (Stanislaw Gruszka) [604608]
2555 - [kernel] resource: move kernel function inside __KERNEL__ (Stanislaw Gruszka) [604608]
2556 - [fs] ext3: journal all modifications in ext3_xattr_set_handle (Stanislaw Gruszka) [604608]
2557 - [video] backlight: mbp_nvidia_bl - add five more MacBook variants (Stanislaw Gruszka) [604608]
2558 - [sound] mixart: range checking proc file (Stanislaw Gruszka) [604608]
2559 - [hid] fix oops in gyration_event() (Stanislaw Gruszka) [604608]
2560 - [ata] pata_ali: Fix regression with old devices (Stanislaw Gruszka) [604608]
2561 - [hwmon] lis3: fix show rate for 8 bits chips (Stanislaw Gruszka) [604608]
2562 - [cgroup] freezer: Fix buggy resume test for tasks frozen with cgroup freezer (Stanislaw Gruszka) [604608]
2563 - [kernel] genirq: Force MSI irq handlers to run with interrupts disabled (Stanislaw Gruszka) [604608]
2564 - [fs] fat: fix buffer overflow in vfat_create_shortname() (Stanislaw Gruszka) [604608]
2565 - [netdrv] mlx4: add dynamic LRO disable support (Amerigo Wang) [584359]
2566 - [netdrv] s2io: add dynamic LRO disable support (Amerigo Wang) [584359]
2567 - [drm] nv50: rewrite display irq handler (Ben Skeggs) [598842]
2568 - [drm] nv50: send evo "update" command after each disconnect (Ben Skeggs) [598842]
2569 - [drm] nv50: when debugging on, log which crtc we connect an encoder to (Ben Skeggs) [598842]
2570 - [drm] nv50: supply encoder disable() hook (Ben Skeggs) [598842]
2571 - [drm] disable encoder rather than dpms off in drm_crtc_prepare_encoders() (Ben Skeggs) [598842]
2572 - [drm] nv50: DCB quirk for Dell M6300 (Ben Skeggs) [598842]
2573 - [fs] writeback: limit write_cache_pages integrity scanning to current EOF (Dave Chinner) [602490]
2574 - [fs] xfs: remove nr_to_write writeback windup. (Dave Chinner) [602490]
2575 - [fs] writeback: pay attention to wbc->nr_to_write in write_cache_pages (Eric Sandeen) [602490]
2576
2577 * Mon Jul 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-46.el6]
2578 - [fs] ext4: stop issuing discards if not supported by device (Eric Sandeen) [608731]
2579 - [block] dm: only initialize full request_queue for request-based device (Mike Snitzer) [595393]
2580 - [block] dm: prevent table type changes after initial table load (Mike Snitzer) [595393]
2581 - [dm] skip second flush if request unsupported (Mike Snitzer) [612014]
2582 - [dm] only ignore -EOPNOTSUPP for empty barrier requests (Mike Snitzer) [612014]
2583 - [dm] snapshot: implement a merge method for snapshot origin (Mike Snitzer) [612375]
2584 - [dm] snapshot: test chunk size against both origin and snapshot sector size (Mike Snitzer) [612375]
2585 - [dm] snapshot: open origin before exception store initialization (Mike Snitzer) [612375]
2586 - [dm] snapshot: iterate both the origin and snapshot devices (Mike Snitzer) [612375]
2587 - [block] dm: support discard if at least one underlying device supports it (Mike Snitzer) [612014]
2588 - [block] dm: support discard for multiple devices (Mike Snitzer) [612014]
2589 - [block] dm: clear the discard flag if the device loses discard capability (Mike Snitzer) [612014]
2590 - [block] dm: check that target supports discard just before submitting request (Mike Snitzer) [612014]
2591 - [scsi] convert discard to REQ_TYPE_FS instead of REQ_TYPE_BLOCK_PC (Mike Snitzer) [610054]
2592 - [scsi] fix leak in scsi_setup_discard_cmnd error path (Mike Snitzer) [610054]
2593 - [scsi] remove unused free discard page in sd_done (Mike Snitzer) [610054]
2594 - [scsi] add sd_unprep_fn to free discard page (Mike Snitzer) [610054]
2595 - [block] implement an unprep function corresponding directly to prep (Mike Snitzer) [610054]
2596 - [block] don't allocate a payload for discard request (Mike Snitzer) [610054]
2597 - [fs] ext4: move aio completion after unwritten extent conversion (Christoph Hellwig) [589985]
2598 - [fs] xfs: move aio completion after unwritten extent conversion (Christoph Hellwig) [589985]
2599 - [fs] direct-io: move aio_complete into ->end_io (Christoph Hellwig) [589985]
2600 - [drm] radeon/kms/igp: fix possible divide by 0 in bandwidth code (Dave Airlie) [609755]
2601 - [drm] nouveau: disable acceleration on NVA3/NVA5/NVA8 by default (Ben Skeggs) [591062]
2602 - [drm] vt/fbcon: try harder to print output when panicing (Dave Airlie) [579002]
2603 - [fs] GFS2: fix BUG in gfs2_adjust_quota (Abhijith Das) [603827]
2604 - [fs] nfsd: nfsd_setattr needs to call commit_metadata (Christoph Hellwig) [593652]
2605 - [net] netfilter: remove config option NF_CT_ACCT completely (Jiri Pirko) [578476]
2606 - [net] Revert "[net] bonding: make bonding support netpoll" (Andy Gospodarek) [604672]
2607 - [scsi] stex: fix inconsistent usage of max_lun (David Milburn) [593255]
2608 - [kernel] sched: Kill migration thread in CPU_POST_DEAD event in migration_call, instead of CPU_DEAD (Steve Best) [604846]
2609 - [tracing] ftrace: fix function_graph livelock under kvm (Jason Baron) [596653]
2610 - [block] dm: mpath fix NULL pointer dereference when path parameters missing (Mike Snitzer) [607242]
2611 - [dm] dm-replicator: mandatory API change for replicator_resume(), replicator_dev_resume() and reference count fix calling dm_table_get_md() (Heinz Mauelshagen) [594922]
2612 - [x86] AMD IOMMU: change default to passthrough mode (Bhavna Sarathy) [607631]
2613 - [x86] dell-laptop: Add another Dell laptop family to the DMI whitelist (Matthew Garrett) [609268]
2614 - [netdrv] cnic: fix bnx2x panics with multiple interfaces enabled (Stanislaw Gruszka) [609184]
2615 - [mm] fix khugepaged startup race (Andrea Arcangeli) [612217]
2616 - [mm] add robustness to pmd_same checks (Andrea Arcangeli) [607650]
2617 - [mm] Fix vmalloc slow down (Steven Whitehouse) [583026]
2618
2619 * Mon Jul 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-45.el6]
2620 - [drm] i915: fix display setup bugs + hibernate (Dave Airlie) [608515 609763]
2621 - [fs] NFSv4: Fix an embarassing typo in encode_attrs() (Steve Dickson) [560786]
2622 - [fs] NFSv4: Ensure that /proc/self/mountinfo displays the minor version number (Steve Dickson) [560786]
2623 - [fs] NFSv4.1: Ensure that we initialise the session when following a referral (Steve Dickson) [560786]
2624 - [fs] SUNRPC: Fix a re-entrancy bug in xs_tcp_read_calldir() (Steve Dickson) [560786]
2625 - [fs] nfs4: use mandatory attribute file type in nfs4_get_root (Steve Dickson) [560786]
2626 - [x86] UV: uv_irq.c: Fix all sparse warnings (George Beshers) [573095]
2627 - [x86] uv: Remove recursion in uv_heartbeat_enable() (George Beshers) [573095]
2628 - [x86] pat: Update the page flags for memtype atomically instead of using memtype_lock (George Beshers) [573095]
2629 - [x86] UV: Improve BAU performance and error recovery (George Beshers) [573095]
2630 - [mm] ksm.c: remove an unneeded _notify in write_protect_page (George Beshers) [573095]
2631 - [x86] UV: Delete unneeded boot messages (George Beshers) [573095]
2632 - [x86] UV: Fix target_cpus() in x2apic_uv_x.c (George Beshers) [573095]
2633 - [x86] UV: Clean up UV headers for MMR definitions (George Beshers) [573095]
2634 - [x86] Enable NMI on all cpus on UV (George Beshers) [573095]
2635 - [x86] uv: Add serial number parameter to uv_bios_get_sn_info() (George Beshers) [573095]
2636 - [virt] xen: sync upstream xen_init_cpuid_mask (Andrew Jones) [609028]
2637 - [virt] xen: disable gbpages on pv guests (Andrew Jones) [609028]
2638 - [virt] KVM: Fix mov cr3 #GP at wrong instruction (Marcelo Tosatti) [611889]
2639 - [virt] KVM: Fix mov cr4 #GP at wrong instruction (Marcelo Tosatti) [611889]
2640 - [virt] KVM: Fix mov cr0 #GP at wrong instruction (Marcelo Tosatti) [611889]
2641 - [virt] KVM: Add missing srcu_read_lock() for kvm_mmu_notifier_release() (Marcelo Tosatti) [601320]
2642 - [virt] KVM: limit the number of pages per memory slot (Marcelo Tosatti) [601318]
2643 - [virt] KVM: MMU: Remove user access when allowing kernel access to gpte.w=0 page (Marcelo Tosatti) [601316]
2644 - [virt] KVM: x86: Add missing locking to arch specific vcpu ioctls (Marcelo Tosatti) [601313]
2645 - [virt] KVM: MMU: remove rmap before clear spte (Marcelo Tosatti) [601311]
2646 - [virt] KVM: MMU: Segregate shadow pages with different cr0.wp (Marcelo Tosatti) [601308]
2647 - [virt] KVM: x86: Check LMA bit before set_efer (Marcelo Tosatti) [601307]
2648 - [virt] KVM: Dont allow lmsw to clear cr0.pe (Marcelo Tosatti) [601305]
2649 - [virt] KVM: VMX: blocked-by-sti must not defer NMI injections (Marcelo Tosatti) [601304]
2650 - [virt] KVM: x86: Call vcpu_load and vcpu_put in cpuid_update (Marcelo Tosatti) [601303]
2651 - [virt] KVM: x86: Inject #GP with the right rip on efer writes (Marcelo Tosatti) [601301]
2652 - [virt] KVM: MMU: Dont read pdptrs with mmu spinlock held in mmu_alloc_roots (Marcelo Tosatti) [601300]
2653 - [virt] KVM: x86: properly update ready_for_interrupt_injection (Marcelo Tosatti) [601298]
2654 - [virt] KVM: VMX: enable VMXON check with SMX enabled (Marcelo Tosatti) [601297]
2655 - [virt] KVM: VMX: free vpid when fail to create vcpu (Marcelo Tosatti) [601292]
2656 - [virt] vhost: add unlikely annotations to error path (Michael S. Tsirkin) [602607]
2657 - [virt] vhost: break out of polling loop on error (Michael S. Tsirkin) [602607]
2658
2659 * Wed Jul 07 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-44.el6]
2660 - [mm] Prevent soft lockup - CPU#0 stuck for 61s! in kswapd0 (Larry Woodman) [596971]
2661
2662 * Tue Jul 06 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-43.el6]
2663 - [x86] properly account for IRQ injected only into BSP (Gleb Natapov) [609082]
2664
2665 * Wed Jun 30 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-42.el6]
2666 - [block] writeback: simplify the write back thread queue (Christoph Hellwig) [602595]
2667
2668 * Tue Jun 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-41.el6]
2669 - [mm] Fix slabcache corruption (Larry Woodman) [602595]
2670
2671 * Tue Jun 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-40.el6]
2672 - [infiniband] Add IBoE support (Doug Ledford) [571959]
2673 - [scsi] hpsa: don't pretend the reset works (Tomas Henzl) [598681]
2674 - [fs] revert "procfs: provide stack information for threads" and its fixup commits (George Beshers) [573095]
2675 - [x86] mce: Fix MSR_IA32_MCI_CTL2 CMCI threshold setup (John Villalovos) [593558]
2676 - [s390x] cio: use exception-save stsch (Hendrik Brueckner) [596333]
2677 - [s390x] cio: add hook to reenable mss after hibernation (Hendrik Brueckner) [596333]
2678 - [s390x] cio: allow enable_facility from outside init functions (Hendrik Brueckner) [596333]
2679 - [x86] wmi: Free the allocated acpi objects through wmi_get_event_data (Stanislaw Gruszka) [606736]
2680 - [mtd] UBI: fix volume creation input checking (Stanislaw Gruszka) [606736]
2681 - [mm] avoid THP expose VM bugs (Andrea Arcangeli) [606131]
2682 - [dm] discard support for the linear target (Mike Snitzer) [608280]
2683 - [block] fix DISCARD_BARRIER requests (Mike Snitzer) [608280]
2684 - [block] Don't count_vm_events for discard bio in submit_bio (Mike Snitzer) [608280]
2685
2686 * Tue Jun 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-39.el6]
2687 - [x86] disable PentiumPro memory ordering errata workaround (Gleb Natapov) [605745 606054]
2688 - [net] Bluetooth: Keep a copy of each HID device's report descriptor (Mauro Carvalho Chehab) [565583]
2689 - [hid] make Wacom modesetting failures non-fatal (Mauro Carvalho Chehab) [565583]
2690 - [hid] Implement Wacom quirk in the kernel (Mauro Carvalho Chehab) [565583]
2691 - [hid] make raw reports possible for both feature and output reports (Mauro Carvalho Chehab) [565583]
2692 - [kernel] resources: fix call to alignf() in allocate_resource() (Peter Bogdanovic) [587729]
2693 - [kernel] resources: when allocate_resource() fails, leave resource untouched (Peter Bogdanovic) [587729]
2694 - [pci] introduce pci_assign_unassigned_bridge_resources (Peter Bogdanovic) [587729]
2695 - [pci] update bridge resources to get more big ranges in PCI assign unssigned (Peter Bogdanovic) [587729]
2696 - [pci] add failed_list to pci_bus_assign_resources (Peter Bogdanovic) [587729]
2697 - [pci] add pci_bridge_release_resources and pci_bus_release_bridge_resources (Peter Bogdanovic) [587729]
2698 - [kernel] resource: add release_child_resources (Peter Bogdanovic) [587729]
2699 - [pci] separate pci_setup_bridge to small functions (Peter Bogdanovic) [587729]
2700 - [scsi] aacraid: Disable ASPM by default (Matthew Garrett) [599735]
2701 - [pci] Don't enable aspm before drivers have had a chance to veto it (Matthew Garrett) [599735]
2702 - [netdrv] ehea: Fix kernel deadlock in DLPAR-mem processing (Steve Best) [605736]
2703 - [netdrv] ehea: fix delayed packet processing (Steve Best) [605738]
2704 - [netdrv] ehea: fix possible DLPAR/mem deadlock (Steve Best) [600516]
2705 - [netdrv] ehea: error handling improvement (Steve Best) [600516]
2706 - [x86] Fall back to GART if initialization fails (Bhavna Sarathy) [598974]
2707 - [x86] AMD IOMMU memory region fail with buggy BIOS (Bhavna Sarathy) [598974]
2708 - [virt] Search the LAPIC's for one that will accept a PIC interrupt (Christopher Lalancette) [596223]
2709 - [virt] KVM: x86: Kick VCPU outside PIC lock again (Christopher Lalancette) [596223]
2710 - [virt] KVM: x86: In DM_LOWEST, only deliver interrupts to vcpus with enabled LAPIC's (Christopher Lalancette) [596223]
2711 - [virt] KVM: x86: Allow any LAPIC to accept PIC interrupts (Christopher Lalancette) [596223]
2712 - [virt] KVM: x86: Introduce a workqueue to deliver PIT timer interrupts (Christopher Lalancette) [596223]
2713 - [scsi] ibmvfc: Reduce error recovery timeout (Steve Best) [605729]
2714 - [scsi] ibmvfc: Fix command completion handling (Steve Best) [605729]
2715 - [powerpc] Enable asymmetric SMT scheduling on POWER7 (Steve Best) [596304]
2716 - [kernel] sched: Add asymmetric group packing option for sibling domain (Steve Best) [596304]
2717 - [kernel] sched: Fix capacity calculations for SMT4 (Steve Best) [596304]
2718 - [fs] Btrfs: update to latest upstream code (Josef Bacik) [593834]
2719 - [fs] direct-io: do not merge logically non-contiguous requests (Josef Bacik) [593834]
2720 - [fs] direct-io: add a hook for the fs to provide its own submit_bio function (Josef Bacik) [593834]
2721 - [fs] allow short direct-io reads to be completed via buffered IO (Josef Bacik) [593834]
2722 - [fs] GFS2: O_TRUNC not working on stuffed files across cluster (Robert S Peterson) [606428]
2723 - [nfs] nfsd4: shut down callback queue outside state lock (Jeff Layton) [599522]
2724 - [security] IMA: policy handling and general cleanups (Eric Paris) [584901]
2725 - [security] IMA: fix object lifetime to support non ext* FS (Eric Paris) [584901]
2726 - [netdrv] be2net: Include latest fixes from upstream (Ivan Vecera) [604729]
2727 - [netdrv] be2net: Add PCI SR-IOV support (Ivan Vecera) [602451]
2728 - [scsi] hpsa: do not allow hard reset of 640x-boards (Tomas Henzl) [598681]
2729 - [scsi] hpsa: fix hard reset (Tomas Henzl) [598681]
2730 - [scsi] hpsa: reset devices code (Tomas Henzl) [598681]
2731 - [scsi] hpsa: find cfg addrs (Tomas Henzl) [598681]
2732 - [scsi] hpsa: finding the memory BAR (Tomas Henzl) [598681]
2733 - [scsi] hpsa: look up the board id (Tomas Henzl) [598681]
2734 - [x86] uv: uv_global_gru_mmr_address() macro fix (George Beshers) [607696]
2735 - [crypto] vmac: make it work on big-endian (Jarod Wilson) [605688]
2736 - [net] ipvs: One-Packet Scheduler (Thomas Graf) [584336]
2737 - [drm] i915: Disable Sandybridge support for 6.0 (Adam Jackson) [604838 605302]
2738 - [netdrv] vxge: fix memory leak in vxge_alloc_msix() error path (Michal Schmidt) [580392]
2739 - [netdrv] vxge: fix SINGLE/MULTI_FUNCTION definitions (Michal Schmidt) [580392]
2740 - [netdrv] vxge: update to 2.0.8.20182-k (Michal Schmidt) [580392]
2741 - [sound] fix PCM ring buffer issues (Jaroslav Kysela) [574844 590159 600311]
2742 - [netdrv] e1000/e1000e: implement a simple interrupt moderation (Andy Gospodarek) [607283]
2743 - [netdrv] e1000e: add PCI device id to enable support for 82567V-4 (Andy Gospodarek) [607264]
2744 - [netdrv] e1000e: update driver version number (Andy Gospodarek) [582803]
2745 - [netdrv] e1000e: enable support for EEE on 82579 (Andy Gospodarek) [582803]
2746 - [netdrv] e1000e: initial support for 82579 LOMs (Andy Gospodarek) [582803]
2747 - [netdrv] e1000e: move settting of flow control refresh timer to link setup code (Andy Gospodarek) [582803]
2748 - [netdrv] e1000e: Fix/cleanup PHY reset code for ICHx/PCHx (Andy Gospodarek) [582803]
2749 - [netdrv] e1000e: fix check for manageability on ICHx/PCH (Andy Gospodarek) [582803]
2750 - [netdrv] e1000e: separate out PHY statistics register updates (Andy Gospodarek) [582803]
2751 - [netdrv] e1000e: more cleanup e1000_sw_lcd_config_ich8lan() (Andy Gospodarek) [582803]
2752 - [netdrv] e1000e: cleanup e1000_sw_lcd_config_ich8lan() (Andy Gospodarek) [582803]
2753 - [netdrv] e1000e: cleanup ethtool loopback setup code (Andy Gospodarek) [582803]
2754 - [netdrv] e1000e: reset MAC-PHY interconnect on 82577/82578 (Andy Gospodarek) [582803]
2755 - [netdrv] e1000e: Incorrect function pointer set for force_speed_duplex on 82577 (Andy Gospodarek) [598570]
2756 - [netdrv] e1000e: Reset 82577/82578 PHY before first PHY register read (Andy Gospodarek) [598570]
2757 - [fs] GFS2: Fix kernel NULL pointer dereference by dlm_astd (Robert S Peterson) [604244]
2758 - [fs] GFS2: recovery stuck on transaction lock (Robert S Peterson) [590878]
2759 - [netdrv] tg3: Include support for 5719 device (John Feeney) [595511]
2760 - [mm] Do not attempt to allocate memory below mmap_min_addr (Eric Paris) [540333]
2761 - [scsi] qla2xxx: Updated driver version to 8.03.01.05.06.0-k8 (Chad Dupuis) [595477]
2762 - [scsi] qla2xxx: Add portid to async-request messages (Chad Dupuis) [595477]
2763 - [scsi] qla2xxx: Propogate transport disrupted status for cable pull conditions for faster failover (Chad Dupuis) [595477]
2764 - [scsi] qla2xxx: Do not restrict flash operations to specific regions for 4G adapters (Chad Dupuis) [595477]
2765 - [scsi] qla2xxx: For ISP 23xx, select user specified login timeout value if greater than minuimum value(4 secs) (Chad Dupuis) [595477]
2766 - [scsi] qla2xxx: Removed redundant check for ISP 84xx (Chad Dupuis) [595477]
2767 - [scsi] qla2xxx: Do not enable VP in non fabric topology (Chad Dupuis) [595477]
2768 - [scsi] qla2xxx: Make the FC port capability mutual exclusive (Chad Dupuis) [595477]
2769 - [scsi] qla2xxx: Limit rport-flaps during link-disruptions (Chad Dupuis) [595477]
2770 - [scsi] qla2xxx: Correct async-srb issues (Chad Dupuis) [595477]
2771 - [scsi] qla2xxx: Correct use-after-free oops seen during EH-abort (Chad Dupuis) [595477]
2772 - [scsi] qla2xxx: Fix cpu-affinity usage for non-capable ISPs (Chad Dupuis) [595477]
2773 - [scsi] qla2xxx: Limit mailbox command contention for ADISC requests (Chad Dupuis) [595477]
2774 - [scsi] qla2xxx: Further generalization of SRB CTX infrastructure (Chad Dupuis) [595477]
2775 - [scsi] qla2xxx: ensure flash operation and host reset via sg_reset are mutually exclusive (Chad Dupuis) [595477]
2776 - [scsi] qla2xxx: Prevent sending mbx commands from sysfs during isp reset (Chad Dupuis) [595477]
2777 - [scsi] qla2xxx: Cleanup FCP-command-status processing debug statements (Chad Dupuis) [595477]
2778 - [scsi] qla2xxx: Clear error status after uncorrectable non-fatal errors (Chad Dupuis) [595477]
2779 - [scsi] qla2xxx: Add char device to incease driver use count (Chad Dupuis) [595477]
2780 - [scsi] qla2xxx: Display proper link state for disconnected ports (Chad Dupuis) [595477]
2781 - [scsi] qla2xxx: Check for ISP84xx before processing to get 84xx firmware version (Chad Dupuis) [595477]
2782
2783 * Fri Jun 25 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-38.el6]
2784 - [ata] ahci: Fix failure to detect devices (Matthew Garrett) [608146]
2785 - [ata] ahci: Fix device detection when stopping DMA engines (Matthew Garrett) [601195]
2786 - [mm] Disable transparent hugepages when running under Xen (Andrea Arcangeli) [605566]
2787 - [netdrv] tg3: Fix TX BD corruption on 5755+ devices (John Feeney) [603936]
2788 - [netdrv] tg3: Fix memory leak on 5717/57765/5719 devices (John Feeney) [603933]
2789 - [netdrv] bnx2: update firmware to 09-5.0.0.j15 to improve performance (John Feeney) [593797]
2790 - [netdrv] iwlwifi: cancel scan watchdog in iwl_bg_abort_scan (John Linville) [604266]
2791 - [netdrv] add bnx2_del_napi() to stop rmmod hangs (John Feeney) [599630]
2792 - [virt] virtio: net: Remove net-specific advertising of PUBLISH_USED feature (Amit Shah) [605591]
2793 - [virt] KVM: Increase NR_IOBUS_DEVS limit to 200 (Michael S. Tsirkin) [602262]
2794 - [virt] account only for IRQ injected into BSP (Gleb Natapov) [601564]
2795 - [virt] KVM: read apic->irr with ioapic lock held (Marcelo Tosatti) [579970]
2796 - [x86] ACPI: Disable ASPM if the platform won't provide _OSC control for PCIe (Matthew Garrett) [584466]
2797 - [x86] Move notify_cpu_starting() callback to a later stage (Prarit Bhargava) [600296]
2798 - [x86] cpuidle: Fix incorrect optimization (John Villalovos) [593549]
2799 - [block] cfq: Don't allow queue merges for queues that have no process references (Jeff Moyer) [605264]
2800 - [infiniband] ehca: bitmask handling for lock_hcalls (Steve Best) [605739]
2801 - [tpm] Fix tpm_readpubek_params_out struct (Peter Bogdanovic) [597235]
2802 - [usb] Fix a hang of khubd if UHCI is removed (Pete Zaitcev) [579093]
2803 - [oprofile] fix oprofile samples dropping under load on larger systems (John Villalovos) [561557]
2804 - [kernel] check SEND_SIG_FORCED on TP_STORE_SIGINFO() (Oleg Nesterov) [591780]
2805 - [kernel] pids: increase pid_max based on num_possible_cpus (Oleg Nesterov) [593164]
2806 - [kernel] sys_personality: change sys_personality() to accept "unsigned int" instead of u_long (Oleg Nesterov) [593265]
2807 - [kernel] fix cgroup's cpu controller to provide fair CPU usage to each group in some conditions (Larry Woodman) [544197]
2808 - [gpu] vgaarb: fix incorrect dereference of userspace pointer (Danny Feng) [564247]
2809 - [kernel] sched: avoid cache misses on large machines due to sibling preference (Jerome Marchand) [592302]
2810 - [scsi] ipr: move setting of the allow_restart flag for vsets (Steve Best) [603090]
2811 - [scsi] ibmvscsi: fix DMA API misuse (Steve Best) [595417]
2812 - [netdrv] l2tp: Fix oops in pppol2tp_xmit (Danny Feng) [607055]
2813 - [net] sysfs: ethtool_ops can be NULL (Danny Feng) [603662]
2814 - [net] udp: Fix bogus UFO packet generation (Herbert Xu) [602878]
2815 - [net] vlan: fix vlan_skb_recv() (Michael S. Tsirkin) [598920]
2816 - [net] bonding: Fix fcoe mpio over inactive slave in a bond (Neil Horman) [603239]
2817 - [net] bridge: Fix OOM crash in deliver_clone (Herbert Xu) [604494]
2818 - [s390x] kernel: fix kernel panic caused by using kprobes (Hendrik Brueckner) [596876]
2819 - [s390x] ccwgroup: add locking around drvdata access (Hendrik Brueckner) [598563]
2820 - [s390x] cmm: fix module unload handling (Hendrik Brueckner) [598554]
2821 - [powerpc] Rework VDSO gettimeofday to prevent time going backwards (Steve Best) [591495]
2822 - [powerpc] Move kdump default base address to 64MB on 64bit (Steve Best) [603779]
2823 - [fs] gfs2: Better error reporting when mounting a gfs fs without enough journals (Abhijith Das) [600408]
2824 - [tty] Revert "[tty] fix race in tty_fasync" (Stanislaw Gruszka) [606747]
2825 - [kdump] kexec: fix OOPS in crash_kernel_shrink (Steve Best) [592336]
2826 - [fs] btrfs: prevent users from setting ACLs on files they do not own (Danny Feng) [603594] {CVE-2010-2071}
2827 - [fs] cifs: remove bogus first_time check in NTLMv2 session setup code (Jeff Layton) [604785]
2828 - [fs] cifs: don't attempt busy-file rename unless it's in same directory (Jeff Layton) [603707]
2829 - [fs] ext4: Fix compat EXT4_IOC_ADD_GROUP (Eric Sandeen) [602428]
2830 - [fs] ext4: Prevent creation of files larger than RLIMIT_FSIZE using fallocate (Eric Sandeen) [602427]
2831 - [fs] ext4: Use our own write_cache_pages() (Eric Sandeen) [602384]
2832 - [fs] xfs: Make fiemap work in query mode (Eric Sandeen) [602061]
2833 - [fs] ext4: restart ext4_ext_remove_space() after transaction restart (Josef Bacik) [589645]
2834 - [fs] ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only files (Eric Sandeen) [601009] {CVE-2010-2066}
2835 - [fs] btrfs: check for read permission on src file in the clone ioctl (Danny Feng) [593227] {CVE-2010-1636}
2836 - [drm] radeon: fixes for radeon driver from upstream (Dave Airlie) [589098]
2837 - [drm] radeon port 2.6.35 HDMI audio to RHEL6 (Jerome Glisse) [604435]
2838 - [drm] nv50: fix iommu errors caused by device reading from address 0 (Ben Skeggs) [602498]
2839 - [ata] libata: don't flush dcache on slab pages (Stanislaw Gruszka) [606719]
2840 - [fs] cifs: don't call cifs_new_fileinfo unless cifs_open succeeds (Jeff Layton) [593422]
2841 - [fs] cifs: don't ignore cifs_posix_open_inode_helper return value (Jeff Layton) [593422]
2842 - [fs] cifs: clean up arguments to cifs_open_inode_helper (Jeff Layton) [593422]
2843 - [fs] cifs: pass instantiated filp back after open call (Jeff Layton) [593422]
2844 - [fs] cifs: move cifs_new_fileinfo call out of cifs_posix_open (Jeff Layton) [593422]
2845 - [fs] cifs: implement drop_inode superblock op (Jeff Layton) [593422]
2846 - [fs] cifs: checkpatch cleanup (Jeff Layton) [593422]
2847 - [fs] nfsd: ensure sockets are closed on error (Jeff Layton) [603735]
2848 - [fs] Revert "sunrpc: move the close processing after do recvfrom method" (Jeff Layton) [603735]
2849 - [fs] Revert "sunrpc: fix peername failed on closed listener" (Jeff Layton) [603735]
2850 - [virt] kvm: Prevent internal slots from being COWed (Glauber Costa) [601192]
2851 - [virt] kvm: Keep slot ID in memory slot structure (Glauber Costa) [601192]
2852 - [fs] writeback: split writeback_inodes_wb (Christoph Hellwig) [601202]
2853 - [fs] writeback: remove writeback_inodes_wbc (Christoph Hellwig) [601202]
2854 - [fs] writeback: fix pin_sb_for_writeback (Christoph Hellwig) [601202]
2855 - [fs] writeback: add missing requeue_io in writeback_inodes_wb (Christoph Hellwig) [601202]
2856 - [fs] writeback: simplify and split bdi_start_writeback (Christoph Hellwig) [601202]
2857 - [fs] writeback: simplify wakeup_flusher_threads (Christoph Hellwig) [601202]
2858 - [fs] writeback: fix writeback_inodes_wb from writeback_inodes_sb (Christoph Hellwig) [601202]
2859 - [fs] writeback: enforce s_umount locking in writeback_inodes_sb (Christoph Hellwig) [601202]
2860 - [fs] writeback: queue work on stack in writeback_inodes_sb (Christoph Hellwig) [601202]
2861 - [fs] writeback: fix writeback completion notifications (Christoph Hellwig) [601202]
2862 - [fs] vfs: improve writeback_inodes_wb() (Christoph Hellwig) [601202]
2863 - [fs] writeback: remove unused nonblocking and congestion checks (Christoph Hellwig) [601202]
2864 - [fs] writeback: remove the always false bdi_cap_writeback_dirty() test (Christoph Hellwig) [601202]
2865 - [misc] hpilo: fix pointer warning in ilo_ccb_setup (Prarit Bhargava) [603733]
2866 - [netdrv] libertas_tf: Fix warning in lbtf_rx for stats struct (Prarit Bhargava) [603733]
2867 - [scsi] Fix userspace warning in /usr/include/scsi/scsi.h (Prarit Bhargava) [603733]
2868 - [pci] Fix section mismatch warning in pcibios_scan_specific_bus() (Prarit Bhargava) [603733]
2869 - [fs] Fix warning in fs/ecryptfs/messaging.c: ecryptfs_process_response() (Prarit Bhargava) [603733]
2870 - [fs] Fix warning in fs/btrfs/ordered-data.c: btrfs_dec_test_ordered_pending() (Prarit Bhargava) [603733]
2871 - [netdrv] Fix warnings in drivers/net/bnx2.c (Prarit Bhargava) [603733]
2872 - [doc] Fix warning in Documentation/spi/spidev_fdx.c: do_msg() (Prarit Bhargava) [603733]
2873 - [kernel] Fix stack warning in lib/decompress_bunzip2.c: get_next_block() (Prarit Bhargava) [603733]
2874 - [netdrv] Fix warning in drivers/net/vxge/vxge-main.c: vxge_probe() (Prarit Bhargava) [603733]
2875 - [v4l] Fix warnings in drivers/media/dvb/frontends (Prarit Bhargava) [603733]
2876 - [trace] Fix warning in include/trace/events/kmem.h: mm_kswapd_ran() (Prarit Bhargava) [603733]
2877 - [scsi] Fix warning in drivers/scsi/megaraid/megaraid_sas.c: process_fw_state_change_wq() (Prarit Bhargava) [603733]
2878 - [pcmcia] Fix warnings in drivers/pcmcia/socket_sysfs.c (Prarit Bhargava) [603733]
2879 - [netdrv] Fix warning in drivers/net/wireless/wl3501_cs.c: wl3501_esbq_exec() (Prarit Bhargava) [603733]
2880 - [drm] Workaround broken check_headers.pl (Prarit Bhargava) [603733]
2881 - [isdn] Fix warning in drivers/isdn/hardware/mISDN/hfcpci.c: hfcpci_softirq() (Prarit Bhargava) [603733]
2882 - [virt] Fix warning in drivers/vhost/vhost.c: vhost_signal() (Prarit Bhargava) [603733]
2883 - [md] Fix warning in drivers/md/dm-repl.c: _replicator_slink_message() (Prarit Bhargava) [603733]
2884 - [virt] Fix warning in arch/x86/kvm/svm.c: svm_handle_mce() (Prarit Bhargava) [603733]
2885 - [net] Fix stack warning in net/mac80211/debugfs_sta.c: sta_agg_status_read() (Prarit Bhargava) [603733]
2886 - [kernel] Fix warnings in scripts/mod/mod-extract.c (Prarit Bhargava) [603733]
2887 - [mm] Fix warning in mm/mprotect.c: mprotect_fixup() (Prarit Bhargava) [603733]
2888 - [mm] Fix warning in mm/mmap.c: __split_vma() (Prarit Bhargava) [603733]
2889 - [mca] Fix warning in include/linux/mca-legacy.h (Prarit Bhargava) [603733]
2890 - [mm] Fix warning in include/linux/khugepaged.h (Andrea Arcangeli) [603733]
2891 - [virt] Fix warnings in drivers/xen/events.c() (Prarit Bhargava) [603733]
2892 - [x86] Fix warning in drivers/platform/x86/thinkpad_acpi.c (Prarit Bhargava) [603733]
2893 - [netdrv] Fix warnings in drivers/net/wireless/b43/phy_lp.c (Prarit Bhargava) [603733]
2894 - [block] Fix warning in drivers/block/cciss.c: fail_all_cmds() (Prarit Bhargava) [603733]
2895 - [isdn] Fix warnings in drivers/isdn/hardware/mISDN/w6692.c (Prarit Bhargava) [603733]
2896 - [kernel] Fix compiler warning in sched.c (Larry Woodman) [544197]
2897 - [fs] fscache/object-list.c: fix warning on 32-bit (Prarit Bhargava) [603733]
2898 - [sysfs] Fix warning in sysfs_open_file (Prarit Bhargava) [603733]
2899 - [kdump] Fix warning in kexec_crash_size_show (Prarit Bhargava) [603733]
2900 - [netdrv] libertas: fix uninitialized variable warning (Prarit Bhargava) [603733]
2901 - [drm] Fixes linux-next & linux-2.6 checkstack warnings (Prarit Bhargava) [603733]
2902 - [x86] acpi_pad: squish warning (Prarit Bhargava) [603733]
2903 - [netdrv] iwlwifi: dynamically allocate buffer for sram debugfs file (Prarit Bhargava) [603733]
2904 - [isdn] Fix warnings in eicon driver (Prarit Bhargava) [603733]
2905 - [net] bridge: Make first arg to deliver_clone const (Prarit Bhargava) [603733]
2906 - [kernel] linux/elfcore.h: hide kernel functions (Prarit Bhargava) [603733]
2907 - [fs] quota: suppress warning: "quotatypes" defined but not used (Prarit Bhargava) [603733]
2908 - [fs] fuse: fix large stack use (Prarit Bhargava) [603733]
2909 - [uwb] wlp: refactor wlp_get_<attribute>() macros (Prarit Bhargava) [603733]
2910 - [usb] Remove large struct from the stack in USB storage isd200 driver (Prarit Bhargava) [603733]
2911 - [usb] isp1362: better 64bit printf warning fixes (Prarit Bhargava) [603733]
2912 - [pci] PCI: kill off pci_register_set_vga_state() symbol export (Prarit Bhargava) [603733]
2913 - [x86] intel-iommu: Fix section mismatch dmar_ir_support() uses dmar_tbl (Prarit Bhargava) [603733]
2914 - [v4l] dvb-bt8xx: fix compile warning (Prarit Bhargava) [603733]
2915 - [tty] tty_buffer: Fix distinct type warning (Prarit Bhargava) [603733]
2916 - [virt] virtio: fix section mismatch warnings (Prarit Bhargava) [603733]
2917 - [ata] Fix warning in libata-eh.c (Prarit Bhargava) [603733]
2918 - [crypto] testmgr: Fix warning (Prarit Bhargava) [603733]
2919 - [x86] Use __builtin_memset and __builtin_memcpy for memset/memcpy (Prarit Bhargava) [603733]
2920 - [x86] apic: Fix prototype in hw_irq.h (Prarit Bhargava) [603733]
2921 - [x86] nmi_watchdog: relax the nmi checks during bootup (Don Zickus) [596760]
2922 - [x86] nmi_watchdog: disable correct cpu if it fails check (Don Zickus) [596760]
2923 - [netdrv] iwlwifi: update supported PCI_ID list for 5xx0 series (John Linville) [599148]
2924 - [netdrv] iwlwifi: recalculate average tpt if not current (John Linville) [595845]
2925 - [netdrv] iwl3945: enable stuck queue detection on 3945 (John Linville) [595847]
2926 - [netdrv] iwlwifi: fix internal scan race (John Linville) [595846]
2927 - [netdrv] iwlwifi: fix scan races (John Linville) [595846]
2928 - [virt] virtio: fix balloon without VIRTIO_BALLOON_F_STATS_VQ (Amit Shah) [601690]
2929 - [virt] virtio: Fix scheduling while atomic in virtio_balloon stats (Amit Shah) [601690]
2930 - [virt] virtio: Add memory statistics reporting to the balloon driver (Amit Shah) [601690]
2931 - [block] make blk_init_free_list and elevator_init idempotent (Mike Snitzer) [594584]
2932 - [block] avoid unconditionally freeing previously allocated request_queue (Mike Snitzer) [594584]
2933 - [virt] vhost: fix the memory leak which will happen when memory_access_ok fails (Michael S. Tsirkin) [599299]
2934 - [virt] vhost-net: fix to check the return value of copy_to/from_user() correctly (Michael S. Tsirkin) [599299]
2935 - [virt] vhost: fix to check the return value of copy_to/from_user() correctly (Michael S. Tsirkin) [599299]
2936 - [virt] vhost: Fix host panic if ioctl called with wrong index (Michael S. Tsirkin) [599299]
2937 - [block] writeback: fixups for !dirty_writeback_centisecs (Mike Snitzer) [594570]
2938 - [fs] writeback: disable periodic old data writeback for !dirty_writeback_centisecs (Mike Snitzer) [594570]
2939 - [modsign] Include the GNU build ID note in the digest (David Howells) [581965]
2940 - [modsign] Fix a number of module signing bugs (David Howells) [581965]
2941 - [modsign] KEYS: Return more accurate error codes (David Howells) [591891]
2942 - [netdrv] ixgbe: fix automatic LRO/RSC settings for low latency (Andy Gospodarek) [595555]
2943 - [scsi] sync fcoe with upstream (Mike Christie) [603263]
2944 - [trace] conflicting tracepoint power.h headers (Mark Wielaard) [599175]
2945 - [netdrv] ixgbe: fix panic when shutting down system with WoL enabled (Andy Gospodarek) [601066]
2946 - [netdrv] ixgbe: ixgbe_down needs to stop dev_watchdog (Andy Gospodarek) [604807]
2947 - [scsi] sync fcoe (Mike Christie) [595558]
2948 - [kernel] CRED: Fix a race in creds_are_invalid() in credentials debugging (James Leddy) [578268]
2949 - [kernel] Remove timeout logic in mutex_spin_on_owner() to match upstream (Steve Best) [602805]
2950
2951 * Sun Jun 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-37.el6]
2952 - [virt] Disable transparent hugepages when running under Xen (Dor Laor) [605566]
2953 - [pci] fix compilation when CONFIG_PCI_MSI=n (Vivek Goyal) [589397]
2954 - [block] virtio_blk: support barriers without FLUSH feature (Christoph Hellwig) [602595]
2955 - [mm] make compound_lock irqsafe in put_page (Andrea Arcangeli) [605354]
2956 - [mm] remove compound_lock from futex (Andrea Arcangeli) [605354]
2957 - [mm] memcontrol compound_lock irqsafe (Andrea Arcangeli) [605354]
2958 - [mm] add compound_lock_irqsave/irqrestore (Andrea Arcangeli) [605354]
2959
2960 * Wed Jun 16 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-36.el6]
2961 - [virt] virtio-pci: Disable MSI at startup (Vivek Goyal) [589397]
2962 - [mm] Reenable transparent hugepages (Aristeu Rozanski) [602436]
2963
2964 * Tue Jun 15 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-35.el6]
2965 - [mm] Revert "[redhat] Enable transparent hugepages by default" (Aristeu Rozanski) [602436]
2966
2967 * Tue Jun 15 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-34.el6]
2968 - [net] Revert "[net] bridge: make bridge support netpoll" (Herbert Xu) [602927]
2969 - [virt] always invalidate and flush on spte page size change (Andrea Arcangeli) [578134]
2970 - [mm] root anon vma bugchecks (Andrea Arcangeli) [578134]
2971 - [mm] resurrect the check in page_address_in_vma (Andrea Arcangeli) [578134]
2972 - [mm] root anon vma use root (Andrea Arcangeli) [578134]
2973 - [mm] avoid ksm hang (Andrea Arcangeli) [578134]
2974 - [mm] always add new vmas at the end (Andrea Arcangeli) [578134]
2975 - [mm] remove unnecessary lock from __vma_link (Andrea Arcangeli) [578134]
2976 - [mm] optimize hugepage tracking for memcgroup & handle splitting (Rik van Riel) [597108]
2977 - [mm] properly move a transparent hugepage between cgroups (Rik van Riel) [597081]
2978 - [mm] scale statistics if the page is a transparent hugepage (Rik van Riel) [597077]
2979 - [mm] enhance mem_cgroup_charge_statistics with a page_size argument (Rik van Riel) [597058]
2980 - [virt] add option to disable spinlock patching on hypervisor (Gleb Natapov) [599068]
2981 - [virt] xen: don't touch xsave in cr4 (Andrew Jones) [599069]
2982 - [drm] Update core to current drm-linus (Adam Jackson) [589547 589792 597022]
2983 - [mm] fix refcount bug in anon_vma code (Rik van Riel) [602739]
2984
2985 * Thu Jun 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-33.el6]
2986 - [netdrv] vlan: allow null VLAN ID to be used (Andy Gospodarek) [595555]
2987 - [netdrv] ixgbe: Add boolean parameter to ixgbe_set_vmolr (Andy Gospodarek) [595555]
2988 - [netdrv] ixgbe: fix bug when EITR=0 causing no writebacks (Andy Gospodarek) [595555]
2989 - [netdrv] ixgbe: enable extremely low latency (Andy Gospodarek) [595555]
2990 - [netdrv] ixgbe: added compat bits (Andy Gospodarek) [595555]
2991 - [netdrv] ixgbe: dcb, do not tag tc_prio_control frames (Andy Gospodarek) [595555]
2992 - [netdrv] ixgbe: fix ixgbe_tx_is_paused logic (Andy Gospodarek) [595555]
2993 - [netdrv] ixgbe: always enable vlan strip/insert when DCB is enabled (Andy Gospodarek) [595555]
2994 - [netdrv] ixgbe: remove some redundant code in setting FCoE FIP filter (Andy Gospodarek) [595555]
2995 - [netdrv] ixgbe: fix wrong offset to fc_frame_header in ixgbe_fcoe_ddp (Andy Gospodarek) [595555]
2996 - [netdrv] ixgbe: fix header len when unsplit packet overflows to data buffer (Andy Gospodarek) [595555]
2997 - [netdrv] ixgbe: fix setting of promisc mode when using mac-vlans (Andy Gospodarek) [595555]
2998 - [netdrv] ixgbe: Add support for VF MAC and VLAN configuration (Andy Gospodarek) [595555]
2999 - [netdrv] ixgbe: fix bug with vlan strip in promsic mode (Andy Gospodarek) [595555]
3000 - [virt] use unfair spinlock when running on hypervisor (Gleb Natapov) [599068]
3001
3002 * Wed Jun 02 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-32.el6]
3003 - [kernel] sched: update normalized values on user updates via proc (Hendrik Brueckner) [590748]
3004 - [kernel] sched: Make tunable scaling style configurable (Hendrik Brueckner) [590748]
3005 - [s390x] nohz: Introduce arch_needs_cpu (Hendrik Brueckner) [590009]
3006 - [ppc64] Use form 1 affinity to setup node distance (Steve Best) [594502]
3007 - [ppc64] numa: Use ibm, architecture-vec-5 to detect form 1 affinity (Steve Best) [594502]
3008 - [ppc64] Set a smaller value for RECLAIM_DISTANCE to enable zone reclaim (Steve Best) [594502]
3009 - [block] Add padding to writeback_control (Mike Snitzer) [594570]
3010 - [fs] cifs: fix page refcount leak (Jeff Layton) [595827]
3011 - [scsi] megaraid_sas - Add three times Online controller reset (Tomas Henzl) [594821]
3012 - [scsi] megaraid: update driver version to 4.28 (Tomas Henzl) [577010]
3013 - [netdrv] tg3: Provide more support for 57765 with v3.108 (John Feeney) [581691]
3014 - [scsi] skip sense logging for some ATA PASS-THROUGH cdbs (Jeff Moyer) [596997]
3015 - [block] allow initialization of previously allocated request_queue (Mike Snitzer) [594584]
3016 - [usb] Fix oops on switching USB controllers (Pete Zaitcev) [578979]
3017 - [drm] nouveau: important fixes to vbios parser (Ben Skeggs) [596604]
3018 - [virt] virtio: console: Fix crash when port is unplugged and blocked for write (Amit Shah) [596635]
3019 - [virt] virtio: console: Fix crash when hot-unplugging a port and read is blocked (Amit Shah) [596635]
3020 - [kernel] signals: check_kill_permission(): don't check creds if same_thread_group() (Oleg Nesterov) [595499]
3021 - [drm] fix issue with wake up like upstream commit (Dave Airlie) [577959]
3022 - [x86] Fix AMD IOMMU suspend/resume (Matthew Garrett) [593787]
3023 - [mm] do_generic_file_read: clear page errors when issuing a fresh read of the page (Rik van Riel) [596334]
3024 - [x86] Fix loud HPET warning on Intel Platforms (Prarit Bhargava) [592036]
3025 - [x86] Intel Cougar Point PCH support for SATA, USB, HD Audio, I2C(SMBUS), and iTCO Watchdog (John Villalovos) [560077]
3026 - [x86] dell-laptop: Update to match mainline (Matthew Garrett) [586495]
3027 - [kernel] proc: backport afinity_hint code (Neil Horman) [591509]
3028 - [scsi] bfa: powerpc compilation warning and endian fix (Rob Evers) [583154]
3029 - [scsi] bfa: code review fixes (Rob Evers) [583154]
3030 - [s390x] dasd: fix race between tasklet and dasd_sleep_on (Hendrik Brueckner) [591963]
3031 - [s390x] vdso: add missing vdso_install target (Hendrik Brueckner) [587368]
3032 - [mm] mempolicy: fix get_mempolicy() for relative and static nodes (Steve Best) [592327]
3033 - [net] reserve ports for applications using fixed port numbers (Amerigo Wang) [580970]
3034 - [kernel] sysctl: add proc_do_large_bitmap (Amerigo Wang) [580970]
3035 - [kernel] sysctl: refactor integer handling proc code (Amerigo Wang) [580970]
3036 - [virt] VMware Balloon: clamp number of collected non-balloonable pages (Amit Shah) [582826]
3037 - [virt] x86, hypervisor: add missing <linux/module.h> (Amit Shah) [582826]
3038 - [nfs] nfsd4: bug in read_buf (Steve Dickson) [597215]
3039 - [nfs] svcrdma: RDMA support not yet compatible with RPC6 (Steve Dickson) [597215]
3040 - [nfs] Revert "nfsd4: distinguish expired from stale stateids" (Steve Dickson) [597215]
3041 - [nfs] nfsd: safer initialization order in find_file() (Steve Dickson) [597215]
3042 - [nfs] nfs4: minor callback code simplification, comment (Steve Dickson) [597215]
3043 - [nfs] NFSD: don't report compiled-out versions as present (Steve Dickson) [597215]
3044 - [nfs] nfsd4: implement reclaim_complete (Steve Dickson) [597215]
3045 - [nfs] nfsd4: nfsd4_destroy_session must set callback client under the state lock (Steve Dickson) [597215]
3046 - [nfs] nfsd4: keep a reference count on client while in use (Steve Dickson) [597215]
3047 - [nfs] nfsd4: mark_client_expired (Steve Dickson) [597215]
3048 - [nfs] nfsd4: introduce nfs4_client.cl_refcount (Steve Dickson) [597215]
3049 - [nfs] nfsd4: refactor expire_client (Steve Dickson) [597215]
3050 - [nfs] nfsd4: extend the client_lock to cover cl_lru (Steve Dickson) [597215]
3051 - [nfs] nfsd4: use list_move in move_to_confirmed (Steve Dickson) [597215]
3052 - [nfs] nfsd4: fold release_session into expire_client (Steve Dickson) [597215]
3053 - [nfs] nfsd4: rename sessionid_lock to client_lock (Steve Dickson) [597215]
3054 - [nfs] nfsd4: fix bare destroy_session null dereference (Steve Dickson) [597215]
3055 - [nfs] nfsd4: use local variable in nfs4svc_encode_compoundres (Steve Dickson) [597215]
3056 - [nfs] nfsd: further comment typos (Steve Dickson) [597215]
3057 - [nfs] sunrpc: centralise most calls to svc_xprt_received (Steve Dickson) [597215]
3058 - [nfs] nfsd4: fix unlikely race in session replay case (Steve Dickson) [597215]
3059 - [nfs] nfsd4: fix filehandle comment (Steve Dickson) [597215]
3060 - [nfs] nfsd: potential ERR_PTR dereference on exp_export() error paths (Steve Dickson) [597215]
3061 - [nfs] nfsd4: complete enforcement of 4.1 op ordering (Steve Dickson) [597215]
3062 - [nfs] nfsd4: allow 4.0 clients to change callback path (Steve Dickson) [597215]
3063 - [nfs] nfsd4: rearrange cb data structures (Steve Dickson) [597215]
3064 - [nfs] NFSD: NFSv4 callback client should use RPC_TASK_SOFTCONN (Steve Dickson) [597215]
3065 - [nfs] nfsd4: cl_count is unused (Steve Dickson) [597215]
3066 - [nfs] nfsd4: don't sleep in lease-break callback (Steve Dickson) [597215]
3067 - [nfs] nfsd4: indentation cleanup (Steve Dickson) [597215]
3068 - [nfs] nfsd4: consistent session flag setting (Steve Dickson) [597215]
3069 - [nfs] nfsd4: remove probe task's reference on client (Steve Dickson) [597215]
3070 - [nfs] nfsd4: remove dprintk (Steve Dickson) [597215]
3071 - [nfs] nfsd4: shutdown callbacks on expiry (Steve Dickson) [597215]
3072 - [nfs] nfsd4: preallocate nfs4_rpc_args (Steve Dickson) [597215]
3073 - [nfs] svcrpc: don't hold sv_lock over svc_xprt_put() (Steve Dickson) [597215]
3074 - [nfs] nfsd: don't break lease while servicing a COMMIT (Steve Dickson) [597215]
3075 - [nfs] nfsd: factor out hash functions for export caches (Steve Dickson) [597215]
3076 - [nfs] sunrpc: never return expired entries in sunrpc_cache_lookup (Steve Dickson) [597215]
3077 - [nfs] sunrpc/cache: factor out cache_is_expired (Steve Dickson) [597215]
3078 - [nfs] sunrpc: don't keep expired entries in the auth caches (Steve Dickson) [597215]
3079 - [nfs] nfsd4: document lease/grace-period limits (Steve Dickson) [597215]
3080 - [nfs] nfsd4: allow setting grace period time (Steve Dickson) [597215]
3081 - [nfs] nfsd4: reshuffle lease-setting code to allow reuse (Steve Dickson) [597215]
3082 - [nfs] nfsd4: remove unnecessary lease-setting function (Steve Dickson) [597215]
3083 - [nfs] nfsd4: simplify lease/grace interaction (Steve Dickson) [597215]
3084 - [nfs] nfsd4: simplify references to nfsd4 lease time (Steve Dickson) [597215]
3085 - [nfs] Fix another nfs_wb_page() deadlock (Steve Dickson) [595478]
3086 - [nfs] Ensure that we mark the inode as dirty if we exit early from commit (Steve Dickson) [595478]
3087 - [nfs] Fix a lock imbalance typo in nfs_access_cache_shrinker (Steve Dickson) [595478]
3088 - [nfs] sunrpc: fix leak on error on socket xprt setup (Steve Dickson) [595478]
3089 - [pci] Add padding to PCI structs for future enhancements (Prarit Bhargava) [590286]
3090
3091 * Wed May 26 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-31.el6]
3092 - [mm] fix vma_adjust lock inversion (Andrea Arcangeli) [595808]
3093 - [mm] eliminate compiler warning introduced by my "kernel pagefault tracepoint for x86 & x86_64 patch" (Larry Woodman) [526032]
3094 - [netdrv] tg3: Fix INTx fallback when MSI fails (Steve Best) [594456]
3095 - [virt] correctly trace irq injection on SVM (Gleb Natapov) [594020]
3096 - [virt] KVM: remove CAP_SYS_RAWIO requirement from kvm_vm_ioctl_assign_irq (Alex Williamson) [594912]
3097 - [virt] KVM: Fix wallclock version writing race (Glauber Costa) [592033]
3098 - [x86] Fix double enable_IR_x2apic call on SMP kernel on !SMP boards (Luming Yu) [585122]
3099 - [block] Adjust elv_iosched_show to return "none" for bio-based DM (Mike Snitzer) [595393]
3100 - [dm] mpath: Add a feature flag attribute to the multipath structure (Mike Snitzer) [594503]
3101 - [kernel] fix compat_sys_sched_getaffinity() (Oleg Nesterov) [582407]
3102 - [usb] usbcore: Fix issue with disabled USB3 protocol ports (Bhavna Sarathy) [591916]
3103 - [kernel] python: change scripts to use system python instead of env (Don Zickus) [575965]
3104 - [scsi] mpt2sas: update to 05.100.00.02 (Tomas Henzl) [591971]
3105 - [virt] Fix FV Xen guest when xen_pv_hvm not enabled (Don Dutile) [523134]
3106 - [net] enhance network cgroup classifier to work in softirq context (Neil Horman) [595351]
3107 - [net] gro: Fix bogus gso_size on the first fraglist entry (Herbert Xu) [594561]
3108 - [nfs] sunrpc trace points (Steve Dickson) [567741]
3109 - [nfs] don't try to decode GETATTR if DELEGRETURN returned error (Jeff Layton) [584391]
3110 - [nfs] d_revalidate() is too trigger-happy with d_drop() (Jeff Layton) [587225]
3111 - [ppc64] Fix zero length strncmp() on powerpc (Steve Best) [593129]
3112 - [ppc64] pseries: Fix xics interrupt affinity (Steve Best) [592438]
3113 - [ppc] Improve 64bit copy_tofrom_user (Steve Best) [591344]
3114 - [fs] GFS2: Fix permissions checking for setflags ioctl() (Steven Whitehouse) [595395] {CVE-2010-1641}
3115 - [gfs] GFS2: Add two useful messages (Steven Whitehouse) [589510]
3116 - [serial] fix serial console hang after entering username (John Villalovos) [590851]
3117 - [kdump] kexec can't load capturing kernel on some big RAM systems (Vitaly Mayatskikh) [580843]
3118 - [fs] cleanup generic block based fiemap (Josef Bacik) [578560]
3119 - [fs] vfs: add NOFOLLOW/UNUSED to umount flags (Josef Bacik) [562078]
3120 - [fs] dlm: fix ast ordering for user locks (David Teigland) [592418]
3121 - [fs] cifs: fix noserverino handling when unix extensions are enabled (Jeff Layton) [591483]
3122 - [fs] cifs: don't update uniqueid in cifs_fattr_to_inode (Jeff Layton) [591483]
3123 - [fs] cifs: always revalidate hardlinked inodes when using noserverino (Jeff Layton) [591483]
3124 - [fs] cifs: Fix losing locks during fork() (Jeff Layton) [591483]
3125 - [fs] cifs: propagate cifs_new_fileinfo() error back to the caller (Jeff Layton) [591483]
3126 - [fs] cifs: add comments explaining cifs_new_fileinfo behavior (Jeff Layton) [591483]
3127 - [fs] cifs: Allow null nd (as nfs server uses) on create (Jeff Layton) [591483]
3128 - [fs] cifs: remove unused parameter from cifs_posix_open_inode_helper() (Jeff Layton) [591483]
3129 - [fs] cifs: drop quota operation stubs (Jeff Layton) [591483]
3130 - [fs] cifs: Remove unused cifs_oplock_cachep (Jeff Layton) [591483]
3131 - [fs] cifs: Cleanup various minor breakage in previous cFYI cleanup (Jeff Layton) [591483]
3132 - [fs] cifs: Neaten cERROR and cFYI macros, reduce text space (Jeff Layton) [591483]
3133 - [fs] cifs: trivial white space (Jeff Layton) [591483]
3134 - [fs] cifs: use add_to_page_cache_lru (Jeff Layton) [591483]
3135 - [fs] cifs: not overwriting file_lock structure after GET_LK (Jeff Layton) [591483]
3136 - [fs] cifs: Fix a kernel BUG with remote OS/2 server (Jeff Layton) [591483]
3137 - [fs] cifs: initialize nbytes at the beginning of CIFSSMBWrite() (Jeff Layton) [591483]
3138 - [fs] cifs: back out patches that didn't make it upstream (Jeff Layton) [591483]
3139 - [fs] cifs: guard against hardlinking directories (Jeff Layton) [591229]
3140 - [pci] check caps from sysfs file open to read device dependent config space (Don Dutile) [559709]
3141 - [fs] sysfs: add struct file* to bin_attr callbacks (Don Dutile) [559709]
3142 - [ata] pata_via: fixup detection issues (David Milburn) [591074]
3143 - [security] keys: call_sbin_request_key() must write lock keyrings before modifying them (David Howells) [591891]
3144 - [security] keys: Use RCU dereference wrappers in keyring key type code (David Howells) [591891]
3145 - [security] keys: find_keyring_by_name() can gain access to a freed keyring (David Howells) [585101 591891] {CVE-2010-1437}
3146 - [security] keys: Fix RCU handling in key_gc_keyring() (David Howells) [591891]
3147 - [security] keys: the request_key() syscall should link an existing key to the dest keyring (David Howells) [591891]
3148 - [security] keys: don't need to use RCU in keyring_read() as semaphore is held (David Howells) [591891]
3149 - [security] keys: fix an RCU warning (David Howells) [591891]
3150 - [security] keys: PTR_ERR return of wrong pointer in keyctl_get_security() (David Howells) [591891]
3151 - [fs] CacheFiles: Fix error handling in cachefiles_determine_cache_security() (David Howells) [591894]
3152 - [fs] CacheFiles: Fix occasional EIO on call to vfs_unlink() (David Howells) [591894]
3153 - [fs] fs-cache: order the debugfs stats correctly (David Howells) [591894]
3154 - [fs] SLOW_WORK: CONFIG_SLOW_WORK_PROC should be CONFIG_SLOW_WORK_DEBUG (David Howells) [591894]
3155 - [fs] fscache: add missing unlock (David Howells) [591894]
3156 - [fs] FS-Cache: Remove the EXPERIMENTAL flag (David Howells) [591894]
3157 - [fs] CacheFiles: Fix a race in cachefiles_delete_object() vs rename (David Howells) [591894]
3158 - [fs] switch cachefiles to kern_path() (David Howells) [591894]
3159 - [fs] FS-Cache: Avoid maybe-used-uninitialised warning on variable (David Howells) [591894]
3160 - [net] bonding: make bonding support netpoll (Amerigo Wang) [587751]
3161 - [net] bridge: make bridge support netpoll (Amerigo Wang) [587751]
3162 - [net] netpoll: add generic support for bridge and bonding devices (Amerigo Wang) [587751]
3163 - [ppc64] Use lwarx/ldarx hint in bit locks (Steve Best) [594515]
3164 - [ppc64] 85xx: Make sure lwarx hint isn't set on ppc32 (Steve Best) [594515]
3165 - [ppc64] Use lwarx hint in spinlocks (Steve Best) [594515]
3166 - [fs] tmpfs: Insert tmpfs cache pages to inactive list at first (Rik van Riel) [595210]
3167 - [mm] vmscan: detect mapped file pages used only once (Rik van Riel) [595210]
3168 - [mm] vmscan: drop page_mapping_inuse() (Rik van Riel) [595210]
3169 - [mm] vmscan: factor out page reference checks (Rik van Riel) [595210]
3170 - [nfs] SUNRPC: Don't spam gssd with upcall requests when the kerberos key expired (Steve Dickson) [595478]
3171 - [nfs] SUNRPC: Reorder the struct rpc_task fields (Steve Dickson) [595478]
3172 - [nfs] SUNRPC: Remove the 'tk_magic' debugging field (Steve Dickson) [595478]
3173 - [nfs] SUNRPC: Move the task->tk_bytes_sent and tk_rtt to struct rpc_rqst (Steve Dickson) [595478]
3174 - [nfs] Don't call iput() in nfs_access_cache_shrinker (Steve Dickson) [595478]
3175 - [nfs] Clean up nfs_access_zap_cache() (Steve Dickson) [595478]
3176 - [nfs] Don't run nfs_access_cache_shrinker() when the mask is GFP_NOFS (Steve Dickson) [595478]
3177 - [nfs] SUNRPC: Ensure rpcauth_prune_expired() respects the nr_to_scan parameter (Steve Dickson) [595478]
3178 - [nfs] SUNRPC: Ensure memory shrinker doesn't waste time in rpcauth_prune_expired() (Steve Dickson) [595478]
3179 - [nfs] SUNRPC: Dont run rpcauth_cache_shrinker() when gfp_mask is GFP_NOFS (Steve Dickson) [595478]
3180 - [nfs] Read requests can use GFP_KERNEL (Steve Dickson) [595478]
3181 - [nfs] Clean up nfs_create_request() (Steve Dickson) [595478]
3182 - [nfs] Don't use GFP_KERNEL in rpcsec_gss downcalls (Steve Dickson) [595478]
3183 - [nfs] NFSv4: Don't use GFP_KERNEL allocations in state recovery (Steve Dickson) [595478]
3184 - [nfs] SUNRPC: Fix xs_setup_bc_tcp() (Steve Dickson) [595478]
3185 - [nfs] SUNRPC: Replace jiffies-based metrics with ktime-based metrics (Steve Dickson) [595478]
3186 - [kernel] ktime: introduce ktime_to_ms() (Steve Dickson) [595478]
3187 - [nfs] SUNRPC: RPC metrics and RTT estimator should use same RTT value (Steve Dickson) [595478]
3188 - [nfs] Calldata for nfs4_renew_done() (Steve Dickson) [595478]
3189 - [nfs] nfs4: renewd renew operations should take/put a client reference (Steve Dickson) [595478]
3190 - [nfs] Squelch compiler warning in nfs_add_server_stats() (Steve Dickson) [595478]
3191 - [nfs] Clean up fscache_uniq mount option (Steve Dickson) [595478]
3192 - [nfs] Squelch compiler warning (Steve Dickson) [595478]
3193 - [nfs] SUNRPC: Trivial cleanups in include/linux/sunrpc/xdr.h (Steve Dickson) [595478]
3194 - [nfs] NFSv4: Clean up the NFSv4 setclientid operation (Steve Dickson) [595478]
3195 - [nfs] NFSv4: Allow attribute caching with 'noac' mounts if client holds a delegation (Steve Dickson) [595478]
3196 - [nfs] SUNRPC: Fail over more quickly on connect errors (Steve Dickson) [595478]
3197 - [nfs] SUNRPC: Move the test for XPRT_CONNECTING into xprt_connect() (Steve Dickson) [595478]
3198 - [nfs] SUNRPC: Cleanup - make rpc_new_task() call rpc_release_calldata on failure (Steve Dickson) [595478]
3199 - [nfs] SUNRPC: Clean up xprt_release() (Steve Dickson) [595478]
3200 - [nfs] NFSv4: Fix up the documentation for nfs_do_refmount (Steve Dickson) [595478]
3201 - [nfs] Replace nfsroot on-stack filehandle (Steve Dickson) [595478]
3202 - [nfs] Cleanup file handle allocations in fs/nfs/super.c (Steve Dickson) [595478]
3203 - [nfs] Prevent the mount code from looping forever on broken exports (Steve Dickson) [595478]
3204 - [nfs] Reduce stack footprint of nfs3_proc_getacl() and nfs3_proc_setacl() (Steve Dickson) [595478]
3205 - [nfs] Reduce stack footprint of nfs_statfs() (Steve Dickson) [595478]
3206 - [nfs] Reduce stack footprint of nfs_setattr() (Steve Dickson) [595478]
3207 - [nfs] Reduce stack footprint of nfs4_proc_create() (Steve Dickson) [595478]
3208 - [nfs] Reduce the stack footprint of nfs_proc_symlink() (Steve Dickson) [595478]
3209 - [nfs] Reduce the stack footprint of nfs_proc_create (Steve Dickson) [595478]
3210 - [nfs] Reduce the stack footprint of nfs_rmdir (Steve Dickson) [595478]
3211 - [nfs] Reduce stack footprint of nfs_proc_remove() (Steve Dickson) [595478]
3212 - [nfs] Reduce stack footprint of nfs3_proc_readlink() (Steve Dickson) [595478]
3213 - [nfs] Reduce the stack footprint of nfs_link() (Steve Dickson) [595478]
3214 - [nfs] Reduce stack footprint of nfs_readdir() (Steve Dickson) [595478]
3215 - [nfs] Reduce stack footprint of nfs3_proc_rename() and nfs4_proc_rename() (Steve Dickson) [595478]
3216 - [nfs] Reduce stack footprint of nfs_revalidate_inode() (Steve Dickson) [595478]
3217 - [nfs] NFSv4: Reduce stack footprint of nfs4_proc_access() and nfs3_proc_access() (Steve Dickson) [595478]
3218 - [nfs] NFSv4: Reduce the stack footprint of nfs4_remote_referral_get_sb (Steve Dickson) [595478]
3219 - [nfs] NFSv4: Reduce stack footprint of nfs4_get_root() (Steve Dickson) [595478]
3220 - [nfs] Reduce the stack footprint of nfs_follow_remote_path() (Steve Dickson) [595478]
3221 - [nfs] Reduce the stack footprint of nfs_lookup (Steve Dickson) [595478]
3222 - [nfs] NFSv4: Reduce the stack footprint of try_location() (Steve Dickson) [595478]
3223 - [nfs] Reduce the stack footprint of nfs_create_server (Steve Dickson) [595478]
3224 - [nfs] Reduce the stack footprint of nfs_follow_mountpoint() (Steve Dickson) [595478]
3225 - [nfs] NFSv4: Eliminate nfs4_path_walk() (Steve Dickson) [595478]
3226 - [nfs] Add helper functions for allocating filehandles and fattr structs (Steve Dickson) [595478]
3227 - [nfs] NFSv4: Fix the locking in nfs_inode_reclaim_delegation() (Steve Dickson) [595478]
3228 - [nfs] fix memory leak in nfs_get_sb with CONFIG_NFS_V4 (Steve Dickson) [595478]
3229 - [nfs] fix some issues in nfs41_proc_reclaim_complete() (Steve Dickson) [595478]
3230 - [nfs] Ensure that nfs_wb_page() waits for Pg_writeback to clear (Steve Dickson) [595478]
3231 - [nfs] Fix an unstable write data integrity race (Steve Dickson) [595478]
3232 - [nfs] testing for null instead of ERR_PTR() (Steve Dickson) [595478]
3233 - [nfs] NFSv4: Don't attempt an atomic open if the file is a mountpoint (Steve Dickson) [595478]
3234 - [nfs] SUNRPC: Fix a bug in rpcauth_prune_expired (Steve Dickson) [595478]
3235 - [nfs] NFSv4: fix delegated locking (Steve Dickson) [595478]
3236 - [nfs] Ensure that the WRITE and COMMIT RPC calls are always uninterruptible (Steve Dickson) [595478]
3237 - [nfs] Fix a race with the new commit code (Steve Dickson) [595478]
3238 - [nfs] Fix the mode calculation in nfs_find_open_context (Steve Dickson) [595478]
3239 - [nfs] NFSv4: Fall back to ordinary lookup if nfs4_atomic_open() returns EISDIR (Steve Dickson) [595478]
3240 - [nfs] SUNRPC: Fix the return value of rpc_run_bc_task() (Steve Dickson) [595478]
3241 - [nfs] SUNRPC: Fix a use after free bug with the NFSv4.1 backchannel (Steve Dickson) [595478]
3242 - [nfs] ensure bdi_unregister is called on mount failure (Steve Dickson) [595478]
3243 - [nfs] fix unlikely memory leak (Steve Dickson) [595478]
3244 - [nfs] nfs41: renewd sequence operations should take/put client reference (Steve Dickson) [595478]
3245 - [nfs] prevent backlogging of renewd requests (Steve Dickson) [595478]
3246 - [nfs] rpc client can not deal with ENOSOCK, so translate it into ENOCONN (Steve Dickson) [595478]
3247
3248 * Tue May 25 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-30.el6]
3249 - [perf] sync tools/perf to 2.6.34 (Jason Baron) [578987]
3250 - [drm] i915: Update to 2.6.34-rc7 (Adam Jackson) [592003]
3251 - [perf] userspace and core update fix (Jason Baron) [567828 578987]
3252 - [perf] rhel6 perf fixups (Jason Baron) [567828 578987]
3253 - [perf] backport latest core perf support (Jason Baron) [567828 578987]
3254 - [perf] pull back 'perf' userspace (Jason Baron) [567828 578987]
3255 - [drm] radeon/kms: report lvds status as unknown with closed lid (Jerome Glisse) [585111 591628]
3256 - [drm] fbdev: fix cloning on fbcon (Dave Airlie) [512023]
3257 - [drm] fbcon disconnected + hotplug operation (Jerome Glisse) [580789]
3258 - [kernel] slow-work: use get_ref wrapper instead of directly calling get_ref (Dave Airlie) [580789]
3259 - [drm] radeon/kms: add special workaround for triple head servers (Dave Airlie) [512023]
3260 - [infiniband] RDMA: Use rlimit helpers (Doug Ledford) [500229]
3261 - [infiniband] ipoib: returned back addrlen check for mc addresses (Doug Ledford) [500229]
3262 - [infiniband] RDMA/amso1100: Fix error paths in post_send and post_recv (Doug Ledford) [500229]
3263 - [infiniband] IB/srp: Clean up error path in srp_create_target_ib() (Doug Ledford) [500229]
3264 - [infiniband] IB/srp: Split send and recieve CQs to reduce number of interrupts (Doug Ledford) [500229]
3265 - [infiniband] rdma: potential ERR_PTR dereference (Doug Ledford) [500229]
3266 - [infiniband] RDMA/cm: Set num_paths when manually assigning path records (Doug Ledford) [500229]
3267 - [infiniband] IB/cm: Fix device_create() return value check (Doug Ledford) [500229]
3268 - [infiniband] IB/ucm: Clean whitespace errors (Doug Ledford) [500229]
3269 - [infiniband] IB/ucm: Increase maximum devices supported (Doug Ledford) [500229]
3270 - [infiniband] IB/ucm: Use stack variable 'base' in ib_ucm_add_one (Doug Ledford) [500229]
3271 - [infiniband] IB/ucm: Use stack variable 'devnum' in ib_ucm_add_one (Doug Ledford) [500229]
3272 - [infiniband] RDMA/cm: Remove unused definition of RDMA_PS_SCTP (Doug Ledford) [500229]
3273 - [infiniband] RDMA/cm: Revert association of an RDMA device when binding to loopback (Doug Ledford) [500229]
3274 - [infiniband] IB/addr: Correct CONFIG_IPv6 to CONFIG_IPV6 (Doug Ledford) [500229]
3275 - [infiniband] IB/addr: Fix IPv6 routing lookup (Doug Ledford) [500229]
3276 - [infiniband] IB/addr: Simplify resolving IPv4 addresses (Doug Ledford) [500229]
3277 - [infiniband] RDMA/cm: fix loopback address support (Doug Ledford) [500229]
3278 - [infiniband] IB/addr: Store net_device type instead of translating to RDMA transport (Doug Ledford) [500229]
3279 - [infiniband] IB/addr: Verify source and destination address families match (Doug Ledford) [500229]
3280 - [infiniband] RDMA/cma: Replace net_device pointer with index (Doug Ledford) [500229]
3281 - [infiniband] RDMA/cma: Fix AF_INET6 support in multicast joining (Doug Ledford) [500229]
3282 - [infiniband] RDMA/cma: Correct detection of SA Created MGID (Doug Ledford) [500229]
3283 - [infiniband] RDMA/addr: Use appropriate locking with for_each_netdev() (Doug Ledford) [500229]
3284 - [infiniband] RDMA/ucma: Add option to manually set IB path (Doug Ledford) [500229]
3285 - [infiniband] IB/mad: Ignore iWARP devices on device removal (Doug Ledford) [500229]
3286 - [infiniband] IB/umad: Clean whitespace (Doug Ledford) [500229]
3287 - [infiniband] IB/umad: Increase maximum devices supported (Doug Ledford) [500229]
3288 - [infiniband] IB/umad: Use stack variable 'base' in ib_umad_init_port (Doug Ledford) [500229]
3289 - [infiniband] IB/umad: Use stack variable 'devnum' in ib_umad_init_port (Doug Ledford) [500229]
3290 - [infiniband] IB/umad: Remove port_table[] (Doug Ledford) [500229]
3291 - [infiniband] IB/umad: Convert *cdev to cdev in struct ib_umad_port (Doug Ledford) [500229]
3292 - [infiniband] IB/uverbs: Use anon_inodes instead of private infinibandeventfs (Doug Ledford) [500229]
3293 - [infiniband] IB/core: Fix and clean up ib_ud_header_init() (Doug Ledford) [500229]
3294 - [infiniband] IB/core: Pack struct ib_device a little tighter (Doug Ledford) [500229]
3295 - [infiniband] IB/uverbs: Whitespace cleanup (Doug Ledford) [500229]
3296 - [infiniband] IB/uverbs: Pack struct ib_uverbs_event_file tighter (Doug Ledford) [500229]
3297 - [infiniband] IB/uverbs: Increase maximum devices supported (Doug Ledford) [500229]
3298 - [infiniband] IB/uverbs: use stack variable 'base' in ib_uverbs_add_one (Doug Ledford) [500229]
3299 - [infiniband] IB/uverbs: Use stack variable 'devnum' in ib_uverbs_add_one (Doug Ledford) [500229]
3300 - [infiniband] IB/uverbs: Remove dev_table (Doug Ledford) [500229]
3301 - [infiniband] IB/uverbs: Convert *cdev to cdev in struct ib_uverbs_device (Doug Ledford) [500229]
3302 - [infiniband] IB/uverbs: Fix return of PTR_ERR() of wrong pointer in ib_uverbs_get_context() (Doug Ledford) [500229]
3303 - [infiniband] IB: Clarify the documentation of ib_post_send() (Doug Ledford) [500229]
3304 - [infiniband] IB/ehca: Allow access for ib_query_qp() (Doug Ledford) [500229]
3305 - [infiniband] IB/ehca: Do not turn off irqs in tasklet context (Doug Ledford) [500229]
3306 - [infiniband] IB/ehca: Fix error paths in post_send and post_recv (Doug Ledford) [500229]
3307 - [infiniband] IB/ehca: Rework destroy_eq() (Doug Ledford) [500229]
3308 - [infiniband] IPoIB: Include return code in trace message for ib_post_send() failures (Doug Ledford) [500229]
3309 - [infiniband] IPoIB: Fix TX queue lockup with mixed UD/CM traffic (Doug Ledford) [500229]
3310 - [infiniband] IPoIB: Remove TX moderation settings from ethtool support (Doug Ledford) [500229]
3311 - [infiniband] IB/ipath: Use bitmap_weight() (Doug Ledford) [500229]
3312 - [infiniband] Remove BKL from ipath_open() (Doug Ledford) [500229]
3313 - [rds] remove uses of NIPQUAD, use pI4 (Doug Ledford) [500229]
3314 - [rds] RDS/IB+IW: Move recv processing to a tasklet (Doug Ledford) [500229]
3315 - [rds] Do not send congestion updates to loopback connections (Doug Ledford) [500229]
3316 - [rds] Fix panic on unload (Doug Ledford) [500229]
3317 - [rds] Fix potential race around rds_i[bw]_allocation (Doug Ledford) [500229]
3318 - [rds] Add GET_MR_FOR_DEST sockopt (Doug Ledford) [500229]
3319 - [infiniband] IB/mlx4: Check correct variable for allocation failure (Doug Ledford) [500229]
3320 - [infiniband] mlx4: replace the dma_sync_single_range_for_cpu/device API (Doug Ledford) [500229]
3321 - [infiniband] IB/mlx4: Simplify retrieval of ib_device (Doug Ledford) [500229]
3322 - [infiniband] mlx4_core: Fix cleanup in __mlx4_init_one() error path (Doug Ledford) [500229]
3323 - [infiniband] IB/mlx4: Fix queue overflow check in post_recv (Doug Ledford) [500229]
3324 - [infiniband] IB/mlx4: Initialize SRQ scatter entries when creating an SRQ (Doug Ledford) [500229]
3325 - [infiniband] mlx4: use bitmap_find_next_zero_area (Doug Ledford) [500229]
3326 - [infiniband] mlx4_core: return a negative error value (Doug Ledford) [500229]
3327 - [infiniband] mlx4_core: Fix parsing of reserved EQ cap (Doug Ledford) [500229]
3328 - [infiniband] IB/mlx4: Remove limitation on LSO header size (Doug Ledford) [500229]
3329 - [infiniband] IB/mlx4: Remove unneeded code (Doug Ledford) [500229]
3330 - [infiniband] RDMA/nes: Correct cap.max_inline_data assignment in nes_query_qp() (Doug Ledford) [500229]
3331 - [infiniband] RDMA/nes: Fix CX4 link problem in back-to-back configuration (Doug Ledford) [500229]
3332 - [infiniband] RDMA/nes: Clear stall bit before destroying NIC QP (Doug Ledford) [500229]
3333 - [infiniband] RDMA/nes: Set assume_aligned_header bit (Doug Ledford) [500229]
3334 - [infiniband] convert to use netdev_for_each_mc_addr (Doug Ledford) [500229]
3335 - [infiniband] RDMA/nes: Add support for KR device id 0x0110 (Doug Ledford) [500229]
3336 - [infiniband] RDMA/nes: Change WQ overflow return code (Doug Ledford) [500229]
3337 - [infiniband] RDMA/nes: Multiple disconnects cause crash during AE handling (Doug Ledford) [500229]
3338 - [infiniband] RDMA/nes: Fix crash when listener destroyed during loopback setup (Doug Ledford) [500229]
3339 - [infiniband] RDMA/nes: Use atomic counters for CM listener create and destroy (Doug Ledford) [500229]
3340 - [infiniband] RDMA/nes: Fix stale ARP issue (Doug Ledford) [500229]
3341 - [infiniband] RDMA/nes: FIN during MPA startup causes timeout (Doug Ledford) [500229]
3342 - [infiniband] RDMA/nes: Free kmap() resources (Doug Ledford) [500229]
3343 - [infiniband] RDMA/nes: Check for zero STag (Doug Ledford) [500229]
3344 - [infiniband] RDMA/nes: Fix Xansation test crash on cm_node ref_count (Doug Ledford) [500229]
3345 - [infiniband] RDMA/nes: Abnormal listener exit causes loopback node crash (Doug Ledford) [500229]
3346 - [infiniband] RDMA/nes: Fix crash in nes_accept() (Doug Ledford) [500229]
3347 - [infiniband] RDMA/nes: Resource not freed for REJECTed connections (Doug Ledford) [500229]
3348 - [infiniband] RDMA/nes: MPA request/response error checking (Doug Ledford) [500229]
3349 - [infiniband] RDMA/nes: Fix query of ORD values (Doug Ledford) [500229]
3350 - [infiniband] RDMA/nes: Fix MAX_CM_BUFFER define (Doug Ledford) [500229]
3351 - [infiniband] RDMA/nes: Pass correct size to ioremap_nocache() (Doug Ledford) [500229]
3352 - [infiniband] RDMA/nes: Update copyright and branding string (Doug Ledford) [500229]
3353 - [infiniband] RDMA/nes: Add max_cqe check to nes_create_cq() (Doug Ledford) [500229]
3354 - [infiniband] RDMA/nes: Clean up struct nes_qp (Doug Ledford) [500229]
3355 - [infiniband] RDMA/nes: Implement IB_SIGNAL_ALL_WR as an iWARP extension (Doug Ledford) [500229]
3356 - [infiniband] RDMA/nes: Add additional SFP+ PHY uC status check and PHY reset (Doug Ledford) [500229]
3357 - [infiniband] RDMA/nes: Correct fast memory registration implementation (Doug Ledford) [500229]
3358 - [infiniband] RDMA/nes: Add support for IB_WR_*INV (Doug Ledford) [500229]
3359 - [infiniband] RDMA/nes: In nes_post_recv() always set bad_wr on error (Doug Ledford) [500229]
3360 - [infiniband] RDMA/nes: In nes_post_send() always set bad_wr on error (Doug Ledford) [500229]
3361 - [netdrv] cxgb3: fix linkup issue (Doug Ledford) [500229]
3362 - [netdrv] RDMA/cxgb3: Wait at least one schedule cycle during device removal (Doug Ledford) [500229]
3363 - [netdrv] cxgb3: fix hot plug removal crash (Doug Ledford) [500229]
3364 - [netdrv] RDMA/cxgb3: Mark RDMA device with CXIO_ERROR_FATAL when removing (Doug Ledford) [500229]
3365 - [netdrv] RDMA/cxgb3: Don't allocate the SW queue for user mode CQs (Doug Ledford) [500229]
3366 - [netdrv] RDMA/cxgb3: Increase the max CQ depth (Doug Ledford) [500229]
3367 - [netdrv] RDMA/cxgb3: Doorbell overflow avoidance and recovery (Doug Ledford) [500229]
3368 - [netdrv] cxgb3: convert to use netdev_for_each_addr (Doug Ledford) [500229]
3369 - [netdrv] cxgb3: fix link flap (Doug Ledford) [500229]
3370 - [netdrv] cxgb3: FIx VLAN over Jumbo frames (Doug Ledford) [500229]
3371 - [netdrv] RDMA/cxgb3: Remove BUG_ON() on CQ rearm failure (Doug Ledford) [500229]
3372 - [netdrv] cxgb3: fix GRO checksum check (Doug Ledford) [500229]
3373 - [netdrv] cxgb3: add memory barriers (Doug Ledford) [500229]
3374 - [netdrv] iwch_cm.c: use pM to show MAC address (Doug Ledford) [500229]
3375 - [netdrv] cxgb3: Use kzalloc for allocating only one thing (Doug Ledford) [500229]
3376 - [netdrv] RDMA/cxgb3: Fix error paths in post_send and post_recv (Doug Ledford) [500229]
3377 - [netdrv] cxgb3: declare MODULE_FIRMWARE (Doug Ledford) [500229]
3378 - [netdrv] cxgb3: Set the rxq (Doug Ledford) [500229]
3379 - [netdrv] cxgb3: No need to wake queue in xmit handler (Doug Ledford) [500229]
3380 - [netdrv] cxgb3: Added private MAC address and provisioning packet handler for iSCSI (Doug Ledford) [500229]
3381 - [net] Hook up cxgb4 to Kconfig and Makefile (Doug Ledford) [500229]
3382 - [netdrv] cxgb4: Add remaining driver headers and L2T management (Doug Ledford) [500229]
3383 - [netdrv] cxgb4: Add main driver file and driver Makefile (Doug Ledford) [500229]
3384 - [netdrv] cxgb4: Add HW and FW support code (Doug Ledford) [500229]
3385 - [netdrv] cxgb4: Add packet queues and packet DMA code (Doug Ledford) [500229]
3386 - [netdrv] cxgb4: Add register, message, and FW definitions (Doug Ledford) [500229]
3387 - [net] use helpers to access mc list (Doug Ledford) [500229]
3388 - [net] use helpers to access uc list (Doug Ledford) [500229]
3389 - [kernel] strstrip incorrectly marked __must_check (Doug Ledford) [500229]
3390 - [pci] introduce pci_pcie_cap() (Doug Ledford) [500229]
3391 - [pci] cache PCIe capability offset (Doug Ledford) [500229]
3392 - [kernel] bitmap: introduce bitmap_set, bitmap_clear, bitmap_find_next_zero_area (Doug Ledford) [500229]
3393 - [md] Remove unnecessary casts of void * (Doug Ledford) [583050 586296 586299 588371]
3394 - [md] expose max value of behind writes counter (Doug Ledford) [583050 586296 586299 588371]
3395 - [md] remove some dead fields from mddev_s (Doug Ledford) [583050 586296 586299 588371]
3396 - [md] allow integers to be passed to md/level (Doug Ledford) [583050 586296 586299 588371]
3397 - [md] notify mdstat waiters of level change (Doug Ledford) [583050 586296 586299 588371]
3398 - [md] don't unregister the thread in mddev_suspend (Doug Ledford) [583050 586296 586299 588371]
3399 - [md] factor out init code for an mddev (Doug Ledford) [583050 586296 586299 588371]
3400 - [md] pass mddev to make_request functions rather than request_queue (Doug Ledford) [583050 586296 586299 588371]
3401 - [md] call md_stop_writes from md_stop (Doug Ledford) [583050 586296 586299 588371]
3402 - [md] split md_set_readonly out of do_md_stop (Doug Ledford) [583050 586296 586299 588371]
3403 - [md] factor md_stop_writes out of do_md_stop (Doug Ledford) [583050 586296 586299 588371]
3404 - [md] start to refactor do_md_stop (Doug Ledford) [583050 586296 586299 588371]
3405 - [md] factor do_md_run to separate accesses to ->gendisk (Doug Ledford) [583050 586296 586299 588371]
3406 - [md] remove ->changed and related code (Doug Ledford) [583050 586296 586299 588371]
3407 - [md] don't reference gendisk in getgeo (Doug Ledford) [583050 586296 586299 588371]
3408 - [md] move io accounting out of personalities into md_make_request (Doug Ledford) [583050 586296 586299 588371]
3409 - [md] notify level changes through sysfs (Doug Ledford) [583050 586296 586299 588371]
3410 - [md] Relax checks on ->max_disks when external metadata handling is used (Doug Ledford) [583050 586296 586299 588371]
3411 - [md] Correctly handle device removal via sysfs (Doug Ledford) [583050 586296 586299 588371]
3412 - [md] Add support for Raid5->Raid0 and Raid10->Raid0 takeover (Doug Ledford) [583050 586296 586299 588371]
3413 - [md] Add support for Raid0->Raid5 takeover (Doug Ledford) [583050 586296 586299 588371]
3414 - [md] discard StateChanged device flag (Doug Ledford) [583050 586296 586299 588371]
3415 - [md] manage redundancy group in sysfs when changing level (Doug Ledford) [583050 586296 586299 588371]
3416 - [md] remove unneeded sysfs files more promptly (Doug Ledford) [583050 586296 586299 588371]
3417 - [md] set mddev readonly flag on blkdev BLKROSET ioctl (Doug Ledford) [583050 586296 586299 588371]
3418 - [md] don't insist on valid event count for spare devices (Doug Ledford) [583050 586296 586299 588371]
3419 - [md] simplify updating of event count to sometimes avoid updating spares (Doug Ledford) [583050 586296 586299 588371]
3420 - [md] restore ability of spare drives to spin down (Doug Ledford) [583050 586296 586299 588371]
3421 - [md] raid6: Fix raid-6 read-error correction in degraded state (Doug Ledford) [583050 586296 586299 588371]
3422 - [md] raid5: allow for more than 2^31 chunks (Doug Ledford) [583050 586296 586299 588371]
3423 - [md] deal with merge_bvec_fn in component devices better (Doug Ledford) [583050 586296 586299 588371]
3424 - [md] fix some lockdep issues between md and sysfs (Doug Ledford) [583050 586296 586299 588371]
3425 - [md] fix 'degraded' calculation when starting a reshape (Doug Ledford) [583050 586296 586299 588371]
3426 - [md] allow a resync that is waiting for other resync to complete, to be aborted (Doug Ledford) [583050 586296 586299 588371]
3427 - [md] remove unnecessary code from do_md_run (Doug Ledford) [583050 586296 586299 588371]
3428 - [md] make recovery started by do_md_run() visible via sync_action (Doug Ledford) [583050 586296 586299 588371]
3429 - [md] use pU to print UUIDs (Doug Ledford) [583050 586296 586299 588371]
3430 - [md] add 'recovery_start' per-device sysfs attribute (Doug Ledford) [583050 586296 586299 588371]
3431 - [md] rcu_read_lock() walk of mddev->disks in md_do_sync() (Doug Ledford) [583050 586296 586299 588371]
3432 - [md] integrate spares into array at earliest opportunity (Doug Ledford) [583050 586296 586299 588371]
3433 - [md] move compat_ioctl handling into md.c (Doug Ledford) [583050 586296 586299 588371]
3434 - [md] add MODULE_DESCRIPTION for all md related modules (Doug Ledford) [583050 586296 586299 588371]
3435 - [md] raid: improve MD/raid10 handling of correctable read errors (Doug Ledford) [583050 586296 586299 588371]
3436 - [md] raid10: print more useful messages on device failure (Doug Ledford) [583050 586296 586299 588371]
3437 - [md] bitmap: update dirty flag when bitmap bits are explicitly set (Doug Ledford) [583050 586296 586299 588371]
3438 - [md] Support write-intent bitmaps with externally managed metadata (Doug Ledford) [583050 586296 586299 588371]
3439 - [md] bitmap: move setting of daemon_lastrun out of bitmap_read_sb (Doug Ledford) [583050 586296 586299 588371]
3440 - [md] support updating bitmap parameters via sysfs (Doug Ledford) [583050 586296 586299 588371]
3441 - [md] factor out parsing of fixed-point numbers (Doug Ledford) [583050 586296 586299 588371]
3442 - [md] support bitmap offset appropriate for external-metadata arrays (Doug Ledford) [583050 586296 586299 588371]
3443 - [md] remove needless setting of thread->timeout in raid10_quiesce (Doug Ledford) [583050 586296 586299 588371]
3444 - [md] change daemon_sleep to be in 'jiffies' rather than 'seconds' (Doug Ledford) [583050 586296 586299 588371]
3445 - [md] move offset, daemon_sleep and chunksize out of bitmap structure (Doug Ledford) [583050 586296 586299 588371]
3446 - [md] collect bitmap-specific fields into one structure (Doug Ledford) [583050 586296 586299 588371]
3447 - [md] add honouring of suspend_{lo,hi} to raid1 (Doug Ledford) [583050 586296 586299 588371]
3448 - [md] raid5: don't complete make_request on barrier until writes are scheduled (Doug Ledford) [583050 586296 586299 588371]
3449 - [md] support barrier requests on all personalities (Doug Ledford) [583050 586296 586299 588371]
3450 - [md] don't reset curr_resync_completed after an interrupted resync (Doug Ledford) [583050 586296 586299 588371]
3451 - [md] adjust resync_min usefully when resync aborts (Doug Ledford) [583050 586296 586299 588371]
3452
3453 * Mon May 24 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-29.el6]
3454 - [mm] fix mm_take_all_locks regression in 3-7/49 (Andrea Arcangeli) [556572]
3455 - [mm] avoid __cpuset_node_allowed_softwall to run when allocation is atomic (Andrea Arcangeli) [556572 591283]
3456 - [mm] fix race between do_huge_pmd_anonymous_page and pte_alloc_map (Andrea Arcangeli) [556572]
3457 - [mm] add missing update for root-anon-vma drop_anon_vma in memory compactation (Andrea Arcangeli) [556572]
3458 - [mm] exec vs split_huge_page (Andrea Arcangeli) [556572]
3459 - [mm] include anon hugepages into the anon stats (Andrea Arcangeli) [556572]
3460 - [mm] split_huge_page anon_vma ordering dependency (Andrea Arcangeli) [556572]
3461 - [mm] align page_add_new_anon_rmap (Andrea Arcangeli) [556572]
3462 - [mm] do_pages_move cannot handle hugepages (Andrea Arcangeli) [556572]
3463 - [mm] padding to decrease risk of kabi breakage (Andrea Arcangeli) [556572]
3464 - [mm] transhuge isolate_migratepages() (Andrea Arcangeli) [556572]
3465 - [mm] select CONFIG_COMPACTION if TRANSPARENT_HUGEPAGE enabled (Andrea Arcangeli) [556572]
3466 - [mm] compaction: Do not schedule work on other CPUs for compaction (Andrea Arcangeli) [556572]
3467 - [mm] Defer compaction using an exponential backoff when compaction fails (Andrea Arcangeli) [556572]
3468 - [mm] Add a tunable that decides when memory should be compacted and when it should be reclaimed (Andrea Arcangeli) [556572]
3469 - [mm] Direct compact when a high-order allocation fails (Andrea Arcangeli) [556572]
3470 - [mm] Add /sys trigger for per-node memory compaction (Andrea Arcangeli) [556572]
3471 - [mm] Add /proc trigger for memory compaction (Andrea Arcangeli) [556572]
3472 - [mm] Memory compaction core (Andrea Arcangeli) [556572]
3473 - [mm] Move definition for LRU isolation modes to a header (Andrea Arcangeli) [556572]
3474 - [mm] Export fragmentation index via /proc/extfrag_index (Andrea Arcangeli) [556572]
3475 - [mm] Export unusable free space index via /proc/unusable_index (Andrea Arcangeli) [556572]
3476 - [mm] Allow CONFIG_MIGRATION to be set without CONFIG_NUMA or memory hot-remove (Andrea Arcangeli) [556572]
3477 - [mm] Allow the migration of PageSwapCache pages (Andrea Arcangeli) [556572]
3478 - [mm] Do not try to migrate unmapped anonymous pages (Andrea Arcangeli) [556572]
3479 - [mm] Share the anon_vma ref counts between KSM and page migration (Andrea Arcangeli) [556572]
3480 - [mm] Take a reference to the anon_vma before migrating (Andrea Arcangeli) [556572]
3481 - [mm] add numa awareness to hugepage allocations (Andrea Arcangeli) [556572]
3482 - [mm] enable direct defrag (Andrea Arcangeli) [556572]
3483 - [mm] ksm: check for ERR_PTR from follow_page() (Andrea Arcangeli) [556572]
3484 - [mm] err.h: add helper function to simplify pointer error checking (Andrea Arcangeli) [556572]
3485 - [mm] don't leave orhpaned swap cache after ksm merging (Andrea Arcangeli) [556572]
3486 - [mm] adapt to anon-vma root locking (Andrea Arcangeli) [556572]
3487 - [mm] set default to never (Andrea Arcangeli) [556572]
3488 - [mm] transparent hugepage bootparam (Andrea Arcangeli) [556572]
3489 - [mm] remove lumpy reclaim (Andrea Arcangeli) [556572 583003]
3490 - [mm] memcg fix prepare migration (Andrea Arcangeli) [556572]
3491 - [mm] avoid false positive warning in mmio (Andrea Arcangeli) [556572]
3492 - [virt] fix kvm swapping memory corruption (Andrea Arcangeli) [556572 583861]
3493 - [mm] remove khugepaged/enabled (Andrea Arcangeli) [556572]
3494 - [mm] use only khugepaged_wait (Andrea Arcangeli) [556572]
3495 - [mm] khugepaged user stack (Andrea Arcangeli) [556572]
3496 - [mm] define hugetlb_page (Andrea Arcangeli) [556572]
3497 - [mm] migration: avoid race between shift_arg_pages() and rmap_walk() during migration by not migrating temporary stacks (Andrea Arcangeli) [556572]
3498 - [mm] extend KSM refcounts to the anon_vma root (Andrea Arcangeli) [556572]
3499 - [mm] always lock the root (oldest) anon_vma (Andrea Arcangeli) [556572]
3500 - [mm] track the root (oldest) anon_vma (Andrea Arcangeli) [556572]
3501 - [mm] change direct call of spin_lock(anon_vma->lock) to inline function (Andrea Arcangeli) [556572]
3502 - [mm] rename anon_vma_lock to vma_lock_anon_vma (Andrea Arcangeli) [556572]
3503 - [mm] rmap: remove anon_vma check in page_address_in_vma() (Andrea Arcangeli) [556572]
3504 - [mm] mmap: check ->vm_ops before dereferencing (Andrea Arcangeli) [556572]
3505 - [fs] xfs_export_operations.commit_metadata (Christoph Hellwig) [585442]
3506 - [fs] xfs: fix inode pincount check in fsync (Christoph Hellwig) [585442]
3507 - [fs] xfs: miscellaneous fixes from 2.6.34 (Dave Chinner) [585442]
3508 - [fs] xfs: reserved block pool and ENOSPC fixes from 2.6.34 (Dave Chinner) [542712 585442]
3509 - [fs] xfs: delayed write metadata from 2.6.34 (Dave Chinner) [585442]
3510 - [lib] introduce list_sort (Dave Chinner) [585442]
3511 - [fs] xfs: log fixes from 2.6.34 (Dave Chinner) [585442]
3512 - [fs] xfs: quota changes from 2.6.34 (Dave Chinner) [585442]
3513 - [fs] xfs: buffer API cleanups from 2.6.34 (Dave Chinner) [585442]
3514 - [fs] xfs: AG indexing fixes from 2.6.34 (Dave Chinner) [585442]
3515 - [fs] xfs: idle kernel thread fixes from 2.6.34 (Dave Chinner) [585442]
3516 - [fs] online defrag fixes from 2.6.34 (Dave Chinner) [585442]
3517 - [fs] jbd2: delay discarding buffers in journal_unmap_buffer (Eric Sandeen) [593082]
3518 - [fs] ext4: Use slab allocator for sub-page sized allocations (Eric Sandeen) [593082]
3519 - [fs] jbd2: don't use __GFP_NOFAIL in journal_init_common() (Eric Sandeen) [593082]
3520 - [fs] jbd: jbd-debug and jbd2-debug should be writable (Eric Sandeen) [593082]
3521 - [fs] ext4: Fixed inode allocator to correctly track a flex_bg's used_dirs (Eric Sandeen) [593082]
3522 - [fs] ext4: Fix estimate of # of blocks needed to write indirect-mapped files (Eric Sandeen) [593082]
3523 - [fs] ext4: fix up rb_root initializations to use RB_ROOT (Eric Sandeen) [593082]
3524 - [fs] ext4: Release page references acquired in ext4_da_block_invalidatepages (Eric Sandeen) [593082]
3525 - [fs] ext4: make "offset" consistent in ext4_check_dir_entry() (Eric Sandeen) [593082]
3526 - [fs] ext4: Convert BUG_ON checks to use ext4_error() instead (Eric Sandeen) [593082]
3527 - [fs] ext4: Handle non empty on-disk orphan link (Eric Sandeen) [593082]
3528 - [fs] ext4: explicitly remove inode from orphan list after failed direct io (Eric Sandeen) [593082]
3529 - [fs] ext4: Fix fencepost error in chosing choosing group vs file preallocation (Eric Sandeen) [593082]
3530 - [fs] ext4: Fix BUG_ON at fs/buffer.c:652 in no journal mode (Eric Sandeen) [593082]
3531 - [fs] ext4: correctly calculate number of blocks for fiemap (Eric Sandeen) [593082]
3532 - [fs] ext4: add missing error checking to ext4_expand_extra_isize_ea() (Eric Sandeen) [593082]
3533 - [fs] ext4: move __func__ into a macro for ext4_warning, ext4_error (Eric Sandeen) [593082]
3534 - [fs] ext4: Use bitops to read/modify EXT4_I(inode)->i_state (Eric Sandeen) [593082]
3535 - [fs] ext4: Drop EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE flag (Eric Sandeen) [593082]
3536 - [fs] ext4: return correct wbc.nr_to_write in ext4_da_writepages (Eric Sandeen) [593082]
3537 - [fs] ext4: replace BUG() with return -EIO in ext4_ext_get_blocks (Eric Sandeen) [593082]
3538 - [virt] KVM SVM Implement workaround for Erratum 383 (Bhavna Sarathy) [592311]
3539 - [virt] KVM SVM Handle MCEs early in the vmexit process (Bhavna Sarathy) [592311]
3540 - [usb] serial: ftdi: add CONTEC vendor and product id (Stanislaw Gruszka) [584757]
3541 - [usb] fix usbfs regression (Stanislaw Gruszka) [584757]
3542 - [usb] add new ftdi_sio device ids (Stanislaw Gruszka) [580067]
3543 - [usb] ftdi_sio: add device IDs (several ELV, one Mindstorms NXT) (Stanislaw Gruszka) [580067]
3544 - [usb] ftdi_sio: new device id for papouch AD4USB (Stanislaw Gruszka) [580067]
3545 - [v4l] gspca_mr973010a: Fix cif type 1 cameras not streaming on UHCI controllers (Stanislaw Gruszka) [580067]
3546 - [v4l] DVB: Add support for Asus Europa Hybrid DVB-T card (Stanislaw Gruszka) [580063]
3547 - [usb] mos7840: add device IDs for B&B electronics devices (Stanislaw Gruszka) [580063]
3548 - [ppc64] fsl: Add PCI device ids for new QoirQ chips (Stanislaw Gruszka) [580063]
3549 - [fs] vfs: Fix vmtruncate() regression (Stanislaw Gruszka) [579693]
3550 - [kernel] sched: Fix task priority bug (Stanislaw Gruszka) [579693]
3551 - [serial] 8250_pnp: add a new Fujitsu Wacom Tablet PC device (Stanislaw Gruszka) [579693]
3552 - [i2c] pca: Don't use *_interruptible (Stanislaw Gruszka) [579693]
3553 - [i2c] Do not use device name after device_unregister (Stanislaw Gruszka) [579693]
3554 - [kernel] sched: Fix cpu_clock() in NMIs, on !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK (Stanislaw Gruszka) [579693]
3555 - [hid] add device IDs for new model of Apple Wireless Keyboard (Stanislaw Gruszka) [579693]
3556 - [v4l] gspca: sn9c20x: Fix test of unsigned (Stanislaw Gruszka) [579693]
3557 - [x86] SGI UV: Fix mapping of MMIO registers (Stanislaw Gruszka) [579693]
3558 - [perf] timechart: Use tid not pid for COMM change (Stanislaw Gruszka) [580062]
3559 - [usb] fix usbstorage for 2770:915d delivers no FAT (Stanislaw Gruszka) [580062]
3560 - [x86] PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled (Stanislaw Gruszka) [580062]
3561 - [acpi] EC: Add wait for irq storm (Stanislaw Gruszka) [580062]
3562 - [acpi] EC: Accelerate query execution (Stanislaw Gruszka) [580062]
3563 - [usb] add speed values for USB 3.0 and wireless controllers (Stanislaw Gruszka) [580062]
3564 - [usb] add missing delay during remote wakeup (Stanislaw Gruszka) [580062]
3565 - [usb] EHCI & UHCI: fix race between root-hub suspend and port resume (Stanislaw Gruszka) [580062]
3566 - [usb] EHCI: fix handling of unusual interrupt intervals (Stanislaw Gruszka) [580062]
3567 - [usb] Don't use GFP_KERNEL while we cannot reset a storage device (Stanislaw Gruszka) [580062]
3568 - [usb] serial: fix memory leak in generic driver (Stanislaw Gruszka) [580062]
3569 - [char] nozomi: quick fix for the close/close bug (Stanislaw Gruszka) [580062]
3570 - [tty] fix race in tty_fasync (Stanislaw Gruszka) [580062]
3571 - [netdrv] netiucv: displayed TX bytes value much too high (Stanislaw Gruszka) [580063]
3572 - [block] md: fix small irregularity with start_ro module parameter (Stanislaw Gruszka) [580063]
3573 - [input] i8042: add Dritek quirk for Acer Aspire 5610 (Stanislaw Gruszka) [580063]
3574 - [hid] fixup quirk for NCR devices (Stanislaw Gruszka) [580063]
3575 - [dmi] allow omitting ident strings in DMI tables (Stanislaw Gruszka) [580063]
3576 - [scsi] scsi_dh: create sysfs file, dh_state for all SCSI disk devices (Stanislaw Gruszka) [580063]
3577 - [nfs] Revert default r/wsize behavior (Stanislaw Gruszka) [580063]
3578 - [usb] SIS USB2VGA DRIVER: support KAIREN's USB VGA adaptor USB20SVGA-MB-PLUS (Stanislaw Gruszka) [580067]
3579 - [input] alps: add support for the touchpad on Toshiba Tecra A11-11L (Stanislaw Gruszka) [584757]
3580 - [fs] gfs2: stuck in inode wait, no glocks stuck (Robert S Peterson) [583737]
3581 - [netdrv] cnic: update to to 2.1.1 (Stanislaw Gruszka) [590019]
3582 - [netdrv] bnx2x: fix system hung after netdev watchdog (Stanislaw Gruszka) [581907]
3583 - [netdrv] bnx2: Fix most severe bugs in bnx2 2.0.8+ (John Feeney) [590879]
3584 - [netdrv] Update bnx2 driver to 2.0.8 and fw to mips-06-5.0.0.j6 et al (John Feeney) [464728]
3585 - [virt] VMware Balloon driver (Amit Shah) [582826]
3586 - [x86] With Sandybridge graphics, kernel reboots unless 'agp=off' used on command line (John Villalovos) [591294]
3587 - [kernel] unify string representation of NULL in vsprintf.c (Dave Anderson) [589613]
3588 - [kernel] coredump: fix the page leak in dump_seek() (Oleg Nesterov) [580126]
3589 - [edac] EDAC support for Nehalem Memory Controllers (Mauro Carvalho Chehab) [584507]
3590 - [iscsi] Include support for next gen Dell iSCSI PowerVault controller MD36xxi into RDAC scsi device handler's device list (Shyam Iyer) [593814]
3591 - [scsi] lpfc Update from 8.3.5.9 to 8.3.5.13 FC/FCoE (Rob Evers) [591648]
3592 - [infiniband] iser: fix failover slowdown (Mike Christie) [589174]
3593 - [net] TCP: avoid to send keepalive probes if receiving data (Flavio Leitner) [593052]
3594 - [nfs] commit_metadata export operation replacing nfsd_sync_dir (Christoph Hellwig) [593652]
3595 - [ppc64] numa: Add form 1 NUMA affinity (Steve Best) [593466]
3596 - [ppc64] eeh: Fix a bug when pci structure is null (Steve Best) [593854]
3597 - [ppc64] perf_event: Fix oops due to perf_event_do_pending call (Steve Best) [593464]
3598 - [ppc] pseries: Quieten cede latency printk (Steve Best) [591739]
3599 - [fs] GFS2: Don't "get" xattrs for ACLs when ACLs are turned off (Steven Whitehouse) [546294]
3600 - [kexec] fix OOPS in crash_kernel_shrink (Steve Best) [592336]
3601 - [fs] ext4: don't use quota reservation for speculative metadata blocks (Eric Sandeen) [587095]
3602 - [fs] quota: add the option to not fail with EDQUOT in block allocation (Eric Sandeen) [587095]
3603 - [fs] quota: use flags interface for dquot alloc/free space (Eric Sandeen) [587095]
3604 - [fs] ext4: Fix quota accounting error with fallocate (Eric Sandeen) [587095]
3605 - [fs] ext4: Ensure zeroout blocks have no dirty metadata (Eric Sandeen) [587095]
3606 - [virt] vhost-net: utilize PUBLISH_USED_IDX feature (Michael S. Tsirkin) [593158]
3607 - [virt] virtio: put last seen used index into ring itself (Michael S. Tsirkin) [593158]
3608 - [virt] vhost: fix barrier pairing (Michael S. Tsirkin) [593158]
3609 - [virt] virtio: use smp_XX barriers on SMP (Michael S. Tsirkin) [593158]
3610 - [virt] virtio_ring: remove a level of indirection (Michael S. Tsirkin) [593158]
3611 - [virt] trans_virtio: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3612 - [virt] virtio-rng: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3613 - [virt] virtio_net: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3614 - [virt] virtio_blk: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3615 - [virt] virtio_console: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3616 - [virt] virtio_balloon: use virtqueue_xxx wrappers (Michael S. Tsirkin) [593158]
3617 - [virt] virtio: add virtqueue_ vq_ops wrappers (Michael S. Tsirkin) [593158]
3618 - [virt] vhost-net: fix vq_memory_access_ok error checking (Michael S. Tsirkin) [593158]
3619 - [virt] vhost: fix error handling in vring ioctls (Michael S. Tsirkin) [593158]
3620 - [virt] vhost: fix interrupt mitigation with raw sockets (Michael S. Tsirkin) [593158]
3621 - [virt] vhost: fix error path in vhost_net_set_backend (Michael S. Tsirkin) [593158]
3622 - [netdrv] iwlwifi: iwl_good_ack_health() only apply to AGN device (John Linville) [573029]
3623 - [netdrv] iwlwifi: code cleanup for connectivity recovery (John Linville) [573029]
3624 - [netdrv] iwlwifi: Recover TX flow failure (John Linville) [573029]
3625 - [netdrv] iwlwifi: move plcp check to separated function (John Linville) [573029]
3626 - [netdrv] iwlwifi: Recover TX flow stall due to stuck queue (John Linville) [573029]
3627 - [netdrv] iwlwifi: add internal short scan support for 3945 (John Linville) [573029]
3628 - [netdrv] iwlwifi: separated time check for different type of force reset (John Linville) [573029]
3629 - [netdrv] iwlwifi: Adjusting PLCP error threshold for 1000 NIC (John Linville) [573029]
3630 - [netdrv] iwlwifi: multiple force reset mode (John Linville) [573029]
3631 - [netdrv] iwlwifi: Tune radio to prevent unexpected behavior (John Linville) [573029]
3632 - [netdrv] iwlwifi: Logic to control how frequent radio should be reset if needed (John Linville) [573029]
3633 - [netdrv] iwlwifi: add function to reset/tune radio if needed (John Linville) [573029]
3634 - [netdrv] iwlwifi: clear all the stop_queue flag after load firmware (John Linville) [573029]
3635 - [netdrv] iwlwifi: check for aggregation frame and queue (John Linville) [573029]
3636 - [ppc64] kdump: Fix race in kdump shutdown (Steve Best) [559709]
3637 - [ppc64] kexec: Fix race in kexec shutdown (Steve Best) [593853]
3638 - [net] Add ndo_{set|get}_vf_port support for enic dynamic vnics (Chris Wright) [581087]
3639 - [net] Add netlink support for virtual port management (was iovnl) (Chris Wright) [581087]
3640 - [net] core: add IFLA_STATS64 support (Chris Wright) [581087]
3641 - [netdrv] igb: support for VF configuration tools (Chris Wright) [581087]
3642 - [net] rtnetlink: Add SR-IOV VF configuration methods (Chris Wright) [581087]
3643 - [pci] Add SR-IOV convenience functions and macros (Chris Wright) [581087]
3644 - [scsi] sync iscsi layer (Mike Christie) [564148 570682]
3645
3646 * Thu May 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-28.el6]
3647 - [mm] New round-robin rotor for SLAB allocations (Larry Woodman) [593154]
3648 - [netdrv] ixgbe: FCoE fixes (Andy Gospodarek) [593474]
3649 - [net] vlan: updates vlan real_num_tx_queues (Andy Gospodarek) [593474]
3650 - [net] vlan: adds vlan_dev_select_queue (Andy Gospodarek) [593474]
3651 - [net] vlan: Precise RX stats accounting (Andy Gospodarek) [593474]
3652 - [net] add dev_txq_stats_fold() helper (Andy Gospodarek) [593474]
3653 - [net] vlan: Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device (Andy Gospodarek) [593474]
3654 - [netdrv] ixgbe: fixes for link problems, possible DMA errors, and VF/SR-IOV changes (Andy Gospodarek) [575188]
3655 - [sound] ALSA HDA driver update 2010-05-11 (Jaroslav Kysela) [591083]
3656 - [mm] show per-process swap usage via procfs (Larry Woodman) [546533]
3657 - [netdrv] cxgb3 won't recover from EEH event twice (Steve Best) [591738]
3658 - [virt] x86, cpu: Print AMD virtualization features in /proc/cpuinfo (Gleb Natapov) [592688]
3659 - [x86] Intel ICH9 workaround for HPET timer issue on IbexPeak Platform (Luming Yu) [502629]
3660 - [pci] Update pci_dev and pci_bus structs before kabi freeze (Prarit Bhargava) [593322]
3661 - [pci] Output FW warning in pci_read/write_vpd (Prarit Bhargava) [586979]
3662 - [infiniband] ehca: Require in_wc in process_mad() (Steve Best) [593095]
3663 - [security] mmap_min_addr check CAP_SYS_RAWIO only for write (Eric Paris) [592417]
3664 - [scsi] aacraid: Eliminate use after free (Tomas Henzl) [592926]
3665 - [scsi] lpfc Update from 8.3.5.7 to 8.3.5.9 FC/FCoE (Rob Evers) [580677]
3666 - [char] Eliminate use after free (Amit Shah) [593189]
3667 - [ipmi] fix unlock balance (Tomas Henzl) [592925]
3668 - [ppc64] only call start-cpu when a CPU is stopped (Steve Best) [592440]
3669 - [ppc64] make query_cpu_stopped callable outside hotplug cpu (Steve Best) [592440]
3670 - [kernel] cpufreq: make the iowait-is-busy-time a sysfs tunable (Rik van Riel) [585330]
3671 - [kernel] ondemand: Solve the big performance issue with ondemand during disk IO (Rik van Riel) [585330]
3672 - [kernel] sched: introduce get_cpu_iowait_time_us() (Rik van Riel) [585330]
3673 - [kernel] sched: eliminate the ts->idle_lastupdate field (Rik van Riel) [585330]
3674 - [kernel] sched: fold updating of the last update time into update_ts_time_stats() (Rik van Riel) [585330]
3675 - [kernel] sched: update the idle statistics in get_cpu_idle_time_us (Rik van Riel) [585330]
3676 - [kernel] sched: introduce a function to update the idle statistics (Rik van Riel) [585330]
3677 - [kernel] sched: add a comment to get_cpu_idle_time_us (Rik van Riel) [585330]
3678 - [kernel] nohz: Reuse ktime in sub-functions of tick_check_idle (Rik van Riel) [585330]
3679 - [virt] Xen PV-on-HVM: Disable xen-blkfront for IDE & SCSI devices (Don Dutile) [523134]
3680 - [virt] xen: PV-on-HVM: Disable xen-blkfront for PV-on-HVM for now (Don Dutile) [523134]
3681 - [virt] xen: PV-on-HVM: Prevent pv drivers from crashing a FV guest if pv-on-hvm not configured (Don Dutile) [523134]
3682 - [virt] xen: PV-on-HVM: Add kernel command line enablement control (Don Dutile) [523134]
3683 - [virt] xen: backport PV-on-HVM (Don Dutile) [523134]
3684 - [ppc] pseries: Pass more accurate number of supported cores to firmware (Steve Best) [591341]
3685 - [ppc] Add static fields to ibm, client-architecture call (Steve Best) [591341]
3686 - [kernel] mutex: Fix optimistic spinning vs. BKL (Steve Best) [591735]
3687 - [kernel] mutex: Don't spin when the owner CPU is offline or other weird cases (Steve Best) [591735]
3688 - [kernel] sched: Don't use possibly stale sched_class (Stanislaw Gruszka) [580067]
3689 - [usb] unusual_devs: Add support for multiple Option 3G sticks (Stanislaw Gruszka) [580067]
3690 - [usb] cp210x: Add 81E8 Zephyr Bioharness (Stanislaw Gruszka) [580067]
3691 - [usb] serial: ftdi: add CONTEC vendor and product id (Stanislaw Gruszka) [580067]
3692 - [usb] ftdi_sio: sort PID/VID entries in new ftdi_sio_ids.h header (Stanislaw Gruszka) [580067]
3693 - [usb] ftdi_sio: isolate all device IDs to new ftdi_sio_ids.h header (Stanislaw Gruszka) [580067]
3694 - [usb] Move hcd free_dev call into usb_disconnect to fix oops (Stanislaw Gruszka) [580067]
3695 - [usb] remove debugging message for uevent constructions (Stanislaw Gruszka) [580067]
3696 - [usb] fix crash in uhci_scan_schedule (Stanislaw Gruszka) [580067]
3697 - [usb] fix the idProduct value for USB-3.0 root hubs (Stanislaw Gruszka) [580067]
3698 - [usb] xhci: Fix finding extended capabilities registers (Stanislaw Gruszka) [580067]
3699 - [x86] Fix SCI on IOAPIC != 0 (Stanislaw Gruszka) [580067]
3700 - [x86] Avoid race condition in pci_enable_msix() (Stanislaw Gruszka) [580067]
3701 - [x86] thinkpad-acpi: make driver events work in NVRAM poll mode (Stanislaw Gruszka) [580067]
3702 - [x86] thinkpad-acpi: document HKEY event 3006 (Stanislaw Gruszka) [580067]
3703 - [x86] thinkpad-acpi: R52 brightness_mode has been confirmed (Stanislaw Gruszka) [580067]
3704 - [x86] thinkpad-acpi: fix poll thread auto-start (Stanislaw Gruszka) [580067]
3705 - [net] scm: Only support SCM_RIGHTS on unix domain sockets. (Stanislaw Gruszka) [580067]
3706 - [usb] serial: sierra driver indat_callback fix (Stanislaw Gruszka) [580067]
3707 - [tty] Fix the ldisc hangup race (Stanislaw Gruszka) [580067]
3708 - [kernel] devtmpfs: reset inode permissions before unlinking (Stanislaw Gruszka) [580067]
3709 - [kernel] driver-core: fix race condition in get_device_parent() (Stanislaw Gruszka) [580067]
3710 - [pm] hibernate: Fix preallocating of memory (Stanislaw Gruszka) [580067]
3711 - [tpm] tpm_tis: TPM_STS_DATA_EXPECT workaround (Stanislaw Gruszka) [580067]
3712 - [fs] Switch proc/self to nd_set_link() (Stanislaw Gruszka) [580067]
3713 - [hid] usbhid: introduce timeout for stuck ctrl/out URBs (Stanislaw Gruszka) [580067]
3714 - [hid] add multi-input quirk for NextWindow Touchscreen (Stanislaw Gruszka) [580067]
3715 - [hid] remove TENX iBuddy from blacklist (Stanislaw Gruszka) [580067]
3716 - [fs] vfs: take f_lock on modifying f_mode after open time (Stanislaw Gruszka) [580067]
3717 - [acpi] thinkpad-acpi: wrong thermal attribute_group removed in thermal_exit() (Stanislaw Gruszka) [580067]
3718 - [acpi] fix "acpi=ht" boot option (Stanislaw Gruszka) [580067]
3719 - [acpi] remove Asus P2B-DS from acpi=ht blacklist (Stanislaw Gruszka) [580067]
3720 - [pci] hotplug: check ioremap() return value in ibmphp_ebda.c (Stanislaw Gruszka) [580067]
3721 - [pci] hotplug: ibmphp: read the length of ebda and map entire ebda region (Stanislaw Gruszka) [580067]
3722 - [x86] msr/cpuid: Pass the number of minors when unregistering MSR and CPUID drivers (Stanislaw Gruszka) [580063]
3723 - [fs] fnctl: f_modown should call write_lock_irqsave/restore (Stanislaw Gruszka) [580063]
3724 - [sound] ASoC: fix a memory-leak in wm8903 (Stanislaw Gruszka) [580063]
3725 - [mtd] UBI: initialise update marker (Stanislaw Gruszka) [580063]
3726 - [mtd] UBI: fix memory leak in update path (Stanislaw Gruszka) [580063]
3727 - [ipc] ns: fix memory leak (idr) (Stanislaw Gruszka) [580063]
3728 - [input] i8042: remove identification strings from DMI tables (Stanislaw Gruszka) [580063]
3729 - [netdrv] starfire: clean up properly if firmware loading fails (Stanislaw Gruszka) [580064]
3730 - [kernel] random: drop weird m_time/a_time manipulation (Stanislaw Gruszka) [580064]
3731 - [kernel] random: Remove unused inode variable (Stanislaw Gruszka) [580064]
3732 - [mm] purge fragmented percpu vmap blocks (Stanislaw Gruszka) [580064]
3733 - [mm] percpu-vmap fix RCU list walking (Stanislaw Gruszka) [580064]
3734 - [x86] Add quirk for Intel DG45FC board to avoid low memory corruption (Stanislaw Gruszka) [580064]
3735 - [regulator] Specify REGULATOR_CHANGE_STATUS for WM835x LED constraints (Stanislaw Gruszka) [580064]
3736 - [x86] Add Dell OptiPlex 760 reboot quirk (Stanislaw Gruszka) [580064]
3737 - [mm] fix migratetype bug which slowed swapping (Stanislaw Gruszka) [580064]
3738 - [input] winbond-cir: remove dmesg spam (Stanislaw Gruszka) [580064]
3739 - [acpi] Advertise to BIOS in _OSC: _OST on _PPC changes (Stanislaw Gruszka) [580064]
3740 - [infiniband] Fix failure exit in ipathfs (Stanislaw Gruszka) [580064]
3741 - [acpi] fix OSC regression that caused aer and pciehp not to load (Stanislaw Gruszka) [580064]
3742 - [acpi] Add platform-wide _OSC support (Stanislaw Gruszka) [580064]
3743 - [acpi] Add a generic API for _OSC (Stanislaw Gruszka) [580064]
3744 - [s390x] fix single stepped svcs with TRACE_IRQFLAGS=y (Stanislaw Gruszka) [580064]
3745 - [fs] sysfs: sysfs_sd_setattr set iattrs unconditionally (Stanislaw Gruszka) [580065]
3746 - [acpi] fix High cpu temperature with 2.6.32 (Stanislaw Gruszka) [580065]
3747 - [usb] usbfs: properly clean up the as structure on error paths (Stanislaw Gruszka) [580065]
3748 - [kernel] class: Free the class private data in class_release (Stanislaw Gruszka) [580065]
3749 - [serial] 8250: add serial transmitter fully empty test (Stanislaw Gruszka) [580065]
3750 - [rtc] rtc-fm3130: add missing braces (Stanislaw Gruszka) [580065]
3751 - [ata] Call flush_dcache_page after PIO data transfers in libata-sff.c (Stanislaw Gruszka) [580065]
3752 - [net] dst: call cond_resched() in dst_gc_task() (Stanislaw Gruszka) [580065]
3753 - [crypto] padlock-sha: Add import/export support (Stanislaw Gruszka) [580065]
3754 - [x86] dell-wmi, hp-wmi: check wmi_get_event_data() return value (Stanislaw Gruszka) [580065]
3755 - [tpm] tpm_infineon: fix suspend/resume handler for pnp_driver (Stanislaw Gruszka) [580065]
3756 - [usb] ftdi_sio: add USB device ID's for B&B Electronics line (Stanislaw Gruszka) [580063]
3757 - [fs] anon_inode: set S_IFREG on the anon_inode (Eric Paris) [591813]
3758
3759 * Tue May 18 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-27.el6]
3760 - [ppc] pseries: Flush lazy kernel mappings after unplug operations (Steve Best) [591340]
3761 - [fs] ext3: enable barriers by default (Eric Sandeen) [586062]
3762 - [tracing] regset xstate extensions + generic PTRACE_{GET,SET}REGSET support (Oleg Nesterov) [587724]
3763 - [scsi] hpsa: update to 2.0.2 (Tomas Henzl) [587418]
3764 - [mm] Print more information about the task being OOM killed (Larry Woodman) [546533]
3765 - [netdrv] igb/igbvf: use netdev_alloc_skb_ip_align() (Stefan Assmann) [589497]
3766 - [acpi] Fix regression where _PPC is not read at boot even when ignore_ppc=0 (Matthew Garrett) [571893]
3767 - [x86] i386: Do a global tlb flush on S4 resume (Matthew Garrett) [572818]
3768 - [pci] Add ABI for PCI runtime power management (Matthew Garrett) [589781]
3769 - [block] Fix regression in O_DIRECT|O_SYNC writes to block devices (Jeff Moyer) [582628]
3770 - [kernel] add skip_spaces() implementation (Jaroslav Kysela) [591078]
3771 - [kernel] sched: cpuacct: Use bigger percpu counter batch values for stats counters (Steve Best) [591343]
3772 - [kernel] idr: fix a critical misallocation bug (Eric Paris) [582109]
3773 - [net] tcp: Fix OOB POLLIN avoidance (Oleg Nesterov) [584786]
3774 - [s390x] qeth: synchronize configuration interface (Hendrik Brueckner) [586962]
3775 - [fs] inotify: race use after free/double free in inotify inode marks (Eric Paris) [582109]
3776 - [fs] ext4: Add flag to files with blocks intentionally past EOF (Eric Sandeen) [578562]
3777 - [drm] backport patches up to 2.6.34-rc7 (Adam Jackson) [589792]
3778 - [kernel] elf coredump: add extended numbering support (Amerigo Wang) [578659]
3779 - [kernel] binfmt_elf_fdpic: Fix build breakage introduced by coredump changes. (Amerigo Wang) [578659]
3780 - [kernel] elf coredump: make offset calculation process and writing process explicit (Amerigo Wang) [578659]
3781 - [kernel] elf coredump: replace ELF_CORE_EXTRA_* macros by functions (Amerigo Wang) [578659]
3782 - [kernel] coredump: move dump_write() and dump_seek() into a header file (Amerigo Wang) [578659]
3783 - [kernel] coredump: unify dump_seek() implementations for each binfmt_*.c (Amerigo Wang) [578659]
3784 - [mm] introduce coredump parameter structure (Amerigo Wang) [578659]
3785 - [powerpc] Reduce printk from pseries_mach_cpu_die() (Steve Best) [590754]
3786 - [powerpc] Move checks in pseries_mach_cpu_die() (Steve Best) [590754]
3787 - [powerpc] Reset kernel stack on cpu online from cede state (Steve Best) [590754]
3788 - [virt] don't compute pvclock adjustments if we trust the tsc (Glauber Costa) [569603]
3789 - [virt] Try using new kvm clock msrs (Glauber Costa) [569603]
3790 - [virt] Add a global synchronization point for pvclock (Glauber Costa) [569603]
3791 - [virt] Enable pvclock flags in vcpu_time_info structure (Glauber Costa) [569603]
3792 - [virt] Tell the guest we'll warn it about tsc stability (Glauber Costa) [592296]
3793 - [virt] export paravirtual cpuid flags in KVM_GET_SUPPORTED_CPUID (Glauber Costa) [592296]
3794 - [virt] add new KVMCLOCK cpuid feature (Glauber Costa) [592296]
3795 - [virt] change msr numbers for kvmclock (Glauber Costa) [592296]
3796 - [scsi] enclosure: fix oops while iterating enclosure_status array (Stanislaw Gruszka) [580062]
3797 - [usb] fix bitmask merge error (Stanislaw Gruszka) [580062]
3798 - [acpi] enable C2 and Turbo-mode on Nehalem notebooks on A/C (Stanislaw Gruszka) [580063]
3799 - [input] i8042: add Gigabyte M1022M to the noloop list (Stanislaw Gruszka) [580063]
3800 - [kernel] nohz: Prevent clocksource wrapping during idle (Stanislaw Gruszka) [580063]
3801 - [kernel] sched: Fix missing sched tunable recalculation on cpu add/remove (Stanislaw Gruszka) [580063]
3802 - [netdrv] atl1c: use common_task instead of reset_task and link_chg_task (Stanislaw Gruszka) [580063]
3803 - [netdrv] atl1e: disable NETIF_F_TSO6 for hardware limit (Stanislaw Gruszka) [580063]
3804 - [kernel] driver-core: fix devtmpfs crash on s390 (Stanislaw Gruszka) [580063]
3805 - [kernel] devtmpfs: set root directory mode to 0755 (Stanislaw Gruszka) [580063]
3806 - [input] ALPS: add interleaved protocol support for Dell E6x00 series (Stanislaw Gruszka) [580063]
3807 - [mm] flush dcache before writing into page to avoid alias (Stanislaw Gruszka) [580064]
3808 - [block] pktcdvd: removing device does not remove its sysfs dir (Stanislaw Gruszka) [580064]
3809 - [mm] add new 'read_cache_page_gfp()' helper function (Stanislaw Gruszka) [580064]
3810 - [acpi] Add NULL pointer check in acpi_bus_start (Stanislaw Gruszka) [580065]
3811 - [usb] usbfs: only copy the actual data received (Stanislaw Gruszka) [580065]
3812 - [net] netfilter: xtables: compat out of scope fix (Stanislaw Gruszka) [580065]
3813 - [net] pktgen: Fix freezing problem (Stanislaw Gruszka) [580065]
3814
3815 * Thu May 13 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-26.el6]
3816 - [scsi] Sync fcoe to upsteam (Mike Christie) [590781]
3817 - [netdrv] bnx2x: fix memory barrier (Stanislaw Gruszka) [580477]
3818 - [x86] kprobes: fix removed int3 checking order (Dave Anderson) [585400]
3819 - [net] fix oops at bootime in sysctl code (Stanislaw Gruszka) [580064]
3820 - [net] af_packet: Don't use skb after dev_queue_xmit() (Stanislaw Gruszka) [580064]
3821 - [net] restore ip source validation (Stanislaw Gruszka) [580064]
3822 - [net] tcp: update the netstamp_needed counter when cloning sockets (Stanislaw Gruszka) [580064]
3823 - [net] icmp: send fragment reassembly timeout w/ conntrack enabled (Neil Horman) [563175]
3824 - [fs] GFS2: stuck in inode wait, no glocks stuck (Robert S Peterson) [583737]
3825 - [mm] compcache: Backport compcache: ramzswap documentation (Jerome Marchand) [578641]
3826 - [mm] compcache: xvmalloc memory allocator (Jerome Marchand) [578641]
3827 - [mm] compcache: virtual block device driver (ramzswap) (Jerome Marchand) [578641]
3828 - [mm] readahead: fix NULL filp dereference (Josef Bacik) [591055]
3829 - [netdrv] tg3: 57780 and 5785 devices refuse to attach (Andy Gospodarek) [564117]
3830 - [x86] Fetch valid frequencies for powernow_k8.o from ACPI _PST table (Bhavna Sarathy) [464630]
3831 - [s390x] ptrace: fix return value of do_syscall_trace_enter() (Hendrik Brueckner) [588216]
3832 - [fs] gfs2: fix oops while copying from ext3 to gfs2 (Abhijith Das) [586009] {CVE-2010-1436}
3833 - [virt] virtio: console: Accept console size along with resize control message (Amit Shah) [589307]
3834 - [virt] virtio: console: Store each console's size in the console structure (Amit Shah) [589307]
3835 - [virt] virtio: console: Resize console port 0 on config intr only if multiport is off (Amit Shah) [589307]
3836 - [sound] ac97: Add IBM ThinkPad R40e to Headphone/Line Jack Sense blacklist (Stanislaw Gruszka) [584757]
3837 - [sound] ac97: Add Toshiba P500 to ac97 jack sense blacklist (Stanislaw Gruszka) [584757]
3838 - [x86] amd: Restrict usage of c1e_idle() (Stanislaw Gruszka) [584757]
3839 - [x86] Fix placement of FIX_OHCI1394_BASE (Stanislaw Gruszka) [584757]
3840 - [net] netfilter: xt_recent: fix regression in rules using a zero hit_count (Stanislaw Gruszka) [584757]
3841 - [kernel] softlockup: Stop spurious softlockup messages due to overflow (Stanislaw Gruszka) [584757]
3842 - [kernel] cpuset: fix the problem that cpuset_mem_spread_node() returns an offline node (Stanislaw Gruszka) [584757]
3843 - [pci] cleanup error return for pcix get and set mmrbc functions (Stanislaw Gruszka) [584757]
3844 - [pci] fix access of PCI_X_CMD by pcix get and set mmrbc functions (Stanislaw Gruszka) [584757]
3845 - [pci] fix return value from pcix_get_max_mmrbc() (Stanislaw Gruszka) [584757]
3846 - [net] if_tunnel.h: add missing ams/byteorder.h include (Stanislaw Gruszka) [584757]
3847 - [netdrv] jme: Protect vlgrp structure by pause RX actions (Stanislaw Gruszka) [584757]
3848 - [netdrv] jme: Fix VLAN memory leak (Stanislaw Gruszka) [584757]
3849 - [usb] option: add support for a new CMOTECH device to usb/serial/option (Stanislaw Gruszka) [584757]
3850 - [usb] option: move hardcoded PID to a macro in usb/serial/option (Stanislaw Gruszka) [584757]
3851 - [usb] option: fix incorrect manufacturer name in usb/serial/option: MAXON->CMOTECH (Stanislaw Gruszka) [584757]
3852 - [usb] xHCI: re-initialize cmd_completion (Stanislaw Gruszka) [584757]
3853 - [usb] EHCI: adjust ehci_iso_stream for changes in ehci_qh (Stanislaw Gruszka) [584757]
3854 - [usb] EHCI: fix ITD list order (Stanislaw Gruszka) [584757]
3855 - [tty] Take a 256 byte padding into account when buffering below sub-page units (Stanislaw Gruszka) [584757]
3856 - [tty] Keep the default buffering to sub-page units (Stanislaw Gruszka) [584757]
3857 - [mm] tmpfs: cleanup mpol_parse_str() (Stanislaw Gruszka) [584757]
3858 - [perf] Make the install relative to DESTDIR if specified (Stanislaw Gruszka) [584757]
3859 - [perf] perf_event: Fix oops triggered by cpu offline/online (Stanislaw Gruszka) [584757]
3860 - [isdn] gigaset: prune use of tty_buffer_request_room (Stanislaw Gruszka) [584757]
3861 - [isdn] gigaset: correct clearing of at_state strings on RING (Stanislaw Gruszka) [584757]
3862 - [sound] hda: Disable MSI for Nvidia controller (Stanislaw Gruszka) [584757]
3863 - [sound] hda: Fix 0 dB offset for HP laptops using CX20551 (Stanislaw Gruszka) [584757]
3864 - [sound] hda: Fix secondary ADC of ALC260 basic model (Stanislaw Gruszka) [584757]
3865 - [virt] virtio: fix out of range array access (Stanislaw Gruszka) [584757]
3866 - [ipc] mqueue: fix mq_open() file descriptor leak on user-space processes (Stanislaw Gruszka) [584757]
3867 - [security] sysctl: require CAP_SYS_RAWIO to set mmap_min_addr (Stanislaw Gruszka) [584757]
3868 - [kernel] sched: Mark boot-cpu active before smp_init() (Stanislaw Gruszka) [584757]
3869 - [pci] add support for 82576NS serdes to existing SR-IOV quirk (Stanislaw Gruszka) [584757]
3870 - [v4l] DVB: em28xx-dvb: fix memleak in dvb_fini() (Stanislaw Gruszka) [584757]
3871 - [pci] unconditionally clear AER uncorr status register during cleanup (Stanislaw Gruszka) [584757]
3872 - [tracing] Do not record user stack trace from NMI context (Stanislaw Gruszka) [584757]
3873 - [tracing] Disable buffer switching when starting or stopping trace (Stanislaw Gruszka) [584757]
3874 - [tracing] Use same local variable when resetting the ring buffer (Stanislaw Gruszka) [584757]
3875 - [tracing] function-graph: Init curr_ret_stack with ret_stack (Stanislaw Gruszka) [584757]
3876 - [tracing] ring-buffer: Move disabled check into preempt disable section (Stanislaw Gruszka) [584757]
3877 - [input] i8042: add ALDI/MEDION netbook E1222 to qurik reset table (Stanislaw Gruszka) [584757]
3878 - [net] netfilter: xt_recent: fix false match (Stanislaw Gruszka) [580067]
3879 - [net] netfilter: xt_recent: fix buffer overflow (Stanislaw Gruszka) [580067]
3880 - [tracing] oprofile/x86: fix msr access to reserved counters (Stanislaw Gruszka) [580067]
3881 - [tracing] oprofile/x86: use kzalloc() instead of kmalloc() (Stanislaw Gruszka) [580067]
3882 - [tracing] oprofile/x86: remove node check in AMD IBS initialization (Stanislaw Gruszka) [580067]
3883 - [tracing] oprofile: remove tracing build dependency (Stanislaw Gruszka) [580067]
3884 - [x86] oprofile: fix perfctr nmi reservation for mulitplexing (Stanislaw Gruszka) [580067]
3885 - [netdrv] via-rhine: Fix scheduling while atomic bugs (Stanislaw Gruszka) [580067]
3886 - [net] ipv6: conntrack: Add member of user to nf_ct_frag6_queue structure (Stanislaw Gruszka) [580067]
3887 - [net] Remove bogus IGMPv3 report handling (Stanislaw Gruszka) [580067]
3888 - [net] sysfs: Use rtnl_trylock in wireless sysfs methods (Stanislaw Gruszka) [580067]
3889 - [net] Fix sysctl restarts (Stanislaw Gruszka) [580067]
3890 - [mm] slab: initialize unused alien cache entry as NULL at alloc_alien_cache() (Stanislaw Gruszka) [580067]
3891 - [v4l] DVB: cxusb: Select all required frontend and tuner modules (Stanislaw Gruszka) [580067]
3892 - [v4l] dvb: l64781.ko broken with gcc 4.5 (Stanislaw Gruszka) [580067]
3893 - [v4l] DVB: uvcvideo: Fix controls blacklisting (Stanislaw Gruszka) [580063]
3894 - [net] netfilter: nf_conntrack: fix hash resizing with namespaces (Stanislaw Gruszka) [580065]
3895 - [net] netfilter: nf_conntrack: restrict runtime expect hashsize modifications (Stanislaw Gruszka) [580065]
3896 - [net] netfilter: xtables: fix conntrack match v1 ipt-save output (Stanislaw Gruszka) [580063]
3897 - [v4l] DVGB: DocBook/media: create links for included sources (Stanislaw Gruszka) [580063]
3898 - [v4l] DVB: DocBook/media: copy images after building HTML (Stanislaw Gruszka) [580063]
3899 - [v4l] DVB: dvb-core: fix initialization of feeds list in demux filter (Stanislaw Gruszka) [580065]
3900 - [dma] ioat: fix infinite timeout checking in ioat2_quiesce (Stanislaw Gruszka) [580065]
3901 - [v4l] DVB: smsusb: add autodetection support for five additional Hauppauge USB IDs (Stanislaw Gruszka) [580063]
3902 - [x86] cpufreq: Fix use after free of struct powernow_k8_data (Stanislaw Gruszka) [580065]
3903 - [regulator] Fix display of null constraints for regulators (Stanislaw Gruszka) [580065]
3904
3905 * Mon May 10 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-25.el6]
3906 - [fs] exec: Fix 'flush_old_exec()/setup_new_exec()' split (Jiri Olsa) [586024] {CVE-2010-0307}
3907 - [powerpc] TIF_ABI_PENDING bit removal (Jiri Olsa) [586024] {CVE-2010-0307}
3908 - [x86] set_personality_ia32() misses force_personality32 (Jiri Olsa) [586024] {CVE-2010-0307}
3909 - [x86] get rid of the TIF_ABI_PENDING bit (Jiri Olsa) [586024] {CVE-2010-0307}
3910 - [kernel] split 'flush_old_exec' into two functions (Jiri Olsa) [586024] {CVE-2010-0307}
3911 - [net] sctp: fix skb_over_panic from processing too many unknown params (Neil Horman) [584659] {CVE-2010-1173}
3912 - [virt] kvm: fix vmx null pointer dereference (Eduardo Habkost) [570534] {CVE-2010-0435}
3913 - [fs] gfs2: fix quota state reporting (Christoph Hellwig) [589945]
3914 - [fs] gfs2: fix quota file size not a multiple of struct gfs2_quota (Abhijith Das) [589813]
3915 - [x86] Use physical mode for IBM Summit platforms (John Villalovos) [558397]
3916 - [mm] page allocator: update NR_FREE_PAGES only when necessary (Stanislaw Gruszka) [579693]
3917 - [mm] memcg: ensure list is empty at rmdir (Stanislaw Gruszka) [579693]
3918 - [video] revert "drivers/video/s3c-fb.c: fix clock setting for Samsung SoC Framebuffer" (Stanislaw Gruszka) [579693]
3919 - [v4l] DVB: gspca - sunplus: Fix bridge exchanges (Stanislaw Gruszka) [580062]
3920 - [hwmon] fschmd: Fix a memleak on multiple opens of /dev/watchdog (Stanislaw Gruszka) [580063]
3921 - [sound] hda: Fix HP T5735 automute (Stanislaw Gruszka) [580063]
3922 - [sound] hda: Fix quirk for Maxdata obook4-1 (Stanislaw Gruszka) [580063]
3923 - [sound] ice1724: Patch for suspend/resume for ESI Juli@ (Stanislaw Gruszka) [580063]
3924 - [sound] usb-audio: Avoid Oops after disconnect (Stanislaw Gruszka) [580065]
3925 - [sound] ctxfi: fix PTP address initialization (Stanislaw Gruszka) [580065]
3926 - [hwmon] lm78: Request I/O ports individually for probing (Stanislaw Gruszka) [580065]
3927 - [hwmon] w83781d: Request I/O ports individually for probing (Stanislaw Gruszka) [580065]
3928 - [hwmon] tmp421: Fix temperature conversions (Stanislaw Gruszka) [580067]
3929 - [sound] via82xx: add quirk for D1289 motherboard (Stanislaw Gruszka) [580067]
3930 - [hwmon] tmp421: Restore missing inputs (Stanislaw Gruszka) [580067]
3931 - [sound] USB MIDI support for Access Music VirusTI (Stanislaw Gruszka) [580067]
3932 - [sound] hda-intel: Add position_fix quirk for ASUS M2V-MX SE (Stanislaw Gruszka) [580067]
3933 - [sound] pcm core: fix fifo_size channels interval check (Stanislaw Gruszka) [580067]
3934 - [sound] hda: Use 3stack quirk for Toshiba Satellite L40-10Q (Stanislaw Gruszka) [580067]
3935 - [bluetooth] Fix potential bad memory access with sysfs files (Stanislaw Gruszka) [584757]
3936 - [hwmon] coretemp: Add missing newline to dev_warn() message (Stanislaw Gruszka) [584757]
3937 - [bluetooth] Fix kernel crash on L2CAP stress tests (Stanislaw Gruszka) [584757]
3938 - [input] wacom: ensure the device is initialized properly upon resume (Stanislaw Gruszka) [584757]
3939 - [sound] hda: Fix input source elements of secondary ADCs on Realtek (Stanislaw Gruszka) [584757]
3940 - [x86] nmi watchdog: use generic interrupt source to determine deadlocks (Don Zickus) [574570]
3941 - [dm] eliminate some holes in data structures (Mike Snitzer) [586089]
3942 - [dm] ioctl: introduce flag indicating uevent was generated (Mike Snitzer) [586089]
3943 - [dm] free dm_io before bio_endio not after (Mike Snitzer) [586089]
3944 - [dm] table: remove unused dm_get_device range parameters (Mike Snitzer) [586089]
3945 - [dm] ioctl: only issue uevent on resume if state changed (Mike Snitzer) [586089]
3946 - [dm] raid1: always return error if all legs fail (Mike Snitzer) [586089]
3947 - [dm] mpath: refactor pg_init (Mike Snitzer) [586089]
3948 - [dm] mpath: wait for pg_init completion when suspending (Mike Snitzer) [586089]
3949 - [dm] mpath: hold io until all pg_inits completed (Mike Snitzer) [586089]
3950 - [dm] mpath: avoid storing private suspended state (Mike Snitzer) [586089]
3951 - [dm] document when snapshot has finished merging (Mike Snitzer) [586089]
3952 - [dm] table: remove dm_get from dm_table_get_md (Mike Snitzer) [586089]
3953 - [dm] mpath: skip activate_path for failed paths (Mike Snitzer) [586089]
3954 - [dm] mpath: pass struct pgpath to pg init done (Mike Snitzer) [586089]
3955 - [netdrv] mac80211: fix deferred hardware scan requests (John Linville) [561762]
3956 - [x86] asus-laptop: add Lenovo SL hotkey support (Stanislaw Gruszka) [579693]
3957 - [input] pmouse: move Sentelic probe down the list (Stanislaw Gruszka) [579693]
3958 - [pci] cardbus: Add a fixup hook and fix powerpc (Stanislaw Gruszka) [579693]
3959 - [mfd] Correct WM835x ISINK ramp time defines (Stanislaw Gruszka) [579693]
3960 - [mfd] WM835x GPIO direction register is not locked (Stanislaw Gruszka) [579693]
3961 - [edac] i5000_edac critical fix panic out of bounds (Stanislaw Gruszka) [579693]
3962 - [i2c] i2c-tiny-usb: Fix on big-endian systems (Stanislaw Gruszka) [580065]
3963 - [x86] thinkpad-acpi: fix bluetooth/wwan resume (Stanislaw Gruszka) [580067]
3964 - [v4l] DVB: bttv: Move I2C IR initialization (Stanislaw Gruszka) [580067]
3965 - [bluetooth] Fix sleeping function in RFCOMM within invalid context (Stanislaw Gruszka) [584757]
3966 - [i2c] i2c-i801: Don't use the block buffer for I2C block writes (Stanislaw Gruszka) [584757]
3967 - [s390x] vdso: use ntp adjusted clock multiplier (Hendrik Brueckner) [575728]
3968 - [s390x] timekeeping: Fix clock_gettime vsyscall time warp (Hendrik Brueckner) [575728]
3969 - [s390x] timekeeping: Fix accumulation bug triggered by long delay (Hendrik Brueckner) [575728]
3970 - [netdrv] igb: fix warning in drivers/net/igb/igb_main.c (Stefan Assmann) [589272]
3971 - [x86] Re-get cfg_new in case reuse/move irq_desc (Stanislaw Gruszka) [580065 583555]
3972 - [hwmon] adt7462: fix wrong ADT7462_VOLT_COUNT (Stanislaw Gruszka) [580065]
3973 - [fs] exec.c: fix initial stack reservation (Stanislaw Gruszka) [580067]
3974 - [fs] exec.c: restrict initial stack space expansion to rlimit (Stanislaw Gruszka) [580065]
3975 - [kernel] resource: add helpers for fetching rlimits (Stanislaw Gruszka) [580065]
3976 - [tracing] ext4: Convert some events to DEFINE_EVENT (Mike Snitzer) [588108]
3977 - [tracing] Convert some jbd2 events to DEFINE_EVENT (Mike Snitzer) [588108]
3978 - [tracing] Convert some block events to DEFINE_EVENT (Mike Snitzer) [588108]
3979 - [tracing] Convert some power events to DEFINE_EVENT (Mike Snitzer) [588108]
3980 - [tracing] Convert some workqueue events to DEFINE_EVENT (Mike Snitzer) [588108]
3981 - [tracing] Convert softirq events to DEFINE_EVENT (Mike Snitzer) [588108]
3982 - [tracing] Convert some kmem events to DEFINE_EVENT (Mike Snitzer) [588108]
3983 - [tracing] Convert module refcnt events to DEFINE_EVENT (Mike Snitzer) [588108]
3984 - [tracing] xfs: use DECLARE_EVENT_CLASS (Mike Snitzer) [588108]
3985 - [tracing] Harmonize event field names and print output names (Mike Snitzer) [588108]
3986 - [tracing] Add DEFINE_EVENT(), DEFINE_SINGLE_EVENT() support to docbook (Mike Snitzer) [588108]
3987 - [block] blk-cgroup: config options re-arrangement (Vivek Goyal) [586182]
3988 - [block] blkio: Fix another BUG_ON() crash due to cfqq movement across groups (Vivek Goyal) [586182]
3989 - [block] blkio: Fix blkio crash during rq stat update (Vivek Goyal) [586182]
3990 - [block] blkio: Initialize blkg->stats_lock for the root cfqg too (Vivek Goyal) [586182]
3991 - [block] blkio: Fix compile errors (Vivek Goyal) [586182]
3992 - [block] Update to io-controller stats (Vivek Goyal) [586182]
3993 - [block] io-controller: Add a new interface "weight_device" for IO-Controller (Vivek Goyal) [586182]
3994 - [block] cfq-iosched: Fix the incorrect timeslice accounting with forced_dispatch (Vivek Goyal) [586182]
3995 - [block] blkio: Add more debug-only per-cgroup stats (Vivek Goyal) [586182]
3996 - [block] blkio: Add io_queued and avg_queue_size stats (Vivek Goyal) [586182]
3997 - [block] blkio: Add io_merged stat (Vivek Goyal) [586182]
3998 - [block] blkio: Changes to IO controller additional stats patches (Vivek Goyal) [586182]
3999 - [block] expose the statistics in blkio.time and blkio.sectors for the root cgroup (Vivek Goyal) [586182]
4000 - [block] blkio: Increment the blkio cgroup stats for real now (Vivek Goyal) [586182]
4001 - [block] blkio: Add io controller stats like (Vivek Goyal) [586182]
4002 - [block] blkio: Remove per-cfqq nr_sectors as we'll be passing (Vivek Goyal) [586182]
4003 - [block] cfq-iosched: Add additional blktrace log messages in CFQ for easier debugging (Vivek Goyal) [586182]
4004 - [block] cfq-iosched: requests "in flight" vs "in driver" clarification (Vivek Goyal) [586182]
4005 - [ppc] cxgb3: Wait longer for control packets on initialization (Steve Best) [588848]
4006 - [virt] KVM: convert ioapic lock to spinlock (Marcelo Tosatti) [588811]
4007 - [virt] KVM: fix the handling of dirty bitmaps to avoid overflows (Marcelo Tosatti) [588811]
4008 - [virt] KVM: MMU: fix kvm_mmu_zap_page() and its calling path (Marcelo Tosatti) [588811]
4009 - [virt] KVM: VMX: Save/restore rflags.vm correctly in real mode (Marcelo Tosatti) [588811]
4010 - [virt] KVM: Dont spam kernel log when injecting exceptions due to bad cr writes (Marcelo Tosatti) [588811]
4011 - [virt] KVM: SVM: Fix memory leaks that happen when svm_create_vcpu() fails (Marcelo Tosatti) [588811]
4012 - [virt] KVM: VMX: Update instruction length on intercepted BP (Marcelo Tosatti) [588811]
4013 - [drm] nouveau: initial eDP support + additional fixes (Ben Skeggs) [588581]
4014 - [s390x] zcore: Fix reipl device detection (Hendrik Brueckner) [587025]
4015 - [connector] Delete buggy notification code (Stanislaw Gruszka) [580064 586025] {CVE-2010-0410}
4016 - [netdrv] ath9k: fix beacon slot/buffer leak (Stanislaw Gruszka) [580064]
4017 - [fusion] mptsas: Fix issue with chain pools allocation on katmai (Stanislaw Gruszka) [580064]
4018 - [sunrpc] Fix a potential memory leak in auth_gss (Stanislaw Gruszka) [584757]
4019 - [tracing] scsi: Enhance SCSI command tracing (Mike Snitzer) [588108]
4020 - [tracing] scsi: Add missing verify command definitions (Mike Snitzer) [588108]
4021 - [tracing] scsi: ftrace based SCSI command tracing (Mike Snitzer) [588108]
4022 - [tracing] add __print_hex() (Mike Snitzer) [588108]
4023 - [tracing] Add notrace to TRACE_EVENT implementation functions (Mike Snitzer) [588108]
4024 - [tracing] Move a printk out of ftrace_raw_reg_event_foo() (Mike Snitzer) [588108]
4025 - [tracing] Rename TRACE_EVENT_TEMPLATE() to DECLARE_EVENT_CLASS() (Mike Snitzer) [588108]
4026 - [tracing] Convert some sched trace events to DEFINE_EVENT and _PRINT (Mike Snitzer) [588108]
4027 - [tracing] Create new DEFINE_EVENT_PRINT (Mike Snitzer) [588108]
4028 - [tracing] Create new TRACE_EVENT_TEMPLATE (Mike Snitzer) [588108]
4029 - [tracing] additional interface changes and fixes (Mike Snitzer) [588108]
4030 - [tracing] Ftrace dynamic ftrace_event_call support (Mike Snitzer) [588108]
4031 - [fs] quota: fix WARN_ON when quota reservations get out of sync (Eric Sandeen) [581951]
4032 - [scsi] fcoe: sync with upstream (Mike Christie) [577049 578328]
4033
4034 * Mon May 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-24.el6]
4035 - [fs] ecryptfs: disallow ecryptfs as underlying filesystem (Eric Sandeen) [585185]
4036 - [mm] Fix Section Mismatch warning in put_page_bootmem() (Prarit Bhargava) [587040]
4037 - [mm] transparent hugepage support update (Andrea Arcangeli) [556572]
4038 - [netdrv] ath9k: revert fb6635f6c114313f246cc34abc0b677264a765ed (Aristeu Rozanski) [584757]
4039 - [virt] KVM: take srcu lock before call to complete_pio() (Gleb Natapov) [585887]
4040 - [virt] virtio: Fix GFP flags passed from the virtio balloon driver (Amit Shah) [584680]
4041 - [x86] Check chip_data value in irq_force_complete_move() (Prarit Bhargava) [564398]
4042 - [x86] nmi_watchdog: use __cpuinit for 32-bit nmi_watchdog_default (Prarit Bhargava) [586967]
4043 - [acpi] Fall back to manually changing SCI_EN (Matthew Garrett) [587008]
4044 - [pci] Ensure that devices are resumed properly (Matthew Garrett) [586780]
4045 - [serial] usb-serial: Rework and update qcserial (Matthew Garrett) [587009]
4046 - [scsi] scsi_lib: Fix bug in completion of bidi commands (Stanislaw Gruszka) [580064]
4047 - [net] phonet: add check for null pernet mem pointer in notifier (Jiri Pirko) [573122]
4048 - [nfs] Ensure that writeback_single_inode() calls write_inode() when syncing (Jeff Layton) [584382]
4049 - [serial] 8250_pnp: use wildcard for serial Wacom tablets (Stanislaw Gruszka) [580062]
4050 - [fs] ext4: check s_log_groups_per_flex in online resize code (Eric Sandeen) [519461]
4051 - [x86] Fix sched_clock_cpu for systems with unsynchronized TSC (Prarit Bhargava) [568344]
4052 - [x86] Reenable TSC sync check at boot, even with NONSTOP_TSC (Prarit Bhargava) [568344]
4053 - [mm] slab: add memory hotplug support (Prarit Bhargava) [562880]
4054 - [x86] Set hotpluggable nodes in nodes_possible_map (Prarit Bhargava) [568344]
4055 - [x86] acpi: Auto Online Hot-Added Memory (Prarit Bhargava) [568344]
4056 - [mm] memory hotplug: fix a bug on /dev/mem for 64-bit kernels (Prarit Bhargava) [568344]
4057 - [mm] update all PGDs for direct mapping changes on 64 bit (Prarit Bhargava) [568344]
4058 - [x86] acpi: Map hotadded cpu to correct node (Prarit Bhargava) [568344]
4059 - [ipmi] Change timeout and event poll to one second (Matthew Garrett) [584106]
4060 - [ipmi] Attempt to register multiple SIs of the same type (Matthew Garrett) [584106]
4061 - [ipmi] Reduce polling (Matthew Garrett) [584106]
4062 - [ipmi] Reduce polling when interrupts are available (Matthew Garrett) [584106]
4063 - [ipmi] Change device discovery order (Matthew Garrett) [584106]
4064 - [ipmi] Only register one si per bmc (Matthew Garrett) [584106]
4065 - [ipmi] Split device discovery and registration (Matthew Garrett) [584106]
4066 - [ipmi] Change addr_source to an enum rather than strings (Matthew Garrett) [584106]
4067 - [drm] radeon: rs780/rs880: MSI quirk fixes (Dave Airlie) [586168]
4068 - [drm] radeon/kms: MC + watermark fixes + reset (Dave Airlie) [586168]
4069 - [drm] radeon/kms/evergreen: add evergreen stage 2 - HPD irq (Dave Airlie) [580757]
4070 - [drm] radeon: fixup radeon_asic struct c/h files (Dave Airlie) [586168]
4071 - [drm] radeon/kms: misc + tv dac fixes (Dave Airlie) [586168]
4072 - [drm] radeon/kms: squash upstream HDMI audio commits (Dave Airlie) [586168]
4073 - [drm] kms/radeon: Integrated graphics fixes (Dave Airlie) [586168]
4074 - [drm] radeon/kms: spread spectrum + pll fixes (Dave Airlie) [586168]
4075 - [drm] radeon: add initial evergreen support + fixes (Dave Airlie) [580757]
4076 - [kernel] tty: tty->pgrp races (Jiri Olsa) [586022]
4077 - [netdrv] kernel: fix the r8169 frame length check error (Jiri Olsa) [586017] {CVE-2009-4537}
4078
4079 * Tue Apr 27 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-23.el6]
4080 - [doc] add the documentation for mpol=local (Stanislaw Gruszka) [584757]
4081 - [fs] tmpfs: handle MPOL_LOCAL mount option properly (Stanislaw Gruszka) [584757]
4082 - [fs] tmpfs: mpol=bind:0 don't cause mount error (Stanislaw Gruszka) [584757]
4083 - [netdrv] tun: orphan an skb on tx (Michael S. Tsirkin) [584428]
4084 - [s390x] vmalloc: IPL failure with enabled memory cgroups (Hendrik Brueckner) [580918]
4085 - [netdrv] b43: fall back gracefully to PIO mode after fatal DMA errors (John Linville) [583069]
4086 - [netdrv] b43: Allow PIO mode to be selected at module load (John Linville) [583069]
4087 - [netdrv] b43: Remove reset after fatal DMA error (John Linville) [583069]
4088 - [netdrv] b43: Optimize PIO scratchbuffer usage (John Linville) [583069]
4089 - [fs] vfs: get_sb_single() - do not pass options twice (Stanislaw Gruszka) [580063]
4090 - [fs] tmpfs: fix oops on mounts with mpol=default (Stanislaw Gruszka) [584757]
4091 - [kernel] cred.c: use kmem_cache_free (Stanislaw Gruszka) [580064]
4092 - [fs] partition/msdos: fix unusable extended partition for > 512B sector (Stanislaw Gruszka) [584757]
4093 - [fs] partitions/msdos: add support for large disks (Stanislaw Gruszka) [584757]
4094 - [fs] eCryptfs: Add getattr function (Stanislaw Gruszka) [580065]
4095 - [fs] ecryptfs: initialize private persistent file before dereferencing pointer (Stanislaw Gruszka) [580062]
4096 - [fs] ecryptfs: use after free (Stanislaw Gruszka) [580062]
4097 - [ppc] Track backing pages used allocated by vmemmap_populate() (Steve Best) [547854]
4098 - [netdrv] be2net: recent bug fixes from upstream (Ivan Vecera) [583766]
4099 - [sunrpc] handle allocation errors from __rpc_lookup_create() (Stanislaw Gruszka) [584757]
4100 - [nfs] Prevent another deadlock in nfs_release_page() (Stanislaw Gruszka) [584757]
4101 - [nfs] NFSv4: Don't ignore the NFS_INO_REVAL_FORCED flag in nfs_revalidate_inode() (Stanislaw Gruszka) [584757]
4102 - [nfs] Fix an allocation-under-spinlock bug (Stanislaw Gruszka) [580067]
4103 - [sunrpc] Handle EINVAL error returns from the TCP connect operation (Stanislaw Gruszka) [580067]
4104 - [sunrpc] remove unnecessary svc_xprt_put (Stanislaw Gruszka) [580067]
4105 - [x86] Add iMac9,1 to pci_reboot_dmi_table (Stanislaw Gruszka) [580067]
4106 - [rtc] rtc-core: fix memory leak (Stanislaw Gruszka) [580067]
4107 - [mm] readahead: introduce FMODE_RANDOM for POSIX_FADV_RANDOM (Stanislaw Gruszka) [580067]
4108 - [fs] fix LOOKUP_FOLLOW on automount "symlinks" (Stanislaw Gruszka) [580067]
4109 - [nfs] Too many GETATTR and ACCESS calls after direct I/O (Stanislaw Gruszka) [580065]
4110 - [virt] kvmclock: count total_sleep_time when updating guest clock (Stanislaw Gruszka) [580065]
4111 - [kernel] Export the symbol of getboottime and mmonotonic_to_bootbased (Stanislaw Gruszka) [580065]
4112 - [nfs] NFS: Fix the mapping of the NFSERR_SERVERFAULT error (Stanislaw Gruszka) [580065]
4113 - [nfs] NFS: Fix a umount race (Stanislaw Gruszka) [580065]
4114 - [x86] amd-iommu: Fix possible integer overflow (Stanislaw Gruszka) [580064]
4115 - [ata] libata: retry FS IOs even if it has failed with AC_ERR_INVALID (Stanislaw Gruszka) [580064]
4116 - [firewire] firewire: ohci: fix crashes with TSB43AB23 on 64bit systems (Stanislaw Gruszka) [580064]
4117 - [ata] pata_hpt3x2n: always stretch UltraDMA timing (Stanislaw Gruszka) [580067]
4118 - [cgroup] memcg: fix oom killing a child process in an other cgroup (Stanislaw Gruszka) [580067]
4119 - [ata] libata: retry link resume if necessary (Stanislaw Gruszka) [580064]
4120 - [firewire] core: add_descriptor size check (Stanislaw Gruszka) [580064]
4121 - [netdrv] iwlwifi: fix scan race (Stanislaw Gruszka) [584759]
4122 - [netdrv] iwlwifi: clear all tx queues when firmware ready (Stanislaw Gruszka) [584759]
4123 - [netdrv] iwlwifi: need check for valid qos packet before free (Stanislaw Gruszka) [584759]
4124 - [netdrv] mac80211: tear down all agg queues when restart/reconfig hw (Stanislaw Gruszka) [584759]
4125 - [netdrv] mac80211: move netdev queue enabling to correct spot (Stanislaw Gruszka) [584759]
4126 - [netdrv] setup correct int pipe type in ar9170_usb_exec_cmd (Stanislaw Gruszka) [584759]
4127 - [netdrv] iwlwifi: range checking issue (Stanislaw Gruszka) [584759]
4128 - [netdrv] iwlwifi: fix nfreed-- (Stanislaw Gruszka) [584759]
4129 - [netdrv] iwlwifi: counting number of tfds can be free for 4965 (Stanislaw Gruszka) [584759]
4130 - [netdrv] b43: Workaround circular locking in hw-tkip key update callback (Stanislaw Gruszka) [584757]
4131 - [ata] ahci: use BIOS date in broken_suspend list (Stanislaw Gruszka) [584757]
4132 - [netdrv] mac80211: Reset dynamic ps timer in Rx path (Stanislaw Gruszka) [584757]
4133 - [netdrv] ath9k: Enable IEEE80211_HW_REPORTS_TX_ACK_STATUS flag for ath9k (Stanislaw Gruszka) [584757]
4134 - [netdrv] mac80211: Retry null data frame for power save (Stanislaw Gruszka) [584757]
4135 - [netdrv] ath9k: Enable TIM timer interrupt only when needed. (Stanislaw Gruszka) [584757]
4136 - [netdrv] ath9k: fix BUG_ON triggered by PAE frames (Stanislaw Gruszka) [584757]
4137 - [netdrv] iwlwifi: Silence tfds_in_queue message (Stanislaw Gruszka) [584757]
4138 - [netdrv] iwlwifi: use dma_alloc_coherent (Stanislaw Gruszka) [584757]
4139 - [netdrv] wl1251: fix potential crash (Stanislaw Gruszka) [584757]
4140 - [block] readahead: add blk_run_backing_dev (Stanislaw Gruszka) [584757]
4141 - [netdrv] ath9k: fix lockdep warning when unloading module (Stanislaw Gruszka) [584757]
4142 - [scsi] mvsas: add support for Adaptec ASC-1045/1405 SAS/SATA HBA (Stanislaw Gruszka) [584757]
4143 - [netdrv] ath5k: fix setup for CAB queue (Stanislaw Gruszka) [584757]
4144 - [netdrv] ath5k: dont use external sleep clock in AP mode (Stanislaw Gruszka) [584757]
4145 - [netdrv] tg3: Fix tg3_poll_controller() passing wrong pointer to tg3_interrupt() (Stanislaw Gruszka) [584757]
4146 - [netdrv] b43/b43legacy: Wake queues in wireless_core_start (Stanislaw Gruszka) [580067]
4147 - [netdrv] ath5k: use correct packet type when transmitting (Stanislaw Gruszka) [580067]
4148 - [netdrv] ath9k: disable RIFS search for AR91xx based chips (Stanislaw Gruszka) [580067]
4149 - [netdrv] ath9k: fix rate control fallback rate selection (Stanislaw Gruszka) [580067]
4150 - [netdrv] ath9k: fix beacon timer restart after a card reset (Stanislaw Gruszka) [580067]
4151 - [netdrv] p54usb: Add the USB ID for Belkin (Accton) FD7050E ver 1010ec (Stanislaw Gruszka) [580067]
4152 - [netdrv] rndis_wlan: disable stall workaround (Stanislaw Gruszka) [580067]
4153 - [netdrv] rndis_wlan: fix buffer overflow in rndis_query_oid (Stanislaw Gruszka) [580067]
4154 - [netdrv] rndis_wlan: handle NL80211_AUTHTYPE_AUTOMATIC (Stanislaw Gruszka) [580067]
4155 - [netdrv] sky2: fix transmit DMA map leakage (Stanislaw Gruszka) [580067]
4156 - [netdrv] airo: fix setting zero length WEP key (Stanislaw Gruszka) [580067]
4157 - [netdrv] mac80211: quit addba_resp_timer if Tx BA session is torn down (Stanislaw Gruszka) [580067]
4158 - [netdrv] iwlwifi: sanity check before counting number of tfds can be free (Stanislaw Gruszka) [580067]
4159 - [netdrv] iwlwifi: set HT flags after channel in rxon (Stanislaw Gruszka) [580067]
4160 - [netdrv] iwlwifi: error checking for number of tfds in queue (Stanislaw Gruszka) [580067]
4161 - [netdrv] iwlwifi: Fix to set correct ht configuration (Stanislaw Gruszka) [580065]
4162 - [netdrv] mac80211: Fix probe request filtering in IBSS mode (Stanislaw Gruszka) [580065]
4163 - [netdrv] ath9k: Fix sequence numbers for PAE frames (Stanislaw Gruszka) [580065]
4164 - [netdrv] b43: Fix throughput regression (Stanislaw Gruszka) [580065]
4165 - [netdrv] rtl8187: Add new device ID (Stanislaw Gruszka) [580065]
4166 - [ata] ahci: add Acer G725 to broken suspend list (Stanislaw Gruszka) [580065]
4167 - [scsi] mptfusion: mptscsih_abort return value should be SUCCESS instead of value 0 (Stanislaw Gruszka) [580065]
4168 - [nfs] Fix an Oops when truncating a file (Stanislaw Gruszka) [580065]
4169 - [block] cciss: Make cciss_seq_show handle holes in the h->drv[] array (Stanislaw Gruszka) [580065]
4170 - [netdrv] ath9k: fix eeprom INI values override for 2GHz-only cards (Stanislaw Gruszka) [580064]
4171 - [netdrv] mac80211: fix NULL pointer dereference when ftrace is enabled (Stanislaw Gruszka) [580064]
4172 - [block] fix bugs in bio-integrity mempool usage (Stanislaw Gruszka) [580064]
4173 - [netdrv] sky2: Fix oops in sky2_xmit_frame() after TX timeout (Stanislaw Gruszka) [580064]
4174 - [netdrv] iwlwifi: set default aggregation frame count limit to 31 (Stanislaw Gruszka) [580064]
4175 - [netdrv] e1000/e1000e: don't use small hardware rx buffers (Stanislaw Gruszka) [580064]
4176 - [netdrv] e1000: enhance frame fragment detection (Stanislaw Gruszka) [580064]
4177 - [mm] rmap: anon_vma_prepare() can leak anon_vma_chain (Rik van Riel) [579936]
4178 - [mm] rmap: add exclusively owned pages to the newest anon_vma (Rik van Riel) [579936]
4179 - [mm] anonvma: when setting up page->mapping, we need to pick the _oldest_ anonvma (Rik van Riel) [579936]
4180 - [mm] anon_vma: clone the anon_vma chain in the right order (Rik van Riel) [579936]
4181 - [mm] vma_adjust: fix the copying of anon_vma chains (Rik van Riel) [579936]
4182 - [mm] Simplify and comment on anon_vma re-use for anon_vma_prepare() (Rik van Riel) [579936]
4183 - [mm] rmap: fix anon_vma_fork() memory leak (Rik van Riel) [579936]
4184 - [s390x] nss: add missing .previous statement to asm function (Hendrik Brueckner) [581521]
4185 - [ata] pata_mavell: correct check of AHCI config option (David Milburn) [584483]
4186 - [fs] ext4: Issue the discard operation before releasing the blocks (Eric Sandeen) [575884]
4187 - [scsi] 3w_sas: new driver (Tomas Henzl) [572781]
4188 - [kernel] hrtimer: Tune hrtimer_interrupt hang logic (Marcelo Tosatti) [576355]
4189
4190 * Tue Apr 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-22.el6]
4191 - [netdrv] b43: ssb: do not read SPROM if it does not exist (John Linville) [574895]
4192 - [netdrv] igb: add support for Intel I350 Gigabit Network Connection (Stefan Assmann) [580727]
4193 - [kernel] exec: refactor how usermodehelpers work and modify core_pipe recursion check (Neil Horman) [557387]
4194 - [kernel] re-export page_is_ram() for crash module (Prarit Bhargava) [583032]
4195 - [x86] amd_iommu: allow iommu to complete dma transactions during transition to kdump kernel (Neil Horman) [577788]
4196 - [nfs] rsize and wsize settings ignored on v4 mounts (Steve Dickson) [582697]
4197 - [net] igmp: fix ip_mc_sf_allow race (Flavio Leitner) [578932]
4198 - [net] Remove skb_dma_map/unmap calls from drivers (Thomas Graf) [576690]
4199 - [scsi] mpt2sas: IOs needs to be pause until handles are refreshed for all device after recovery (Tomas Henzl) [577909]
4200 - [scsi] mpt2sas: Reworked scmd->result priority for _scsih_qcmd (Tomas Henzl) [577909]
4201 - [x86] Suppress stack overrun message for init_task (Prarit Bhargava) [582625]
4202 - [sunrpc] gss_krb5: Advertise rc4-hmac enctype support in the rpcsec_gss/krb5 upcall (Steve Dickson) [498317]
4203 - [sunrpc] gss_krb5: Add support for rc4-hmac encryption (Steve Dickson) [498317]
4204 - [sunrpc] gss_krb5: Use confounder length in wrap code (Steve Dickson) [498317]
4205 - [sunrpc] gssd_krb5: More arcfour-hmac support (Steve Dickson) [498317]
4206 - [sunrpc] gss_krb5: Save the raw session key in the context (Steve Dickson) [498317]
4207 - [sunrpc] gssd_krb5: arcfour-hmac support (Steve Dickson) [498317]
4208 - [sunrpc] gss_krb5: Advertise AES enctype support in the rpcsec_gss/krb5 upcall (Steve Dickson) [498317]
4209 - [sunrpc] gss_krb5: add remaining pieces to enable AES encryption support (Steve Dickson) [498317]
4210 - [sunrpc] gss_krb5: add support for new token formats in rfc4121 (Steve Dickson) [498317]
4211 - [sunrpc] xdr: Add an export for the helper function write_bytes_to_xdr_buf() (Steve Dickson) [498317]
4212 - [sunrpc] gss_krb5: Advertise triple-des enctype support in the rpcsec_gss/krb5 upcall (Steve Dickson) [498317]
4213 - [sunrpc] gss_krb5: add support for triple-des encryption (Steve Dickson) [498317]
4214 - [sunrpc] gss_krb5: Add upcall info indicating supported kerberos enctypes (Steve Dickson) [498317]
4215 - [sunrpc] gss_krb5: handle new context format from gssd (Steve Dickson) [498317]
4216 - [sunrpc] gss_krb5: import functionality to derive keys into the kernel (Steve Dickson) [498317]
4217 - [sunrpc] gss_krb5: add ability to have a keyed checksum (hmac) (Steve Dickson) [498317]
4218 - [sunrpc] gss_krb5: introduce encryption type framework (Steve Dickson) [498317]
4219 - [sunrpc] gss_krb5: prepare for new context format (Steve Dickson) [498317]
4220 - [sunrpc] gss_krb5: split up functions in preparation of adding new enctypes (Steve Dickson) [498317]
4221 - [sunrpc] gss_krb5: Don't expect blocksize to always be 8 when calculating padding (Steve Dickson) [498317]
4222 - [sunrpc] gss_krb5: Added and improved code comments (Steve Dickson) [498317]
4223 - [sunrpc] gss_krb5: Introduce encryption type framework (Steve Dickson) [498317]
4224 - [mm] Fix vfree race resulting in kernel bug (Steven Whitehouse) [582522]
4225 - [ata] libata: fix accesses at LBA28 boundary (David Milburn) [582432]
4226 - [netdrv] b43: Rewrite DMA Tx status handling sanity checks (John Linville) [574533]
4227 - [char] tty: release_one_tty() forgets to put pids (Oleg Nesterov) [582077] {CVE-2010-1162}
4228 - [mm] oom: fix the unsafe usage of badness() in proc_oom_score() (Oleg Nesterov) [582069]
4229 - [netdrv] bonding: fix broken multicast with round-robin mode (Andy Gospodarek) [581644]
4230 - [x86] Remove sysfs_attr_init, sysfs_bin_attr_init changes introduced in last MCE patch (Prarit Bhargava) [581659]
4231 - [kernel] sched_getaffinity: allow less than NR_CPUS length (Oleg Nesterov) [578970]
4232 - [scsi] bfa sync w/ upstream (Rob Evers) [576716]
4233 - [gfs] GFS2: Fix ordering of ordered buffers (Steven Whitehouse) [581011]
4234 - [gfs] GFS2: Don't withdraw on partial rindex entries (Robert S Peterson) [581009]
4235 - [gfs] GFS2: livelock while reclaiming unlinked dinodes (Robert S Peterson) [570182]
4236 - [scsi] mpt2sas: Do not reset handle before calling _scsih_remove_device in RESCAN task after HBA RESET (Tomas Henzl) [572646]
4237 - [scsi] mpt2sas: Device removal algorithm in interrupt ctx (Tomas Henzl) [572646]
4238 - [scsi] mpt2sas: fix the incorrect scsi_dma_map error checking (Tomas Henzl) [572646]
4239 - [scsi] Upgrading version to 04.100.01.02 (Tomas Henzl) [572646]
4240 - [scsi] mpt2sas: modified _scsih_sas_device_find_by_handle/sas_address (Tomas Henzl) [572646]
4241 - [scsi] mpt2sas: RESCAN Barrier work is added in case of HBA reset (Tomas Henzl) [572646]
4242 - [scsi] update the version to 04.100.01.00 (Tomas Henzl) [572646]
4243 - [scsi] scsi_transport_sas: add support for transport layer retries (TLR) (Tomas Henzl) [572646]
4244 - [scsi] mpt2sas: Added raid transport support (Tomas Henzl) [572646]
4245 - [scsi] eliminate potential kmalloc failure in scsi_get_vpd_page() (Tomas Henzl) [572646]
4246 - [ata] libata: fix ata_id_logical_per_physical_sectors (David Milburn) [582021]
4247 - [netdrv] iwlwifi: Fix throughput stall issue in HT mode for 5000 (Stanislaw Gruszka) [580063]
4248 - [infiniband] IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc() (Stanislaw Gruszka) [580063]
4249 - [net] cfg80211: fix channel setting for wext (Stanislaw Gruszka) [580063]
4250 - [net] mac80211: check that ieee80211_set_power_mgmt only handles STA interfaces (Stanislaw Gruszka) [580063]
4251 - [ata] ata_piix: fix MWDMA handling on PIIX3 (Stanislaw Gruszka) [580063]
4252 - [ata] ahci: disable SNotification capability for ich8 (Stanislaw Gruszka) [580063]
4253 - [netdrv] ar9170: Add support for D-Link DWA 160 A2 (Stanislaw Gruszka) [580063]
4254 - [netdrv] sfc: Fix DMA mapping cleanup in case of an error in TSO (Stanislaw Gruszka) [580063]
4255 - [fs] ext4: don't call write_inode under the journal (Josef Bacik) [576202]
4256 - [fs] ext4: Calculate metadata requirements more accurately (Josef Bacik) [576202]
4257 - [fs] ext4: Patch up how we claim metadata blocks for quota purposes (Josef Bacik) [576202]
4258 - [fs] ext4: fix potential quota deadlock (Josef Bacik) [576202]
4259 - [virt] virtio: console: Add support for nonblocking write()s (Amit Shah) [576241]
4260 - [virt] virtio: console: Rename wait_is_over() to will_read_block() (Amit Shah) [576241]
4261 - [virt] virtio: console: Don't always create a port 0 if using multiport (Amit Shah) [576241]
4262 - [virt] virtio: console: Use a control message to add ports (Amit Shah) [576241]
4263 - [virt] virtio: console: Move code around for future patches (Amit Shah) [576241]
4264 - [virt] virtio: console: Remove config work handler (Amit Shah) [576241]
4265 - [virt] virtio: console: Don't call hvc_remove() on unplugging console ports (Amit Shah) [576241]
4266 - [virt] virtio: console: Return -EPIPE to hvc_console if we lost the connection (Amit Shah) [576241]
4267 - [virt] virtio: console: Let host know of port or device add failures (Amit Shah) [576241]
4268 - [virt] virtio: console: Add a __send_control_msg() that can send messages without a valid port (Amit Shah) [576241]
4269 - [virt] hvc_console: Fix race between hvc_close and hvc_remove (Amit Shah) [577222]
4270 - [virt] virtio: console makes incorrect assumption about virtio API (Amit Shah) [576241]
4271 - [virt] MAINTAINERS: Put the virtio-console entry in correct alphabetical order (Amit Shah) [576241]
4272 - [virt] virtio: console: Fix early_put_chars usage (Amit Shah) [576241]
4273 - [virt] virtio: console: Check if port is valid in resize_console (Amit Shah) [576241]
4274 - [virt] virtio: console: Generate a kobject CHANGE event on adding 'name' attribute (Amit Shah) [576241]
4275 - [virt] virtio: console: Use better variable names for fill_queue operation (Amit Shah) [576241]
4276 - [virt] virtio: console: Fix type of 'len' as unsigned int (Amit Shah) [576241]
4277 - [vfs] rename block_fsync() to blkdev_fsync() (Jeff Moyer) [579781]
4278 - [char] raw: add an fsync method (Jeff Moyer) [579781]
4279 - [x86] Don't use logical-flat mode when more than 8 CPUs are possible (John Villalovos) [563798]
4280 - [net] Backport the new socket API recvmmsg, receive multiple messages (Arnaldo Carvalho de Melo) [579850]
4281 - [kernel] coredump: fix the page leak in dump_seek() (Oleg Nesterov) [580126]
4282 - [s390x] callhome: fix broken proc interface and activate comp ID (Hendrik Brueckner) [579482]
4283
4284 * Mon Apr 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-21.el6]
4285 - [x86] Update x86 MCE code (Prarit Bhargava) [580587]
4286 - [scsi] 3w-xxxx: Force 60 second timeout default (Tomas Henzl) [572778]
4287 - [netdrv] enic: update to upstream version 1.3.1.1 (Andy Gospodarek) [575950]
4288 - [netdrv] igb: Add support for 82576 ET2 Quad Port Server Adapter (Stefan Assmann) [577421]
4289 - [kernel] resource: Fix generic page_is_ram() for partial RAM pages (Prarit Bhargava) [578834]
4290 - [x86] Use the generic page_is_ram() (Prarit Bhargava) [578834]
4291 - [x86] Remove BIOS data range from e820 (Prarit Bhargava) [578834]
4292 - [kernel] Move page_is_ram() declaration to mm.h (Prarit Bhargava) [578834]
4293 - [kernel] Generic page_is_ram: use __weak (Prarit Bhargava) [578834]
4294 - [kernel] resources: introduce generic page_is_ram() (Prarit Bhargava) [578834]
4295 - [fs] GFS2: Clean up copying from stuffed files (Steven Whitehouse) [580857]
4296 - [netdrv] igb: restrict WoL for 82576 ET2 Quad Port Server Adapter (Stefan Assmann) [578804]
4297 - [drm] radeon/kms: move radeon KMS on/off switch out of staging (Dave Airlie) [580766]
4298 - [netdrv] p54: fix deadlocks under tx load (Michal Schmidt) [580557]
4299 - [gfs2] GFS2: Mandatory locking fix (Steven Whitehouse) [571606] {CVE-2010-0727}
4300 - [x86] AMD: Fix NULL pointer dereference on 32-bit (Bhavna Sarathy) [571474]
4301 - [x86] Add wbinvd SMP helper routines (Bhavna Sarathy) [571474]
4302 - [x86] L3 cache: Remove NUMA dependency (Bhavna Sarathy) [571474]
4303 - [x86] Calculate L3 indices (Bhavna Sarathy) [571474]
4304 - [x86] Add cache index disable sys attributes (Bhavna Sarathy) [571474]
4305 - [x86] Fix disabling of L3 cache indices (Bhavna Sarathy) [571474]
4306 - [fs] NFS: Avoid a deadlock in nfs_release_page (Jeff Layton) [525963]
4307 - [fs] NFS: Remove requirement for inode->i_mutex from nfs_invalidate_mapping (Jeff Layton) [525963]
4308 - [fs] NFS: Clean up nfs_sync_mapping (Jeff Layton) [525963]
4309 - [fs] NFS: Simplify nfs_wb_page() (Jeff Layton) [525963]
4310 - [fs] NFS: Replace __nfs_write_mapping with sync_inode() (Jeff Layton) [525963]
4311 - [fs] NFS: Simplify nfs_wb_page_cancel() (Jeff Layton) [525963]
4312 - [fs] NFS: Ensure inode is always marked I_DIRTY_DATASYNC, if it has unstable pages (Jeff Layton) [525963]
4313 - [fs] NFS: Run COMMIT as an asynchronous RPC call when wbc->for_background is set (Jeff Layton) [525963]
4314 - [fs] NFS: Reduce the number of unnecessary COMMIT calls (Jeff Layton) [525963]
4315 - [fs] NFS: Add a count of the number of unstable writes carried by an inode (Jeff Layton) [525963]
4316 - [fs] NFS: Cleanup - move nfs_write_inode() into fs/nfs/write.c (Jeff Layton) [525963]
4317 - [fs] writeback: pass writeback_control to ->write_inode (Jeff Layton) [525963]
4318 - [fs] writeback: make sure data is on disk before calling ->write_inode (Jeff Layton) [525963]
4319 - [fs] writeback: introduce wbc.for_background (Jeff Layton) [525963]
4320 - [netdrv] macvlan: fix support for multiple driver backends (Anthony Liguori) [553337 566731]
4321 - [netdrv] net/macvtap: add vhost support (Anthony Liguori) [553337 566731]
4322 - [netdrv] macvtap: add GSO/csum offload support (Anthony Liguori) [553337 566731]
4323 - [netdrv] macvtap: rework object lifetime rules (Anthony Liguori) [553337 566731]
4324 - [netdrv] macvtap: fix reference counting (Anthony Liguori) [553337 566731]
4325 - [netdrv] net: macvtap driver (Anthony Liguori) [553337 566731]
4326 - [netdrv] macvlan: export macvlan mode through netlink (Anthony Liguori) [553337 566731]
4327 - [netdrv] macvlan: implement bridge, VEPA and private mode (Anthony Liguori) [553337 566731]
4328 - [netdrv] macvlan: cleanup rx statistics (Anthony Liguori) [553337 566731]
4329 - [netdrv] macvlan: Precise RX stats accounting (Anthony Liguori) [553337 566731]
4330 - [netdrv] macvlan: add private dev_txq_stats_fold function (Anthony Liguori) [553337 566731]
4331 - [netdrv] veth: move loopback logic to common location (Anthony Liguori) [553337 566731]
4332 - [s390x] zfcp: Remove lock dependency on unit remove (Hendrik Brueckner) [576860]
4333 - [s390x] zfcp: Remove lock dependency on unit add (Hendrik Brueckner) [576860]
4334 - [s390x] zfcp: Remove lock dependency on CCW remove (Hendrik Brueckner) [576860]
4335 - [s390x] dasd: fix alignment of transport mode recovery TCW (Hendrik Brueckner) [575824]
4336 - [s390x] cio: fix drvdata usage for the console subchannel (Hendrik Brueckner) [575826]
4337 - [s390x] zcore: CPU registers are not saved under LPAR (Hendrik Brueckner) [575221]
4338 - [s390x] zfcpdump: Use direct IO in order to increase dump speed (Hendrik Brueckner) [575189]
4339 - [s390x] qeth: change checksumming default for HiperSockets (Hendrik Brueckner) [572227]
4340 - [s390x] qeth: l3 send dhcp in non pass thru mode (Hendrik Brueckner) [572225]
4341 - [s390x] zfcp: Remove attached ports and units correctly (Hendrik Brueckner) [571938]
4342 - [drm] Bring in nouveau updates from upstream (Ben Skeggs) [558468]
4343 - [vfs] pass struct file to do_truncate on O_TRUNC opens (Jeff Layton) [573995]
4344 - [vfs] O_TRUNC open shouldn't fail after file truncation (Jeff Layton) [573995]
4345 - [net] netfilter: ctnetlink: compute message size properly (Jiri Pirko) [578476]
4346 - [block] cfq-iosched: Do not merge queues of BE and IDLE classes (Jeff Moyer) [577393]
4347 - [block] remove 16 bytes of padding from struct request on 64bits (Jeff Moyer) [577393]
4348 - [block] cfq: remove 8 bytes of padding from cfq_rb_root on 64 bit builds (Jeff Moyer) [577393]
4349 - [block] cfq-iosched: quantum check tweak (Jeff Moyer) [577393]
4350 - [block] remove padding from io_context on 64bit builds (Jeff Moyer) [577393]
4351 - [block] cfq: reorder cfq_queue removing padding on 64bit (Jeff Moyer) [577393]
4352 - [block] cfq-iosched: split seeky coop queues after one slice (Jeff Moyer) [577393]
4353 - [x86] edac, mce: Filter out invalid values (Bhavna Sarathy) [574487]
4354 - [x86] edac, mce, amd: silence GART TLB errors (Bhavna Sarathy) [574487]
4355 - [x86] edac, mce: correct corenum reporting (Bhavna Sarathy) [574487]
4356 - [x86] edac, mce: update AMD F10h revD check (Bhavna Sarathy) [574487]
4357 - [x86] amd64_edac: Simplify ECC override handling (Bhavna Sarathy) [574487]
4358 - [x86] amd64_edac: Do not falsely trigger kerneloops (Bhavna Sarathy) [574487]
4359 - [x86] amd64_edac: Ensure index stays within bounds in amd64_get_scrub_rate (Bhavna Sarathy) [574487]
4360 - [x86] amd64_edac: restrict PCI config space access (Bhavna Sarathy) [574487]
4361 - [x86] amd64_edac: fix K8 chip select reporting (Bhavna Sarathy) [574487]
4362 - [x86] amd64_edac: bump driver version (Bhavna Sarathy) [574487]
4363 - [x86] amd64_edac: fix use-uninitialised bug (Bhavna Sarathy) [574487]
4364 - [x86] amd64_edac: correct sys address to chip select mapping (Bhavna Sarathy) [574487]
4365 - [x86] amd64_edac: add a leaner syndrome decoding algorithm (Bhavna Sarathy) [574487]
4366 - [x86] amd64_edac: remove early hw support check (Bhavna Sarathy) [574487]
4367 - [x86] amd64_edac: detect DDR3 memory type (Bhavna Sarathy) [574487]
4368 - [x86] edac: add memory types strings for debugging (Bhavna Sarathy) [574487]
4369 - [x86] amd64_edac: remove unneeded extract_error_address wrapper (Bhavna Sarathy) [574487]
4370 - [x86] amd64_edac: rename StinkyIdentifier (Bhavna Sarathy) [574487]
4371 - [x86] amd64_edac: remove superfluous dbg printk (Bhavna Sarathy) [574487]
4372 - [x86] amd64_edac: enhance address to DRAM bank mapping (Bhavna Sarathy) [574487]
4373 - [x86] amd64_edac: cleanup f10_early_channel_count (Bhavna Sarathy) [574487]
4374 - [x86] amd64_edac: dump DIMM sizes on K8 too (Bhavna Sarathy) [574487]
4375 - [x86] amd64_edac: cleanup rest of amd64_dump_misc_regs (Bhavna Sarathy) [574487]
4376 - [x86] amd64_edac: cleanup DRAM cfg low debug output (Bhavna Sarathy) [574487]
4377 - [x86] amd64_edac: wrap-up pci config read error handling (Bhavna Sarathy) [574487]
4378 - [x86] amd64_edac: make DRAM regions output more human-readable (Bhavna Sarathy) [574487]
4379 - [x86] amd64_edac: clarify DRAM CTL debug reporting (Bhavna Sarathy) [574487]
4380
4381 * Tue Apr 06 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-20.el6]
4382 - [netdrv] iwlwifi: fix kdump hang (Stanislaw Gruszka) [575122]
4383 - [kernel] clockevent: Don't remove broadcast device when cpu is dead (Danny Feng) [572438]
4384 - [block] Export max number of segments and max segment size in sysfs (Jeff Moyer) [574132]
4385 - [block] Finalize conversion of block limits functions (Jeff Moyer) [574132]
4386 - [block] Fix overrun in lcm() and move it to lib (Jeff Moyer) [574132]
4387 - [block] jiffies fixes (Jeff Moyer) [574132]
4388 - [block] Consolidate phys_segment and hw_segment limits (Jeff Moyer) [574132]
4389 - [block] Rename blk_queue_max_sectors to blk_queue_max_hw_sectors (Jeff Moyer) [574132]
4390 - [block] Add BLK_ prefix to definitions (Jeff Moyer) [574132]
4391 - [block] Remove unused accessor function (Jeff Moyer) [574132]
4392 - [block] Update blk_queue_max_sectors and documentation (Jeff Moyer) [574132]
4393 - [ata] ahci: Turn off DMA engines when there's no device attached (Matthew Garrett) [577967]
4394 - [scsi] qla2xxx: minor updates and fixes from upstream (Rob Evers) [574526]
4395 - [scsi] Additional BSG corrections from upstream (Rob Evers) [574590]
4396 - [netdrv] be2net: Update be2net 10GB NIC driver to version 2.102.147u (Ivan Vecera) [576172]
4397 - [scsi] update fibre channel layer (Mike Christie) [571824]
4398 - [scsi] lpfc Update from 8.3.5.6 to 8.3.5.7 FC/FCoE (Rob Evers) [576174]
4399 - [netdrv] e100: fix the 'size' argument passed to pci_pool_create() (Dean Nelson) [576887]
4400 - [kernel] futex: remove rw parameter from get_futex_key() (Amerigo Wang) [555700]
4401 - [drm] Add drm_gem_object_handle_unreference_unlocked and drm_gem_object_unreference_unlocked (Adam Jackson) [575910]
4402 - [drm] i915: Update to 2.6.34-rc1 (pre-vga-switcheroo) (Adam Jackson) [575910]
4403 - [scsi] libfcoe: Send port LKA every FIP_VN_KA_PERIOD secs (Rob Evers) [570693]
4404 - [scsi] fnic: updating driver to 1.4.0.98 syncs w/ upstream (Rob Evers) [570693]
4405 - [sound] snd-hda-intel: avoid divide by zero (Jaroslav Kysela) [567173] {CVE-2010-1085}
4406 - [netdrv] bnx2x: use new firmware (Stanislaw Gruszka) [560993]
4407 - [netdrv] bnx2: remove old firmware (Stanislaw Gruszka) [560993]
4408 - [netdrv] bnx2x: 1.52.1-6 firmware (Stanislaw Gruszka) [560993]
4409 - [netdrv] bnx2x: 1.52.1-6 bug fixes (Stanislaw Gruszka) [560993]
4410 - [ata] ahci: support FIS-based switching (David Milburn) [463152]
4411 - [drm] radeon: better GPU reset for lockup (Jerome Glisse) [576511]
4412 - [block] cciss: add 30 second initial timeout wait on controller reset (Tomas Henzl) [574094]
4413 - [serial] fix hang in serial console open (Neil Horman) [568418]
4414 - [virt] vmw_pvscsi: adding vmware paravirtualized driver (Rob Evers) [553062]
4415 - [scsi] 3w-9xxx: update 3w-9xxx to v2.26.02.014RH (Tomas Henzl) [572779]
4416 - [netdrv] ixgbevf: initial support for 82599VF driver (Andy Gospodarek) [462790]
4417 - [netdrv] ixgbe: update to version 2.0.62-k2 (Andy Gospodarek) [462790]
4418 - [netdrv] netxen: More critical bug fixes and AER support (Tony Camuso) [516840]
4419 - [netdrv] netxen: Sync with upstream kernel bug fixes (Tony Camuso) [516840]
4420 - [fs] dlm: use bastmode in debugfs output (David Teigland) [568102]
4421 - [fs] dlm: send reply before bast (David Teigland) [568102]
4422 - [fs] dlm: fix ordering of bast and cast (David Teigland) [568102]
4423 - [virt] virtio-net: remove send queue (Anthony Liguori) [555698]
4424 - [virt] virtio-net: Defer skb allocation and remove recv queue (Anthony Liguori) [555698]
4425 - [net] bridge: Allow enable/disable UFO on bridge device via ethtool (Anthony Liguori) [555537]
4426 - [net] Make UFO on master device independent of attached devices (Anthony Liguori) [555537]
4427 - [fs] xfs: fix locking for inode cache radix tree tag updates (Christoph Hellwig) [573836]
4428 - [uv] fix microcode.ctl slow down in boot-time on large systems (George Beshers) [573018]
4429 - [scsi] lpfc Update from 8.3.5.5 to 8.3.5.6 FC/FCoE (Rob Evers) [568889]
4430 - [mm] transparent hugepage support update (Andrea Arcangeli) [556572]
4431 - [netdrv] e1000e: fix data corruptor in NFS packet split filtering hw (Neil Horman) [572350]
4432 - [security] selinux: dynamic class/perm discovery (Eric Paris) [570812]
4433 - [security] selinux/ss: correct size computation (Eric Paris) [573000]
4434 - [security] SELinux: reduce size of access vector hash table (Eric Paris) [570433]
4435 - [security] SELinux: reset the security_ops before flushing the avc cache (Eric Paris) [572998]
4436 - [sched] Fix sched_mc_power_savings for !SMT (Danny Feng) [571879]
4437 - [security] selinux: Only audit permissions specified in policy (Eric Paris) [573002]
4438 - [security] selinux: fix memory leak in sel_make_bools (Eric Paris) [573008]
4439 - [security] SELinux: Make selinux_kernel_create_files_as() shouldn't just always return 0 (Eric Paris) [573011]
4440 - [security] selinux: convert range transition list to a hashtab (Eric Paris) [572702]
4441 - [virt] x86: remove kmap_atomic_pte paravirt op (Paolo Bonzini) [567203]
4442 - [virt] vmi: disable highmem PTE allocation even when CONFIG_HIGHPTE=y (Paolo Bonzini) [567203]
4443 - [virt] xen: disable highmem PTE allocation even when CONFIG_HIGHPTE=y (Paolo Bonzini) [567203]
4444 - [virt] x86: allow allocation of highmem user page tables to be disabled when CONFIG_HIGHPTE=y (Paolo Bonzini) [567203]
4445 - [netdrv] qlge: update to latest upstream (Andy Gospodarek) [562311]
4446 - [netdrv] add netif_printk helpers (Andy Gospodarek) [562311]
4447 - [net] bridge: Fix build error when IGMP_SNOOPING is not enabled (Herbert Xu) [574321]
4448 - [net] bridge: Add multicast count/interval sysfs entries (Herbert Xu) [574321]
4449 - [net] bridge: Add hash elasticity/max sysfs entries (Herbert Xu) [574321]
4450 - [net] bridge: Add multicast_snooping sysfs toggle (Herbert Xu) [574321]
4451 - [net] bridge: Add multicast_router sysfs entries (Herbert Xu) [574321]
4452 - [net] bridge: Add multicast data-path hooks (Herbert Xu) [574321]
4453 - [net] bridge: Add multicast start/stop hooks (Herbert Xu) [574321]
4454 - [net] bridge: Add multicast forwarding functions (Herbert Xu) [574321]
4455 - [net] bridge: Move NULL mdb check into br_mdb_ip_get (Herbert Xu) [574321]
4456 - [net] bridge: ensure to unlock in error path in br_multicast_query() (Herbert Xu) [574321]
4457 - [net] bridge: Fix RCU race in br_multicast_stop (Herbert Xu) [574321]
4458 - [net] bridge: Use RCU list primitive in __br_mdb_ip_get (Herbert Xu) [574321]
4459 - [net] bridge: cleanup: remove unneed check (Herbert Xu) [574321]
4460 - [net] bridge: depends on INET (Herbert Xu) [574321]
4461 - [net] bridge: Make IGMP snooping depend upon BRIDGE. (Herbert Xu) [574321]
4462 - [net] bridge: Add core IGMP snooping support (Herbert Xu) [574321]
4463 - [net] bridge: Fix br_forward crash in promiscuous mode (Herbert Xu) [574321]
4464 - [net] bridge: Split may_deliver/deliver_clone out of br_flood (Herbert Xu) [574321]
4465 - [net] bridge: Use BR_INPUT_SKB_CB on xmit path (Herbert Xu) [574321]
4466 - [net] bridge: Avoid unnecessary clone on forward path (Herbert Xu) [574321]
4467 - [net] bridge: Allow tail-call on br_pass_frame_up (Herbert Xu) [574321]
4468 - [net] bridge: Do br_pass_frame_up after other ports (Herbert Xu) [574321]
4469 - [net] Add netdev_alloc_skb_ip_align() helper (Herbert Xu) [574321]
4470 - [kernel] futex_lock_pi() key refcnt fix (Danny Feng) [566347] {CVE-2010-0623}
4471 - [pci] AER: fix aer inject result in kernel oops (Prarit Bhargava) [568515]
4472 - [scsi] fix 32bit compatibility in BSG interface (Rob Evers) [554538]
4473 - [x86] ACPI: don't cond_resched if irq is disabled (Danny Feng) [572441]
4474 - [x86] Ensure dell-laptop buffers are below 4GB (Matthew Garrett) [570036]
4475 - [hwmon] add hex '0x' indication to coretemp module output (Dean Nelson) [571865]
4476 - [cifs] update cifs client code to latest upstream code (Jeff Layton) [562788]
4477 - [block] fix merge_bvec_fn return value checks (Mike Snitzer) [571455]
4478 - [fs] ext4: avoid uninit mem references on some mount options (Eric Sandeen) [562008]
4479 - [s390x] dasd: Correct offline processing (Hendrik Brueckner) [568376]
4480 - [s390x] dasd: Fix refcounting (Hendrik Brueckner) [568376]
4481 - [x86] amd_iommu: remove dma-ops warning message (Bhavna Sarathy) [560002]
4482 - [x86] amd_iommu: Fix IO page fault by adding device notifiers (Bhavna Sarathy) [560002]
4483 - [x86] amd_iommu: Fix IOMMU API initialization for iommu=pt (Bhavna Sarathy) [560002]
4484 - [x86] amd_iommu: Fix possible integer overflow (Bhavna Sarathy) [560002]
4485 - [x86] amd_iommu: Fix deassignment of a device from the pt domain (Bhavna Sarathy) [560002]
4486 - [gfs2] Allow the number of committed revokes to temporarily be negative (Benjamin Marzinski) [563907]
4487 - [ppc64] powerpc: export data from new hcall H_EM_GET_PARMS (Steve Best) [570019]
4488 - [x86] ACPI: Be in TS_POLLING state during mwait based C-state entry (Avi Kivity) [571440]
4489 - [net] tcp: fix ICMP-RTO war (Jiri Olsa) [567532]
4490 - [mm] Add padding to mm structures allow future patches during the RHEL6 life (Larry Woodman) [554511]
4491
4492 * Tue Mar 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-19.el6]
4493 - [mm] Switch to SLAB (Aristeu Rozanski) [570614]
4494
4495 * Mon Mar 08 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-18.el6]
4496 - [kernel/time] revert cc2f92ad1d0e03fe527e8ccfc1f918c368964dc8 (Aristeu Rozanski) [567551]
4497 - [virt] hvc_console: Fix race between hvc_close and hvc_remove (Amit Shah) [568624]
4498 - [scsi] Add netapp to scsi dh alua dev list (Mike Christie) [559586]
4499 - [scsi] scsi_dh_emc: fix mode select setup (Mike Christie) [570685]
4500 - [drm] Remove loop in IronLake graphics interrupt handler (John Villalovos) [557838]
4501 - [x86] Intel Cougar Point chipset support (John Villalovos) [560077]
4502 - [vhost] vhost-net: restart tx poll on sk_sndbuf full (Michael S. Tsirkin) [562837]
4503 - [vhost] fix get_user_pages_fast error handling (Michael S. Tsirkin) [562837]
4504 - [vhost] initialize log eventfd context pointer (Michael S. Tsirkin) [562837]
4505 - [vhost] logging thinko fix (Michael S. Tsirkin) [562837]
4506 - [vhost] vhost-net: switch to smp barriers (Michael S. Tsirkin) [562837]
4507 - [net] bug fix for vlan + gro issue (Andy Gospodarek) [569922]
4508 - [uv] Fix unmap_vma() bug related to mmu_notifiers (George Beshers) [253033]
4509 - [uv] Have mmu_notifiers use SRCU so they may safely schedule (George Beshers) [253033]
4510 - [drm] radeon/kms: bring all v2.6.33 fixes into EL6 kernel (Dave Airlie) [547422 554323 566618 569704]
4511 - [dvb] Fix endless loop when decoding ULE at dvb-core (Mauro Carvalho Chehab) [569243]
4512 - [kernel] sched: Fix SCHED_MC regression caused by change in sched cpu_power (Danny Feng) [568123]
4513 - [s390x] vdso: glibc does not use vdso functions (Hendrik Brueckner) [567755]
4514 - [drm] bring drm core/ttm/fb layer fixes in from upstream (Dave Airlie) [569701]
4515 - [kernel] Fix SMT scheduler regression in find_busiest_queue() (Danny Feng) [568120]
4516 - [s390x] qeth: avoid recovery during device online setting (Hendrik Brueckner) [568781]
4517 - [mm] Fix potential crash with sys_move_pages (Danny Feng) [562591] {CVE-2010-0415}
4518 - [scsi] pmcraid: bug fixes from upstream (Rob Evers) [567376]
4519 - [scsi] lpfc Update from 8.3.5.4 to 8.3.5.5 FC/FCoE (Rob Evers) [564508]
4520 - [ata] ahci: disable FPDMA auto-activate optimization on NVIDIA AHCI (David Milburn) [568815]
4521 - [selinux] netlabel: fix corruption of SELinux MLS categories > 127 (Eric Paris) [568370]
4522 - [gfs2] print glock numbers in hex (Robert S Peterson) [566755]
4523 - [mm] Fix hugetlb.c clear_huge_page parameter (Andrea Arcangeli) [566604]
4524 - [mm] fix anon_vma locking updates for transparent hugepage code (Andrea Arcangeli) [564515]
4525 - [netdrv] cxgb3: add memory barriers (Steve Best) [568390]
4526 - [dm] raid45 target: constructor error path oops fix (Heinz Mauelshagen) [567605]
4527 - [scsi] mpt2sas: fix missing initialization (Tomas Henzl) [567965]
4528 - [net] netfilter: nf_conntrack: per netns nf_conntrack_cachep (Jiri Pirko) [567181]
4529 - [x86] nmi_watchdog: use __cpuinit for nmi_watchdog_default (Don Zickus) [567601]
4530 - [netdrv] ixgbe: prevent speculative processing of descriptors (Steve Best) [568391]
4531 - [kvm] Fix emulate_sys[call, enter, exit]()'s fault handling (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4532 - [kvm] Fix segment descriptor loading (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4533 - [kvm] Fix load_guest_segment_descriptor() to inject page fault (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4534 - [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}
4535 - [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}
4536 - [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}
4537 - [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}
4538 - [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}
4539 - [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}
4540 - [kvm] x86 emulator: code style cleanup (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4541 - [kvm] x86 emulator: Add LOCK prefix validity checking (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4542 - [kvm] x86 emulator: Check CPL level during privilege instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4543 - [kvm] x86 emulator: Fix popf emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4544 - [kvm] x86 emulator: Check IOPL level during io instruction emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4545 - [kvm] x86 emulator: fix memory access during x86 emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4546 - [kvm] x86 emulator: Add Virtual-8086 mode of emulation (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4547 - [kvm] x86 emulator: Add group9 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4548 - [kvm] x86 emulator: Add group8 instruction decoding (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4549 - [kvm] x86 emulator: Introduce No64 decode option (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4550 - [kvm] x86 emulator: Add 'push/pop sreg' instructions (Gleb Natapov) [560903 560904 563466] {CVE-2010-0298 CVE-2010-0306 CVE-2010-0419}
4551 - [x86] AES/PCLMUL Instruction support: Various fixes for AES-NI and PCLMMUL (John Villalovos) [463496]
4552 - [x86] AES/PCLMUL Instruction support: Use gas macro for AES-NI instructions (John Villalovos) [463496]
4553 - [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]
4554 - [x86] AES/PCLMUL Instruction support: Add PCLMULQDQ accelerated implementation (John Villalovos) [463496]
4555 - [scsi] megaraid_sas: fix for 32bit apps (Tomas Henzl) [559941]
4556 - [kvm] fix large packet drops on kvm hosts with ipv6 (Neil Horman) [565525]
4557 - [kvm] Add MAINTAINERS entry for virtio_console (Amit Shah) [566391]
4558 - [kvm] virtio: console: Fill ports' entire in_vq with buffers (Amit Shah) [566391]
4559 - [kvm] virtio: console: Error out if we can't allocate buffers for control queue (Amit Shah) [566391]
4560 - [kvm] virtio: console: Add ability to remove module (Amit Shah) [566391]
4561 - [kvm] virtio: console: Ensure no memleaks in case of unused buffers (Amit Shah) [566391]
4562 - [kvm] virtio: console: update Red Hat copyright for 2010 (Amit Shah) [566391]
4563 - [kvm] virtio: Initialize vq->data entries to NULL (Amit Shah) [566391]
4564 - [kvm] virtio: console: outbufs are no longer needed (Amit Shah) [566391]
4565 - [kvm] virtio: console: return -efault for fill_readbuf if copy_to_user fails (Amit Shah) [566391]
4566 - [kvm] virtio: console: Allow sending variable-sized buffers to host, efault on copy_from_user err (Amit Shah) [566391]
4567
4568 * Thu Feb 18 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-17.el6]
4569 - [s390] hvc_iucv: allocate IUCV send/receive buffers in DMA zone (Hendrik Brueckner) [566188]
4570 - [s390] qdio: continue polling for buffer state ERROR (Hendrik Brueckner) [565528]
4571 - [s390] qdio: prevent kernel bug message in interrupt handler (Hendrik Brueckner) [565542]
4572 - [s390] zfcp: report BSG errors in correct field (Hendrik Brueckner) [564378]
4573 - [s390] zfcp: cancel all pending work for a to be removed zfcp_port (Hendrik Brueckner) [564382]
4574 - [nfs] mount.nfs: Unknown error 526 (Steve Dickson) [561975]
4575 - [x86] x86-64, rwsem: Avoid store forwarding hazard in __downgrade_write (Avi Kivity) [563801]
4576 - [x86] x86-64, rwsem: 64-bit xadd rwsem implementation (Avi Kivity) [563801]
4577 - [x86] x86-64: support native xadd rwsem implementation (Avi Kivity) [563801]
4578 - [x86] clean up rwsem type system (Avi Kivity) [563801]
4579 - [x86] x86-32: clean up rwsem inline asm statements (Avi Kivity) [563801]
4580 - [x86] nmi_watchdog: enable by default on RHEL-6 (Don Zickus) [523857]
4581 - [block] freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb (Mike Snitzer) [565890]
4582 - [block] fix bio_add_page for non trivial merge_bvec_fn case (Mike Snitzer) [565890]
4583 - [watchdog] Add support for iTCO watchdog on Ibex Peak chipset (John Villalovos) [536698]
4584 - [kernel] time: Remove xtime_cache (Prarit Bhargava) [563135]
4585 - [kernel] time: Implement logarithmic time accumalation (Prarit Bhargava) [563135]
4586 - [dm] raid1: fail writes if errors are not handled and log fails (Mike Snitzer) [565890]
4587 - [dm] mpath: fix stall when requeueing io (Mike Snitzer) [565890]
4588 - [dm] log: userspace fix overhead_size calcuations (Mike Snitzer) [565890]
4589 - [dm] stripe: avoid divide by zero with invalid stripe count (Mike Snitzer) [565890]
4590 - [mm] anon_vma locking updates for transparent hugepage code (Rik van Riel) [564515]
4591 - [mm] anon_vma linking changes to improve multi-process scalability (Rik van Riel) [564515]
4592 - [virt] virtio_blk: add block topology support (Christoph Hellwig) [556477]
4593 - [kvm] PIT: control word is write-only (Eduardo Habkost) [560905] {CVE-2010-0309}
4594 - [kernel] Prevent futex user corruption to crash the kernel (Jerome Marchand) [563957]
4595 - [selinux] print the module name when SELinux denies a userspace upcall (Eric Paris) [563731]
4596 - [gfs] GFS2 problems on single node cluster (Steven Whitehouse) [564329]
4597 - [ppc] Add kdump support to Collaborative Memory Manager (Steve Best) [563316]
4598
4599 * Fri Feb 12 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-16.el6]
4600 - [nfs] Remove a redundant check for PageFsCache in nfs_migrate_page() (Steve Dickson) [563938]
4601 - [nfs] Fix a bug in nfs_fscache_release_page() (Steve Dickson) [563938]
4602 - [mm] fix BUG()s caused by the transparent hugepage patch (Larry Woodman) [556572]
4603 - [fs] inotify: fix inotify WARN and compatibility issues (Eric Paris) [563363]
4604 - [net] do not check CAP_NET_RAW for kernel created sockets (Eric Paris) [540560]
4605 - [pci] Enablement of PCI ACS control when IOMMU enabled on system (Don Dutile) [523278]
4606 - [pci] PCI ACS support functions (Don Dutile) [523278]
4607 - [uv] x86: Fix RTC latency bug by reading replicated cachelines (George Beshers) [562189]
4608 - [s390x] ctcm / lcs / claw: remove cu3088 layer (Hendrik Brueckner) [557522]
4609 - [uv] vgaarb: add user selectability of the number of gpus in a system (George Beshers) [555879]
4610 - [gpu] vgaarb: fix vga arbiter to accept PCI domains other than 0 (George Beshers) [555879]
4611 - [uv] x86_64: update uv arch to target legacy VGA I/O correctly (George Beshers) [555879]
4612 - [pci] update pci_set_vga_state to call arch functions (George Beshers) [555879]
4613 - [uv] PCI: update pci_set_vga_state to call arch functions (George Beshers) [555879]
4614 - [mm] remove madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4615 - [mm] hugepage redhat customization (Andrea Arcangeli) [556572]
4616 - [mm] introduce khugepaged (Andrea Arcangeli) [556572]
4617 - [mm] transparent hugepage vmstat (Andrea Arcangeli) [556572]
4618 - [mm] memcg huge memory (Andrea Arcangeli) [556572]
4619 - [mm] memcg compound (Andrea Arcangeli) [556572]
4620 - [mm] pmd_trans_huge migrate bugcheck (Andrea Arcangeli) [556572]
4621 - [mm] madvise(MADV_HUGEPAGE) (Andrea Arcangeli) [556572]
4622 - [mm] verify pmd_trans_huge isnt leaking (Andrea Arcangeli) [556572]
4623 - [mm] transparent hugepage core (Andrea Arcangeli) [556572]
4624 - [mm] dont alloc harder for gfp nomemalloc even if nowait (Andrea Arcangeli) [556572]
4625 - [mm] introduce _GFP_NO_KSWAPD (Andrea Arcangeli) [556572]
4626 - [mm] backport page_referenced microoptimization (Andrea Arcangeli) [556572]
4627 - [mm] kvm mmu transparent hugepage support (Andrea Arcangeli) [556572]
4628 - [mm] clear_copy_huge_page (Andrea Arcangeli) [556572]
4629 - [mm] clear_huge_page fix (Andrea Arcangeli) [556572]
4630 - [mm] split_huge_page paging (Andrea Arcangeli) [556572]
4631 - [mm] split_huge_page_mm/vma (Andrea Arcangeli) [556572]
4632 - [mm] add pmd_huge_pte to mm_struct (Andrea Arcangeli) [556572]
4633 - [mm] clear page compound (Andrea Arcangeli) [556572]
4634 - [mm] add pmd mmu_notifier helpers (Andrea Arcangeli) [556572]
4635 - [mm] pte alloc trans splitting (Andrea Arcangeli) [556572]
4636 - [mm] bail out gup_fast on splitting pmd (Andrea Arcangeli) [556572]
4637 - [mm] add pmd mangling functions to x86 (Andrea Arcangeli) [556572]
4638 - [mm] add pmd mangling generic functions (Andrea Arcangeli) [556572]
4639 - [mm] special pmd_trans_* functions (Andrea Arcangeli) [556572]
4640 - [mm] config_transparent_hugepage (Andrea Arcangeli) [556572]
4641 - [mm] comment reminder in destroy_compound_page (Andrea Arcangeli) [556572]
4642 - [mm] export maybe_mkwrite (Andrea Arcangeli) [556572]
4643 - [mm] no paravirt version of pmd ops (Andrea Arcangeli) [556572]
4644 - [mm] add pmd paravirt ops (Andrea Arcangeli) [556572]
4645 - [mm] add native_set_pmd_at (Andrea Arcangeli) [556572]
4646 - [mm] clear compound mapping (Andrea Arcangeli) [556572]
4647 - [mm] update futex compound knowledge (Andrea Arcangeli) [556572]
4648 - [mm] alter compound get_page/put_page (Andrea Arcangeli) [556572]
4649 - [mm] add a compound_lock (Andrea Arcangeli) [556572]
4650 - [mm] define MADV_HUGEPAGE (Andrea Arcangeli) [556572]
4651 - [oprofile] Support Nehalem-EX CPU in Oprofile (John Villalovos) [528998]
4652 - [nfs] nfs: handle NFSv3 -EKEYEXPIRED errors as we would -EJUKEBOX (Jeff Layton) [479359]
4653 - [nfs] handle NFSv2 -EKEYEXPIRED returns from RPC layer appropriately (Jeff Layton) [479359]
4654 - [nfs] sunrpc: parse and return errors reported by gssd (Jeff Layton) [479359]
4655 - [nfs] nfs4: handle -EKEYEXPIRED errors from RPC layer (Jeff Layton) [479359]
4656 - [net] nf_conntrack: fix memory corruption (Jon Masters) [559471]
4657 - [kvm] emulate accessed bit for EPT (Rik van Riel) [555106]
4658 - [vhost] fix TUN=m VHOST_NET=y (Michael S. Tsirkin) [562837]
4659 - [vhost] vhost-net: defer f->private_data until setup succeeds (Chris Wright) [562837]
4660 - [vhost] vhost-net: comment use of invalid fd when setting vhost backend (Chris Wright) [562837]
4661 - [vhost] access check thinko fixes (Michael S. Tsirkin) [562837]
4662 - [vhost] make default mapping empty by default (Michael S. Tsirkin) [562837]
4663 - [vhost] add access_ok checks (Michael S. Tsirkin) [562837]
4664 - [vhost] prevent modification of an active ring (Michael S. Tsirkin) [562837]
4665 - [vhost] fix high 32 bit in FEATURES ioctls (Michael S. Tsirkin) [562837]
4666 - [dm] dm-raid1: fix deadlock at suspending failed device (Takahiro Yasui) [557932]
4667 - [dm] fix kernel panic at releasing bio on recovery failed region (Takahiro Yasui) [557934]
4668 - [scsi] lpfc Update from 8.3.4 to 8.3.5.4 FC/FCoE (Rob Evers) [531028]
4669 - [nfs] sunrpc/cache: fix module refcnt leak in a failure path (Steve Dickson) [562285]
4670 - [nfs] Ensure that we handle NFS4ERR_STALE_STATEID correctly (Steve Dickson) [560784]
4671 - [nfs] NFSv4.1: Don't call nfs4_schedule_state_recovery() unnecessarily (Steve Dickson) [560784]
4672 - [nfs] NFSv4: Don't allow posix locking against servers that don't support it (Steve Dickson) [560784]
4673 - [nfs] Ensure that the NFSv4 locking can recover from stateid errors (Steve Dickson) [560784]
4674 - [nfs] Avoid warnings when CONFIG_NFS_V4=n (Steve Dickson) [560784]
4675 - [nfs] Make nfs_commitdata_release static (Steve Dickson) [560784]
4676 - [nfs] Try to commit unstable writes in nfs_release_page() (Steve Dickson) [560784]
4677 - [nfs] Fix a reference leak in nfs_wb_cancel_page() (Steve Dickson) [560784]
4678 - [nfs] nfs41: cleanup callback code to use __be32 type (Steve Dickson) [560785]
4679 - [nfs] nfs41: clear NFS4CLNT_RECALL_SLOT bit on session reset (Steve Dickson) [560785]
4680 - [nfs] nfs41: fix nfs4_callback_recallslot (Steve Dickson) [560785]
4681 - [nfs] nfs41: resize slot table in reset (Steve Dickson) [560785]
4682 - [nfs] nfs41: implement cb_recall_slot (Steve Dickson) [560785]
4683 - [nfs] nfs41: back channel drc minimal implementation (Steve Dickson) [560785]
4684 - [nfs] nfs41: prepare for back channel drc (Steve Dickson) [560785]
4685 - [nfs] nfs41: remove uneeded checks in callback processing (Steve Dickson) [560785]
4686 - [nfs] nfs41: directly encode back channel error (Steve Dickson) [560785]
4687 - [nfs] nfs41: fix wrong error on callback header xdr overflow (Steve Dickson) [560785]
4688 - [nfs] nfs41: Process callback's referring call list (Steve Dickson) [560785]
4689 - [nfs] nfs41: Check slot table for referring calls (Steve Dickson) [560785]
4690 - [nfs] nfs41: Adjust max cache response size value (Steve Dickson) [560785]
4691 - [nfs] NFSD: Create PF_INET6 listener in write_ports (Steve Dickson) [560785]
4692 - [nfs] SUNRPC: NFS kernel APIs shouldn't return ENOENT for "transport not found" (Steve Dickson) [560785]
4693 - [nfs] SUNRPC: Bury "#ifdef IPV6" in svc_create_xprt() (Steve Dickson) [560785]
4694 - [nfs] NFSD: Support AF_INET6 in svc_addsock() function (Steve Dickson) [560785]
4695 - [nfs] SUNRPC: Use rpc_pton() in ip_map_parse() (Steve Dickson) [560785]
4696 - [nfs] nfsd: 4.1 has an rfc number (Steve Dickson) [560785]
4697 - [nfs] nfsd41: Create the recovery entry for the NFSv4.1 client (Steve Dickson) [560785]
4698 - [nfs] nfsd: use vfs_fsync for non-directories (Steve Dickson) [560785]
4699 - [nfs] nfsd4: Use FIRST_NFS4_OP in nfsd4_decode_compound() (Steve Dickson) [560785]
4700 - [nfs] nfsd41: nfsd4_decode_compound() does not recognize all ops (Steve Dickson) [560785]
4701
4702 * Fri Feb 05 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-15.el6]
4703 - [block] blk-cgroup: Fix lockdep warning of potential deadlock in blk-cgroup (Vivek Goyal) [561903]
4704 - [block] cfq: Do not idle on async queues and drive deeper WRITE depths (Vivek Goyal) [561902]
4705 - [quota] 64-bit quota format fixes (Jerome Marchand) [546311]
4706 - [x86] fix Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4707 - [fs] ext4: fix type of "offset" in ext4_io_end (Eric Sandeen) [560097]
4708 - [x86] Disable HPET MSI on ATI SB700/SB800 (Prarit Bhargava) [557332]
4709 - [x86] arch specific support for remapping HPET MSIs (Prarit Bhargava) [557332]
4710 - [x86] intr-remap: generic support for remapping HPET MSIs (Prarit Bhargava) [557332]
4711 - [gfs] GFS2: Extend umount wait coverage to full glock lifetime (Steven Whitehouse) [561287]
4712 - [gfs] GFS2: Wait for unlock completion on umount (Steven Whitehouse) [561287]
4713 - [gfs] GFS2: Use MAX_LFS_FILESIZE for meta inode size (Steven Whitehouse) [561307]
4714 - [gfs] GFS2: Use GFP_NOFS for alloc structure (Steven Whitehouse) [561307]
4715 - [gfs] GFS2: Fix refcnt leak on gfs2_follow_link() error path (Steven Whitehouse) [561307]
4716
4717 * Wed Feb 03 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-14.el6]
4718 - [s390x] dasd: fix online/offline race (Hendrik Brueckner) [552840]
4719 - [netdrv] update tg3 to version 3.106 and fix panic (John Feeney) [555101]
4720 - [s390x] dasd: Fix null pointer in s390dbf and discipline checking (Hendrik Brueckner) [559615]
4721 - [s390x] zcrypt: Do not remove coprocessor in case of error 8/72 (Hendrik Brueckner) [559613]
4722 - [s390x] cio: channel path vary operation has no effect (Hendrik Brueckner) [559612]
4723 - [uv] x86: Ensure hub revision set for all ACPI modes (George Beshers) [559752]
4724 - [uv] x86: Add function retrieving node controller revision number (George Beshers) [559752]
4725
4726 * Fri Jan 29 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-13.el6]
4727 - [virtio] console: show error message if hvc_alloc fails for console ports (Amit Shah) [543824]
4728 - [virtio] console: Add debugfs files for each port to expose debug info (Amit Shah) [543824]
4729 - [virtio] console: Add ability to hot-unplug ports (Amit Shah) [543824]
4730 - [virtio] hvc_console: Export (GPL'ed) hvc_remove (Amit Shah) [543824]
4731 - [virtio] Add ability to detach unused buffers from vrings (Amit Shah) [543824]
4732 - [virtio] console: Handle port hot-plug (Amit Shah) [543824]
4733 - [virtio] console: Remove cached data on port close (Amit Shah) [543824]
4734 - [virtio] console: Register with sysfs and create a 'name' attribute for ports (Amit Shah) [543824]
4735 - [virtio] console: Ensure only one process can have a port open at a time (Amit Shah) [543824]
4736 - [virtio] console: Add file operations to ports for open/read/write/poll (Amit Shah) [543824]
4737 - [virtio] console: Associate each port with a char device (Amit Shah) [543824]
4738 - [virtio] console: Prepare for writing to / reading from userspace buffers (Amit Shah) [543824]
4739 - [virtio] console: Add a new MULTIPORT feature, support for generic ports (Amit Shah) [543824]
4740 - [virtio] console: Introduce a send_buf function for a common path for sending data to host (Amit Shah) [543824]
4741 - [virtio] console: Introduce function to hand off data from host to readers (Amit Shah) [543824]
4742 - [virtio] console: Separate out find_vqs operation into a different function (Amit Shah) [543824]
4743 - [virtio] console: Separate out console init into a new function (Amit Shah) [543824]
4744 - [virtio] console: Separate out console-specific data into a separate struct (Amit Shah) [543824]
4745 - [virtio] console: ensure console size is updated on hvc open (Amit Shah) [543824]
4746 - [virtio] console: struct ports for multiple ports per device. (Amit Shah) [543824]
4747 - [virtio] console: remove global var (Amit Shah) [543824]
4748 - [virtio] console: don't assume a single console port. (Amit Shah) [543824]
4749 - [virtio] console: use vdev->priv to avoid accessing global var. (Amit Shah) [543824]
4750 - [virtio] console: introduce a get_inbuf helper to fetch bufs from in_vq (Amit Shah) [543824]
4751 - [virtio] console: ensure add_inbuf can work for multiple ports as well (Amit Shah) [543824]
4752 - [virtio] console: encapsulate buffer information in a struct (Amit Shah) [543824]
4753 - [virtio] console: port encapsulation (Amit Shah) [543824]
4754 - [virtio] console: We support only one device at a time (Amit Shah) [543824]
4755 - [virtio] hvc_console: Remove __devinit annotation from hvc_alloc (Amit Shah) [543824]
4756 - [virtio] hvc_console: make the ops pointer const. (Amit Shah) [543824]
4757 - [virtio] console: statically initialize virtio_cons (Amit Shah) [543824]
4758 - [virtio] console: comment cleanup (Amit Shah) [543824]
4759 - [x86] Fix crash when profiling more than 28 events (Bhavna Sarathy) [557570]
4760 - [x86] Add AMD Node ID MSR support (Bhavna Sarathy) [557540]
4761 - [kvm] fix spurious interrupt with irqfd (Marcelo Tosatti) [559343]
4762 - [kvm] eventfd: allow atomic read and waitqueue remove (Marcelo Tosatti) [559343]
4763 - [kvm] properly check max PIC pin in irq route setup (Marcelo Tosatti) [559343]
4764 - [kvm] only allow one gsi per fd (Marcelo Tosatti) [559343]
4765 - [kvm] x86: Fix leak of free lapic date in kvm_arch_vcpu_init() (Marcelo Tosatti) [559343]
4766 - [kvm] x86: Fix probable memory leak of vcpu->arch.mce_banks (Marcelo Tosatti) [559343]
4767 - [kvm] MMU: bail out pagewalk on kvm_read_guest error (Marcelo Tosatti) [559343]
4768 - [kvm] x86: Fix host_mapping_level() (Marcelo Tosatti) [559343]
4769 - [kvm] Fix race between APIC TMR and IRR (Marcelo Tosatti) [559343]
4770 - [x86] acpi: Export acpi_pci_irq_{add|del}_prt() (James Paradis) [553781]
4771 - [kdump] backport upstream ppc64 kcrctab fixes (Neil Horman) [558803]
4772 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4773
4774 * Thu Jan 28 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-12.el6]
4775 - [drm] radeon possible security issue (Jerome Glisse) [556692]
4776 - [mm] Memory tracking for Stratus (James Paradis) [512400]
4777 - [pci] Always set prefetchable base/limit upper32 registers (Prarit Bhargava) [553471]
4778 - [scsi] Sync be2iscsi with upstream (Mike Christie) [515256]
4779 - [x86] msr/cpuid: Register enough minors for the MSR and CPUID drivers (George Beshers) [557554]
4780 - [x86] Remove unnecessary mdelay() from cpu_disable_common() (Peter Bogdanovic) [463633]
4781 - [x86] ioapic: Document another case when level irq is seen as an edge (Peter Bogdanovic) [463633]
4782 - [x86] ioapic: Fix the EOI register detection mechanism (Peter Bogdanovic) [463633]
4783 - [x86] io-apic: Move the effort of clearing remoteIRR explicitly before migrating the irq (Peter Bogdanovic) [463633]
4784 - [x86] Remove local_irq_enable()/local_irq_disable() in fixup_irqs() (Peter Bogdanovic) [463633]
4785 - [x86] Use EOI register in io-apic on intel platforms (Peter Bogdanovic) [463633]
4786
4787 * Tue Jan 26 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-11.el6]
4788 - [kdump] Remove the 32MB limitation for crashkernel (Steve Best) [529270]
4789 - [dm] dm-raid45: export missing dm_rh_inc (Heinz Mauelshagen) [552329]
4790 - [block] dm-raid45: add raid45 target (Heinz Mauelshagen) [552329]
4791 - [block] dm-replicator: blockdev site link handler (Heinz Mauelshagen) [552364]
4792 - [block] dm-replicator: ringbuffer replication log handler (Heinz Mauelshagen) [552364]
4793 - [block] dm-replicator: replication log and site link handler interfaces and main replicator module (Heinz Mauelshagen) [552364]
4794 - [block] dm-replicator: documentation and module registry (Heinz Mauelshagen) [552364]
4795 - [s390x] qeth: set default BLKT settings dependend on OSA hw level (Hendrik Brueckner) [557474]
4796 - [drm] bring RHEL6 radeon drm up to 2.6.33-rc4/5 level (Jerome Glisse) [557539]
4797 - [netdrv] e1000e: enhance frame fragment detection (Andy Gospodarek) [462780]
4798 - [stable] ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). (David S. Miller) [555084]
4799 - [stable] module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y (Rusty Russell) [555084]
4800 - [stable] fix more leaks in audit_tree.c tag_chunk() (Al Viro) [555084]
4801 - [stable] fix braindamage in audit_tree.c untag_chunk() (Al Viro) [555084]
4802 - [stable] mac80211: fix skb buffering issue (and fixes to that) (Johannes Berg) [555084]
4803 - [stable] kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr (Mike Frysinger) [555084]
4804 - [stable] libertas: Remove carrier signaling from the scan code (Samuel Ortiz) [555084]
4805 - [stable] mac80211: add missing sanity checks for action frames (Felix Fietkau) [555084]
4806 - [stable] iwl: off by one bug (Dan Carpenter) [555084]
4807 - [stable] cfg80211: fix syntax error on user regulatory hints (Luis R. Rodriguez) [555084]
4808 - [stable] ath5k: Fix eeprom checksum check for custom sized eeproms (Luis R. Rodriguez) [555084]
4809 - [stable] iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr (Zhu Yi) [555084]
4810 - [stable] xen: fix hang on suspend. (Ian Campbell) [555084]
4811 - [stable] quota: Fix dquot_transfer for filesystems different from ext4 (Jan Kara) [555084]
4812 - [stable] hwmon: (adt7462) Fix pin 28 monitoring (Roger Blofeld) [555084]
4813 - [stable] hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs (Yong Wang) [555084]
4814 - [stable] netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() (Patrick McHardy) [555084]
4815 - [stable] netfilter: ebtables: enforce CAP_NET_ADMIN (Florian Westphal) [555084]
4816 - [stable] ASoC: Fix WM8350 DSP mode B configuration (Mark Brown) [555084]
4817 - [stable] ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 (Daniel T Chen) [555084]
4818 - [stable] ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense blacklist (Daniel T Chen) [555084]
4819 - [stable] mmc_block: fix queue cleanup (Adrian Hunter) [555084]
4820 - [stable] mmc_block: fix probe error cleanup bug (Jarkko Lavinen) [555084]
4821 - [stable] mmc_block: add dev_t initialization check (Anna Lemehova) [555084]
4822 - [stable] kernel/signal.c: fix kernel information leak with print-fatal-signals=1 (Andi Kleen) [555084]
4823 - [stable] dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with DMA_FROM_DEVICE and (Krzysztof Halasa) [555084]
4824 - [stable] lib/rational.c needs module.h (Sascha Hauer) [555084]
4825 - [stable] drivers/cpuidle/governors/menu.c: fix undefined reference to `__udivdi3' (Stephen Hemminger) [555084]
4826 - [stable] rtc_cmos: convert shutdown to new pnp_driver->shutdown (OGAWA Hirofumi) [555084]
4827 - [stable] Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu for pre-Pentium" (Rusty Russell) [555084]
4828 - [stable] exofs: simple_write_end does not mark_inode_dirty (Boaz Harrosh) [555084]
4829 - [stable] modules: Skip empty sections when exporting section notes (Ben Hutchings) [555084]
4830 - [stable] ASoC: fix params_rate() macro use in several codecs (Guennadi Liakhovetski) [555084]
4831 - [stable] fasync: split 'fasync_helper()' into separate add/remove functions (Linus Torvalds) [555084]
4832 - [stable] untangle the do_mremap() mess (Al Viro)
4833
4834 * Fri Jan 22 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-10.el6]
4835 - [mm] mmap: don't return ENOMEM when mapcount is temporarily exceeded in munmap() (Danny Feng) [557000]
4836 - [netdrv] vxge: fix issues found in Neterion testing (Michal Schmidt) [493985]
4837 - [x86] Force irq complete move during cpu offline (Prarit Bhargava) [541815]
4838 - [sound] Fix SPDIF-In for AD1988 codecs + add Intel Cougar IDs (Jaroslav Kysela) [557473]
4839 - [scsi] aic79xx: check for non-NULL scb in ahd_handle_nonpkt_busfree (Tomas Henzl) [557753]
4840 - [s390x] fix loading of PER control registers for utrace. (CAI Qian) [556410]
4841 - [s390x] ptrace: dont abuse PT_PTRACED (CAI Qian) [552102]
4842 - [perf] Remove the "event" callback from perf events (Jason Baron) [525517]
4843 - [perf] Use overflow handler instead of the event callback (Jason Baron) [525517]
4844 - [perf] Fix locking for PERF_FORMAT_GROUP (Jason Baron) [525517]
4845 - [perf] Fix event scaling for inherited counters (Jason Baron) [525517]
4846 - [perf] Fix PERF_FORMAT_GROUP scale info (Jason Baron) [525517]
4847 - [perf] Allow for custom overflow handlers (Jason Baron) [525517]
4848 - [perf] Add a callback to perf events (Jason Baron) [525517]
4849 - [perf] improve error reporting (Jason Baron) [525517]
4850 - [perf] add kernel internal interface (Jason Baron) [525517]
4851 - [utrace] fix utrace_maybe_reap() vs find_matching_engine() race (Oleg Nesterov) [557338]
4852 - [x86] Disable Memory hot add on x86 32-bit (Prarit Bhargava) [557131]
4853 - [netdrv] e1000e: update to the latest upstream (Andy Gospodarek) [462780]
4854 - [gfs] Use dquot_send_warning() (Steven Whitehouse) [557057]
4855 - [gfs] Add quota netlink support (Steven Whitehouse) [557057]
4856 - [netdrv] qlge: update to upstream version v1.00.00.23.00.00-01 (Andy Gospodarek) [553357]
4857 - [s390x] zfcp: set HW timeout requested by BSG request (Hendrik Brueckner) [556918]
4858 - [s390x] zfcp: introduce BSG timeout callback (Hendrik Brueckner) [556918]
4859 - [scsi] scsi_transport_fc: Allow LLD to reset FC BSG timeout (Hendrik Brueckner) [556918]
4860
4861 * Wed Jan 20 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-9.el6]
4862 - [kvm] fix cleanup_srcu_struct on vm destruction (Marcelo Tosatti) [554762]
4863 - [x86] core: make LIST_POISON less deadly (Avi Kivity) [554640]
4864 - [x86] dell-wmi: Add support for new Dell systems (Matthew Garrett) [525548]
4865 - [fs] xfs: 2.6.33 updates (Eric Sandeen) [554891]
4866 - [x86] Add kernel pagefault tracepoint for x86 & x86_64. (Larry Woodman) [526032]
4867 - [pci] PCIe AER: honor ACPI HEST FIRMWARE FIRST mode (Matthew Garrett) [537205]
4868 - [block] direct-io: cleanup blockdev_direct_IO locking (Eric Sandeen) [556547]
4869 - [tracing] tracepoint: Add signal tracepoints (Masami Hiramatsu) [526030]
4870 - [cgroups] fix for "kernel BUG at kernel/cgroup.c:790" (Dave Anderson) [547815]
4871 - [irq] Expose the irq_desc node as /proc/irq/*/node (George Beshers) [555866]
4872 - [scsi] qla2xxx - Update support for FC/FCoE HBA/CNA (Rob Evers) [553854]
4873 - [scsi] bfa update from 2.1.2.0 to 2.1.2.1 (Rob Evers) [475704]
4874 - [nfs] sunrpc: fix build-time warning (Steve Dickson) [437715]
4875 - [nfs] sunrpc: on successful gss error pipe write, don't return error (Steve Dickson) [437715]
4876 - [nfs] SUNRPC: Fix the return value in gss_import_sec_context() (Steve Dickson) [437715]
4877 - [nfs] SUNRPC: Fix up an error return value in gss_import_sec_context_kerberos() (Steve Dickson) [437715]
4878 - [nfs] sunrpc: fix peername failed on closed listener (Steve Dickson) [437715]
4879 - [nfs] nfsd: make sure data is on disk before calling ->fsync (Steve Dickson) [437715]
4880 - [uv] React 2.6.32.y: isolcpus broken in 2.6.32.y kernel (George Beshers) [548842]
4881 - [gru] GRU Rollup patch (George Beshers) [546680]
4882 - [uv] XPC: pass nasid instead of nid to gru_create_message_queue (George Beshers) [546695]
4883 - [uv] x86: XPC receive message reuse triggers invalid BUG_ON (George Beshers) [546695]
4884 - [uv] x86: xpc_make_first_contact hang due to not accepting ACTIVE state (George Beshers) [546695]
4885 - [uv] x86: xpc NULL deref when mesq becomes empty (George Beshers) [546695]
4886 - [uv] x86: update XPC to handle updated BIOS interface (George Beshers) [546695]
4887 - [uv] xpc needs to provide an abstraction for uv_gpa (George Beshers) [546695]
4888 - [uv] x86, irq: Check move_in_progress before freeing the vector mapping (George Beshers) [546668]
4889 - [uv] x86: Remove move_cleanup_count from irq_cfg (George Beshers) [546668]
4890 - [uv] x86, irq: Allow 0xff for /proc/irq/[n]/smp_affinity on an 8-cpu system (George Beshers) [546668]
4891 - [uv] x86, apic: Move SGI UV functionality out of generic IO-APIC code (George Beshers) [546668]
4892 - [uv] x86 SGI: Fix irq affinity for hub based interrupts (George Beshers) [546668]
4893 - [uv] x86 RTC: Always enable RTC clocksource (George Beshers) [546668]
4894 - [uv] x86 RTC: Rename generic_interrupt to x86_platform_ipi (George Beshers) [546668]
4895 - [uv] x86, mm: Correct the implementation of is_untracked_pat_range() (George Beshers) [548524]
4896 - [uv] x86: Change is_ISA_range() into an inline function (George Beshers) [548524]
4897 - [uv] x86, platform: Change is_untracked_pat_range() to bool (George Beshers) [548524]
4898 - [uv] x86, mm: is_untracked_pat_range() takes a normal semiclosed range (George Beshers) [548524]
4899 - [uv] x86, mm: Call is_untracked_pat_range() rather than is_ISA_range() (George Beshers) [548524]
4900 - [uv] x86 SGI: Dont track GRU space in PAT (George Beshers) [548524]
4901 - [scsi] megaraid: upgrade to 4.17 (Tomas Henzl) [520729]
4902 - [scsi] mpt2sas: Bump version 03.100.03.00 (Tomas Henzl) [470848]
4903 - [scsi] mpt2sas: don't update links nor unblock device at no link rate change (Tomas Henzl) [470848]
4904 - [scsi] mpt2sas: add support for RAID Action System Shutdown Initiated at OS Shutdown (Tomas Henzl) [470848]
4905 - [scsi] mpt2sas: freeze the sdev IO queue when firmware sends internal device reset (Tomas Henzl) [470848]
4906 - [scsi] mpt2sas: fix PPC endian bug (Tomas Henzl) [470848]
4907 - [scsi] mpt2sas: mpt2sas_base_get_sense_buffer_dma returns little endian (Tomas Henzl) [470848]
4908 - [scsi] mpt2sas: return DID_TRANSPORT_DISRUPTED in nexus loss and SCSI_MLQUEUE_DEVICE_BUSY if device is busy (Tomas Henzl) [470848]
4909 - [scsi] mpt2sas: retrieve the ioc facts prior to putting the controller into READY state (Tomas Henzl) [470848]
4910 - [scsi] mpt2sas: add new info messages for IR and Expander events (Tomas Henzl) [470848]
4911 - [scsi] mpt2sas: limit the max_depth to 32 for SATA devices (Tomas Henzl) [470848]
4912 - [scsi] mpt2sas: add TimeStamp support when sending ioc_init (Tomas Henzl) [470848]
4913 - [scsi] mpt2sas: add extended type for diagnostic buffer support (Tomas Henzl) [470848]
4914 - [scsi] mpt2sas: add command line option diag_buffer_enable (Tomas Henzl) [470848]
4915 - [scsi] mpt2sas: fix some comments (Tomas Henzl) [470848]
4916 - [scsi] mpt2sas: stop driver when firmware encounters faults (Tomas Henzl) [470848]
4917 - [scsi] mpt2sas: adding MPI Headers - revision L (Tomas Henzl) [470848]
4918 - [scsi] mpt2sas: new device SAS2208 support (Tomas Henzl) [470848]
4919 - [scsi] mpt2sas: check for valid response info (Tomas Henzl) [470848]
4920 - [scsi] mpt2sas: fix expander remove fail (Tomas Henzl) [470848]
4921 - [scsi] mpt2sas: use sas address instead of handle as a lookup (Tomas Henzl) [470848]
4922 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [555812]
4923 - [block] Honor the gfp_mask for alloc_page() in blkdev_issue_discard() (Mike Snitzer) [554719]
4924 - [scsi] sync fcoe with upstream (Mike Christie) [549945]
4925 - [net] dccp: modify how dccp creates slab caches to prevent bug halt in SLUB (Neil Horman) [553698]
4926 - [s390x] tape: Add pr_fmt() macro to all tape source files (Hendrik Brueckner) [554380]
4927 - [s390] qeth: fix packet loss if TSO is switched on (Hendrik Brueckner) [546632]
4928 - [s390x] qeth: Support for HiperSockets Network Traffic Analyzer (Hendrik Brueckner) [463706]
4929 - [serial] 8250: add support for DTR/DSR hardware flow control (Mauro Carvalho Chehab) [523848]
4930
4931 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-8.el6]
4932 - [build] Revert "[redhat] disabling temporaly DEVTMPFS" (Aristeu Rozanski)
4933
4934 * Tue Jan 19 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-7.el6]
4935 - [drm] minor printk fixes from upstream (Dave Airlie) [554601]
4936 - [offb] add support for framebuffer handoff to offb. (Dave Airlie) [554948]
4937 - [x86] allow fbdev primary video code on 64-bit. (Dave Airlie) [554930]
4938 - [drm] nouveau: update to 2.6.33 level (Dave Airlie) [549930]
4939 - [drm] ttm: validation API changes + ERESTART fixes. (Dave Airlie) [554918]
4940 - [drm] radeon/kms: update to 2.6.33 (without TTM API changes) (Dave Airlie) [554918]
4941 - [drm] i915: bring Intel DRM/KMS driver up to 2.6.33 (Dave Airlie) [554616]
4942 - [drm] radeon/intel: realign displayport helper code with upstream. (Dave Airlie) [554601]
4943 - [drm] kms: rollup KMS core and helper changes to 2.6.33 (Dave Airlie) [554601]
4944 - [drm] remove address mask param for drm_pci_alloc() (Dave Airlie) [554601]
4945 - [drm] add new userspace core drm interfaces from 2.6.33 (Dave Airlie) [554601]
4946 - [drm] unlocked ioctl support for core + macro fixes (Dave Airlie) [554601]
4947 - [drm] ttm: rollup upstream TTM fixes (Dave Airlie) [554601]
4948 - [drm] mm: patch drm core memory range manager up to 2.6.33 (Dave Airlie) [554601]
4949 - [drm] drm/edid: update to 2.6.33 EDID parser code (Dave Airlie) [554601]
4950 - [net] dccp: fix module load dependency btw dccp_probe and dccp (Neil Horman) [554840]
4951 - [powerpc] pseries: Correct pseries/dlpar.c build break without CONFIG_SMP (Steve Best) [539318]
4952 - [powerpc] cpu-allocation/deallocation process (Steve Best) [539318]
4953 - [powerpc] Add code to online/offline CPUs of a DLPAR node (Steve Best) [539318]
4954 - [powerpc] CPU DLPAR handling (Steve Best) [539318]
4955 - [powerpc] sysfs cpu probe/release files (Steve Best) [539318]
4956 - [powerpc] Kernel handling of Dynamic Logical Partitioning (Steve Best) [539318]
4957 - [powerpc] pseries: Add hooks to put the CPU into an appropriate offline state (Steve Best) [539318]
4958 - [powerpc] pseries: Add extended_cede_processor() helper function. (Steve Best) [539318]
4959 - [gfs] GFS2: Fix glock refcount issues (Steven Whitehouse) [546634]
4960 - [gfs] GFS2: Ensure uptodate inode size when using O_APPEND (Steven Whitehouse) [547639]
4961 - [gfs] GFS2: Fix locking bug in rename (Steven Whitehouse) [547640]
4962 - [gfs] GFS2: Fix lock ordering in gfs2_check_blk_state() (Steven Whitehouse) [554673]
4963 - [gfs2] only show nobarrier option on /proc/mounts when the option is active (Steven Whitehouse) [546665]
4964 - [gfs2] add barrier/nobarrier mount options (Steven Whitehouse) [546665]
4965 - [gfs2] remove division from new statfs code (Steven Whitehouse) [298561]
4966 - [gfs2] Improve statfs and quota usability (Steven Whitehouse) [298561]
4967 - [gfs2] Add set_xquota support (Steven Whitehouse) [298561]
4968 - [gfs2] Add get_xquota support (Steven Whitehouse) [298561]
4969 - [gfs2] Clean up gfs2_adjust_quota() and do_glock() (Steven Whitehouse) [298561]
4970 - [gfs2] Remove constant argument from qd_get() (Steven Whitehouse) [298561]
4971 - [gfs2] Remove constant argument from qdsb_get() (Steven Whitehouse) [298561]
4972 - [gfs2] Add proper error reporting to quota sync via sysfs (Steven Whitehouse) [298561]
4973 - [gfs2] Add get_xstate quota function (Steven Whitehouse) [298561]
4974 - [gfs2] Remove obsolete code in quota.c (Steven Whitehouse) [298561]
4975 - [gfs2] Hook gfs2_quota_sync into VFS via gfs2_quotactl_ops (Steven Whitehouse) [298561]
4976 - [gfs2] Alter arguments of gfs2_quota/statfs_sync (Steven Whitehouse) [298561]
4977 - [gfs2] Fix -o meta mounts for subsequent mounts (Steven Whitehouse) [546664]
4978 - [gfs] GFS2: Fix gfs2_xattr_acl_chmod() (Steven Whitehouse) [546294]
4979 - [gfs] VFS: Use GFP_NOFS in posix_acl_from_xattr() (Steven Whitehouse) [546294]
4980 - [gfs] GFS2: Add cached ACLs support (Steven Whitehouse) [546294]
4981 - [gfs] GFS2: Clean up ACLs (Steven Whitehouse) [546294]
4982 - [gfs] GFS2: Use gfs2_set_mode() instead of munge_mode() (Steven Whitehouse) [546294]
4983 - [gfs] GFS2: Use forget_all_cached_acls() (Steven Whitehouse) [546294]
4984 - [gfs] VFS: Add forget_all_cached_acls() (Steven Whitehouse) [546294]
4985 - [gfs] GFS2: Fix up system xattrs (Steven Whitehouse) [546294]
4986 - [netdrv] igb: Update igb driver to support Barton Hills (Stefan Assmann) [462783]
4987 - [dm] add feature flags to reduce future kABI impact (Mike Snitzer) [547756]
4988 - [block] Stop using byte offsets (Mike Snitzer) [554718]
4989 - [dm] Fix device mapper topology stacking (Mike Snitzer) [554718]
4990 - [block] bdev_stack_limits wrapper (Mike Snitzer) [554718]
4991 - [block] Fix discard alignment calculation and printing (Mike Snitzer) [554718]
4992 - [block] Correct handling of bottom device misaligment (Mike Snitzer) [554718]
4993 - [block] Fix incorrect alignment offset reporting and update documentation (Mike Snitzer) [554718]
4994 - [kvm] Fix possible circular locking in kvm_vm_ioctl_assign_device() (Marcelo Tosatti) [554762]
4995 - [kvm] only clear irq_source_id if irqchip is present (Marcelo Tosatti) [554762]
4996 - [kvm] fix lock imbalance in kvm_*_irq_source_id() (Marcelo Tosatti) [554762]
4997 - [kvm] VMX: Report unexpected simultaneous exceptions as internal errors (Marcelo Tosatti) [554762]
4998 - [kvm] Allow internal errors reported to userspace to carry extra data (Marcelo Tosatti) [554762]
4999 - [kvm] x86: disable paravirt mmu reporting (Marcelo Tosatti) [554762]
5000 - [kvm] x86: disallow KVM_{SET, GET}_LAPIC without allocated in-kernel lapic (Marcelo Tosatti) [554762]
5001 - [kvm] x86: disallow multiple KVM_CREATE_IRQCHIP (Marcelo Tosatti) [554762]
5002 - [kvm] VMX: Disable unrestricted guest when EPT disabled (Marcelo Tosatti) [554762]
5003 - [kvm] SVM: remove needless mmap_sem acquision from nested_svm_map (Marcelo Tosatti) [554762]
5004 - [kvm] SVM: Notify nested hypervisor of lost event injections (Marcelo Tosatti) [554762]
5005 - [kvm] SVM: Move INTR vmexit out of atomic code (Marcelo Tosatti) [554762]
5006 - [kvm] remove pre_task_link setting in save_state_to_tss16 (Marcelo Tosatti) [554762]
5007 - [kvm] x86: Extend KVM_SET_VCPU_EVENTS with selective updates (Marcelo Tosatti) [554500]
5008 - [kvm] x86: Add KVM_GET/SET_VCPU_EVENTS (Marcelo Tosatti) [554500]
5009 - [kvm] fix kvmclock-adjust-offset ioctl to match upstream (Marcelo Tosatti) [554524]
5010 - [kvm] SVM: init_vmcb(): remove redundant save->cr0 initialization (Marcelo Tosatti) [554506]
5011 - [kvm] SVM: Reset cr0 properly on vcpu reset (Marcelo Tosatti) [554506]
5012 - [kvm] VMX: Use macros instead of hex value on cr0 initialization (Marcelo Tosatti) [554506]
5013 - [kvm] avoid taking ioapic mutex for non-ioapic EOIs (Marcelo Tosatti) [550809]
5014 - [kvm] Bump maximum vcpu count to 64 (Marcelo Tosatti) [550809]
5015 - [kvm] convert slots_lock to a mutex (Marcelo Tosatti) [550809]
5016 - [kvm] switch vcpu context to use SRCU (Marcelo Tosatti) [550809]
5017 - [kvm] convert io_bus to SRCU (Marcelo Tosatti) [550809]
5018 - [kvm] x86: switch kvm_set_memory_alias to SRCU update (Marcelo Tosatti) [550809]
5019 - [kvm] use SRCU for dirty log (Marcelo Tosatti) [550809]
5020 - [kvm] introduce kvm->srcu and convert kvm_set_memory_region to SRCU update (Marcelo Tosatti) [550809]
5021 - [kvm] use gfn_to_pfn_memslot in kvm_iommu_map_pages (Marcelo Tosatti) [550809]
5022 - [kvm] introduce gfn_to_pfn_memslot (Marcelo Tosatti) [550809]
5023 - [kvm] split kvm_arch_set_memory_region into prepare and commit (Marcelo Tosatti) [550809]
5024 - [kvm] modify alias layout in x86s struct kvm_arch (Marcelo Tosatti) [550809]
5025 - [kvm] modify memslots layout in struct kvm (Marcelo Tosatti) [550809]
5026 - [kvm] rcu: Enable synchronize_sched_expedited() fastpath (Marcelo Tosatti) [550809]
5027 - [kvm] rcu: Add synchronize_srcu_expedited() to the documentation (Marcelo Tosatti) [550809]
5028 - [kvm] rcu: Add synchronize_srcu_expedited() to the rcutorture test suite (Marcelo Tosatti) [550809]
5029 - [kvm] Add synchronize_srcu_expedited() (Marcelo Tosatti) [550809]
5030 - [kvm] Drop kvm->irq_lock lock from irq injection path (Marcelo Tosatti) [550809]
5031 - [kvm] Move IO APIC to its own lock (Marcelo Tosatti) [550809]
5032 - [kvm] Convert irq notifiers lists to RCU locking (Marcelo Tosatti) [550809]
5033 - [kvm] Move irq ack notifier list to arch independent code (Marcelo Tosatti) [550809]
5034 - [kvm] Move irq routing data structure to rcu locking (Marcelo Tosatti) [550809]
5035 - [kvm] Maintain back mapping from irqchip/pin to gsi (Marcelo Tosatti) [550809]
5036 - [kvm] Change irq routing table to use gsi indexed array (Marcelo Tosatti) [550809]
5037 - [kvm] Move irq sharing information to irqchip level (Marcelo Tosatti) [550809]
5038 - [kvm] Call pic_clear_isr() on pic reset to reuse logic there (Marcelo Tosatti) [550809]
5039 - [kvm] Dont pass kvm_run arguments (Marcelo Tosatti) [550809]
5040
5041 * Thu Jan 14 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-6.el6]
5042 - [modsign] Remove Makefile.modpost qualifying message for module sign failure (David Howells) [543529]
5043 - [nfs] fix oops in nfs_rename() (Jeff Layton) [554337]
5044 - [x86] AMD: Fix stale cpuid4_info shared_map data in shared_cpu_map cpumasks (Prarit Bhargava) [546610]
5045 - [s390] kernel: improve code generated by atomic operations (Hendrik Brueckner) [547411]
5046 - [s390x] tape: incomplete device removal (Hendrik Brueckner) [547415]
5047 - [netdrv] be2net: update be2net driver to latest upstream (Ivan Vecera) [515262]
5048 - [x86] mce: fix confusion between bank attributes and mce attributes (hiro muneda) [476606]
5049 - [tpm] autoload tpm_tis driver (John Feeney) [531891]
5050 - [stable] generic_permission: MAY_OPEN is not write access (Serge E. Hallyn) [555084]
5051 - [stable] rt2x00: Disable powersaving for rt61pci and rt2800pci. (Gertjan van Wingerde) [555084]
5052 - [stable] lguest: fix bug in setting guest GDT entry (Rusty Russell) [555084]
5053 - [stable] ext4: Update documentation to correct the inode_readahead_blks option name (Fang Wenqi) [555084]
5054 - [stable] sched: Sched_rt_periodic_timer vs cpu hotplug (Peter Zijlstra) [555084]
5055 - [stable] amd64_edac: fix forcing module load/unload (Borislav Petkov) [555084]
5056 - [stable] amd64_edac: make driver loading more robust (Borislav Petkov) [555084]
5057 - [stable] amd64_edac: fix driver instance freeing (Borislav Petkov) [555084]
5058 - [stable] x86, msr: msrs_alloc/free for CONFIG_SMP=n (Borislav Petkov) [555084]
5059 - [stable] x86, msr: Add support for non-contiguous cpumasks (Borislav Petkov) [555084]
5060 - [stable] amd64_edac: unify MCGCTL ECC switching (Borislav Petkov) [555084]
5061 - [stable] cpumask: use modern cpumask style in drivers/edac/amd64_edac.c (Rusty Russell) [555084]
5062 - [stable] x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus (Borislav Petkov) [555084]
5063 - [stable] ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) (Dmitry Monakhov) [555084]
5064 - [stable] ext4: Convert to generic reserved quota's space management. (Dmitry Monakhov) [555084]
5065 - [stable] quota: decouple fs reserved space from quota reservation (Dmitry Monakhov) [555084]
5066 - [stable] Add unlocked version of inode_add_bytes() function (Dmitry Monakhov) [555084]
5067 - [stable] udf: Try harder when looking for VAT inode (Jan Kara) [555084]
5068 - [stable] orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled (Andrey Borzenkov) [555084]
5069 - [stable] drm: disable all the possible outputs/crtcs before entering KMS mode (Zhao Yakui) [555084]
5070 - [stable] drm/radeon/kms: fix crtc vblank update for r600 (Dave Airlie) [555084]
5071 - [stable] sched: Fix balance vs hotplug race (Peter Zijlstra) [555084]
5072 - [stable] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support (Geert Uytterhoeven) [555084]
5073 - [stable] b43: avoid PPC fault during resume (Larry Finger) [555084]
5074 - [stable] hwmon: (sht15) Off-by-one error in array index + incorrect constants (Jonathan Cameron) [555084]
5075 - [stable] netfilter: fix crashes in bridge netfilter caused by fragment jumps (Patrick McHardy) [555084]
5076 - [stable] ipv6: reassembly: use seperate reassembly queues for conntrack and local delivery (Patrick McHardy) [555084]
5077 - [stable] e100: Fix broken cbs accounting due to missing memset. (Roger Oksanen) [555084]
5078 - [stable] memcg: avoid oom-killing innocent task in case of use_hierarchy (Daisuke Nishimura) [555084]
5079 - [stable] x86/ptrace: make genregs[32]_get/set more robust (Linus Torvalds) [555084]
5080 - [stable] V4L/DVB (13596): ov511.c typo: lock => unlock (Dan Carpenter) [555084]
5081 - [stable] kernel/sysctl.c: fix the incomplete part of sysctl_max_map_count-should-be-non-negative.patch (WANG Cong) [555084]
5082 - [stable] 'sysctl_max_map_count' should be non-negative (Amerigo Wang) [555084]
5083 - [stable] NOMMU: Optimise away the {dac_,}mmap_min_addr tests (David Howells) [555084]
5084 - [stable] mac80211: fix race with suspend and dynamic_ps_disable_work (Luis R. Rodriguez) [555084]
5085 - [stable] iwlwifi: fix 40MHz operation setting on cards that do not allow it (Reinette Chatre) [555084]
5086 - [stable] iwlwifi: fix more eeprom endian bugs (Johannes Berg) [555084]
5087 - [stable] iwlwifi: fix EEPROM/OTP reading endian annotations and a bug (Johannes Berg) [555084]
5088 - [stable] iwl3945: fix panic in iwl3945 driver (Zhu Yi) [555084]
5089 - [stable] iwl3945: disable power save (Reinette Chatre) [555084]
5090 - [stable] ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value in 0x4054 (Vasanthakumar Thiagarajan) [555084]
5091 - [stable] ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on 64-bit (Vasanthakumar Thiagarajan) [555084]
5092 - [stable] ath9k: fix suspend by waking device prior to stop (Sujith) [555084]
5093 - [stable] ath9k: wake hardware during AMPDU TX actions (Luis R. Rodriguez) [555084]
5094 - [stable] ath9k: fix missed error codes in the tx status check (Felix Fietkau) [555084]
5095 - [stable] ath9k: Fix TX queue draining (Sujith) [555084]
5096 - [stable] ath9k: wake hardware for interface IBSS/AP/Mesh removal (Luis R. Rodriguez) [555084]
5097 - [stable] ath5k: fix SWI calibration interrupt storm (Bob Copeland) [555084]
5098 - [stable] cfg80211: fix race between deauth and assoc response (Johannes Berg) [555084]
5099 - [stable] mac80211: Fix IBSS merge (Sujith) [555084]
5100 - [stable] mac80211: fix WMM AP settings application (Johannes Berg) [555084]
5101 - [stable] mac80211: fix propagation of failed hardware reconfigurations (Luis R. Rodriguez) [555084]
5102 - [stable] iwmc3200wifi: fix array out-of-boundary access (Zhu Yi) [555084]
5103 - [stable] Libertas: fix buffer overflow in lbs_get_essid() (Daniel Mack) [555084]
5104 - [stable] KVM: LAPIC: make sure IRR bitmap is scanned after vm load (Marcelo Tosatti) [555084]
5105 - [stable] KVM: MMU: remove prefault from invlpg handler (Marcelo Tosatti) [555084]
5106 - [stable] ioat2,3: put channel hardware in known state at init (Dan Williams) [555084]
5107 - [stable] ioat3: fix p-disabled q-continuation (Dan Williams) [555084]
5108 - [stable] x86/amd-iommu: Fix initialization failure panic (Joerg Roedel) [555084]
5109 - [stable] dma-debug: Fix bug causing build warning (Ingo Molnar) [555084]
5110 - [stable] dma-debug: Do not add notifier when dma debugging is disabled. (Shaun Ruffell) [555084]
5111 - [stable] dma: at_hdmac: correct incompatible type for argument 1 of 'spin_lock_bh' (Nicolas Ferre) [555084]
5112 - [stable] md: Fix unfortunate interaction with evms (NeilBrown) [555084]
5113 - [stable] x86: SGI UV: Fix writes to led registers on remote uv hubs (Mike Travis) [555084]
5114 - [stable] drivers/net/usb: Correct code taking the size of a pointer (Julia Lawall) [555084]
5115 - [stable] USB: fix bugs in usb_(de)authorize_device (Alan Stern) [555084]
5116 - [stable] USB: rename usb_configure_device (Alan Stern) [555084]
5117 - [stable] Bluetooth: Prevent ill-timed autosuspend in USB driver (Oliver Neukum) [555084]
5118 - [stable] USB: musb: gadget_ep0: avoid SetupEnd interrupt (Sergei Shtylyov) [555084]
5119 - [stable] USB: Fix a bug on appledisplay.c regarding signedness (pancho horrillo) [555084]
5120 - [stable] USB: option: support hi speed for modem Haier CE100 (Donny Kurnia) [555084]
5121 - [stable] USB: emi62: fix crash when trying to load EMI 6|2 firmware (Clemens Ladisch) [555084]
5122 - [stable] drm/radeon: fix build on 64-bit with some compilers. (Dave Airlie) [555084]
5123 - [stable] ASoC: Do not write to invalid registers on the wm9712. (Eric Millbrandt) [555084]
5124 - [stable] powerpc: Handle VSX alignment faults correctly in little-endian mode (Neil Campbell) [555084]
5125 - [stable] ACPI: Use the return result of ACPI lid notifier chain correctly (Zhao Yakui) [555084]
5126 - [stable] ACPI: EC: Fix MSI DMI detection (Alexey Starikovskiy) [555084]
5127 - [stable] acerhdf: limit modalias matching to supported (Stefan Bader) [555084]
5128 - [stable] ALSA: hda - Fix missing capsrc_nids for ALC88x (Takashi Iwai) [555084]
5129 - [stable] sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer (Clemens Ladisch) [555084]
5130 - [stable] ASoC: wm8974: fix a wrong bit definition (Guennadi Liakhovetski) [555084]
5131 - [stable] pata_cmd64x: fix overclocking of UDMA0-2 modes (Bartlomiej Zolnierkiewicz) [555084]
5132 - [stable] pata_hpt3x2n: fix clock turnaround (Sergei Shtylyov) [555084]
5133 - [stable] clockevents: Prevent clockevent_devices list corruption on cpu hotplug (Thomas Gleixner) [555084]
5134 - [stable] sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE (Peter Zijlstra) [555084]
5135 - [stable] x86, cpuid: Add "volatile" to asm in native_cpuid() (Suresh Siddha) [555084]
5136 - [stable] sched: Fix task_hot() test order (Peter Zijlstra) [555084]
5137 - [stable] SCSI: fc class: fix fc_transport_init error handling (Mike Christie) [555084]
5138 - [stable] SCSI: st: fix mdata->page_order handling (FUJITA Tomonori) [555084]
5139 - [stable] SCSI: qla2xxx: dpc thread can execute before scsi host has been added (Michael Reed) [555084]
5140 - [stable] SCSI: ipr: fix EEH recovery (Kleber Sacilotto de Souza) [555084]
5141 - [stable] implement early_io{re,un}map for ia64 (Luck, Tony) [555084]
5142 - [stable] perf_event: Fix incorrect range check on cpu number (Paul Mackerras) [555084]
5143 - [stable] netfilter: xtables: document minimal required version (Jan Engelhardt) [555084]
5144 - [stable] intel-iommu: ignore page table validation in pass through mode (Chris Wright) [555084]
5145 - [stable] jffs2: Fix long-standing bug with symlink garbage collection. (David Woodhouse) [555084]
5146 - [stable] ipvs: zero usvc and udest (Simon Horman) [555084]
5147 - [stable] mm: sigbus instead of abusing oom (Hugh Dickins) [555084]
5148 - [stable] drm/i915: Fix LVDS stability issue on Ironlake (Zhenyu Wang) [555084]
5149 - [stable] drm/i915: PineView only has LVDS and CRT ports (Zhenyu Wang) [555084]
5150 - [stable] drm/i915: Avoid NULL dereference with component_only tv_modes (Chris Wilson) [555084]
5151 - [stable] x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value (Yong Wang) [555084]
5152 - [stable] bcm63xx_enet: fix compilation failure after get_stats_count removal (Florian Fainelli) [555084]
5153 - [stable] V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. (Rafal Milecki) [555084]
5154 - [stable] ext3: Fix data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
5155 - [stable] net: Fix userspace RTM_NEWLINK notifications. (Eric W. Biederman) [555084]
5156 - [stable] ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. (Zhao Yakui) [555084]
5157 - [stable] vmalloc: conditionalize build of pcpu_get_vm_areas() (Tejun Heo) [555084]
5158 - [stable] asus-laptop: change light sens default values. (Corentin Chary) [555084]
5159 - [stable] acerhdf: add new BIOS versions (Peter Feuerer) [555084]
5160 - [stable] matroxfb: fix problems with display stability (Alan Cox) [555084]
5161 - [stable] ipw2100: fix rebooting hang with driver loaded (Zhu Yi) [555084]
5162 - [stable] thinkpad-acpi: preserve rfkill state across suspend/resume (Henrique de Moraes Holschuh) [555084]
5163 - [stable] thinkpad-acpi: fix default brightness_mode for R50e/R51 (Henrique de Moraes Holschuh) [555084]
5164 - [stable] memcg: fix memory.memsw.usage_in_bytes for root cgroup (Kirill A. Shutemov) [555084]
5165 - [stable] mac80211: Fix dynamic power save for scanning. (Vivek Natarajan) [555084]
5166 - [stable] ath9k: fix tx status reporting (Felix Fietkau) [555084]
5167 - [stable] tracing: Fix event format export (Johannes Berg) [555084]
5168 - [stable] b43legacy: avoid PPC fault during resume (Larry Finger) [555084]
5169 - [stable] sparc: Set UTS_MACHINE correctly. (David S. Miller) [555084]
5170 - [stable] sparc64: Fix stack debugging IRQ stack regression. (David S. Miller) [555084]
5171 - [stable] sparc64: Fix overly strict range type matching for PCI devices. (David S. Miller) [555084]
5172 - [stable] sparc64: Don't specify IRQF_SHARED for LDC interrupts. (David S. Miller) [555084]
5173 - [stable] b44 WOL setup: one-bit-off stack corruption kernel panic fix (Stanislav Brabec) [555084]
5174 - [stable] ip_fragment: also adjust skb->truesize for packets not owned by a socket (Patrick McHardy) [555084]
5175 - [stable] tcp: Stalling connections: Fix timeout calculation routine (Damian Lukowski) [555084]
5176 - [stable] slc90e66: fix UDMA handling (Bartlomiej Zolnierkiewicz) [555084]
5177 - [stable] xen: try harder to balloon up under memory pressure. (Ian Campbell) [555084]
5178 - [stable] Xen balloon: fix totalram_pages counting. (Gianluca Guida) [555084]
5179 - [stable] xen: explicitly create/destroy stop_machine workqueues outside suspend/resume region. (Ian Campbell) [555084]
5180 - [stable] xen: use iret for return from 64b kernel to 32b usermode (Jeremy Fitzhardinge) [555084]
5181 - [stable] xen: don't leak IRQs over suspend/resume. (Ian Campbell) [555084]
5182 - [stable] xen: improve error handling in do_suspend. (Ian Campbell) [555084]
5183 - [stable] xen: call clock resume notifier on all CPUs (Ian Campbell) [555084]
5184 - [stable] xen: register runstate info for boot CPU early (Jeremy Fitzhardinge) [555084]
5185 - [stable] xen: don't call dpm_resume_noirq() with interrupts disabled. (Jeremy Fitzhardinge) [555084]
5186 - [stable] xen: register runstate on secondary CPUs (Ian Campbell) [555084]
5187 - [stable] xen: register timer interrupt with IRQF_TIMER (Ian Campbell) [555084]
5188 - [stable] xen: correctly restore pfn_to_mfn_list_list after resume (Ian Campbell) [555084]
5189 - [stable] xen: restore runstate_info even if !have_vcpu_info_placement (Jeremy Fitzhardinge) [555084]
5190 - [stable] xen: re-register runstate area earlier on resume. (Ian Campbell) [555084]
5191 - [stable] xen/xenbus: make DEVICE_ATTR()s static (Jeremy Fitzhardinge) [555084]
5192 - [stable] drm/i915: Add the missing clonemask for display port on Ironlake (Zhao Yakui) [555084]
5193 - [stable] drm/i915: Set the error code after failing to insert new offset into mm ht. (Chris Wilson) [555084]
5194 - [stable] drm/ttm: Fix build failure due to missing struct page (Martin Michlmayr) [555084]
5195 - [stable] drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size (Alex Deucher) [555084]
5196 - [stable] drm/radeon/kms: fix vram setup on rs600 (Alex Deucher) [555084]
5197 - [stable] drm/radeon/kms: fix legacy crtc2 dpms (Alex Deucher) [555084]
5198 - [stable] drm/radeon/kms: handle vblanks properly with dpms on (Alex Deucher) [555084]
5199 - [stable] drm/radeon/kms: Add quirk for HIS X1300 board (Alex Deucher) [555084]
5200 - [stable] powerpc: Fix usage of 64-bit instruction in 32-bit altivec code (Benjamin Herrenschmidt) [555084]
5201 - [stable] powerpc/therm_adt746x: Record pwm invert bit at module load time] (Darrick J. Wong) [555084]
5202 - [stable] powerpc/windfarm: Add detection for second cpu pump (Bolko Maass) [555084]
5203 - [stable] mm: hugetlb: fix hugepage memory leak in walk_page_range() (Naoya Horiguchi) [555084]
5204 - [stable] mm: hugetlb: fix hugepage memory leak in mincore() (Naoya Horiguchi) [555084]
5205 - [stable] x86: Fix bogus warning in apic_noop.apic_write() (Thomas Gleixner) [555084]
5206 - [stable] rtl8187: Fix wrong rfkill switch mask for some models (Larry Finger) [555084]
5207 - [stable] wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC (John W. Linville) [555084]
5208 - [stable] mac80211: fix scan abort sanity checks (Johannes Berg) [555084]
5209 - [stable] mac80211: Revert 'Use correct sign for mesh active path refresh' (Javier Cardona) [555084]
5210 - [stable] mac80211: Fixed bug in mesh portal paths (Javier Cardona) [555084]
5211 - [stable] mac80211: Fix bug in computing crc over dynamic IEs in beacon (Vasanthakumar Thiagarajan) [555084]
5212 - [stable] Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN (Ian Jackson) [555084]
5213 - [stable] Driver core: fix race in dev_driver_string (Alan Stern) [555084]
5214 - [stable] debugfs: fix create mutex racy fops and private data (Mathieu Desnoyers) [555084]
5215 - [stable] devpts_get_tty() should validate inode (Sukadev Bhattiprolu) [555084]
5216 - [stable] futex: Take mmap_sem for get_user_pages in fault_in_user_writeable (Andi Kleen) [555084]
5217 - [stable] md/bitmap: protect against bitmap removal while being updated. (NeilBrown) [555084]
5218 - [stable] hfs: fix a potential buffer overflow (Amerigo Wang) [555084]
5219 - [stable] pxa/em-x270: fix usb hub power up/reset sequence (Igor Grinberg) [555084]
5220 - [stable] USB: Close usb_find_interface race v3 (Russ Dill) [555084]
5221 - [stable] USB: usb-storage: add BAD_SENSE flag (Alan Stern) [555084]
5222 - [stable] USB: usbtmc: repeat usb_bulk_msg until whole message is transfered (Andre Herms) [555084]
5223 - [stable] USB: option.c: add support for D-Link DWM-162-U5 (Zhang Le) [555084]
5224 - [stable] USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again (Sergei Shtylyov) [555084]
5225 - [stable] USB: xhci: Add correct email and files to MAINTAINERS entry. (Sarah Sharp) [555084]
5226 - [stable] jbd2: don't wipe the journal on a failed journal checksum (Theodore Ts'o) [555084]
5227 - [stable] UBI: flush wl before clearing update marker (Sebastian Andrzej Siewior) [555084]
5228 - [stable] bsdacct: fix uid/gid misreporting (Alexey Dobriyan) [555084]
5229 - [stable] V4L/DVB: Fix test in copy_reg_bits() (Roel Kluin) [555084]
5230 - [stable] pata_hpt{37x|3x2n}: fix timing register masks (take 2) (Sergei Shtylyov) [555084]
5231 - [stable] x86: Fix typo in Intel CPU cache size descriptor (Dave Jones) [555084]
5232 - [stable] x86: Add new Intel CPU cache size descriptors (Dave Jones) [555084]
5233 - [stable] x86: Fix duplicated UV BAU interrupt vector (Cliff Wickman) [555084]
5234 - [stable] x86/mce: Set up timer unconditionally (Jan Beulich) [555084]
5235 - [stable] x86, mce: don't restart timer if disabled (Hidetoshi Seto) [555084]
5236 - [stable] x86: Use -maccumulate-outgoing-args for sane mcount prologues (Thomas Gleixner) [555084]
5237 - [stable] x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage (Thomas Gleixner) [555084]
5238 - [stable] KVM: x86: include pvclock MSRs in msrs_to_save (Glauber Costa) [555084]
5239 - [stable] KVM: fix irq_source_id size verification (Marcelo Tosatti) [555084]
5240 - [stable] KVM: s390: Make psw available on all exits, not just a subset (Carsten Otte) [555084]
5241 - [stable] KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c (Carsten Otte) [555084]
5242 - [stable] KVM: x86 emulator: limit instructions to 15 bytes (Avi Kivity) [555084]
5243 - [stable] ALSA: hrtimer - Fix lock-up (Takashi Iwai) [555084]
5244 - [stable] hrtimer: Fix /proc/timer_list regression (Feng Tang) [555084]
5245 - [stable] ath5k: enable EEPROM checksum check (Luis R. Rodriguez) [555084]
5246 - [stable] ath5k: allow setting txpower to 0 (Bob Copeland) [555084]
5247 - [stable] ssb: Fix range check in sprom write (Michael Buesch) [555084]
5248 - [stable] x86, apic: Enable lapic nmi watchdog on AMD Family 11h (Mikael Pettersson) [555084]
5249 - [stable] x86: ASUS P4S800 reboot=bios quirk (Leann Ogasawara) [555084]
5250 - [stable] x86: GART: pci-gart_64.c: Use correct length in strncmp (Joe Perches) [555084]
5251 - [stable] x86: Fix iommu=nodac parameter handling (Tejun Heo) [555084]
5252 - [stable] x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking up the PCI tree (Darrick J. Wong) [555084]
5253 - [stable] x86/amd-iommu: un__init iommu_setup_msi (Joerg Roedel) [555084]
5254 - [stable] x86/amd-iommu: attach devices to pre-allocated domains early (Joerg Roedel) [555084]
5255 - [stable] sched: Fix and clean up rate-limit newidle code (Mike Galbraith) [555084]
5256 - [stable] sched: Rate-limit newidle (Mike Galbraith) [555084]
5257 - [stable] sched: Fix affinity logic in select_task_rq_fair() (Mike Galbraith) [555084]
5258 - [stable] sched: Check for an idle shared cache in select_task_rq_fair() (Mike Galbraith) [555084]
5259 - [stable] PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() (Rafael J. Wysocki) [555084]
5260 - [stable] perf_event: Initialize data.period in perf_swevent_hrtimer() (Xiao Guangrong) [555084]
5261 - [stable] perf_event: Fix invalid type in ioctl definition (Arjan van de Ven) [555084]
5262 - [stable] rcu: Remove inline from forward-referenced functions (Paul E. McKenney) [555084]
5263 - [stable] rcu: Fix note_new_gpnum() uses of ->gpnum (Paul E. McKenney) [555084]
5264 - [stable] rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed counter (Paul E. McKenney) [555084]
5265 - [stable] rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling of ->completed counter (Paul E. McKenney) [555084]
5266 - [stable] firewire: ohci: handle receive packets with a data length of zero (Jay Fenlason) [555084]
5267 - [stable] USB: option: add pid for ZTE (zhao.ming9@zte.com.cn) [555084]
5268 - [stable] USB: usb-storage: fix bug in fill_inquiry (Alan Stern) [555084]
5269 - [stable] ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) (Theodore Ts'o) [555084]
5270 - [stable] ext4: Wait for proper transaction commit on fsync (Jan Kara) [555084]
5271 - [stable] ext4: fix incorrect block reservation on quota transfer. (Dmitry Monakhov) [555084]
5272 - [stable] ext4: quota macros cleanup (Dmitry Monakhov) [555084]
5273 - [stable] ext4: ext4_get_reserved_space() must return bytes instead of blocks (Dmitry Monakhov) [555084]
5274 - [stable] ext4: remove blocks from inode prealloc list on failure (Curt Wohlgemuth) [555084]
5275 - [stable] ext4: Avoid data / filesystem corruption when write fails to copy data (Jan Kara) [555084]
5276 - [stable] ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks() (Roel Kluin) [555084]
5277 - [stable] jbd2: Add ENOMEM checking in and for jbd2_journal_write_metadata_buffer() (Theodore Ts'o) [555084]
5278 - [stable] ext4: move_extent_per_page() cleanup (Akira Fujita) [555084]
5279 - [stable] ext4: initialize moved_len before calling ext4_move_extents() (Kazuya Mio) [555084]
5280 - [stable] ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5281 - [stable] ext4: make "norecovery" an alias for "noload" (Eric Sandeen) [555084]
5282 - [stable] ext4: fix error handling in ext4_ind_get_blocks() (Jan Kara) [555084]
5283 - [stable] ext4: avoid issuing unnecessary barriers (Theodore Ts'o) [555084]
5284 - [stable] ext4: fix block validity checks so they work correctly with meta_bg (Theodore Ts'o) [555084]
5285 - [stable] ext4: fix uninit block bitmap initialization when s_meta_first_bg is non-zero (Theodore Ts'o) [555084]
5286 - [stable] ext4: don't update the superblock in ext4_statfs() (Theodore Ts'o) [555084]
5287 - [stable] ext4: journal all modifications in ext4_xattr_set_handle (Eric Sandeen) [555084]
5288 - [stable] ext4: fix i_flags access in ext4_da_writepages_trans_blocks() (Julia Lawall) [555084]
5289 - [stable] ext4: make sure directory and symlink blocks are revoked (Theodore Ts'o) [555084]
5290 - [stable] ext4: plug a buffer_head leak in an error path of ext4_iget() (Theodore Ts'o) [555084]
5291 - [stable] ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT (Akira Fujita) [555084]
5292 - [stable] ext4: fix lock order problem in ext4_move_extents() (Akira Fujita) [555084]
5293 - [stable] ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails (Akira Fujita) [555084]
5294 - [stable] ext4: avoid divide by zero when trying to mount a corrupted file system (Theodore Ts'o) [555084]
5295 - [stable] ext4: fix potential buffer head leak when add_dirent_to_buf() returns ENOSPC (Theodore Ts'o) [555084]
5296 - [stable] SCSI: megaraid_sas: fix 64 bit sense pointer truncation (Yang, Bo) [555084]
5297 - [stable] SCSI: osd_protocol.h: Add missing #include (Martin Michlmayr) [555084]
5298 - [stable] signal: Fix alternate signal stack check (Sebastian Andrzej Siewior) [555084]
5299
5300 * Sat Jan 09 2010 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-5.el6]
5301 - [scsi] cciss: fix spinlock use (Tomas Henzl) [552910]
5302 - [scsi] cciss,hpsa: reassign controllers (Tomas Henzl) [552192]
5303 - [modsign] Don't attempt to sign a module if there are no key files (David Howells) [543529]
5304 - [x86] Compile mce-inject module (Prarit Bhargava) [553323]
5305 - [nfs] fix insecure export option (Steve Dickson) [437715]
5306 - [nfs] NFS update to 2.6.33 part 3 (Steve Dickson) [437715]
5307 - [nfs] NFS update to 2.6.33 part 2 (Steve Dickson) [437715]
5308 - [nfs] NFS update to 2.6.33 part 1 (Steve Dickson) [437715]
5309 - [s390] cio: deactivated devices can cause use after free panic (Hendrik Brueckner) [548490]
5310 - [s390] cio: memory leaks when checking unusable devices (Hendrik Brueckner) [548490]
5311 - [s390] cio: DASD steal lock task hangs (Hendrik Brueckner) [548490]
5312 - [s390] cio: DASD cannot be set online (Hendrik Brueckner) [548490]
5313 - [s390] cio: erratic DASD I/O behavior (Hendrik Brueckner) [548490]
5314 - [s390] cio: not operational devices cannot be deactivated (Hendrik Brueckner) [548490]
5315 - [s390] cio: initialization of I/O devices fails (Hendrik Brueckner) [548490]
5316 - [s390] cio: kernel panic after unexpected interrupt (Hendrik Brueckner) [548490]
5317 - [s390] cio: incorrect device state after device recognition and recovery (Hendrik Brueckner) [548490]
5318 - [s390] cio: setting a device online or offline fails for unknown reasons (Hendrik Brueckner) [548490]
5319 - [s390] cio: device recovery fails after concurrent hardware changes (Hendrik Brueckner) [548490]
5320 - [s390] cio: device recovery stalls after multiple hardware events (Hendrik Brueckner) [548490]
5321 - [s390] cio: double free under memory pressure (Hendrik Brueckner) [548490]
5322 - [sunrpc] Don't display zero scope IDs (Jeff Layton) [463530]
5323 - [sunrpc] Deprecate support for site-local addresses (Jeff Layton) [463530]
5324 - [input] dell-laptop: Update rfkill state on switch change (Matthew Garrett) [547892]
5325 - [input] Add support for adding i8042 filters (Matthew Garrett) [547892]
5326 - [vfs] force reval of target when following LAST_BIND symlinks (Jeff Layton) [548153]
5327 - [scsi] scsi_dh_rdac: add two IBM devices to rdac_dev_list (Rob Evers) [528576]
5328 - [fs] ext4: flush delalloc blocks when space is low (Eric Sandeen) [526758]
5329 - [fs] fs-writeback: Add helper function to start writeback if idle (Eric Sandeen) [526758]
5330 - [fat] make discard a mount option (Jeff Moyer) [552355]
5331 - [ext4] make trim/discard optional (and off by default) (Jeff Moyer) [552355]
5332 - [fusion] bump version to 3.04.13 (Tomas Henzl) [548408]
5333 - [fusion] fix for incorrect data underrun (Tomas Henzl) [548408]
5334 - [fusion] remove unnecessary printk (Tomas Henzl) [548408]
5335 - [cifs] NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS referrals (Jeff Layton) [545984]
5336 - [fs] ext4: wait for log to commit when unmounting (Josef Bacik) [524267]
5337 - [mm] hwpoison: backport the latest patches from linux-2.6.33 (Dean Nelson) [547705]
5338 - [netdrv] bnx2i: update to 2.1.0 (Stanislaw Gruszka) [463268]
5339 - [netdrv] cnic: fixes for RHEL6 (Stanislaw Gruszka) [463268]
5340 - [gfs2] Fix potential race in glock code (Steven Whitehouse) [546279]
5341 - [scsi] make driver PCI legacy I/O port free (Tomas Henzl) [549118]
5342 - [scsi] eliminate double free (Tomas Henzl) [549351]
5343 - [dlm] always use GFP_NOFS (David Teigland) [545904]
5344 - [block] Fix topology stacking for data and discard alignment (Mike Snitzer) [549766]
5345 - [scsi] scsi_dh: Make alua hardware handler s activate async (Rob Evers) [537257]
5346 - [scsi] scsi_dh: Make hp hardware handler s activate async (Rob Evers) [537257]
5347 - [scsi] scsi_dh: Make rdac hardware handler s activate async (Rob Evers) [537257]
5348 - [scsi] scsi_dh: Change the scsidh_activate interface to be asynchronous (Rob Evers) [537257]
5349 - [netdrv] update tg3 to version 3.105 (John Feeney) [465194]
5350 - [netdrv] bnx2x: update to 1.52.1-5 (Stanislaw Gruszka) [464427]
5351 - [netdrv] ixgbe: add support for 82599-KR and update to latest upstream (Andy Gospodarek) [462781]
5352 - [block] cfq-iosched: Remove prio_change logic for workload selection (Jeff Moyer) [548796]
5353 - [block] cfq-iosched: Get rid of nr_groups (Jeff Moyer) [548796]
5354 - [block] cfq-iosched: Remove the check for same cfq group from allow_merge (Jeff Moyer) [548796]
5355 - [block] cfq: set workload as expired if it doesn't have any slice left (Jeff Moyer) [548796]
5356 - [block] Fix a CFQ crash in "for-2.6.33" branch of block tree (Jeff Moyer) [548796]
5357 - [block] cfq: Remove wait_request flag when idle time is being deleted (Jeff Moyer) [548796]
5358 - [block] cfq-iosched: commenting non-obvious initialization (Jeff Moyer) [548796]
5359 - [block] cfq-iosched: Take care of corner cases of group losing share due to deletion (Jeff Moyer) [548796]
5360 - [block] cfq-iosched: Get rid of cfqq wait_busy_done flag (Jeff Moyer) [548796]
5361 - [block] cfq: Optimization for close cooperating queue searching (Jeff Moyer) [548796]
5362 - [block] cfq-iosched: reduce write depth only if sync was delayed (Jeff Moyer) [548796]
5363 - [x86] ucode-amd: Load ucode-patches once and not separately of each CPU (George Beshers) [548840]
5364 - [x86] Remove enabling x2apic message for every CPU (George Beshers) [548840]
5365 - [x86] Limit number of per cpu TSC sync messages (George Beshers) [548840]
5366 - [sched] Limit the number of scheduler debug messages (George Beshers) [548840]
5367 - [init] Limit the number of per cpu calibration bootup messages (George Beshers) [548840]
5368 - [x86] Limit the number of processor bootup messages (George Beshers) [548840]
5369 - [x86] cpu: mv display_cacheinfo -> cpu_detect_cache_sizes (George Beshers) [548840]
5370 - [x86] Remove CPU cache size output for non-Intel too (George Beshers) [548840]
5371 - [x86] Remove the CPU cache size printk's (George Beshers) [548840]
5372
5373 * Wed Dec 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-4.el6]
5374 - [kvm] VMX: Use shared msr infrastructure (Avi Kivity) [547777]
5375 - [kvm] x86 shared msr infrastructure (Avi Kivity) [547777]
5376 - [kvm] VMX: Move MSR_KERNEL_GS_BASE out of the vmx autoload msr area (Avi Kivity) [547777]
5377 - [kvm] core, x86: Add user return notifiers (Avi Kivity) [547777]
5378 - [quota] ext4: Support for 64-bit quota format (Jerome Marchand) [546311]
5379 - [quota] ext3: Support for vfsv1 quota format (Jerome Marchand) [546311]
5380 - [quota] Implement quota format with 64-bit space and inode limits (Jerome Marchand) [546311]
5381 - [quota] Move definition of QFMT_OCFS2 to linux/quota.h (Jerome Marchand) [546311]
5382 - [scsi] cciss: remove pci-ids (Tomas Henzl) [464649]
5383 - [scsi] hpsa: new driver (Tomas Henzl) [464649]
5384 - [mm] Add file page writeback mm tracepoints. (Larry Woodman) [523093]
5385 - [mm] Add page reclaim mm tracepoints. (Larry Woodman) [523093]
5386 - [mm] Add file page mm tracepoints. (Larry Woodman) [523093]
5387 - [mm] Add anonynmous page mm tracepoints. (Larry Woodman) [523093]
5388 - [mm] Add mm tracepoint definitions to kmem.h (Larry Woodman) [523093]
5389 - [ksm] fix ksm.h breakage of nommu build (Izik Eidus) [548586]
5390 - [ksm] remove unswappable max_kernel_pages (Izik Eidus) [548586]
5391 - [ksm] memory hotremove migration only (Izik Eidus) [548586]
5392 - [ksm] rmap_walk to remove_migation_ptes (Izik Eidus) [548586]
5393 - [ksm] mem cgroup charge swapin copy (Izik Eidus) [548586]
5394 - [ksm] share anon page without allocating (Izik Eidus) [548586]
5395 - [ksm] take keyhole reference to page (Izik Eidus) [548586]
5396 - [ksm] hold anon_vma in rmap_item (Izik Eidus) [548586]
5397 - [ksm] let shared pages be swappable (Izik Eidus) [548586]
5398 - [ksm] fix mlockfreed to munlocked (Izik Eidus) [548586]
5399 - [ksm] stable_node point to page and back (Izik Eidus) [548586]
5400 - [ksm] separate stable_node (Izik Eidus) [548586]
5401 - [ksm] singly-linked rmap_list (Izik Eidus) [548586]
5402 - [ksm] cleanup some function arguments (Izik Eidus) [548586]
5403 - [ksm] remove redundancies when merging page (Izik Eidus) [548586]
5404 - [ksm] three remove_rmap_item_from_tree cleanups (Izik Eidus) [548586]
5405 - [mm] stop ptlock enlarging struct page (Izik Eidus) [548586]
5406 - [mm] vmscan: do not evict inactive pages when skipping an active list scan (Rik van Riel) [548457]
5407 - [mm] vmscan: make consistent of reclaim bale out between do_try_to_free_page and shrink_zone (Rik van Riel) [548457]
5408 - [mm] vmscan: kill sc.swap_cluster_max (Rik van Riel) [548457]
5409 - [mm] vmscan: zone_reclaim() dont use insane swap_cluster_max (Rik van Riel) [548457]
5410 - [mm] vmscan: kill hibernation specific reclaim logic and unify it (Rik van Riel) [548457]
5411 - [mm] vmscan: separate sc.swap_cluster_max and sc.nr_max_reclaim (Rik van Riel) [548457]
5412 - [mm] vmscan: stop kswapd waiting on congestion when the min watermark is not being met (Rik van Riel) [548457]
5413 - [mm] vmscan: have kswapd sleep for a short interval and double check it should be asleep (Rik van Riel) [548457]
5414 - [mm] pass address down to rmap ones (Rik van Riel) [548457]
5415 - [mm] CONFIG_MMU for PG_mlocked (Rik van Riel) [548457]
5416 - [mm] mlocking in try_to_unmap_one (Rik van Riel) [548457]
5417 - [mm] define PAGE_MAPPING_FLAGS (Rik van Riel) [548457]
5418 - [mm] swap_info: note SWAP_MAP_SHMEM (Rik van Riel) [548457]
5419 - [mm] swap_info: swap count continuations (Rik van Riel) [548457]
5420 - [mm] swap_info: swap_map of chars not shorts (Rik van Riel) [548457]
5421 - [mm] swap_info: SWAP_HAS_CACHE cleanups (Rik van Riel) [548457]
5422 - [mm] swap_info: miscellaneous minor cleanups (Rik van Riel) [548457]
5423 - [mm] swap_info: include first_swap_extent (Rik van Riel) [548457]
5424 - [mm] swap_info: change to array of pointers (Rik van Riel) [548457]
5425 - [mm] swap_info: private to swapfile.c (Rik van Riel) [548457]
5426 - [mm] move inc_zone_page_state(NR_ISOLATED) to just isolated place (Rik van Riel) [548457]
5427 - [xen] support MAXSMP (Andrew Jones) [547129]
5428 - [xen] wait up to 5 minutes for device connetion and fix fallout (Paolo Bonzini) [523630]
5429 - [uv] x86 SGI: Map low MMR ranges (George Beshers) [548181]
5430 - [uv] gru: function to generate chipset IPI values (George Beshers) [548181]
5431 - [uv] x86 RTC: Clean up error handling (George Beshers) [548181]
5432 - [uv] x86: RTC: Add clocksource only boot option (George Beshers) [548181]
5433 - [uv] x86: RTC: Fix early expiry handling (George Beshers) [548181]
5434 - [uv] x86: introduce uv_gpa_is_mmr (George Beshers) [548181]
5435 - [uv] x86: function to translate from gpa -> socket_paddr (George Beshers) [548181]
5436 - [uv] x86: SGI UV: Fix BAU initialization (George Beshers) [548181]
5437 - [s390] zfcp: Block SCSI EH thread for rport state BLOCKED (Hendrik Brueckner) [547413]
5438 - [scsi] scsi_transport_fc: Introduce helper function for blocking scsi_eh (Hendrik Brueckner) [547413]
5439 - [s390] zfcp: improve FSF error reporting (Hendrik Brueckner) [547386]
5440 - [s390] zfcp: fix ELS ADISC handling to prevent QDIO errors (Hendrik Brueckner) [547385]
5441 - [s390] zfcp: Assign scheduled work to driver queue (Hendrik Brueckner) [547377]
5442 - [s390] zfcp: Don't fail SCSI commands when transitioning to blocked fc_rport (Hendrik Brueckner) [547379]
5443 - [s390] ctcm: suspend has to wait for outstanding I/O (Hendrik Brueckner) [546633]
5444 - [s390] cmm: free pages on hibernate (Hendrik Brueckner) [546407]
5445 - [s390] iucv: add work_queue cleanup for suspend (Hendrik Brueckner) [546319]
5446 - [s390] dasd: let device initialization wait for LCU setup (Hendrik Brueckner) [547735]
5447 - [s390] dasd: remove strings from s390dbf (Hendrik Brueckner) [547735]
5448 - [s390] dasd: enable prefix independent of pav support (Hendrik Brueckner) [547735]
5449 - [sound] ALSA HDA driver update 2009-12-15 (Jaroslav Kysela) [525391]
5450 - [utrace] utrace core (Roland McGrath) [549491]
5451 - [utrace] implement utrace-ptrace (Roland McGrath) [549491]
5452 - [ptrace] reorder the code in kernel/ptrace.c (Roland McGrath) [549491]
5453 - [ptrace] export __ptrace_detach() and do_notify_parent_cldstop() (Roland McGrath) [549491]
5454 - [ptrace_signal] check PT_PTRACED before reporting a signal (Roland McGrath) [549491]
5455 - [tracehooks] check PT_PTRACED before reporting the single-step (Roland McGrath) [549491]
5456 - [tracehooks] kill some PT_PTRACED checks (Roland McGrath) [549491]
5457 - [signals] check ->group_stop_count after tracehook_get_signal() (Roland McGrath) [549491]
5458 - [ptrace] x86: change syscall_trace_leave() to rely on tracehook when stepping (Roland McGrath) [549491]
5459 - [ptrace] x86: implement user_single_step_siginfo() (Roland McGrath) [549491]
5460 - [ptrace] change tracehook_report_syscall_exit() to handle stepping (Roland McGrath) [549491]
5461 - [ptrace] powerpc: implement user_single_step_siginfo() (Roland McGrath) [549491]
5462 - [ptrace] introduce user_single_step_siginfo() helper (Roland McGrath) [549491]
5463 - [ptrace] copy_process() should disable stepping (Roland McGrath) [549491]
5464 - [ptrace] cleanup ptrace_init_task()->ptrace_link() path (Roland McGrath) [549491]
5465
5466 * Thu Dec 17 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-3.el6]
5467 - [modsign] Don't check e_entry in ELF header (David Howells) [548027]
5468 - [pci] pciehp: Provide an option to disable native PCIe hotplug (Matthew Garrett) [517050]
5469 - [s390] OSA QDIO data connection isolation (Hendrik Brueckner) [537496]
5470 - [s390] zcrypt: adjust speed rating of cex3 adapters (Hendrik Brueckner) [537495]
5471 - [s390] zcrypt: adjust speed rating between cex2 and pcixcc (Hendrik Brueckner) [537495]
5472 - [s390] zcrypt: use definitions for cex3 (Hendrik Brueckner) [537495]
5473 - [s390] zcrypt: add support for cex3 device types (Hendrik Brueckner) [537495]
5474 - [s390] zcrypt: special command support for cex3 exploitation (Hendrik Brueckner) [537495]
5475 - [s390] zcrypt: initialize ap_messages for cex3 exploitation (Hendrik Brueckner) [537495]
5476 - [s390] kernel: performance counter fix and page fault optimization (Hendrik Brueckner) [546396]
5477 - [s390] kernel: fix dump indicator (Hendrik Brueckner) [546285]
5478 - [s390] dasd: support DIAG access for read-only devices (Hendrik Brueckner) [546309]
5479 - [s390] zcrypt: Do not simultaneously schedule hrtimer (Hendrik Brueckner) [546291]
5480 - [s390] kernel: clear high-order bits after switching to 64-bit mode (Hendrik Brueckner) [546314]
5481 - [virt] vhost: add missing architectures (Michael S. Tsirkin) [540389]
5482 - [virt] vhost_net: a kernel-level virtio server (Michael S. Tsirkin) [540389]
5483 - [virt] mm: export use_mm/unuse_mm to modules (Michael S. Tsirkin) [540389]
5484 - [virt] tun: export underlying socket (Michael S. Tsirkin) [540389]
5485 - [dm] snapshot-merge support from 2.6.33 (Mike Snitzer) [547563]
5486 - [dm] snapshot changes from 2.6.33 (Mike Snitzer) [547563]
5487 - [dm] crypt changes from 2.6.33 (Mike Snitzer) [547563]
5488 - [dm] raid1 changes from 2.6.33 (Mike Snitzer) [547563]
5489 - [dm] core and mpath changes from 2.6.33 (Mike Snitzer) [547563]
5490 - [scsi] fix dma handling when using virtual hosts (Mike Christie) [525241]
5491 - [nfs] convert proto= option to use netids rather than a protoname (Jeff Layton) [545973]
5492
5493 * Fri Dec 11 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-2.el6]
5494 - [block] config: enable CONFIG_BLK_DEV_INTEGRITY (Jeff Moyer) [490732]
5495 - [block] config: enable CONFIG_BLK_CGROUP (Jeff Moyer) [425895]
5496 - [libata] Clarify ata_set_lba_range_entries function (Jeff Moyer) [528046]
5497 - [libata] Report zeroed read after Trim and max discard size (Jeff Moyer) [528046]
5498 - [scsi] Correctly handle thin provisioning write error (Jeff Moyer) [528046]
5499 - [scsi] sd: WRITE SAME(16) / UNMAP support (Jeff Moyer) [528046]
5500 - [scsi] scsi_debug: Thin provisioning support (Jeff Moyer) [528046]
5501 - [scsi] Add missing command definitions (Jeff Moyer) [528046]
5502 - [block] Add support for the ATA TRIM command in libata. (Jeff Moyer) [528046]
5503 - [block] dio: fix performance regression (Jeff Moyer) [545507]
5504 - [block] cfq-iosched: Do not access cfqq after freeing it (Jeff Moyer) [425895]
5505 - [block] include linux/err.h to use ERR_PTR (Jeff Moyer) [425895]
5506 - [block] cfq-iosched: use call_rcu() instead of doing grace period stall on queue exit (Jeff Moyer) [425895]
5507 - [block] blkio: Allow CFQ group IO scheduling even when CFQ is a module (Jeff Moyer) [425895]
5508 - [block] blkio: Implement dynamic io controlling policy registration (Jeff Moyer) [425895]
5509 - [block] blkio: Export some symbols from blkio as its user CFQ can be a module (Jeff Moyer) [425895]
5510 - [block] cfq-iosched: make nonrot check logic consistent (Jeff Moyer) [545225]
5511 - [block] io controller: quick fix for blk-cgroup and modular CFQ (Jeff Moyer) [425895]
5512 - [block] cfq-iosched: move IO controller declerations to a header file (Jeff Moyer) [425895]
5513 - [block] cfq-iosched: fix compile problem with !CONFIG_CGROUP (Jeff Moyer) [425895]
5514 - [block] blkio: Documentation (Jeff Moyer) [425895]
5515 - [block] blkio: Wait on sync-noidle queue even if rq_noidle = 1 (Jeff Moyer) [425895]
5516 - [block] blkio: Implement group_isolation tunable (Jeff Moyer) [425895]
5517 - [block] blkio: Determine async workload length based on total number of queues (Jeff Moyer) [425895]
5518 - [block] blkio: Wait for cfq queue to get backlogged if group is empty (Jeff Moyer) [425895]
5519 - [block] blkio: Propagate cgroup weight updation to cfq groups (Jeff Moyer) [425895]
5520 - [block] blkio: Drop the reference to queue once the task changes cgroup (Jeff Moyer) [425895]
5521 - [block] blkio: Provide some isolation between groups (Jeff Moyer) [425895]
5522 - [block] blkio: Export disk time and sectors used by a group to user space (Jeff Moyer) [425895]
5523 - [block] blkio: Some debugging aids for CFQ (Jeff Moyer) [425895]
5524 - [block] blkio: Take care of cgroup deletion and cfq group reference counting (Jeff Moyer) [425895]
5525 - [block] blkio: Dynamic cfq group creation based on cgroup tasks belongs to (Jeff Moyer) [425895]
5526 - [block] blkio: Group time used accounting and workload context save restore (Jeff Moyer) [425895]
5527 - [block] blkio: Implement per cfq group latency target and busy queue avg (Jeff Moyer) [425895]
5528 - [block] blkio: Introduce per cfq group weights and vdisktime calculations (Jeff Moyer) [425895]
5529 - [block] blkio: Introduce blkio controller cgroup interface (Jeff Moyer) [425895]
5530 - [block] blkio: Introduce the root service tree for cfq groups (Jeff Moyer) [425895]
5531 - [block] blkio: Keep queue on service tree until we expire it (Jeff Moyer) [425895]
5532 - [block] blkio: Implement macro to traverse each service tree in group (Jeff Moyer) [425895]
5533 - [block] blkio: Introduce the notion of cfq groups (Jeff Moyer) [425895]
5534 - [block] blkio: Set must_dispatch only if we decided to not dispatch the request (Jeff Moyer) [425895]
5535 - [block] cfq-iosched: no dispatch limit for single queue (Jeff Moyer) [425895]
5536 - [block] Allow devices to indicate whether discarded blocks are zeroed (Jeff Moyer) [545203]
5537 - [block] Revert "cfq: Make use of service count to estimate the rb_key offset" (Jeff Moyer) [425895]
5538 - [block] cfq-iosched: fix corner cases in idling logic (Jeff Moyer) [425895]
5539 - [block] cfq-iosched: idling on deep seeky sync queues (Jeff Moyer) [425895]
5540 - [block] cfq-iosched: fix no-idle preemption logic (Jeff Moyer) [425895]
5541 - [block] cfq-iosched: fix ncq detection code (Jeff Moyer) [425895]
5542 - [block] cfq-iosched: cleanup unreachable code (Jeff Moyer) [425895]
5543 - [block] cfq: Make use of service count to estimate the rb_key offset (Jeff Moyer) [425895]
5544 - [block] partitions: read whole sector with EFI GPT header (Jeff Moyer) [463632]
5545 - [block] partitions: use sector size for EFI GPT (Jeff Moyer) [463632]
5546 - [block] Expose discard granularity (Jeff Moyer) [545203]
5547 - [block] cfq-iosched: fix next_rq computation (Jeff Moyer) [425895]
5548 - [block] cfq-iosched: simplify prio-unboost code (Jeff Moyer) [425895]
5549 - [block] blkdev: flush disk cache on ->fsync (Jeff Moyer) [545199]
5550 - [block] cfq-iosched: fix style issue in cfq_get_avg_queues() (Jeff Moyer) [425895]
5551 - [block] cfq-iosched: fairness for sync no-idle queues (Jeff Moyer) [425895]
5552 - [block] cfq-iosched: enable idling for last queue on priority class (Jeff Moyer) [425895]
5553 - [block] cfq-iosched: reimplement priorities using different service trees (Jeff Moyer) [425895]
5554 - [block] cfq-iosched: preparation to handle multiple service trees (Jeff Moyer) [425895]
5555 - [block] cfq-iosched: adapt slice to number of processes doing I/O (Jeff Moyer) [425895]
5556 - [block] cfq-iosched: improve hw_tag detection (Jeff Moyer) [425895]
5557 - [block] cfq: break apart merged cfqqs if they stop cooperating (Jeff Moyer) [533932]
5558 - [block] cfq: change the meaning of the cfqq_coop flag (Jeff Moyer) [533932]
5559 - [block] cfq: merge cooperating cfq_queues (Jeff Moyer) [533932]
5560 - [block] cfq: calculate the seek_mean per cfq_queue not per cfq_io_context (Jeff Moyer) [533932]
5561 - [block] CFQ is more than a desktop scheduler (Jeff Moyer) [533932]
5562 - [block] revert: cfq-iosched: limit coop preemption (Jeff Moyer) [533932]
5563 - perf: Don't free perf_mmap_data until work has been done (Aristeu Rozanski) [547432]
5564 - ext4: Fix insuficient checks in EXT4_IOC_MOVE_EXT (Aristeu Rozanski) [547432]
5565 - agp: clear GTT on intel (Aristeu Rozanski) [547432]
5566 - drm/i915: Fix sync to vblank when VGA output is turned off (Aristeu Rozanski) [547432]
5567 - drm: nouveau fixes (Aristeu Rozanski) [547432]
5568 - drm: radeon dp support (Aristeu Rozanski) [547432]
5569 - drm: radeon fixes (Aristeu Rozanski) [547432]
5570 - KVM: allow userspace to adjust kvmclock offset (Aristeu Rozanski) [547432]
5571 - ath9k backports (Aristeu Rozanski) [547432]
5572 - intel-iommu backport (Aristeu Rozanski) [547432]
5573 - updating patch linux-2.6-nfsd4-proots.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5574 - updating linux-2.6-execshield.patch (2.6.32-8.fc13 reference) (Aristeu Rozanski) [547432]
5575
5576 * Tue Dec 08 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-1.el6]
5577 - [rebase] Rebased to 2.6.32
5578
5579 * Mon Dec 07 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.54.el6]
5580 - [edac] amd64_edac: disabling temporarily (Aristeu Rozanski)
5581 - [x86] Enable CONFIG_SPARSE_IRQ (Prarit Bhargava) [543174]
5582 - [x86] panic if AMD cpu_khz is wrong (Prarit Bhargava) [523468]
5583 - [infiniband] Rewrite SG handling for RDMA logic (Mike Christie) [540269]
5584
5585 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.53.el6]
5586 - [net] Add acession counts to all datagram protocols (Neil Horman) [445366]
5587 - [modsign] Enable module signing in the RHEL RPM (David Howells) [517341]
5588 - [modsign] Don't include .note.gnu.build-id in the digest (David Howells) [517341]
5589 - [modsign] Apply signature checking to modules on module load (David Howells) [517341]
5590 - [modsign] Module signature checker and key manager (David Howells) [517341]
5591 - [modsign] Module ELF verifier (David Howells) [517341]
5592 - [modsign] Add indications of module ELF types (David Howells) [517341]
5593 - [modsign] Multiprecision maths library (David Howells) [517341]
5594 - [procfs] add ability to modify proc file limits from outside a processes own context (Neil Horman) [461946]
5595 - [s390x] fix build failure with CONFIG_FTRACE_SYSCALLS (Aristeu Rozanski) [538978]
5596
5597 * Wed Nov 25 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.52.el6]
5598 - [x86] AMD Northbridge: Verify NB's node is online (Prarit Bhargava) [536769]
5599 - [scsi] devinfo update for Hitachi entries (Takahiro Yasui) [526763]
5600 - [net] export device speed and duplex via sysfs (Andy Gospodarek) [453432]
5601 - [ppc64] Fix kcrctab_ sections to undo undesireable relocations that break kdump (Neil Horman) [509012]
5602 - [mm] Limit 32-bit x86 systems to 16GB and prevent panic on boot when system has more than ~30GB (Larry Woodman) [532039]
5603
5604 * Mon Nov 23 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.51.el6]
5605 - [kernel] Set panic_on_oops to 1 (Prarit Bhargava) [529963]
5606 - [kdump] kexec: allow to shrink reserved memory (Amerigo Wang) [523091]
5607 - [kdump] doc: update the kdump document (Amerigo Wang) [523091]
5608 - [kdump] powerpc: implement crashkernel=auto (Amerigo Wang) [523091]
5609 - [kdump] powerpc: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5610 - [kdump] ia64: implement crashkernel=auto (Amerigo Wang) [523091]
5611 - [kdump] ia64: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5612 - [kdump] x86: implement crashkernel=auto (Amerigo Wang) [523091]
5613 - [kdump] x86: add CONFIG_KEXEC_AUTO_RESERVE (Amerigo Wang) [523091]
5614 - [block] aio: implement request batching (Jeff Moyer) [533931]
5615 - [block] get rid of the WRITE_ODIRECT flag (Jeff Moyer) [533931]
5616
5617 * Sat Nov 21 2009 Aristeu Rozanski <arozansk@redhat.com> [2.6.32-0.50.el6]
5618 - [crypto] padlock-aes: Use the correct mask when checking whether copying is required (Chuck Ebbert)
5619 - [rfkill] add support to a key to control all radios (Aristeu Rozanski)
5620 - [acpi] be less verbose about old BIOSes (Aristeu Rozanski)
5621 - [drm] intel big hammer (Aristeu Rozanski)
5622 - [e1000] add quirk for ich9 (Aristeu Rozanski)
5623 - [pci] cacheline sizing (Dave Jones)
5624 - [crash] add crash driver (Dave Anderson)
5625 - [fb] disable fbcon logo with parameter (Aristeu Rozanski)
5626 - [pci] silence some PCI resource allocation errors (Aristeu Rozanski)
5627 - [serio] disable error messages when i8042 isn't found (Peter Jones)
5628 - [serial] Enable higher baud rates for 16C95x (Aristeu Rozanski)
5629 - [input] remove pcspkr modalias (Aristeu Rozanski)
5630 - [floppy] remove the floppy pnp modalias (Aristeu Rozanski)
5631 - [input] remove unwanted messages on spurious events (Aristeu Rozanski)
5632 - [sound] hda intel prealloc 4mb dmabuffer (Aristeu Rozanski)
5633 - [sound] disables hda beep by default (Aristeu Rozanski)
5634 - [pci] sets PCIE ASPM default policy to POWERSAVE (Aristeu Rozanski)
5635 - [pci] add config option to control the default state of PCI MSI interrupts (Aristeu Rozanski)
5636 - [debug] always inline kzalloc (Aristeu Rozanski)
5637 - [debug] add would_have_oomkilled procfs ctl (Aristeu Rozanski)
5638 - [debug] add calls to print_tainted() on spinlock functions (Aristeu Rozanski)
5639 - [debug] display tainted information on other places (Aristeu Rozanski)
5640 - [x86] add option to control the NMI watchdog timeout (Aristeu Rozanski)
5641 - [debug] print common struct sizes at boot time (Aristeu Rozanski)
5642 - [acpi] Disable firmware video brightness change by default (Matthew Garrett)
5643 - [acpi] Disable brightness switch by default (Aristeu Rozanski)
5644 - [usb] enable autosuspend on UVC by default (Matthew Garrett)
5645 - [usb] enable autosuspend by default on qcserial (Matthew Garrett)
5646 - [usb] Allow drivers to enable USB autosuspend on a per-device basis (Matthew Garrett)
5647 - [nfs] make nfs4 callback hidden (Steve Dickson)
5648 - [nfsd4] proots (Aristeu Rozanski)
5649 - [execshield] introduce execshield (Aristeu Rozanski)
5650 - [powerpc] add modalias_show operation (Aristeu Rozanski)
5651 - [hwmon] add VIA hwmon temperature sensor support (Aristeu Rozanski)
5652 - [utrace] introduce utrace implementation (Aristeu Rozanski)
5653 - [build] introduce AFTER_LINK variable (Aristeu Rozanski)
5654
5655
5656 ###
5657 # The following Emacs magic makes C-c C-e use UTC dates.
5658 # Local Variables:
5659 # rpm-change-log-uses-utc: t
5660 # End:
5661 ###