From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 278DC3C379C for ; Fri, 29 May 2026 09:52:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780048333; cv=none; b=ijrSwEPaRA/SToQ81yCG0iU8K+hw5mHsaq6DBssUVC9BTfEnhe9BPQhdzEAXF7MibzUL/noRTc4VBn/szgD31ImMfWTFQzDJB9jJdpuV9gKg1h570PisAKRQSwsM8L/hUhCd/CdQcQe+yA4bZIcsCykiFvcW4OLrl4+vQ7CPZJQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780048333; c=relaxed/simple; bh=RwzTbMUmKKLqjRn7yWMh3ssEEzwysOV9xhl9gJDvyWs=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=E3yuJSZKNVBdjB5IOiRy3rvuEvb5JwZr2idgd9aan+88ubtfu/9l5uJNWJmgCRNKbykj2r8b76XSH0jsdMc20smn8XYH0lEvKX+tCo7lSplVKkiQQFtAPcRk2MVsUXK/Ce441r/Z45qH9GKxx5a5EbfDLAzAxXpq17nBZKTf444= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=kaRrrk0p; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="kaRrrk0p" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1964C1F00893; Fri, 29 May 2026 09:52:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780048331; bh=cyHVyrPLnPbjHalgaeAqgxSN+UvK2IlCWIiCjhI7Wfc=; h=Date:Subject:To:Cc:References:From:In-Reply-To; b=kaRrrk0pfe80aqSLzGkDgozvYQmy4j1rZwrQGhoJod62SsclJywf9x87D6vFYImYJ hw5lgf4YYiI5N3Z23+QH8ievAoEa4+rs8mmrX/EGlfVaLbQIXPj/+cEkhbxUGyr2t0 avCMzfaviqlG085QTL2SU2BquV7BQYNHzLpam52f/DzivKANcn5hZbM5/79DvNANaY AqKkxPg9NyEe5aKcN0u6VxDvu4Mbpc+9tpzVpt+yVzImBTRQlnfENdQzTnrAA6BSlX nXLp98OYE5eZk+0fTJScebrYxKlRS0eLvlpOlvs9joTbODGrHrzv0d+h1McwrSxxoA 2mbQ4y7vr7a7g== Message-ID: Date: Fri, 29 May 2026 11:52:08 +0200 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] powerpc/boot: remove unused min_t/max_t macros To: Thorsten Blum Cc: Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org References: <20260525091839.817778-3-thorsten.blum@linux.dev> <7c1a04f3-caa8-4200-a4ee-55cd2cc28461@kernel.org> Content-Language: fr-FR From: "Christophe Leroy (CS GROUP)" In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Le 29/05/2026 à 11:45, Thorsten Blum a écrit : > 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. You could have figured out with 'git blame arch/powerpc/boot/types.h' that those lines were added by commit c762c69e106f ("powerpc/boot: Add support for XZ compression") > > Thanks for catching this, and please drop this patch for now as I wasn't > aware of the dependency to lib/xz/.