Re: [linux-pm] [PATCH] PM: HIBERNATION: skip the swap size check ifthe snapshot image size is anticipative

From: Barry Song
Date: Fri Nov 04 2011 - 21:52:42 EST


2011/11/5 Rafael J. Wysocki <rjw@xxxxxxx>:
> On Friday, November 04, 2011, Barry Song wrote:
>> From: Barry Song <Baohua.Song@xxxxxxx>
>>
>> Current swsusp requires swap partitions even larger than real saved pages
>> due to the worst compress ratio:
>> but for an embedded system, which has limited storage space, then it might
>> can't give the big size partition to save snapshot.
>> In the another way, some embedded systems can definitely know the most size
>> needed for snapshot since they run some specific application lists.
>> So this patch provides the possibility for bootloader to tell kernel even
>> the system has a little snapshot partition, but it is still enough.
>> For example, if the system need to save 120MB memory, origin swsusp will require
>> a 130MB partition to save snapshot. but if users know 30MB is enough for them(
>> compressed image will be less than 30MB), they just make a 30MB partition.
>>
>> Signed-off-by: Barry Song <Baohua.Song@xxxxxxx>
>> Cc: Xiangzhen Ye <Xiangzhen.Ye@xxxxxxx>
>
> I'm considering this as 3.3 material, so I'll take care of it after the current
> merge window closes.
>

ok. thanks. the idea is making swsusp support embedded systems with
limited resources better.
we can get into details after the current merge window.

> Thanks,
> Rafael
>
>
>> ---
>> Âthis is another patch after I provide resumewait/resumedelay kernel params
>> Âto make swsusp support embedded systems better.
>> ÂThis patch is tested on CSR SiRFprimaII platform.
>>
>> ÂDocumentation/kernel-parameters.txt | Â Â7 +++++++
>> Âkernel/power/swap.c         |  13 +++++++++++++
>> Â2 files changed, 20 insertions(+), 0 deletions(-)
>>
>> diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
>> index a0c5c5f..2ad2e9c 100644
>> --- a/Documentation/kernel-parameters.txt
>> +++ b/Documentation/kernel-parameters.txt
>> @@ -2277,6 +2277,13 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
>> Â Â Â Â Â Â Â Â Â Â Â in <PAGE_SIZE> units (needed only for swap files).
>> Â Â Â Â Â Â Â Â Â Â Â See ÂDocumentation/power/swsusp-and-swap-files.txt
>>
>> +   swapenough   Â[SWSUSP]
>> + Â Â Â Â Â Â Â Â Â Â Tell kernel the swap partition size is enough and let kernel
>> + Â Â Â Â Â Â Â Â Â Â skip checking whether the swap partition has enough size to
>> + Â Â Â Â Â Â Â Â Â Â save snapshot.
>> + Â Â Â Â Â Â Â Â Â Â It is used for embedded systems, typically using NAND and SD
>> + Â Â Â Â Â Â Â Â Â Â card, which have not large space.
>> +
>> Â Â Â resumedelay= Â Â[HIBERNATION] Delay (in seconds) to pause before attempting to
>> Â Â Â Â Â Â Â Â Â Â Â read the resume files
>>
>> diff --git a/kernel/power/swap.c b/kernel/power/swap.c
>> index 11a594c..97c30b5 100644
>> --- a/kernel/power/swap.c
>> +++ b/kernel/power/swap.c
>> @@ -36,6 +36,8 @@
>>
>> Â#define HIBERNATE_SIG Â Â Â Â"S1SUSPEND"
>>
>> +static int swapenough;
>> +
>> Â/*
>> Â * Â The swap map is a data structure used for keeping track of each page
>> Â * Â written to a swap partition. ÂIt consists of many swap_map_page
>> @@ -772,6 +774,9 @@ static int enough_swap(unsigned int nr_pages, unsigned int flags)
>> Â Â Â unsigned int free_swap = count_swap_pages(root_swap, 1);
>> Â Â Â unsigned int required;
>>
>> + Â Â if (swapenough)
>> + Â Â Â Â Â Â return 1;
>> +
>> Â Â Â pr_debug("PM: Free swap pages: %u\n", free_swap);
>>
>> Â Â Â required = PAGES_FOR_IO + ((flags & SF_NOCOMPRESS_MODE) ?
>> @@ -1449,3 +1454,11 @@ static int swsusp_header_init(void)
>> Â}
>>
>> Âcore_initcall(swsusp_header_init);
>> +
>> +static int __init swapenough_setup(char *str)
>> +{
>> + Â Â swapenough = 1;
>> + Â Â return 1;
>> +}
>> +
>> +__setup("swapenough", swapenough_setup);
>>
-barry
--
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/