From patchwork Mon Oct 25 23:04:59 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Naoya Horiguchi X-Patchwork-Id: 12583461 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DA44FC433FE for ; Mon, 25 Oct 2021 23:06:29 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 749D56105A for ; Mon, 25 Oct 2021 23:06:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 749D56105A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.dev Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 82CCF80007; Mon, 25 Oct 2021 19:06:28 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 7DC76940007; Mon, 25 Oct 2021 19:06:28 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 6A7E480007; Mon, 25 Oct 2021 19:06:28 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0210.hostedemail.com [216.40.44.210]) by kanga.kvack.org (Postfix) with ESMTP id 55D02940007 for ; Mon, 25 Oct 2021 19:06:28 -0400 (EDT) Received: from smtpin22.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 11119183B95B6 for ; Mon, 25 Oct 2021 23:06:28 +0000 (UTC) X-FDA: 78736495656.22.526A70B Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by imf09.hostedemail.com (Postfix) with ESMTP id 599183000105 for ; Mon, 25 Oct 2021 23:06:27 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1635203185; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=W7Hn/Kt83t0S+ch17NbGso0OFLyAMY1uK7iOcfzdyao=; b=a2yVwxZLr9Jvl+2vNVK4+BBs3RKPGnDKm0E1MzT4fssceZ3fMqaYrZ7rGp1wnuZk1SXWif kcOHKLioOWYZW35q4/ID7CV20mWJOE8zQQLpUdtTzKg1KUKvuG1oKFrXtJZFiaVQyxZsRY j4cB/nCk48Oqno5CyOv6DNPVcTwOVkE= From: Naoya Horiguchi To: linux-mm@kvack.org Cc: Andrew Morton , David Hildenbrand , Oscar Salvador , Michal Hocko , Ding Hui , Tony Luck , "Aneesh Kumar K.V" , Miaohe Lin , Yang Shi , Peter Xu , Naoya Horiguchi , linux-kernel@vger.kernel.org Subject: [PATCH v2 0/4] mm/hwpoison: fix unpoison_memory() Date: Tue, 26 Oct 2021 08:04:59 +0900 Message-Id: <20211025230503.2650970-1-naoya.horiguchi@linux.dev> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: naoya.horiguchi@linux.dev X-Stat-Signature: 7jwisj743n5rhrsrrrxiatcme8fcfnqs X-Rspamd-Server: rspam01 X-Rspamd-Queue-Id: 599183000105 Authentication-Results: imf09.hostedemail.com; dkim=pass header.d=linux.dev header.s=key1 header.b=a2yVwxZL; dmarc=pass (policy=none) header.from=linux.dev; spf=pass (imf09.hostedemail.com: domain of naoya.horiguchi@linux.dev designates 91.121.223.63 as permitted sender) smtp.mailfrom=naoya.horiguchi@linux.dev X-HE-Tag: 1635203187-250846 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Hi, I updated unpoison fix patchset (sorry for long blank time since v1). Main purpose of this series is to sync unpoison code to recent changes around how hwpoison code takes page refcount. Unpoison should work or simply fail (without crash) if impossible. The recent works of keeping hwpoison pages in shmem pagecache introduce a new state of hwpoisoned pages, but unpoison for such pages is not supported yet with this series. It seems that soft-offline and unpoison can be used as general purpose page offline/online mechanism (not in the context of memory error). I think that we need some additional works to realize it because currently soft-offline and unpoison are assumed not to happen so frequently (print out too many messages for aggressive usecases). But anyway this could be another interesting next topic. v1: https://lore.kernel.org/linux-mm/20210614021212.223326-1-nao.horiguchi@gmail.com/ Thanks, Naoya Horiguchi --- Summary: Naoya Horiguchi (4): mm/hwpoison: mf_mutex for soft offline and unpoison mm/hwpoison: remove race consideration mm/hwpoison: remove MF_MSG_BUDDY_2ND and MF_MSG_POISONED_HUGE mm/hwpoison: fix unpoison_memory() include/linux/mm.h | 3 +- include/linux/page-flags.h | 4 ++ include/ras/ras_event.h | 2 - mm/memory-failure.c | 166 ++++++++++++++++++++++++++++----------------- mm/page_alloc.c | 23 +++++++ 5 files changed, 130 insertions(+), 68 deletions(-)