From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta0.migadu.com (out-188.mta0.migadu.com [91.218.175.188]) (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 3944B166F1A for ; Tue, 21 Oct 2025 14:56:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761058572; cv=none; b=TEuSsW1Q1ylPtGd3el/4xx9sI33CcAPs9YbRHkN08PGxgzb3qQzmgUtlWovOPs3Y6oNAj6ciyETDaEYgEyhNJcMS3o8Bd1rgjIT9XdLMXpixR2NEGwqJPGZTEfHGoZiDpy+DcjYFxVkqkgqFYWhBcpNuTFd8HGYiVK/qD048lk0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761058572; c=relaxed/simple; bh=yDUKZOmUdpEspEjk38NCEBEi7RBBSKGRQVxFp4ovgCY=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=h3T6E+/6z5bFAfmm4BTxSHJuUT/MYMsV+siHGIkEcjR6KNQbby/fsk8TaxS+SYGsQtJxM5mw8i/ByHHzXRC2irxTZCej8xaFGntIvkwn0jgqjH1AJv9Lnjk82OwIGBTbWLPdA2ZvZVzlOJ+lrQNrfI/yYeA4/Uww9v4Snfwj7DA= 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=hRQM+nfy; arc=none smtp.client-ip=91.218.175.188 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="hRQM+nfy" 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=1761058568; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=yDUKZOmUdpEspEjk38NCEBEi7RBBSKGRQVxFp4ovgCY=; b=hRQM+nfyh7A02n5iI1IGpmRje6J6ewsfaTrZsA+WprPNBIa4qZTZM1++K0BmPWbC6Kwfun ea0C9zH9GBjZkWuwO20xZv26CXvWFGlH7XgQSQIfxQ2KzQCBEgMCJuO/rtHsuBiPqYFrEa F3wpC1hH1PzYQSO1Fb614Ew/RZEqarM= From: Roman Gushchin To: William Kucharski Cc: Vlastimil Babka , Andrew Morton , Christoph Lameter , David Rientjes , Harry Yoo , Paul Mundt , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: Remove reference to destructor in comment in calculate_sizes() In-Reply-To: <20251021110004.2209008-1-william.kucharski@oracle.com> (William Kucharski's message of "Tue, 21 Oct 2025 05:00:04 -0600") References: <20251021110004.2209008-1-william.kucharski@oracle.com> Date: Tue, 21 Oct 2025 07:55:57 -0700 Message-ID: <87sefc5mo2.fsf@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT William Kucharski writes: > The commit that removed support for destructors from kmem_cache_alloc() > never removed the comment regarding destructors in the explanation > of the possible relocation of the free pointer in calculate_sizes(). > > Fixes: 20c2df83d25c ("mm: Remove slab destructors from kmem_cache_create().") > Signed-off-by: William Kucharski Acked-by: Roman Gushchin Thanks!