From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-170.mta1.migadu.com (out-170.mta1.migadu.com [95.215.58.170]) (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 97C343C1989 for ; Fri, 29 May 2026 09:45:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.170 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780047949; cv=none; b=nS0wvvfGmx1mE4uf9tVkNEBiAXDSD4Oar88bHZeX5aIrmig5rLe8SBw889gqNF6KnojmRKyOEPyY2bvAnylk82LSeFVSw0oCG4Bnm4qoEe3EWJk7vA+KoQ5GsIJYdKkuFlUOe14goLx9S4UF6U85uPF384S8tqI7s7v+MjZGVnw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780047949; c=relaxed/simple; bh=GTol9WBQCAOnPWN7UKrYfzCCJzb2WKZo+7xScL9K3to=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Q+nNmAS1J4jmGKasC0vWAn5jM3vFp/qP8cO3AIz+Yqx8lv5WlOyQdGLU1OrfGwDn1GlND69eXue38GoSc4eXzKehsGpuE6/B2w1gTZn8wGfWeNXk0lnmJ+N2eo5D6PFM4ow64vUqOAf36y0OmZaoN/4mpFIOhexvxel9zjLZq4A= 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=j7XkHKkX; arc=none smtp.client-ip=95.215.58.170 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="j7XkHKkX" Date: Fri, 29 May 2026 11:45:37 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1780047943; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KqewLC0ystRGSosSaah/vqaj9n4xXharr8XhrhW8ihA=; b=j7XkHKkXDqP3CyTMA1KZEDRpB7pBfunZHt6k9/L7sTlm69r22PfVriJ2KulnEFmkO4c9RG w0E0XTpjREJx26RjzvvamglfkFX76kznc7szCyIKAE7vFk7GGatyNFHKM8l24CrvAOyEjM Afppq2eEp4ZzFAPHYhoUt2dSwQ1K/lE= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Thorsten Blum To: "Christophe Leroy (CS GROUP)" Cc: Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] powerpc/boot: remove unused min_t/max_t macros Message-ID: References: <20260525091839.817778-3-thorsten.blum@linux.dev> <7c1a04f3-caa8-4200-a4ee-55cd2cc28461@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <7c1a04f3-caa8-4200-a4ee-55cd2cc28461@kernel.org> X-Migadu-Flow: FLOW_OUT Hi Christophe, On Fri, May 29, 2026 at 11:10:20AM +0200, Christophe Leroy (CS GROUP) wrote: > > > Le 25/05/2026 à 11:18, Thorsten Blum a écrit : > > The min_t() and max_t() macros are no longer used by the boot wrapper, > > remove them. > > Did you test your change ? Yes, but with Gzip and not with XZ, and by grepping for min_t/max_t in arch/powerpc/boot/. I (wrongly) assumed that arch/powerpc/boot/ is self-contained. Thanks for catching this, and please drop this patch for now as I wasn't aware of the dependency to lib/xz/. Thorsten