Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753727AbdCBO3m (ORCPT ); Thu, 2 Mar 2017 09:29:42 -0500 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:45065 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752335AbdCBO2M (ORCPT ); Thu, 2 Mar 2017 09:28:12 -0500 Subject: Re: [RFC 01/11] mm: use SWAP_SUCCESS instead of 0 To: Minchan Kim , Andrew Morton References: <1488436765-32350-1-git-send-email-minchan@kernel.org> <1488436765-32350-2-git-send-email-minchan@kernel.org> Cc: kernel-team@lge.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Johannes Weiner , Michal Hocko , "Kirill A . Shutemov" From: Anshuman Khandual Date: Thu, 2 Mar 2017 19:57:10 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <1488436765-32350-2-git-send-email-minchan@kernel.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 17030214-0020-0000-0000-000000C7A5CA X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17030214-0021-0000-0000-00000284D44D Message-Id: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-03-02_13:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1612050000 definitions=main-1703020132 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 906 Lines: 28 On 03/02/2017 12:09 PM, Minchan Kim wrote: > SWAP_SUCCESS defined value 0 can be changed always so don't rely on > it. Instead, use explict macro. Right. But should not we move the changes to the callers last in the patch series after doing the cleanup to the try_to_unmap() function as intended first. > > Cc: Kirill A. Shutemov > Signed-off-by: Minchan Kim > --- > mm/huge_memory.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mm/huge_memory.c b/mm/huge_memory.c > index 092cc5c..fe2ccd4 100644 > --- a/mm/huge_memory.c > +++ b/mm/huge_memory.c > @@ -2114,7 +2114,7 @@ static void freeze_page(struct page *page) > ttu_flags |= TTU_MIGRATION; > > ret = try_to_unmap(page, ttu_flags); > - VM_BUG_ON_PAGE(ret, page); > + VM_BUG_ON_PAGE(ret != SWAP_SUCCESS, page); > } > > static void unfreeze_page(struct page *page) >