From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-187.mta1.migadu.com (out-187.mta1.migadu.com [95.215.58.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 447BF190696 for ; Wed, 29 Jan 2025 18:06:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.187 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738174007; cv=none; b=F5ifTaQv4E4HwnF1TFqWIZgCpXzuUnmXX6yeIcJYKADUXQkg2rY2cmY8++GvTlc/jqkPDp2MIfUTNnmK6NF1j/T4rhwL7lpucKxtv/hJ+ZFAK/1ACZyWtrtClzvd+fIpwvQirjxchCwdAGwlTLpYS8uizHnsQpee67S6Qbubm8c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738174007; c=relaxed/simple; bh=lwWcsi+mo8/lnzN6sBNde2cxo7z3DizDq/RavQTv+nY=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=EbIz6YZfJoMNUCgnLpzE91jlx/qAIYtixwO9SgC4ogRnQg0UahOSDFR8xa3DOvImlVHyZcsVSFV3x/8LmYzwpvyGxyoGz0N+gDeOrgsL54y8MWuVBaajsbzqONBrL6N3sHzwQisWviUyNeXphZ8LnFiUTp0zjJHwTY+6tlvY06w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=rNV3TKe9; arc=none smtp.client-ip=95.215.58.187 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="rNV3TKe9" 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=1738174003; 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=+B61QA75bcpmapmJUSuhrmtpoD2G5tgQuCnVdv98XvQ=; b=rNV3TKe9G4VdkviYiZM+vAM3CJEe4QdGERHNJuMSSIEG/o8o+/esXo7K5JctRdjtLTNKYB kR3xltT7m3W9foag37FAzbIL1OsKBB/GQR2kUOcOnlRs7It+gcVLO24I6+k+4biAbLHx5R KfAFT0rs7vHiQV/D4vXRNGNVKQGRelA= From: Yosry Ahmed To: Andrew Morton Cc: Vitaly Wool , Seth Jennings , Dan Streetman , Miaohe Lin , Johannes Weiner , Nhat Pham , Chengming Zhou , Huacai Chen , WANG Xuerui , Heiko Carstens , Vasily Gorbik , Alexander Gordeev , Christian Borntraeger , Sven Schnelle , Shakeel Butt , Vlastimil Babka , linux-mm@kvack.org, linux-kernel@vger.kernel.org, loongarch@lists.linux.dev, linux-s390@vger.kernel.org, linux-doc@vger.kernel.org Subject: [PATCH v2 0/2] mm: zswap: remove z3fold and zbud Date: Wed, 29 Jan 2025 18:06:30 +0000 Message-ID: <20250129180633.3501650-1-yosry.ahmed@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT After 2 cycles of deprecating z3fold, remove it as well as zbud (rationale in specific patches). v1 -> v2: - Remove zbud directly instead of deprecating it first as suggested by Johannes. Yosry Ahmed (2): mm: z3fold: remove z3fold mm: zbud: remove zbud CREDITS | 3 + Documentation/admin-guide/mm/zswap.rst | 10 +- Documentation/mm/index.rst | 1 - Documentation/mm/z3fold.rst | 28 - Documentation/translations/zh_CN/mm/index.rst | 1 - .../translations/zh_CN/mm/z3fold.rst | 31 - MAINTAINERS | 14 - arch/loongarch/configs/loongson3_defconfig | 3 +- arch/s390/configs/debug_defconfig | 2 +- arch/s390/configs/defconfig | 2 +- include/linux/zpool.h | 5 +- mm/Kconfig | 47 - mm/Makefile | 2 - mm/z3fold.c | 1447 ----------------- mm/zbud.c | 455 ------ mm/zpool.c | 4 +- 16 files changed, 14 insertions(+), 2041 deletions(-) delete mode 100644 Documentation/mm/z3fold.rst delete mode 100644 Documentation/translations/zh_CN/mm/z3fold.rst delete mode 100644 mm/z3fold.c delete mode 100644 mm/zbud.c -- 2.48.1.262.g85cc9f2d1e-goog