From nobody Sat Feb 7 23:12:24 2026 Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [95.215.58.174]) (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 E2A434D117 for ; Sat, 24 Feb 2024 13:53:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.174 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708782798; cv=none; b=QP4wO15sJWUREub5DBwz3K10AIvucXh78wNG6LLCWegu1Ig5rqMicZ1ym8ovTkphm8MVyubjsYLZjfs4VX48dlSTxAgihKAXsBNpdJFfx5vbp5q3tmSMquTTLV3/ZCxS87VEdT2mzDNN0BqusEPuTW8/sS8SgS5LyA0jKmBq438= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708782798; c=relaxed/simple; bh=sivTcfzLhFZkwZlOTsC3lHbm768qCUZIbY8z3vlZwTM=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=lsLMfCs1vaeh01hYgCAbCEPJzEL+fcMTWMI1zPN7Jr2G+WKztgaeFDNfWYT3xn+vvJ2eSAwChu1d+gqku7cO9W/njE/CCl+FIsRULjFlXc01x1g1luGBBBhhY21HlaNblbiHO5QDnixCgJhSqztlMOc1yLdXd++3i3O8toZi+io= 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=srsVKoD/; arc=none smtp.client-ip=95.215.58.174 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="srsVKoD/" 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=1708782794; 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=KRb/IWjZidBlXI4vEoItSPrkCj2iPSdaThL3vIkkvgQ=; b=srsVKoD/VKyiQQH3Td8783bsDahf1AVkUeGQqTLg9Lj1A8YCJbkIGVUqsln40nIrPwUrua d1WUliLTJnYNyboPFIS14vCzOQKYsZwDz7cAUw5pWv3hIENVRibqAXLG/x+q0+S1y5OK26 Nm/Hdri9poOTF7HWSc4Q3rkpBCfXa3Q= From: chengming.zhou@linux.dev To: hdegoede@redhat.com Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, vbabka@suse.cz, roman.gushchin@linux.dev, Xiongwei.Song@windriver.com, chengming.zhou@linux.dev, Chengming Zhou Subject: [PATCH] vboxsf: remove SLAB_MEM_SPREAD flag usage Date: Sat, 24 Feb 2024 13:53:05 +0000 Message-Id: <20240224135305.830443-1-chengming.zhou@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: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" From: Chengming Zhou The SLAB_MEM_SPREAD flag is already a no-op as of 6.8-rc1, remove its usage so we can delete it from slab. No functional change. Signed-off-by: Chengming Zhou --- fs/vboxsf/super.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/vboxsf/super.c b/fs/vboxsf/super.c index 1fb8f4df60cb..cabe8ac4fefc 100644 --- a/fs/vboxsf/super.c +++ b/fs/vboxsf/super.c @@ -339,8 +339,7 @@ static int vboxsf_setup(void) vboxsf_inode_cachep =3D kmem_cache_create("vboxsf_inode_cache", sizeof(struct vboxsf_inode), 0, - (SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | - SLAB_ACCOUNT), + SLAB_RECLAIM_ACCOUNT | SLAB_ACCOUNT, vboxsf_inode_init_once); if (!vboxsf_inode_cachep) { err =3D -ENOMEM; --=20 2.40.1