From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CC65BC43217 for ; Sat, 26 Nov 2022 00:41:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229982AbiKZAlK (ORCPT ); Fri, 25 Nov 2022 19:41:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49892 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229583AbiKZAlI (ORCPT ); Fri, 25 Nov 2022 19:41:08 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 46E665B5B5 for ; Fri, 25 Nov 2022 16:41:03 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id D7E4561178 for ; Sat, 26 Nov 2022 00:41:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 00175C433D6; Sat, 26 Nov 2022 00:41:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1669423262; bh=muHms36hNkcFQa5KtDSV7M8jiWWpKmv+9Hs0+sEF4SA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=hpRkUaEQtYk8bh8XTgPwE4Xv5ixf1iGOVC0HFbs6QWKFTVTV+FAMwPAAYWXV/AkLD fJhFu/Ryak3ggY5GQjvF3Vkc5Rs0WeRtZZ4xVixe2+CoH5q80PrFBSReZoyCnhjkn1 gvtNFWrq9LXuelIV9LScCfwgkkKEl0PPQa1XCZfw= Date: Fri, 25 Nov 2022 16:41:01 -0800 From: Andrew Morton To: Kefeng Wang Cc: Dan Williams , Vishal Verma , Dave Jiang , Ira Weiny , Subject: Re: [PATCH] pmem: use TestClearPageHWPoison() directly Message-Id: <20221125164101.7fad45f3906c9cfa6cb614aa@linux-foundation.org> In-Reply-To: <20221125115308.104059-1-wangkefeng.wang@huawei.com> References: <20221125115308.104059-1-wangkefeng.wang@huawei.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 25 Nov 2022 19:53:08 +0800 Kefeng Wang wrote: > Add TESTSCFLAG_FALSE(HWPoison, hwpoison) for HWPoison in > page flags, then drop privite test_and_clear_pmem_poison(). Why?