Re: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- From: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
- Date: Sat, 2 May 2009 20:06:51 -0700 (PDT)
On Sun, 3 May 2009, Rafael J. Wysocki wrote:
Remove the shrinking of memory from the suspend-to-RAM code, where it is
not really necessary.
Hmm. Shouldn't we do this _regardless_?
IOW, shouldn't this be a totally separate patch? It seems to be left-over
from when we shared the same code-paths, and before the split of the STR
and hibernate code?
IOW, shouldn't the very _first_ patch just be this part? That code doesn't
make any sense anyway (that FREE_PAGE_NUMBER really _is_ totally
arbitrary).
This part seems to be totally independent of all the other parts in your
patch-series. No?
Linus
---
kernel/power/main.c | 19 +------------------
1 files changed, 1 insertions(+), 18 deletions(-)
diff --git a/kernel/power/main.c b/kernel/power/main.c
index f99ed6a..e3197e9 100644
--- a/kernel/power/main.c
+++ b/kernel/power/main.c
@@ -188,9 +188,6 @@ static void suspend_test_finish(const char *label)
#endif
-/* This is just an arbitrary number */
-#define FREE_PAGE_NUMBER (100)
-
static struct platform_suspend_ops *suspend_ops;
/**
@@ -241,24 +238,10 @@ static int suspend_prepare(void)
if (error)
goto Finish;
- if (suspend_freeze_processes()) {
- error = -EAGAIN;
- goto Thaw;
- }
-
- free_pages = global_page_state(NR_FREE_PAGES);
- if (free_pages < FREE_PAGE_NUMBER) {
- pr_debug("PM: free some memory\n");
- shrink_all_memory(FREE_PAGE_NUMBER - free_pages);
- if (nr_free_pages() < FREE_PAGE_NUMBER) {
- error = -ENOMEM;
- printk(KERN_ERR "PM: No enough memory\n");
- }
- }
+ error = suspend_freeze_processes();
if (!error)
return 0;
- Thaw:
suspend_thaw_processes();
usermodehelper_enable();
Finish:
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- From: Rafael J. Wysocki
- Re: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- From: Pavel Machek
- Re: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- References:
- Re: [PATCH 3/3] PM/Hibernate: Use memory allocations to free memory
- From: Andrew Morton
- [PATCH 0/4] PM: Drop shrink_all_memory (rev. 2) (was: Re: [PATCH 3/3] PM/Hibernate: Use memory allocations to free memory)
- From: Rafael J. Wysocki
- [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- From: Rafael J. Wysocki
- Re: [PATCH 3/3] PM/Hibernate: Use memory allocations to free memory
- Prev by Date: Re: [GIT PATCH] block,scsi,ide: unify sector and data_len
- Next by Date: Re: [PATCH] vmscan: evict use-once pages first (v2)
- Previous by thread: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- Next by thread: Re: [PATCH 3/4] PM/Hibernate: Use memory allocations to free memory (rev. 2)
- Index(es):
Relevant Pages
|