From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 0E23E2367B3; Mon, 23 Jun 2025 09:32:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750671180; cv=none; b=emvY5QHGLhWwgh5palPp31ZMOVLnt18hA55oCXk7pcmGZg9QsBUmp6WPTwXnIWCMebHAp4o1G7PVxa6lNADVt/Bb0eer1mOW3CZ3lwt+yhKG+F0JRelYMfpcYQstbvQomovm/ItHvO6h4AOO3NvnkYDmzB1i207XuyJl0hOb8bU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750671180; c=relaxed/simple; bh=j+KK1E87fMA85Uzhlp900e8FRem1HHgVMbRRm2WCPOs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=cNPKXaqM4/8XPLd7bGs3mcAwG5wUMVJIYSLVmzdzJ07nfJ/DPoDVweOI+aw9txc+EFEc8uGheGZEnkB8yANeh3RcHgj3WlIigRsliqWADKqYRyCrPvs7L/gVo0wkxokeUqNVHmICKn21/Ga2aNLqiZ7XlEr5k/BNl6ztHrIjXko= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=0RguCmUu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="0RguCmUu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3EA0BC4CEEA; Mon, 23 Jun 2025 09:32:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750671179; bh=j+KK1E87fMA85Uzhlp900e8FRem1HHgVMbRRm2WCPOs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=0RguCmUuyEMxQz67AgWSEe2mS4+lQj7EbrP3c2yxWRNBtiw3sECycLl6oMRnHeDNN 4vQEa+jYVtbpi2AGsas7RrFQV2f/MosMalcjJAGQeynLSaN1wXkQ55AwUW3XfWRosI EPUz7qQ7L50sZe/yPp8uy7hEVoQk8UbWHPx7sLRo= Date: Mon, 23 Jun 2025 11:32:57 +0200 From: Greg Kroah-Hartman To: Giuliano Procida Cc: Sami Tolvanen , Masahiro Yamada , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] gendwarfksyms: make -T symtypes output be in name order Message-ID: <2025062345-egotistic-carwash-b552@gregkh> References: <20250623092350.3261118-2-gprocida@google.com> 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=us-ascii Content-Disposition: inline In-Reply-To: <20250623092350.3261118-2-gprocida@google.com> On Mon, Jun 23, 2025 at 10:21:47AM +0100, Giuliano Procida wrote: > When writing symtypes information, we iterate through the entire hash > table containing type expansions. The key order varies unpredictably > as new entries are added, making it harder to compare symtypes between > builds. > > Resolve this by sorting the type expansions by name before output. Ah, very nice, thanks! Acked-by: Greg Kroah-Hartman