Re: [PATCH v2] fix __set_page_dirty_no_writeback() return value

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Nov 11, 2010 at 11:02 AM, Andrew Morton
<akpm@xxxxxxxxxxxxxxxxxxxx> wrote:
> On Thu, 11 Nov 2010 11:05:54 +0800 Bob Liu <lliubbo@xxxxxxxxx> wrote:
>
>> __set_page_dirty_no_writeback() should return true if it actually transitioned
>> the page from a clean to dirty state although it seems nobody used its return
>> value now.
>>
>> Change from v1:
>> Â Â Â * preserving cacheline optimisation as Andrew pointed out
>>
>> Signed-off-by: Bob Liu <lliubbo@xxxxxxxxx>
>> ---
>> Âmm/page-writeback.c | Â Â4 +++-
>> Â1 files changed, 3 insertions(+), 1 deletions(-)
>>
>> diff --git a/mm/page-writeback.c b/mm/page-writeback.c
>> index bf85062..ac7018a 100644
>> --- a/mm/page-writeback.c
>> +++ b/mm/page-writeback.c
>> @@ -1157,8 +1157,10 @@ EXPORT_SYMBOL(write_one_page);
>> Â */
>> Âint __set_page_dirty_no_writeback(struct page *page)
>> Â{
>> - Â Â if (!PageDirty(page))
>> + Â Â if (!PageDirty(page)) {
>> Â Â Â Â Â Â Â SetPageDirty(page);
>> + Â Â Â Â Â Â return 1;
>> + Â Â }
>> Â Â Â return 0;
>> Â}
>
> But that has a race. ÂIf someone else sets PG_Dirty between the test
> and the set, this function will incorrectly return 1.
>
> Which is why it should use test_and_set if we're going to do this.
>

Oh, Sorry for that.
I will make a new patch soon.

-- 
Thanks,
--Bob

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@xxxxxxxxxx  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]