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 1C926ECAAD5 for ; Mon, 5 Sep 2022 06:22:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236537AbiIEGWM (ORCPT ); Mon, 5 Sep 2022 02:22:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57878 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235786AbiIEGWK (ORCPT ); Mon, 5 Sep 2022 02:22:10 -0400 Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0ADAC2D1E7 for ; Sun, 4 Sep 2022 23:22:08 -0700 (PDT) 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=1662358927; 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=/EmRqq41ljuA3anBfMzi/BhpJJzz0kXo70oG+iPsn5E=; b=k6f/GYzvNxbLuVoryjBSqJ4aoEL1gkkHoKbO7iCbgYit3VfsN+mI8HxrK/YzgxPreJDQHN DxJjk+fY5fYUqFnJ1KqCiyosUq09fCcUuEcc78RfisgpjwpW8YFbg2ZGe5T7R3j9LYZqSX ezeHiP6xfO16WFVz5evIVc7uhhZJBzs= From: Naoya Horiguchi To: linux-mm@kvack.org Cc: Andrew Morton , Miaohe Lin , David Hildenbrand , Mike Kravetz , Yang Shi , Oscar Salvador , Muchun Song , Jane Chu , Naoya Horiguchi , linux-kernel@vger.kernel.org Subject: [PATCH v2 0/4] mm, hwpoison: improve handling workload related to hugetlb and memory_hotplug Date: Mon, 5 Sep 2022 15:21:33 +0900 Message-Id: <20220905062137.1455537-1-naoya.horiguchi@linux.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: linux.dev Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This patchset tries to solve the issue among memory_hotplug, hugetlb and hwpoison. Based on the discussion on v1, this version goes in the direction of changing the behavior of memory hotplug for hwpoison: - hwpoison pages should not prevent memory hotremove, - memory block with hwpoison pages should not be onlined. I tested both with ACPI-based and sysfs-based memory hotplug, and passed basic testcases. Any comments and feedbacks would be appreciated. Thanks, Naoya Horiguchi v1: https://lore.kernel.org/linux-mm/20220427042841.678351-1-naoya.horiguchi@linux.dev/T --- Summary: Naoya Horiguchi (4): mm,hwpoison,hugetlb,memory_hotplug: hotremove memory section with hwpoisoned hugepage mm/hwpoison: move definitions of num_poisoned_pages_* to memory-failure.c mm/hwpoison: pass pfn to num_poisoned_pages_*() mm/hwpoison: introduce per-memory_block hwpoison counter arch/parisc/kernel/pdt.c | 5 ++--- drivers/base/memory.c | 36 ++++++++++++++++++++++++++++++++++++ include/linux/memory.h | 3 +++ include/linux/mm.h | 12 ++++++++++++ include/linux/swapops.h | 25 ------------------------- mm/internal.h | 8 -------- mm/memory-failure.c | 45 +++++++++++++++++++++++---------------------- mm/memory_hotplug.c | 22 +++++++++++----------- mm/sparse.c | 2 -- 9 files changed, 87 insertions(+), 71 deletions(-)