Linux 2.6.36-rc1-git4
This commit is contained in:
parent
f790f66448
commit
f7c7ff50b7
@ -51,7 +51,7 @@ Summary: The Linux kernel
|
|||||||
# For non-released -rc kernels, this will be prepended with "0.", so
|
# For non-released -rc kernels, this will be prepended with "0.", so
|
||||||
# for example a 3 here will become 0.3
|
# for example a 3 here will become 0.3
|
||||||
#
|
#
|
||||||
%global baserelease 6
|
%global baserelease 7
|
||||||
%global fedora_build %{baserelease}
|
%global fedora_build %{baserelease}
|
||||||
|
|
||||||
# base_sublevel is the kernel version we're starting with and patching
|
# base_sublevel is the kernel version we're starting with and patching
|
||||||
@ -84,7 +84,7 @@ Summary: The Linux kernel
|
|||||||
# The rc snapshot level
|
# The rc snapshot level
|
||||||
%define rcrev 1
|
%define rcrev 1
|
||||||
# The git snapshot level
|
# The git snapshot level
|
||||||
%define gitrev 3
|
%define gitrev 4
|
||||||
# Set rpm version accordingly
|
# Set rpm version accordingly
|
||||||
%define rpmversion 2.6.%{upstream_sublevel}
|
%define rpmversion 2.6.%{upstream_sublevel}
|
||||||
%endif
|
%endif
|
||||||
@ -1861,6 +1861,10 @@ fi
|
|||||||
# || ||
|
# || ||
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Aug 22 2010 Chuck Ebbert <cebbert@redhat.com> - 2.6.36-0.7.rc1.git4
|
||||||
|
- Linux 2.6.36-rc1-git4
|
||||||
|
- Fix context in linux-2.6-i386-nx-emulation.patch
|
||||||
|
|
||||||
* Sat Aug 21 2010 Chuck Ebbert <cebbert@redhat.com> - 2.6.36-0.6.rc1.git3
|
* Sat Aug 21 2010 Chuck Ebbert <cebbert@redhat.com> - 2.6.36-0.6.rc1.git3
|
||||||
- Drop utrace patch that causes hang on boot.
|
- Drop utrace patch that causes hang on boot.
|
||||||
|
|
||||||
|
@ -538,15 +538,16 @@
|
|||||||
static void unmap_region(struct mm_struct *mm,
|
static void unmap_region(struct mm_struct *mm,
|
||||||
struct vm_area_struct *vma, struct vm_area_struct *prev,
|
struct vm_area_struct *vma, struct vm_area_struct *prev,
|
||||||
unsigned long start, unsigned long end);
|
unsigned long start, unsigned long end);
|
||||||
@@ -388,6 +401,8 @@
|
@@ -388,6 +401,9 @@
|
||||||
__vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
||||||
struct vm_area_struct *prev, struct rb_node *rb_parent)
|
|
||||||
{
|
{
|
||||||
|
struct vm_area_struct *next;
|
||||||
|
|
||||||
+ if (vma->vm_flags & VM_EXEC)
|
+ if (vma->vm_flags & VM_EXEC)
|
||||||
+ arch_add_exec_range(mm, vma->vm_end);
|
+ arch_add_exec_range(mm, vma->vm_end);
|
||||||
|
+
|
||||||
|
vma->vm_prev = prev;
|
||||||
if (prev) {
|
if (prev) {
|
||||||
vma->vm_next = prev->vm_next;
|
next = prev->vm_next;
|
||||||
prev->vm_next = vma;
|
|
||||||
@@ -489,6 +504,8 @@
|
@@ -489,6 +504,8 @@
|
||||||
rb_erase(&vma->vm_rb, &mm->mm_rb);
|
rb_erase(&vma->vm_rb, &mm->mm_rb);
|
||||||
if (mm->mmap_cache == vma)
|
if (mm->mmap_cache == vma)
|
||||||
|
2
sources
2
sources
@ -1,3 +1,3 @@
|
|||||||
091abeb4684ce03d1d936851618687b6 linux-2.6.35.tar.bz2
|
091abeb4684ce03d1d936851618687b6 linux-2.6.35.tar.bz2
|
||||||
4f51963b5e076fb87ab32bda229a524f patch-2.6.36-rc1.bz2
|
4f51963b5e076fb87ab32bda229a524f patch-2.6.36-rc1.bz2
|
||||||
e6b13a5770a0ee6bdd0c241e975420cd patch-2.6.36-rc1-git3.bz2
|
017aab6e1b6fcd231e7c5b2aa655f8c2 patch-2.6.36-rc1-git4.bz2
|
||||||
|
Loading…
Reference in New Issue
Block a user