* [PATCH 0/5] Preallocate swap + minor fix.
@ 2010-05-26 7:09 Nigel Cunningham
2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-26 21:21 ` Rafael J. Wysocki
0 siblings, 2 replies; 6+ messages in thread
From: Nigel Cunningham @ 2010-05-26 7:09 UTC (permalink / raw)
To: Rafael J. Wysocki, pm list, LKML, TuxOnIce-devel
Hi all.
In current in-kernel hibernation code, swap is allocated as the image is
being written.
The first four patches in this series rework things so that all swap
that will be used is allocated prior to any data being written to disk.
The fourth patch might look like too much for one patch, but it's
necessary to not break bisecting.
The fifth patch fixes a minor error in displaying the speed at which I/O
occurred.
This is the beginning of what I hope will be a long series of sets of
patches, first working towards adding support for properly asynchronous
I/O (not batching, as is currently done), then compression, multiple
swap devices and more. In short, this is the beginning of work on
merging TuxOnIce functionality a bit at a time.
The work is coming now because I recently finished my previous job, so
I'm seeking to get some of those jobs I've been wanting to do for a long
time out of the way. If anyone wants to employ me to do this work, I
wouldn't say no! :)
Please excuse me if there are wrapping issues with the patches - I'm
using Thunderbird, and haven't sent a patch series for quite a while, so
don't remember the fancy git mailer way (will have to look it up).
Rafael, these and future patches will be available at:
git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
Regards,
Nigel
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/5] Preallocate swap + minor fix.
@ 2010-05-26 7:09 Nigel Cunningham
0 siblings, 0 replies; 6+ messages in thread
From: Nigel Cunningham @ 2010-05-26 7:09 UTC (permalink / raw)
To: Rafael J. Wysocki, pm list, LKML, TuxOnIce-devel
Hi all.
In current in-kernel hibernation code, swap is allocated as the image is
being written.
The first four patches in this series rework things so that all swap
that will be used is allocated prior to any data being written to disk.
The fourth patch might look like too much for one patch, but it's
necessary to not break bisecting.
The fifth patch fixes a minor error in displaying the speed at which I/O
occurred.
This is the beginning of what I hope will be a long series of sets of
patches, first working towards adding support for properly asynchronous
I/O (not batching, as is currently done), then compression, multiple
swap devices and more. In short, this is the beginning of work on
merging TuxOnIce functionality a bit at a time.
The work is coming now because I recently finished my previous job, so
I'm seeking to get some of those jobs I've been wanting to do for a long
time out of the way. If anyone wants to employ me to do this work, I
wouldn't say no! :)
Please excuse me if there are wrapping issues with the patches - I'm
using Thunderbird, and haven't sent a patch series for quite a while, so
don't remember the fancy git mailer way (will have to look it up).
Rafael, these and future patches will be available at:
git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
Regards,
Nigel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/5] Preallocate swap + minor fix.
2010-05-26 7:09 [PATCH 0/5] Preallocate swap + minor fix Nigel Cunningham
@ 2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-26 21:21 ` Rafael J. Wysocki
1 sibling, 0 replies; 6+ messages in thread
From: Rafael J. Wysocki @ 2010-05-26 21:21 UTC (permalink / raw)
To: Nigel Cunningham; +Cc: pm list, LKML, TuxOnIce-devel
On Wednesday 26 May 2010, Nigel Cunningham wrote:
> Hi all.
>
> In current in-kernel hibernation code, swap is allocated as the image is
> being written.
>
> The first four patches in this series rework things so that all swap
> that will be used is allocated prior to any data being written to disk.
> The fourth patch might look like too much for one patch, but it's
> necessary to not break bisecting.
>
> The fifth patch fixes a minor error in displaying the speed at which I/O
> occurred.
>
> This is the beginning of what I hope will be a long series of sets of
> patches, first working towards adding support for properly asynchronous
> I/O (not batching, as is currently done), then compression, multiple
> swap devices and more. In short, this is the beginning of work on
> merging TuxOnIce functionality a bit at a time.
>
> The work is coming now because I recently finished my previous job, so
> I'm seeking to get some of those jobs I've been wanting to do for a long
> time out of the way. If anyone wants to employ me to do this work, I
> wouldn't say no! :)
>
> Please excuse me if there are wrapping issues with the patches - I'm
> using Thunderbird, and haven't sent a patch series for quite a while, so
> don't remember the fancy git mailer way (will have to look it up).
>
> Rafael, these and future patches will be available at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
Thanks for the patches, I'll have a look at them as soon as I can.
I haven't replied to your hibernation algorithm idea, mostly because I didn't
have the time to look into it more thoroughly and I don't remember all of the
details. I'm still going to reply to it, though.
Rafael
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/5] Preallocate swap + minor fix.
2010-05-26 7:09 [PATCH 0/5] Preallocate swap + minor fix Nigel Cunningham
2010-05-26 21:21 ` Rafael J. Wysocki
@ 2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-27 1:31 ` Nigel Cunningham
2010-05-27 1:31 ` Nigel Cunningham
1 sibling, 2 replies; 6+ messages in thread
From: Rafael J. Wysocki @ 2010-05-26 21:21 UTC (permalink / raw)
To: Nigel Cunningham; +Cc: pm list, LKML, TuxOnIce-devel
On Wednesday 26 May 2010, Nigel Cunningham wrote:
> Hi all.
>
> In current in-kernel hibernation code, swap is allocated as the image is
> being written.
>
> The first four patches in this series rework things so that all swap
> that will be used is allocated prior to any data being written to disk.
> The fourth patch might look like too much for one patch, but it's
> necessary to not break bisecting.
>
> The fifth patch fixes a minor error in displaying the speed at which I/O
> occurred.
>
> This is the beginning of what I hope will be a long series of sets of
> patches, first working towards adding support for properly asynchronous
> I/O (not batching, as is currently done), then compression, multiple
> swap devices and more. In short, this is the beginning of work on
> merging TuxOnIce functionality a bit at a time.
>
> The work is coming now because I recently finished my previous job, so
> I'm seeking to get some of those jobs I've been wanting to do for a long
> time out of the way. If anyone wants to employ me to do this work, I
> wouldn't say no! :)
>
> Please excuse me if there are wrapping issues with the patches - I'm
> using Thunderbird, and haven't sent a patch series for quite a while, so
> don't remember the fancy git mailer way (will have to look it up).
>
> Rafael, these and future patches will be available at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
Thanks for the patches, I'll have a look at them as soon as I can.
I haven't replied to your hibernation algorithm idea, mostly because I didn't
have the time to look into it more thoroughly and I don't remember all of the
details. I'm still going to reply to it, though.
Rafael
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/5] Preallocate swap + minor fix.
2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-27 1:31 ` Nigel Cunningham
@ 2010-05-27 1:31 ` Nigel Cunningham
1 sibling, 0 replies; 6+ messages in thread
From: Nigel Cunningham @ 2010-05-27 1:31 UTC (permalink / raw)
To: Rafael J. Wysocki; +Cc: pm list, LKML, TuxOnIce-devel
Hi.
On 27/05/10 07:21, Rafael J. Wysocki wrote:
> On Wednesday 26 May 2010, Nigel Cunningham wrote:
>> Hi all.
>>
>> In current in-kernel hibernation code, swap is allocated as the image is
>> being written.
>>
>> The first four patches in this series rework things so that all swap
>> that will be used is allocated prior to any data being written to disk.
>> The fourth patch might look like too much for one patch, but it's
>> necessary to not break bisecting.
>>
>> The fifth patch fixes a minor error in displaying the speed at which I/O
>> occurred.
>>
>> This is the beginning of what I hope will be a long series of sets of
>> patches, first working towards adding support for properly asynchronous
>> I/O (not batching, as is currently done), then compression, multiple
>> swap devices and more. In short, this is the beginning of work on
>> merging TuxOnIce functionality a bit at a time.
>>
>> The work is coming now because I recently finished my previous job, so
>> I'm seeking to get some of those jobs I've been wanting to do for a long
>> time out of the way. If anyone wants to employ me to do this work, I
>> wouldn't say no! :)
>>
>> Please excuse me if there are wrapping issues with the patches - I'm
>> using Thunderbird, and haven't sent a patch series for quite a while, so
>> don't remember the fancy git mailer way (will have to look it up).
>>
>> Rafael, these and future patches will be available at:
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
>
> Thanks for the patches, I'll have a look at them as soon as I can.
Thank you! I've got other stuff to work on today, but hope to prepare
another set of patches tomorrow.
> I haven't replied to your hibernation algorithm idea, mostly because I didn't
> have the time to look into it more thoroughly and I don't remember all of the
> details. I'm still going to reply to it, though.
Thanks.
Nigel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/5] Preallocate swap + minor fix.
2010-05-26 21:21 ` Rafael J. Wysocki
@ 2010-05-27 1:31 ` Nigel Cunningham
2010-05-27 1:31 ` Nigel Cunningham
1 sibling, 0 replies; 6+ messages in thread
From: Nigel Cunningham @ 2010-05-27 1:31 UTC (permalink / raw)
To: Rafael J. Wysocki; +Cc: pm list, LKML, TuxOnIce-devel
Hi.
On 27/05/10 07:21, Rafael J. Wysocki wrote:
> On Wednesday 26 May 2010, Nigel Cunningham wrote:
>> Hi all.
>>
>> In current in-kernel hibernation code, swap is allocated as the image is
>> being written.
>>
>> The first four patches in this series rework things so that all swap
>> that will be used is allocated prior to any data being written to disk.
>> The fourth patch might look like too much for one patch, but it's
>> necessary to not break bisecting.
>>
>> The fifth patch fixes a minor error in displaying the speed at which I/O
>> occurred.
>>
>> This is the beginning of what I hope will be a long series of sets of
>> patches, first working towards adding support for properly asynchronous
>> I/O (not batching, as is currently done), then compression, multiple
>> swap devices and more. In short, this is the beginning of work on
>> merging TuxOnIce functionality a bit at a time.
>>
>> The work is coming now because I recently finished my previous job, so
>> I'm seeking to get some of those jobs I've been wanting to do for a long
>> time out of the way. If anyone wants to employ me to do this work, I
>> wouldn't say no! :)
>>
>> Please excuse me if there are wrapping issues with the patches - I'm
>> using Thunderbird, and haven't sent a patch series for quite a while, so
>> don't remember the fancy git mailer way (will have to look it up).
>>
>> Rafael, these and future patches will be available at:
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/nigelc/tuxonice-head.git#for-rafael
>
> Thanks for the patches, I'll have a look at them as soon as I can.
Thank you! I've got other stuff to work on today, but hope to prepare
another set of patches tomorrow.
> I haven't replied to your hibernation algorithm idea, mostly because I didn't
> have the time to look into it more thoroughly and I don't remember all of the
> details. I'm still going to reply to it, though.
Thanks.
Nigel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-27 1:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-26 7:09 [PATCH 0/5] Preallocate swap + minor fix Nigel Cunningham
2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-26 21:21 ` Rafael J. Wysocki
2010-05-27 1:31 ` Nigel Cunningham
2010-05-27 1:31 ` Nigel Cunningham
-- strict thread matches above, loose matches on Subject: below --
2010-05-26 7:09 Nigel Cunningham
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.