* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available [not found] ` <20080801050700.528446138@us.ibm.com> @ 2008-08-01 14:27 ` Thomas Petazzoni 2008-08-01 19:08 ` Matt Helsley 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2008-08-01 14:27 UTC (permalink / raw) To: Matt Helsley Cc: Andrew Morton, Rafael J. Wysocki, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded Hi, Le Thu, 31 Jul 2008 22:07:01 -0700, Matt Helsley <matthltc@us.ibm.com> a écrit : > --- a/kernel/Makefile > +++ b/kernel/Makefile > @@ -5,7 +5,7 @@ > obj-y = sched.o fork.o exec_domain.o panic.o printk.o \ > cpu.o exit.o itimer.o time.o softirq.o resource.o \ > sysctl.o capability.o ptrace.o timer.o user.o \ > - signal.o sys.o kmod.o workqueue.o pid.o \ > + signal.o sys.o kmod.o workqueue.o pid.o freezer.o \ I have the impression that the code in kernel/power/process.c was compiled only if CONFIG_PM_SLEEP was set. Now that the code has been moved to kernel/freezer.c, it is unconditionnaly compiled in every kernel. Is that correct ? If so, is it possible to put this new feature under some CONFIG_SOMETHING option, for people who care about the kernel size ? Thanks, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 14:27 ` [PATCH 2/6] Container Freezer: Make refrigerator always available Thomas Petazzoni @ 2008-08-01 19:08 ` Matt Helsley 2008-08-01 22:53 ` Rafael J. Wysocki 2008-08-02 10:39 ` Thomas Petazzoni 0 siblings, 2 replies; 7+ messages in thread From: Matt Helsley @ 2008-08-01 19:08 UTC (permalink / raw) To: Thomas Petazzoni Cc: Andrew Morton, Rafael J. Wysocki, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded On Fri, 2008-08-01 at 16:27 +-0200, Thomas Petazzoni wrote: +AD4 Hi, +AD4 +AD4 Le Thu, 31 Jul 2008 22:07:01 -0700, +AD4 Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 a +AOk-crit : +AD4 +AD4 +AD4 --- a/kernel/Makefile +AD4 +AD4 +-+-+- b/kernel/Makefile +AD4 +AD4 +AEAAQA -5,7 +-5,7 +AEAAQA +AD4 +AD4 obj-y +AD0 sched.o fork.o exec+AF8-domain.o panic.o printk.o +AFw +AD4 +AD4 cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw +AD4 +AD4 sysctl.o capability.o ptrace.o timer.o user.o +AFw +AD4 +AD4 - signal.o sys.o kmod.o workqueue.o pid.o +AFw +AD4 +AD4 +- signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw +AD4 +AD4 I have the impression that the code in kernel/power/process.c was +AD4 compiled only if CONFIG+AF8-PM+AF8-SLEEP was set. Now that the code has been +AD4 moved to kernel/freezer.c, it is unconditionnaly compiled in every +AD4 kernel. Is that correct ? +AD4 +AD4 If so, is it possible to put this new feature under some +AD4 CONFIG+AF8-SOMETHING option, for people who care about the kernel size ? How about making it depend on a combination of CONFIG variables? Here's an RFC PATCH. Completely untested. Signed-off-by: Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 --- kernel/Makefile +AHw 3 +-+-- kernel/power/Kconfig +AHw 3 +-+-+- 2 files changed, 5 insertions(+-), 1 deletion(-) Index: linux-2.6.27-rc1-mm1/kernel/Makefile +AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0 --- linux-2.6.27-rc1-mm1.orig/kernel/Makefile +-+-+- linux-2.6.27-rc1-mm1/kernel/Makefile +AEAAQA -5,7 +-5,7 +AEAAQA obj-y +AD0 sched.o fork.o exec+AF8-domain.o panic.o printk.o +AFw cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw sysctl.o capability.o ptrace.o timer.o user.o +AFw - signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw +- signal.o sys.o kmod.o workqueue.o pid.o +AFw rcupdate.o extable.o params.o posix-timers.o +AFw kthread.o wait.o kfifo.o sys+AF8-ni.o posix-cpu-timers.o mutex.o +AFw hrtimer.o rwsem.o nsproxy.o srcu.o semaphore.o +AFw +AEAAQA -24,6 +-24,7 +AEAAQA CFLAGS+AF8-REMOVE+AF8-sched+AF8-clock.o +AD0 -pg CFLAGS+AF8-REMOVE+AF8-sched.o +AD0 -mno-spe -pg endif +-obj-+ACQ(CONFIG+AF8-FREEZER) +-+AD0 freezer.o obj-+ACQ(CONFIG+AF8-PROFILING) +-+AD0 profile.o obj-+ACQ(CONFIG+AF8-SYSCTL+AF8-SYSCALL+AF8-CHECK) +-+AD0 sysctl+AF8-check.o obj-+ACQ(CONFIG+AF8-STACKTRACE) +-+AD0 stacktrace.o Index: linux-2.6.27-rc1-mm1/kernel/power/Kconfig +AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0APQA9AD0 --- linux-2.6.27-rc1-mm1.orig/kernel/power/Kconfig +-+-+- linux-2.6.27-rc1-mm1/kernel/power/Kconfig +AEAAQA -85,6 +-85,9 +AEAAQA config PM+AF8-SLEEP depends on SUSPEND +AHwAfA HIBERNATION +AHwAfA XEN+AF8-SAVE+AF8-RESTORE default y +-config FREEZER +- def+AF8-bool PM+AF8-SLEEP +AHwAfA CGROUP+AF8-FREEZER +- config SUSPEND bool +ACI-Suspend to RAM and standby+ACI depends on PM +ACYAJg ARCH+AF8-SUSPEND+AF8-POSSIBLE ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 19:08 ` Matt Helsley @ 2008-08-01 22:53 ` Rafael J. Wysocki 2008-08-01 23:24 ` Matt Helsley 2008-08-02 2:30 ` Matt Helsley 2008-08-02 10:39 ` Thomas Petazzoni 1 sibling, 2 replies; 7+ messages in thread From: Rafael J. Wysocki @ 2008-08-01 22:53 UTC (permalink / raw) To: Matt Helsley, Andrew Morton Cc: Thomas Petazzoni, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded On Friday, 1 of August 2008, Matt Helsley wrote: > > On Fri, 2008-08-01 at 16:27 +-0200, Thomas Petazzoni wrote: > > Hi, > > > > Le Thu, 31 Jul 2008 22:07:01 -0700, > > Matt Helsley <matthltc@us.ibm.com> a +AOk-crit : > > > > > --- a/kernel/Makefile > > > +-+-+- b/kernel/Makefile > > > @@ -5,7 +-5,7 @@ > > > obj-y = sched.o fork.o exec_domain.o panic.o printk.o +AFw > > > cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw > > > sysctl.o capability.o ptrace.o timer.o user.o +AFw > > > - signal.o sys.o kmod.o workqueue.o pid.o +AFw > > > +- signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw > > > > I have the impression that the code in kernel/power/process.c was > > compiled only if CONFIG_PM_SLEEP was set. Now that the code has been > > moved to kernel/freezer.c, it is unconditionnaly compiled in every > > kernel. Is that correct ? > > > > If so, is it possible to put this new feature under some > > CONFIG_SOMETHING option, for people who care about the kernel size ? > > How about making it depend on a combination of CONFIG variables? > Here's an RFC PATCH. Completely untested. > > Signed-off-by: Matt Helsley <matthltc@us.ibm.com> Can you please also make the contents of include/linux/freezer.h depend on CONFIG_FREEZER instead of CONFIG_PM_SLEEP? Also, I'm not really sure if kernel/power/Kconfig is the right place to define CONFIG_FREEZER. Perhaps we should even move freezer.c from kernel/power to kernel and define CONFIG_FREEZER in Kconfig in there. Andrew, what do you think? > --- > kernel/Makefile | 3 +-+-- > kernel/power/Kconfig | 3 +-+-+- > 2 files changed, 5 insertions(+-), 1 deletion(-) > > Index: linux-2.6.27-rc1-mm1/kernel/Makefile > =================================================================== > --- linux-2.6.27-rc1-mm1.orig/kernel/Makefile > +-+-+- linux-2.6.27-rc1-mm1/kernel/Makefile > @@ -5,7 +-5,7 @@ > obj-y = sched.o fork.o exec_domain.o panic.o printk.o +AFw > cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw > sysctl.o capability.o ptrace.o timer.o user.o +AFw > - signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw > +- signal.o sys.o kmod.o workqueue.o pid.o +AFw > rcupdate.o extable.o params.o posix-timers.o +AFw > kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o mutex.o +AFw > hrtimer.o rwsem.o nsproxy.o srcu.o semaphore.o +AFw > @@ -24,6 +-24,7 @@ CFLAGS_REMOVE_sched_clock.o = -pg > CFLAGS_REMOVE_sched.o = -mno-spe -pg > endif > > +-obj-$(CONFIG_FREEZER) +-= freezer.o > obj-$(CONFIG_PROFILING) +-= profile.o > obj-$(CONFIG_SYSCTL_SYSCALL_CHECK) +-= sysctl_check.o > obj-$(CONFIG_STACKTRACE) +-= stacktrace.o > Index: linux-2.6.27-rc1-mm1/kernel/power/Kconfig > =================================================================== > --- linux-2.6.27-rc1-mm1.orig/kernel/power/Kconfig > +-+-+- linux-2.6.27-rc1-mm1/kernel/power/Kconfig > @@ -85,6 +-85,9 @@ config PM_SLEEP > depends on SUSPEND || HIBERNATION || XEN_SAVE_RESTORE > default y > > +-config FREEZER > +- def_bool PM_SLEEP || CGROUP_FREEZER > +- > config SUSPEND > bool "Suspend to RAM and standby" > depends on PM && ARCH_SUSPEND_POSSIBLE > > > > > \0^[¹þÿ\a°þÿ\0¦þÿ\0þÿ\0þÿ\0þÿ\0`âÿ \x1f#: \x1f#' \x1f#\x12 \x1f#\x05ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ýýûXÓÌÎÿýýüÿýýüÿÍÆÉÿýýûÿýýüÿýýûÿÑÊÍÿòîïÿýýüÿýýüÿþþýÿÔÍÐÿÕÏÒÿðèéÿöïïÿöïðÿöïïÿöïïÿͼ¿ÿn}ÿ\0Fÿ0µÿ8¡Õÿ@³îÿE¿úÿìþÿ@Íþÿ1Åþÿ\x1dºþÿ °þÿ\0«þÿ\0¢þÿ\0þÿ\0þÿ\0þÿ\0Zàÿ \x1f#A \x1f#/ \x1f#\x17 \x1f#\aÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0þþý\x06ýýûâÔÍÏÿüüúÿÎÇÊÿüûúÿüûúÿüûúÿüûúÿÒËÎÿóîîÿýýüÿÔÍÐÿÕÎÑÿõññÿùôôÿôìíÿõîïÿõíîÿôììÿíãäÿ©ÿ%rÿ\0-oÿ\0Kÿ7§Þÿ=·ôÿD¿üÿéþÿ4Åþÿ!¼þÿ\x0f´þÿ\0¬þÿ\0£þÿ\0þÿ\0þÿ\0þÿ\0\x7fþÿ\0Wâÿ \x1f#D \x1f#2 \x1f#\x19 \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0üüúvÓÌÎÿñììÿüûúÿÏÇÊÿüûúÿüûúÿüûúÿüûúÿÓÌÏÿóîîÿÔÍÐÿôïðÿüûúÿöððÿòéêÿôìíÿôììÿòèèÿôììÿ¾«ÿp}ÿ!qÿ\06sÿ\09~ÿ\0\³ÿ:ºùÿ?¿þÿ åþÿ%¿þÿ\x13¶þÿ\0¬þÿ\0¤þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0zþÿ\0Sâÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0üüú\x15ÓÌÎùÖÏÑÿûúøÿÏÇÊÿûúøÿûúùÿûúøÿûúùÿûûùÿÓÌÏÿòíîÿýýûÿú÷öÿôìíÿñçèÿóêëÿòèéÿðååÿñèçÿáÔÕÿvxÿ\x1emÿ\x1fsÿ\07vÿ\0Fvÿ\0Gÿ\0gÉÿ;»þÿ{ßþÿ\x17¸þÿ\x03¬þÿ\0¥þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0{þÿ\0rþÿ\0Pàÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ûúøÔÍÏÿðêêÿúù÷ÿÏÇÊÿúø÷ÿúø÷ÿûúøÿûúøÿûúøÿÕÍÐÿòííÿöñðÿñçèÿñæçÿñçèÿñææÿîââÿðååÿñèçÿÿorÿ\x19mÿ\x1au¤ÿa§ÿ\0Dxÿ\0Zÿ\0P®ÿ\0kÎÿsÛþÿ\x05®þÿ\0¦þÿ\0þÿ\0þÿ\0þÿ\0 þÿ\0}þÿ\0tþÿ\0lþÿ\0Màÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ûûø.ÔÍÏýÖÏÑÿúøöÿúøöÿúøöÿúøöÿúøöÿúø÷ÿúù÷ÿúù÷ÿÓÉÌÿéÝßÿïãäÿðåæÿðåæÿîââÿíààÿïããÿðæåÿàÓÓÿvxÿ\x16iÿ\x15oÿ\x19wªÿ\x19¿ÿr¦Äÿ\0Uÿ\0f³ÿ\0T¶ÿ\0tâÿ\0pâÿ\0lâÿ\0hâÿ\0dâÿ\0`àÿ\0Zâÿ\0Vâÿ\0Ràÿ\0Màÿ\0?Åÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0úùö½×ÐÒÿïêéÿúøöÿù÷õÿúøöÿúøöÿúøöÿúøöÿ÷òñÿòééÿÒÂÆÿå×ÙÿïãäÿîáâÿëÜÜÿìÞÞÿíßßÿîââÿïäãÿ¯ÿmoÿ\x11jÿ\x12p£ÿ\x14z±ÿ\x16Åÿ^[Ýÿ\x7f¼âÿ\0a³ÿ\0mÂÿ\0Úÿ\0Ýÿ\0éÿ\0òÿ\0úÿ\0þÿ\0þÿ\amÚÿLzw \x1f#J \x1f#H \x1f#> \x1f#. \x1f#\x17 \x1f#\bÿÿÿ\0ÿÿÿ\0ù÷õS×ÐÒÿúùöÿøöóÿù÷ôÿù÷ôÿù÷ôÿù÷õÿöðïÿñççÿíàáÿíàáÿνÁÿàÐÒÿêÚÚÿêÚÚÿêÜÛÿëÝÜÿíàßÿíáàÿÝÏÏÿuxÿ\x10hÿ\x0ejÿ\x0fr©ÿ\x13\x7f¹ÿ\x17Ëÿ\x1càÿ §ôÿÉóÿ\0kÅÿ\0~Úÿ\0\x7fâÿ\0 ìÿ\0òÿ\0üÿ\0þÿ\0þÿ\0iÚÿ\amÛÿOzt \x1f#? \x1f#3 \x1f#$ \x1f#\x11 \x1f#\x05ÿÿÿ\0÷õñ\x05÷õò׺°´ÿîçæÿøöóÿøõóÿöðïÿòêéÿïããÿëÜÝÿéÙÚÿèØÙÿè××ÿº¥©ÿÕÂÄÿéÙÙÿêÛÛÿêÜÛÿëÝÜÿìßÞÿíâàÿ®ÿjnÿ\x06fÿ\bk£ÿ u°ÿ\r¿ÿ\x10Ïÿ\x1aáÿ ©ôÿ+²ýÿÎüÿ\0xÚÿ\0zßÿ\0éÿ\0õÿ\0üÿ\0þÿ\0þÿ\0þÿ\0zìÿ\ajÜÿW®l \x1f#& \x1f#\x17 \x1f# \x1f#\x03ÿÿÿ\0öôð\x17¶©«üÁ·¹ÿ¾°³ÿ»ª®ÿº¦ªÿ²ÿ²ÿ®ÿ«ÿ«ÿ¤ÿ®ÿ¹¥©ÿÖÄÆÿéÚÙÿêÛÚÿëÝÜÿëÞÝÿìàÞÿÛÌÌÿtxÿ\x05hÿ\x01hÿ\x03n©ÿ\x05x¸ÿ\fÅÿ\x0eÒÿ\x18âÿ!«ôÿ/·ýÿ8¹þÿ¾ýþÿ¸øþÿ°õþÿ©òþÿ îþÿéþÿåþÿâþÿ\x7fÝþÿxÙþÿhÊþÿ \x1f#' \x1f#\x15 \x1f#\b \x1f#\x02ÿÿÿ\0*ѵÿ¤ÿ \x7fÿ¥ÿ¦ÿ§ÿº ¢ÿº ¢ÿÁ©«ÿì®ÿË·¸ÿÖÅÆÿ×ÇÇÿéÚÙÿêÛÚÿéÛÚÿêÞÜÿêÞÜÿÿg]|ÿ\0i¥ÿ\0h£ÿ\0q°ÿ\0{¾ÿ\x02Éÿ\bÒÿ\x14âÿ$©ôÿ4·ýÿ@¾þÿïþÿPÑþÿ?Ëþÿ-Áþÿ^[¹þÿ\a°þÿ\0¦þÿ\0þÿ\0þÿ\0þÿ\0`âÿ \x1f#0 \x1f#\x1d \x1f#\f \x1f#\x03ÿÿÿ\0 \x1f#\x01q\SØ üÔÀÂÿÜÉÊÿÜÉÊÿÛÈÉÿÛÉÉÿÜÊÊÿÜÊÊÿ¸¤¨ÿÖÅÅÿÞÍÍÿÝÍÍÿÞÏÎÿèÚØÿèÚØÿéÜÚÿêÝÛÿ×ÉÈÿuvù\x051ÿ\0i©ÿ\0jªÿ\0r·ÿ\0}Äÿ\0Ìÿ\0Q¬ÿ\x14âÿ$«ôÿ2·ýÿFÀþÿìþÿ@Íþÿ1Åþÿ\x1dºþÿ °þÿ\0«þÿ\0¢þÿ\0þÿ\0þÿ\0þÿ\0Zàÿ \x1f#< \x1f#* \x1f#\x14 \x1f#\x06ÿÿÿ\0 \x1f#\x01Q;0dq\SæÓ¼¼ÿàÎÎÿßÍÍÿßÍÍÿßÍÍÿÞÍÌÿßÎÎÿ¶¤§ÿÕÄÄÿÞÎÍÿßÏÎÿçØ×ÿèÚØÿèÚØÿèÚØÿéÜÙÿ©ÿimÏ\00ÿ\0k¯ÿ\0m²ÿ\0t¾ÿ\0}Èÿ\0Ìÿ\04ÿ\0Q¯ÿ!©ôÿ4¸ýÿGÀþÿéþÿ4Åþÿ!¼þÿ\x0f´þÿ\0¬þÿ\0£þÿ\0þÿ\0þÿ\0þÿ\0\x7fþÿ\0Wâÿ \x1f#C \x1f#1 \x1f#\x18 \x1f#\bÿÿÿ\0\0\0\0\x01\x11\x11\x13\vV@5È£ýÖÄÄÿàÏÎÿáÐÏÿáÑÐÿãÒÑÿãÒÑÿ´¢¥ÿÓÃÃÿåÖÔÿçÙ×ÿæØÕÿæØÖÿæØÖÿæÙÖÿÔÅÄÿtuú+$&V\02ÿ\0m·ÿ\0p»ÿ\0xÄÿ\0|Ëÿ\0Íÿ\0;ÿ\05ÿ\0ZÄÿ8¸ýÿPÂþÿ åþÿ%¿þÿ\x13¶þÿ\0¬þÿ\0¤þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0zþÿ\0Sâÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0\x10\x10\x12\b\x0f\x0e\x10\x1cw_YêÔ¿¾ÿàÏÎÿàÑÏÿáÑÐÿàÑÏÿáÒÐÿµ£¥ÿÓÄÃÿäÕÓÿäÖÓÿäÖÓÿãÖÓÿãÖÓÿãÖÓÿ¦ÿloÒ\x1f\x1e"J\03ÿ\0p¿ÿ\0qÂÿ\0wÈÿ\0}Ëÿ\0Íÿ\0;ÿ\0=ÿ\0=«ÿ\0eÐÿTÇþÿ{ßþÿ\x17¸þÿ\x03¬þÿ\0¥þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0{þÿ\0rþÿ\0Pàÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0\v \f\x03\x0f\x0f\x10\x11T?5¿ ýåÖÔÿßÐÎÿßÐÎÿßÐÎÿßÐÎÿ²¡£ÿÑÂÁÿãÕÒÿãÕÒÿãÕÒÿáÔÐÿàÓÏÿÑÂÀÿrrù,%'V\x1f\x1e"E\05¤ÿ\0qÈÿ\0rÉÿ\0wËÿ\0zÌÿ\0~ÍÿQÃÿ\0=ÿ\0L¸ÿ\0VËÿ\0lÖÿ\0xâÿ\0sâÿ\0oâÿ\0kâÿ\0fâÿ\0bâÿ\0[Öÿ\0Zâÿ\0Vâÿ\0Râÿ\0@Åÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\x0e\r\x0f\a\r\r\x0e^[s[UéÒ¿½ÿÝÎÌÿÜÍÊÿÝÎÌÿÛÍÊÿ± ¡ÿ;½ÿàÒÎÿáÔÐÿÜÎËÿÞÐÍÿßÒÎÿ¥ÿkmÖ\x1c^[\x1fO\x1d\x1c\x1fB\03¥ÿ\0tÏÿ\0uÍÿ\0wËÿ\0zÌÿ\0~Íÿ\0Óÿf¬Úÿ\0L¼ÿ\0YÔÿ\0aßÿ\0zñÿ\0rñÿ\0töÿ\0}ýÿ\0þÿ\0þÿ\0pëÿ'çù \x1f#K \x1f#I \x1f#G \x1f#> \x1f#. \x1f#\x17 \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\x10\x10\x12\x02\x0e\r\x0f\x0eR=4¦ýãÕÑÿÛÍÊÿÚËÉÿÚÌÉÿ®ÿ˼ºÿÞÑÍÿÜÍÊÿÜÎÊÿÛÍÉÿÊ»¹ÿpoû!^[\x1dk\x16\x16\x19W1;Sa\r4þ\fcÒþ\0uÐÿ\0uÌÿ\0uÌÿ\0|Íÿ\0Óÿ\x14âÿr½óÿ\0[Öÿ\0bàÿ\0iëÿ\0põÿ\0vøÿ\0}þÿ\0þÿ\0þÿ\0oëÿ\x11lÙþ \x1f#I \x1f#C \x1f#; \x1f#0 \x1f#" \x1f#\x11 \x1f#\x05ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\r\f\x0e\x05\r\r\x0f\x18pZRåκ¸ÿÙËÈÿ×ÈÅÿÖÇÄÿ¬ÿȹ·ÿÙËÇÿÚËÇÿØÉÅÿØÉÅÿ¡ÿhiÝ\x12\x12\x14j\x12\x11\x13]\x0f\x0e\x10K-9S[\x116ý\v^Ìþ\0sÌÿ\0wÌÿ\0|Íÿ\0Óÿ\x17âÿ-«ôÿ~Ìýÿ\0bæÿ\0lïÿ\0röÿ\0xüÿ\0{þÿ\0þÿ\0þÿ\0þÿ\0þÿ\x1cqÙüQÏÏ \x1f#- \x1f#\x1f \x1f#\x13 \x1f# \x1f#\x03ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\x10\x10\x12\x02\r\r\x0f\fM:1~ýÊ»¹ÿÔÅÂÿÔÅÂÿ©ÿŶ´ÿØÉÅÿÔÅÁÿÓÅÀÿÄ´±ÿnmü^[\x17\x18v\x11\x10\x12i\x0f\x0e\x10[\v \fI\b\a\b?%/CV\x137ý ZÇþ\0wÌÿ\0}Íÿ\x02Óÿ\x1aâÿ6±ôÿM¿ýÿ Óþÿ\0môÿ\0r÷ÿ\0wþÿ\0~þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0þÿ\x1cqÙü \x1f#* \x1f#\x19 \x1f#\f \x1f#\x05 \x1f#\x01ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\r\f\x0e\x05\r\r\x0e\x16jLDåɶ³ÿÒÿÿÐÁ¾ÿ¦ÿÁ²¯ÿÒÄ¿ÿѾÿÏÁ¼ÿÿefß\x11\x11\x13m\x10\x0f\x11c\r\r\x0eT\b\b C\x05\x04\x05:\x05\x05\x05<\x1d"1U\x169ý\bWÅÿ\0}Íÿ\0Óÿ\x1aâÿ:³ôÿ[ÇýÿvÑþÿ¾ýþÿ¸øþÿ°õþÿ©òþÿ îþÿéþÿåþÿâþÿ\x7fÝþÿxÙþÿhÊþÿ \x1f#! \x1f#\x10 \x1f#\x06 \x1f#\x01ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\0\0\0\x01\x0f\x0e\x10\vP71gb]þó±ÿ̼¸ÿ¢ÿ¼®«ÿÏÀ»ÿ̽¸ÿ¼¬¨ÿljý^[\x17\x18v\x11\x10\x12i\x0f\x0e\x10\ \vJ\x05\x05\x06<\x02\x01\x025\x02\x02\x036\x06\x06\x06=\x15\x19!O\x1a<ü\aVÃÿ\0Óÿ\x1eãÿ@µôÿbÊýÿ ÚþÿïþÿPÑþÿ?Ëþÿ-Áþÿ^[¹þÿ\a°þÿ\0¦þÿ\0þÿ\0þÿ\0þÿ\0`âÿ \x1f#0 \x1f#\x1c \x1f#\f \x1f#\x03ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\x10\x10\x12\x04\x0e\r\x0f\x15fHAÌ®«ÿȸ´ÿ ÿºª§ÿȸ³ÿȹ³ÿ~ÿceß\x11\x11\x13m\x10\x10\x12d\r\r\x0eT\b\b C\x03\x03\x048\x01\x01\x013\x01\0\x013\x02\x02\x036\x06\x06\x06=\x16\x19"N\x1d@ú\x06YÌÿ\x1fæÿH¹öÿlÌýÿÝþÿìþÿ@Íþÿ1Åþÿ\x1dºþÿ °þÿ\0«þÿ\0¢þÿ\0þÿ\0þÿ\0þÿ\0Zàÿ \x1f#< \x1f#) \x1f#\x13 \x1f#\x05ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\0\0\0\x01\x0e\x0e\x10 8-':pQJþºª§ÿÿ´¤¡ÿô®ÿ´£ÿ{WSþ\x1d\x18\x18w\x11\x10\x12i\x0f\x0e\x10\ \vJ\x05\x05\x06<\x01\x01\x014\0\0\02\0\0\01\x01\0\x011\x03\x02\x032\a\x06\a5\f\f\x0e;#H£ù\x05^ÞÿC¶ùÿlÍýÿßþÿéþÿ4Åþÿ!¼þÿ\x0f´þÿ\0¬þÿ\0£þÿ\0þÿ\0þÿ\0þÿ\0\x7fþÿ\0Wâÿ \x1f#B \x1f#0 \x1f#\x18 \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\v \f\x03\x0e\x0e\x10\x12_D=¤¸¤ ÿ ÿ°ÿ¿®©ÿywÿ{XUø\x11\x11\x13m\x10\x10\x12d\r\r\x0eU\b\b C\x03\x03\x048\x01\x01\x012\0\0\0/\0\0\0+\0\0\0&\x01\x01\x01!\x04\x04\x04\x1d\r\r\x0e\x1e\x17\x16\x18%*R´ö\x04cçÿaÇþÿàþÿ åþÿ%¿þÿ\x13¶þÿ\0¬þÿ\0¤þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0zþÿ\0Sâÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\0\0\0\x01\f\f\r\b\x19\x18\x1a\x1flNFôÿ«ÿ«ÿyUQþ!\x19\x1a{\x11\x10\x12i\x0f\x0e\x10]\v \fJ\x06\x06\a;\x01\x01\x02/\0\0\0(\0\0\0#\0\0\0\x1c\0\0\0\x15\0\0\0\x0e\x03\x03\x03 \x0e\r\x0f ^[^[\x1e\x0e\x1f\x1e"^[.X·ó\x02béÿÕþÿ{ßþÿ\x17¸þÿ\x03¬þÿ\0¥þÿ\0þÿ\0þÿ\0þÿ\0þÿ\0{þÿ\0rþÿ\0Pàÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\v \f\x03\r\f\x0e\x0fW>7~vuÿ¥ÿwXUÿ{XUø\x12\x11\x13m\x10\x10\x12c\x0e\x0e\x0fR \v<\x05\x04\x05+\x01\x01\x01 \0\0\0\x17\0\0\0\x10\0\0\0\v\0\0\0\x06\0\0\0\x03\0\0\0\x01 \x1f#\x01 \x1f#\x04 \x1f#\f \x1f#\x1a1]¸ñ\x01aæÿpÙþÿ\x05®þÿ\0¦þÿ\0þÿ\0þÿ\0þÿ\0 þÿ\0}þÿ\0tþÿ\0lþÿ\0Màÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\v \f\x06\r\f\x0e\x19hJCݤÿwTOþ#\x1a\x1cx\x12\x12\x14e\x11\x11\x13U\x0f\x0e\x10>\v \f'\x04\x04\x05\x16\0\0\0\f\0\0\0\a\0\0\0\x04\0\0\0\x02\0\0\0\x01 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\x01 \x1f#\x04 \x1f#\f \x1f#\x1a<j¶ä\0tâÿ\0pâÿ\0lâÿ\0hâÿ\0dâÿ\0`àÿ\0Zâÿ\0Vâÿ\0Ràÿ\0Màÿ\0Hàÿ \x1f#D \x1f#3 \x1f#\x1a \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\0\0\0\x01\f\f\r\rI4/W~]Xÿllð\x14\x13\x16]\x15\x14\x17T\x15\x15\x17>\x13\x12\x15%\x0f\x0f\x10\x11\x05\x05\x06\x06\0\0\0\x02\0\0\0\x01 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\x01 \x1f#\x04 \x1f#\f \x1f#\x19 \x1f#) \x1f#7 \x1f#@ \x1f#D \x1f#D \x1f#D \x1f#D \x1f#D \x1f#D \x1f#D \x1f#D \x1f#= \x1f#. \x1f#\x17 \x1f#\bÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\r\f\x0e\x05\x0e\x0e\x10\x14lUOµ7-.P\x18\x17\x1aE\x1a\x19\x1c;^[\x1a\x1d%\x1a\x1a\x1d\x11\x18\x17\x1a\x04\0\0\0\x01ÿÿÿ\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\x01 \x1f#\x04 \x1f#\v \x1f#\x17 \x1f#$ \x1f#. \x1f#2 \x1f#3 \x1f#3 \x1f#3 \x1f#3 \x1f#3 \x1f#3 \x1f#3 \x1f#. \x1f#" \x1f#\x11 \x1f#\x05ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0\0\0\0\x01\x12\x12\x14\a#"#\x17\x1a\x19\x1c$\x1d\x1c +\x1e\x1d!&\x1e\x1e!\x16 \x1f#\b \x1f#\x01ÿÿÿ\0ÿÿÿ\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\x01 \x1f#\x03 \x1f# \x1f#\x10 \x1f#\x16 \x1f#\x19 \x1f#\x1a \x1f#\x1a \x1f#\x1a \x1f#\x1a \x1f#\x1a \x1f#\x1a \x1f#\x1a \x1f#\x17 \x1f#\x11 \x1f#\b \x1f#\x03ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0 \x1f#\x01\x1c^[\x1f\b\x1e\x1d!\x11 \x1f#\x16 \x1f#\x14 \x1f#\v \x1f#\x03ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\0 \x1f#\x02 \x1f#\x05 \x1f#\a \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\b \x1f#\x05 \x1f#\x03 \x1f#\x01ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿÿ\0ÿÿ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 22:53 ` Rafael J. Wysocki @ 2008-08-01 23:24 ` Matt Helsley 2008-08-02 14:34 ` Rafael J. Wysocki 2008-08-02 2:30 ` Matt Helsley 1 sibling, 1 reply; 7+ messages in thread From: Matt Helsley @ 2008-08-01 23:24 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Andrew Morton, Thomas Petazzoni, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded On Sat, 2008-08-02 at 00:53 +-0200, Rafael J. Wysocki wrote: +AD4 On Friday, 1 of August 2008, Matt Helsley wrote: +AD4 +AD4 +AD4 +AD4 On Fri, 2008-08-01 at 16:27 +-0200, Thomas Petazzoni wrote: +AD4 +AD4 +AD4 Hi, +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 Le Thu, 31 Jul 2008 22:07:01 -0700, +AD4 +AD4 +AD4 Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 a +AOk-crit : +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 --- a/kernel/Makefile +AD4 +AD4 +AD4 +AD4 +-+-+- b/kernel/Makefile +AD4 +AD4 +AD4 +AD4 +AEAAQA -5,7 +-5,7 +AEAAQA +AD4 +AD4 +AD4 +AD4 obj-y +AD0 sched.o fork.o exec+AF8-domain.o panic.o printk.o +AFw +AD4 +AD4 +AD4 +AD4 cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw +AD4 +AD4 +AD4 +AD4 sysctl.o capability.o ptrace.o timer.o user.o +AFw +AD4 +AD4 +AD4 +AD4 - signal.o sys.o kmod.o workqueue.o pid.o +AFw +AD4 +AD4 +AD4 +AD4 +- signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 I have the impression that the code in kernel/power/process.c was +AD4 +AD4 +AD4 compiled only if CONFIG+AF8-PM+AF8-SLEEP was set. Now that the code has been +AD4 +AD4 +AD4 moved to kernel/freezer.c, it is unconditionnaly compiled in every +AD4 +AD4 +AD4 kernel. Is that correct ? +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 If so, is it possible to put this new feature under some +AD4 +AD4 +AD4 CONFIG+AF8-SOMETHING option, for people who care about the kernel size ? +AD4 +AD4 +AD4 +AD4 How about making it depend on a combination of CONFIG variables? +AD4 +AD4 Here's an RFC PATCH. Completely untested. +AD4 +AD4 +AD4 +AD4 Signed-off-by: Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 +AD4 +AD4 Can you please also make the contents of include/linux/freezer.h depend on +AD4 CONFIG+AF8-FREEZER instead of CONFIG+AF8-PM+AF8-SLEEP? Good point -- I'll add that to this patch and repost. +AD4 Also, I'm not really sure if kernel/power/Kconfig is the right place to define +AD4 CONFIG+AF8-FREEZER. There's no nice place to put it since we're dealing with CONFIG+AF8 variables in two different Kconfig files. I put it in kernel/power/Kconfig because I wasn't certain Kbuild would do the right thing if I referenced PM+AF8-SLEEP from init/Kconfig. +AD4 Perhaps we should even move freezer.c from kernel/power to kernel It's already there. Perhaps you meant something else (kernel/power/process.c?)? +AD4 and define CONFIG+AF8-FREEZER in Kconfig in there. Andrew, what do you think? The Kconfig files in kernel/ are Kconfig.hz and Kconfig.preemt which don't seem appropriate. I suppose we could add another (perhaps Kconfig.cgroup). Thanks for the review+ACE Cheers, -Matt ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 23:24 ` Matt Helsley @ 2008-08-02 14:34 ` Rafael J. Wysocki 0 siblings, 0 replies; 7+ messages in thread From: Rafael J. Wysocki @ 2008-08-02 14:34 UTC (permalink / raw) To: Matt Helsley Cc: Andrew Morton, Thomas Petazzoni, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset="macroman", Size: 7822 bytes --] On Saturday, 2 of August 2008, Matt Helsley wrote: > > On Sat, 2008-08-02 at 00:53 +-0200, Rafael J. Wysocki wrote: > > On Friday, 1 of August 2008, Matt Helsley wrote: > > > > > > On Fri, 2008-08-01 at 16:27 +-0200, Thomas Petazzoni wrote: > > > > Hi, > > > > > > > > Le Thu, 31 Jul 2008 22:07:01 -0700, > > > > Matt Helsley <matthltc@us.ibm.com> a +AOk-crit : > > > > > > > > > --- a/kernel/Makefile > > > > > +-+-+- b/kernel/Makefile > > > > > @@ -5,7 +-5,7 @@ > > > > > obj-y = sched.o fork.o exec_domain.o panic.o printk.o +AFw > > > > > cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw > > > > > sysctl.o capability.o ptrace.o timer.o user.o +AFw > > > > > - signal.o sys.o kmod.o workqueue.o pid.o +AFw > > > > > +- signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw > > > > > > > > I have the impression that the code in kernel/power/process.c was > > > > compiled only if CONFIG_PM_SLEEP was set. Now that the code has been > > > > moved to kernel/freezer.c, it is unconditionnaly compiled in every > > > > kernel. Is that correct ? > > > > > > > > If so, is it possible to put this new feature under some > > > > CONFIG_SOMETHING option, for people who care about the kernel size ? > > > > > > How about making it depend on a combination of CONFIG variables? > > > Here's an RFC PATCH. Completely untested. > > > > > > Signed-off-by: Matt Helsley <matthltc@us.ibm.com> > > > > Can you please also make the contents of include/linux/freezer.h depend on > > CONFIG_FREEZER instead of CONFIG_PM_SLEEP? > > Good point -- I'll add that to this patch and repost. > > > Also, I'm not really sure if kernel/power/Kconfig is the right place to define > > CONFIG_FREEZER. > > There's no nice place to put it since we're dealing with CONFIG_ > variables in two different Kconfig files. I put it in > kernel/power/Kconfig because I wasn't certain Kbuild would do the right > thing if I referenced PM_SLEEP from init/Kconfig. > > > Perhaps we should even move freezer.c from kernel/power to kernel > > It's already there. Yes, sorry. > Perhaps you meant something else (kernel/power/process.c?)? Well, I'll have to actually apply the patches and look at the modified code. > > and define CONFIG_FREEZER in Kconfig in there. Andrew, what do you think? > > The Kconfig files in kernel/ are Kconfig.hz and Kconfig.preemt which > don't seem appropriate. I suppose we could add another (perhaps > Kconfig.cgroup). Either that, or Kconfig.freezer maybe? After all, it will also be used for PM_SLEEP, at least for some time. > Thanks for the review! You're welcome. Thanks, Rafael \07mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0p4o\0\0\0\0\0\0\0\0\0\0\0\0\00¾g\0\0\0\0\0A\x15\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 5o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0`5o\0\0\0\0\0\0\0\0\0\0\0\0\05o\0\0\0\0\0Ñ\x14\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 5o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0P6o\0\0\0\0\0\0\0\0\0\0\0\0\0p6o\0\0\0\0\0a\x14\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\06o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0@7o\0\0\0\0\0\0\0\0\0\0\0\0\0`7o\0\0\0\0\0ñ\x13\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\07o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\008o\0\0\0\0\0\0\0\0\0\0\0\0\0P8o\0\0\0\0\0\x13\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0p8o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0 9o\0\0\0\0\0\0\0\0\0\0\0\0\0@9o\0\0\0\0\0\x11\x13\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0`9o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0\x10:o\0\0\0\0\0\0\0\0\0\0\0\0\00:o\0\0\0\0\0¡\x12\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0P:o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0\0;o\0\0\0\0\0\0\0\0\0\0\0\0\0 ;o\0\0\0\0\01\x12\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@;o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0ð;o\0\0\0\0\0\0\0\0\0\0\0\0\0\x10<o\0\0\0\0\0Á\x11\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\00<o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0à<o\0\0\0\0\0\0\0\0\0\0\0\0\0\0=o\0\0\0\0\0Q\x11\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 =o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0Ð=o\0\0\0\0\0\0\0\0\0\0\0\0\0ð=o\0\0\0\0\0á\x10\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0\x10>o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0À>o\0\0\0\0\0\0\0\0\0\0\0\0\0à>o\0\0\0\0\0q\x10\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0\0?o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0°?o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð?o\0\0\0\0\0\x01\x10\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ð?o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0 @o\0\0\0\0\0\0\0\0\0\0\0\0\0À@o\0\0\0\0\0\x0f\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0à@o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0Ao\0\0\0\0\0\0\0\0\0\0\0\0\0°Ao\0\0\0\0\0!\x0f\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ÐAo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0Bo\0\0\0\0\0\0\0\0\0\0\0\0\0 Bo\0\0\0\0\0±\x0e\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ÀBo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0pCo\0\0\0\0\0\0\0\0\0\0\0\0\0Co\0\0\0\0\0A\x0e\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0°Co\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0`Do\0\0\0\0\0\0\0\0\0\0\0\0\0Do\0\0\0\0\0Ñ\r\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 Do\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0PEo\0\0\0\0\0\0\0\0\0\0\0\0\0pEo\0\0\0\0\0a\r\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0Eo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0@Fo\0\0\0\0\0\0\0\0\0\0\0\0\0`Fo\0\0\0\0\0ñ\f\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0Fo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\00Go\0\0\0\0\0\0\0\0\0\0\0\0\0PGo\0\0\0\0\0\f\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0pGo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0 Ho\0\0\0\0\0\0\0\0\0\0\0\0\0@Ho\0\0\0\0\0\x11\f\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0`Ho\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0\x10Io\0\0\0\0\0\0\0\0\0\0\0\0\00Io\0\0\0\0\0¡\v\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\04o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0àIo\0\0\0\0\0\0\0\0\0\0\0\0\0¾g\0\0\0\0\01\v\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 Jo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0ÐJo\0\0\0\0\0\0\0\0\0\0\0\0\0ðJo\0\0\0\0\0Á \0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0À\x1do\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0ÀKo\0\0\0\0\0\0\0\0\0\0\0\0\0àKo\0\0\0\0\0Q \0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0\0Lo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0°Lo\0\0\0\0\0\0\0\0\0\0\0\0\0ÐLo\0\0\0\0\0á \0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ðLo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ùn\0\0\0\0\0Ð7mNó\x7f\0\0 Mo\0\0\0\0\0\0\0\0\0\0\0\0\0ÀMo\0\0\0\0\0q \0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0pNo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0àMo\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01 \0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@Oo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0Oo\0\0\0\0\0\0\0\0\0\0\0\0\0 Oo\0\0\0\0\0\b\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ÀOo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0pPo\0\0\0\0\0\0\0\0\0\0\0\0\0Po\0\0\0\0\0!\b\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0°Po\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0`Qo\0\0\0\0\0\0\0\0\0\0\0\0\0Qo\0\0\0\0\0±\a\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 Qo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0PRo\0\0\0\0\0\0\0\0\0\0\0\0\0pRo\0\0\0\0\0A\a\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0Ro\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0@So\0\0\0\0\0\0\0\0\0\0\0\0\0`So\0\0\0\0\0Ñ\x06\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0So\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\00To\0\0\0\0\0\0\0\0\0\0\0\0\0PTo\0\0\0\0\0a\x06\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0pTo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0 Uo\0\0\0\0\0\0\0\0\0\0\0\0\0@Uo\0\0\0\0\0ñ\x05\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0`Uo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0\x10Vo\0\0\0\0\0\0\0\0\0\0\0\0\00Vo\0\0\0\0\0\x05\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0PVo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0\0Wo\0\0\0\0\0\0\0\0\0\0\0\0\0 Wo\0\0\0\0\0\x11\x05\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@Wo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0ðWo\0\0\0\0\0\0\0\0\0\0\0\0\0\x10Xo\0\0\0\0\0¡\x04\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\00Xo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0àXo\0\0\0\0\0\0\0\0\0\0\0\0\0\0Yo\0\0\0\0\01\x04\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0 Yo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0ÐYo\0\0\0\0\0\0\0\0\0\0\0\0\0ðYo\0\0\0\0\0Á\x03\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\x0e\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0°No\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0 Zo\0\0\0\0\0\0\0\0\0\0\0\0\0\0[o\0\0\0\0\0Q\x03\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0`\x0f\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0àZo\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0À[o\0\0\0\0\0\0\0\0\0\0\0\0\0à[o\0\0\0\0\0á\x02\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0\x0e\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0\0\o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0°\o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð\o\0\0\0\0\0q\x02\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0 \x11\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0ð\o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0 ]o\0\0\0\0\0\0\0\0\0\0\0\0\0À]o\0\0\0\0\0\x01\x02\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0@\x10\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0à]o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0^o\0\0\0\0\0\0\0\0\0\0\0\0\0°^o\0\0\0\0\0\x01\0\0\0\0\0\0pà\x01\0\0\0\0À©Mó\x7f\0\0`\x0f\x01\0\0\0\0\x01\0\0\0\0\0\0\0Ð7mNó\x7f\0\0Ð^o\0\0\0\0\0\0\0\0\0\0\0\0\0Ð7mNó\x7f\0\0@!o\0\0\0\0\0Ð7mNó\x7f\0\0_o\0\0\0\0\0\0\0\0\0\0\0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 22:53 ` Rafael J. Wysocki 2008-08-01 23:24 ` Matt Helsley @ 2008-08-02 2:30 ` Matt Helsley 1 sibling, 0 replies; 7+ messages in thread From: Matt Helsley @ 2008-08-02 2:30 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Andrew Morton, Thomas Petazzoni, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded On Sat, 2008-08-02 at 00:53 +-0200, Rafael J. Wysocki wrote: +AD4 On Friday, 1 of August 2008, Matt Helsley wrote: +AD4 +AD4 +AD4 +AD4 On Fri, 2008-08-01 at 16:27 +-0200, Thomas Petazzoni wrote: +AD4 +AD4 +AD4 Hi, +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 Le Thu, 31 Jul 2008 22:07:01 -0700, +AD4 +AD4 +AD4 Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 a +AOk-crit : +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 --- a/kernel/Makefile +AD4 +AD4 +AD4 +AD4 +-+-+- b/kernel/Makefile +AD4 +AD4 +AD4 +AD4 +AEAAQA -5,7 +-5,7 +AEAAQA +AD4 +AD4 +AD4 +AD4 obj-y +AD0 sched.o fork.o exec+AF8-domain.o panic.o printk.o +AFw +AD4 +AD4 +AD4 +AD4 cpu.o exit.o itimer.o time.o softirq.o resource.o +AFw +AD4 +AD4 +AD4 +AD4 sysctl.o capability.o ptrace.o timer.o user.o +AFw +AD4 +AD4 +AD4 +AD4 - signal.o sys.o kmod.o workqueue.o pid.o +AFw +AD4 +AD4 +AD4 +AD4 +- signal.o sys.o kmod.o workqueue.o pid.o freezer.o +AFw +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 I have the impression that the code in kernel/power/process.c was +AD4 +AD4 +AD4 compiled only if CONFIG+AF8-PM+AF8-SLEEP was set. Now that the code has been +AD4 +AD4 +AD4 moved to kernel/freezer.c, it is unconditionnaly compiled in every +AD4 +AD4 +AD4 kernel. Is that correct ? +AD4 +AD4 +AD4 +AD4 +AD4 +AD4 If so, is it possible to put this new feature under some +AD4 +AD4 +AD4 CONFIG+AF8-SOMETHING option, for people who care about the kernel size ? +AD4 +AD4 +AD4 +AD4 How about making it depend on a combination of CONFIG variables? +AD4 +AD4 Here's an RFC PATCH. Completely untested. +AD4 +AD4 +AD4 +AD4 Signed-off-by: Matt Helsley +ADw-matthltc+AEA-us.ibm.com+AD4 +AD4 +AD4 Can you please also make the contents of include/linux/freezer.h depend on +AD4 CONFIG+AF8-FREEZER instead of CONFIG+AF8-PM+AF8-SLEEP? Done. +AD4 Also, I'm not really sure if kernel/power/Kconfig is the right place to define +AD4 CONFIG+AF8-FREEZER. +AD4 +AD4 Perhaps we should even move freezer.c from kernel/power to kernel +AD4 and define CONFIG+AF8-FREEZER in Kconfig in there. Andrew, what do you think? I'll check this weekend for replies and repost the RFC PATCH on Monday if I don't hear anything. In the meantime I'll be doing some config build testing with the above changes to make sure it's correct. Cheers, -Matt ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/6] Container Freezer: Make refrigerator always available 2008-08-01 19:08 ` Matt Helsley 2008-08-01 22:53 ` Rafael J. Wysocki @ 2008-08-02 10:39 ` Thomas Petazzoni 1 sibling, 0 replies; 7+ messages in thread From: Thomas Petazzoni @ 2008-08-02 10:39 UTC (permalink / raw) To: Matt Helsley Cc: Andrew Morton, Rafael J. Wysocki, Paul Menage, Li Zefan, Linux-Kernel, Linux Containers, linux-pm, Cedric Le Goater, Serge E. Hallyn, Michael Opdenacker, linux-embedded Le Fri, 01 Aug 2008 12:08:09 -0700, Matt Helsley <matthltc@us.ibm.com> a écrit : > How about making it depend on a combination of CONFIG > variables? Here's an RFC PATCH. Completely untested. It solves my kernel size increase problem, so it's perfectly fine for me. Thanks! Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-08-02 14:34 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <20080801050659.924495279@us.ibm.com> [not found] ` <20080801050700.528446138@us.ibm.com> 2008-08-01 14:27 ` [PATCH 2/6] Container Freezer: Make refrigerator always available Thomas Petazzoni 2008-08-01 19:08 ` Matt Helsley 2008-08-01 22:53 ` Rafael J. Wysocki 2008-08-01 23:24 ` Matt Helsley 2008-08-02 14:34 ` Rafael J. Wysocki 2008-08-02 2:30 ` Matt Helsley 2008-08-02 10:39 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).