Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp4699232pxf; Tue, 23 Mar 2021 18:23:11 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzr0t+BFjUFBmZtXsh0DE9CFhvD1cats9jE/M0aNytFY5kHz8PbvTAJyGza40JS3WApc4OI X-Received: by 2002:a17:906:39cf:: with SMTP id i15mr1001576eje.534.1616548991019; Tue, 23 Mar 2021 18:23:11 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1616548991; cv=none; d=google.com; s=arc-20160816; b=CWyNMOUJrKSlh5bpJjBmxJVNSnRyuTyFFRsdN/0VRU/Mtr3hUUR5ckSey5/TC3BuSS 2/yiTGw5Zvfe9NvwLN6lSXpIm5o7bEZ5Mkrzoq8Pyp2NHRvXZ7bEEsm7rFEBxtcbSnNe ReoEbqe3hwv3xT9GNQoKxNgCw4XzXJ7BWQDQ4N86QnBiLacIDxN8TmRFBiTngkcOBvgE myMdx9JJIkWvd1AK2m80ZtcHN7siVzAjOfiFn++su/68HqRFPTvXXkSuV+SKL7f5+BSd MmIIuzd4rnGJn1KNhMHMDOvVE+aSMc9UA8e25aBpxUyrlgR0RRmw4eCsTsqIoe6OIajp JRsA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=TqCAfUJpiLrsga+tVri8AvLdPwQmaR4NV9wD4okq29o=; b=o85t59I15qbB9lL4GAGWJD873dlYI72d4iQ6zw+afmP4+GnSPIRZ5y/nYogaFAQz9r R7FeJDbff/o4ZIbvcPIidniVttJm+fzuYGzE7Vw0QB+mhpkymm2Y8e5stYVVnoKugeZi vMWlvYcrGqasymYJrtl6Hnfuu8ieKcIajguLm+7R5w8CPMyShxMb2nnzUzftr2pcTi0x EhKFnS5uLz9Iiydw8JeYraLKjFl6wRsaiFeH0PJxg2QSkFLhaQKHF0bB2jTVwCydTnS/ 0H2nIN00f2FCk3zLXbyCgTa3AwPFm3a7cWn/bsrCnPxV2ZT756PM+gJSh+PmnaPL9L1T OX0g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id l15si539183edb.89.2021.03.23.18.22.48; Tue, 23 Mar 2021 18:23:11 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231794AbhCWNz2 (ORCPT + 99 others); Tue, 23 Mar 2021 09:55:28 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:14129 "EHLO szxga04-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231897AbhCWNyz (ORCPT ); Tue, 23 Mar 2021 09:54:55 -0400 Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.59]) by szxga04-in.huawei.com (SkyGuard) with ESMTP id 4F4Xr51pwNz19HCB; Tue, 23 Mar 2021 21:52:53 +0800 (CST) Received: from huawei.com (10.175.104.175) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.498.0; Tue, 23 Mar 2021 21:54:44 +0800 From: Miaohe Lin To: CC: , , , , , , , Subject: [PATCH v2 3/5] mm/migrate.c: fix potential indeterminate pte entry in migrate_vma_insert_page() Date: Tue, 23 Mar 2021 09:54:03 -0400 Message-ID: <20210323135405.65059-4-linmiaohe@huawei.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20210323135405.65059-1-linmiaohe@huawei.com> References: <20210323135405.65059-1-linmiaohe@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.104.175] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org If the zone device page does not belong to un-addressable device memory, the variable entry will be uninitialized and lead to indeterminate pte entry ultimately. Fix this unexpected case and warn about it. Fixes: df6ad69838fc ("mm/device-public-memory: device memory cache coherent with CPU") Signed-off-by: Miaohe Lin --- mm/migrate.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mm/migrate.c b/mm/migrate.c index 97da1fabdf72..d372be3da9b2 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -2972,6 +2972,13 @@ static void migrate_vma_insert_page(struct migrate_vma *migrate, swp_entry = make_device_private_entry(page, vma->vm_flags & VM_WRITE); entry = swp_entry_to_pte(swp_entry); + } else { + /* + * For now we only support migrating to un-addressable + * device memory. + */ + pr_warn_once("Unsupported ZONE_DEVICE page type.\n"); + goto abort; } } else { entry = mk_pte(page, vma->vm_page_prot); -- 2.19.1