Linux v3.8-rc5-218-ga56e160
- Enable NAMESPACES and CHECKPOINT_RESTORE on x86_64 for F19 CRIU feature - Enable CONFIG_DEBUG_ATOMIC_SLEEP
This commit is contained in:
parent
1a1f3b0695
commit
ebd1a1737a
@ -54,6 +54,8 @@ CONFIG_IOSCHED_DEADLINE=y
|
|||||||
CONFIG_IOSCHED_CFQ=y
|
CONFIG_IOSCHED_CFQ=y
|
||||||
CONFIG_CFQ_GROUP_IOSCHED=y
|
CONFIG_CFQ_GROUP_IOSCHED=y
|
||||||
CONFIG_DEFAULT_CFQ=y
|
CONFIG_DEFAULT_CFQ=y
|
||||||
|
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||||
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_PID_NS=y
|
CONFIG_PID_NS=y
|
||||||
CONFIG_UTS_NS=y
|
CONFIG_UTS_NS=y
|
||||||
CONFIG_IPC_NS=y
|
CONFIG_IPC_NS=y
|
||||||
|
@ -2,7 +2,7 @@ CONFIG_SND_VERBOSE_PRINTK=y
|
|||||||
CONFIG_SND_DEBUG=y
|
CONFIG_SND_DEBUG=y
|
||||||
CONFIG_SND_PCM_XRUN_DEBUG=y
|
CONFIG_SND_PCM_XRUN_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
|
CONFIG_DEBUG_ATOMIC_SLEEP=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
# CONFIG_DEBUG_RT_MUTEXES is not set
|
# CONFIG_DEBUG_RT_MUTEXES is not set
|
||||||
|
@ -127,6 +127,10 @@ CONFIG_I7300_IDLE=m
|
|||||||
|
|
||||||
CONFIG_BPF_JIT=y
|
CONFIG_BPF_JIT=y
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Features/Checkpoint_Restore
|
||||||
|
CONFIG_CHECKPOINT_RESTORE=y
|
||||||
|
CONFIG_NAMESPACES=y
|
||||||
|
|
||||||
# Should be 32bit only, but lacks KConfig depends
|
# Should be 32bit only, but lacks KConfig depends
|
||||||
# CONFIG_XO15_EBOOK is not set
|
# CONFIG_XO15_EBOOK is not set
|
||||||
|
|
||||||
|
22
criu-no-expert.patch
Normal file
22
criu-no-expert.patch
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
diff --git a/init/Kconfig b/init/Kconfig
|
||||||
|
index be8b7f5..7461760 100644
|
||||||
|
--- a/init/Kconfig
|
||||||
|
+++ b/init/Kconfig
|
||||||
|
@@ -989,7 +989,7 @@ config DEBUG_BLK_CGROUP
|
||||||
|
endif # CGROUPS
|
||||||
|
|
||||||
|
config CHECKPOINT_RESTORE
|
||||||
|
- bool "Checkpoint/restore support" if EXPERT
|
||||||
|
+ bool "Checkpoint/restore support"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Enables additional kernel features in a sake of checkpoint/restore.
|
||||||
|
@@ -1000,7 +1000,7 @@ config CHECKPOINT_RESTORE
|
||||||
|
If unsure, say N here.
|
||||||
|
|
||||||
|
menuconfig NAMESPACES
|
||||||
|
- bool "Namespaces support" if EXPERT
|
||||||
|
+ bool "Namespaces support"
|
||||||
|
default !EXPERT
|
||||||
|
help
|
||||||
|
Provides the way to make tasks work with different objects using
|
13
kernel.spec
13
kernel.spec
@ -95,7 +95,7 @@ Summary: The Linux kernel
|
|||||||
# The rc snapshot level
|
# The rc snapshot level
|
||||||
%define rcrev 5
|
%define rcrev 5
|
||||||
# The git snapshot level
|
# The git snapshot level
|
||||||
%define gitrev 1
|
%define gitrev 2
|
||||||
# Set rpm version accordingly
|
# Set rpm version accordingly
|
||||||
%define rpmversion 3.%{upstream_sublevel}.0
|
%define rpmversion 3.%{upstream_sublevel}.0
|
||||||
%endif
|
%endif
|
||||||
@ -751,6 +751,9 @@ Patch21229: Revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon.patch
|
|||||||
Patch21240: Input-increase-struct-ps2dev-cmdbuf-to-8-bytes.patch
|
Patch21240: Input-increase-struct-ps2dev-cmdbuf-to-8-bytes.patch
|
||||||
Patch21241: Input-add-support-for-Cypress-PS2-Trackpads.patch
|
Patch21241: Input-add-support-for-Cypress-PS2-Trackpads.patch
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Features/Checkpoint_Restore
|
||||||
|
Patch21242: criu-no-expert.patch
|
||||||
|
|
||||||
# END OF PATCH DEFINITIONS
|
# END OF PATCH DEFINITIONS
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
@ -1448,6 +1451,9 @@ ApplyPatch Revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon.patch
|
|||||||
ApplyPatch Input-increase-struct-ps2dev-cmdbuf-to-8-bytes.patch
|
ApplyPatch Input-increase-struct-ps2dev-cmdbuf-to-8-bytes.patch
|
||||||
ApplyPatch Input-add-support-for-Cypress-PS2-Trackpads.patch
|
ApplyPatch Input-add-support-for-Cypress-PS2-Trackpads.patch
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Features/Checkpoint_Restore
|
||||||
|
ApplyPatch criu-no-expert.patch
|
||||||
|
|
||||||
# END OF PATCH APPLICATIONS
|
# END OF PATCH APPLICATIONS
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
@ -2303,6 +2309,11 @@ fi
|
|||||||
# ||----w |
|
# ||----w |
|
||||||
# || ||
|
# || ||
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jan 30 2013 Josh Boyer <jwboyer@redhat.com> - 3.8.0-0.rc5.git2.1
|
||||||
|
- Linux v3.8-rc5-218-ga56e160
|
||||||
|
- Enable NAMESPACES and CHECKPOINT_RESTORE on x86_64 for F19 CRIU feature
|
||||||
|
- Enable CONFIG_DEBUG_ATOMIC_SLEEP
|
||||||
|
|
||||||
* Tue Jan 29 2013 Josh Boyer <jwboyer@redhat.com> - 3.8.0-0.rc5.git1.1
|
* Tue Jan 29 2013 Josh Boyer <jwboyer@redhat.com> - 3.8.0-0.rc5.git1.1
|
||||||
- Linux v3.8-rc5-150-g6abb7c2
|
- Linux v3.8-rc5-150-g6abb7c2
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1,3 +1,3 @@
|
|||||||
21223369d682bcf44bcdfe1521095983 linux-3.7.tar.xz
|
21223369d682bcf44bcdfe1521095983 linux-3.7.tar.xz
|
||||||
714424b01630b141bbee02d0ea9d5633 patch-3.8-rc5.xz
|
714424b01630b141bbee02d0ea9d5633 patch-3.8-rc5.xz
|
||||||
4321224a98ba68c550602eb06b3bf059 patch-3.8-rc5-git1.xz
|
bbee7c088c5023d79b661a9547379ff7 patch-3.8-rc5-git2.xz
|
||||||
|
Loading…
Reference in New Issue
Block a user