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 1F48535B642 for ; Tue, 27 Jan 2026 14:43:19 +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=1769525000; cv=none; b=aAECVn2PYEAfFKRDZwf5lLMygs3Y9h8wVGfO86HABrXW9pEePmY5I6OgPjePOA7m6El2HqCww/Nu5Gs3E3cFKkvWiQc3g5X0owOp6PO/eo1U63GBWQYQ7tid01iTRSMzyk2LQG8CJuGGGslF4urLoc6EHnbAMDiRTl/Iwskj+qM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769525000; c=relaxed/simple; bh=ZGQYIyfjcPJn4+omCcIuFsQUbHXUEiUGwOQtBXIp2c8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=SZgyoWvGHjw32FB5U4pH5H7G5bc15oPzgy7SRx57NhmddDaHChFXiubSJwAqpsTHxzMayPrig9KNs1CXaL18Xlz6/6V1smeo4Poe0t8tZLdE61bMq1IjZD99N4yrqcNHCbGjv6FOT7FYH8pAOPLW6wz/ccaeiu91w0tLeAxx4CE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jTI7IY1w; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="jTI7IY1w" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A0350C2BC86; Tue, 27 Jan 2026 14:43:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769524999; bh=ZGQYIyfjcPJn4+omCcIuFsQUbHXUEiUGwOQtBXIp2c8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jTI7IY1wCiHRVzID0jaZeAUCCEVb2t5bMxEB+keEfYqAeKCU6tjToAwpbqp94zCgt ZOi/3R6PXbhc3Diq0i4K+Qqlfpf9xl6zkkQ8yPUjn2ut+K1KUDK8k5gznF/pstw0kq YmjMTarMzmoPa3CYXoFHK1Od2wuANFJwZUVBRXSJzjqXe5hlIMHmVvnWDQjLaCd/5g a6040u2uwRYXXHq51ZVf9BHX8tn1P7uOQ/0PhBuxFt9m6MoAqNd4ttqYHXUrLItStO 8gR854yvXHWPSMhGI4voNwPZXUZcyqOjZfVn7BmzvR3bV302jYavlkgViFN9lQ5Yss vQwxlS4AkL6wg== Date: Tue, 27 Jan 2026 16:43:06 +0200 From: Mike Rapoport To: Breno Leitao Cc: Alexander Graf , Pasha Tatashin , Pratyush Yadav , linux-kernel@vger.kernel.org, kexec@lists.infradead.org, linux-mm@kvack.org, usamaarif642@gmail.com, rmikey@meta.com, clm@fb.com, riel@surriel.com, SeongJae Park , kernel-team@meta.com Subject: Re: [PATCH v6 2/4] kho: rename fdt parameter to blob in kho_add/remove_subtree() Message-ID: References: <20260127-kho-v6-0-56f9396681c2@debian.org> <20260127-kho-v6-2-56f9396681c2@debian.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=us-ascii Content-Disposition: inline In-Reply-To: <20260127-kho-v6-2-56f9396681c2@debian.org> On Tue, Jan 27, 2026 at 06:37:37AM -0800, Breno Leitao wrote: > Since kho_add_subtree() now accepts arbitrary data blobs (not just > FDTs), rename the parameter from 'fdt' to 'blob' to better reflect > its purpose. Apply the same rename to kho_remove_subtree() for > consistency. > > Also rename kho_debugfs_fdt_add() and kho_debugfs_fdt_remove() to > kho_debugfs_blob_add() and kho_debugfs_blob_remove() respectively, > with the same parameter rename from 'fdt' to 'blob'. > > Signed-off-by: Breno Leitao Reviewed-by: Mike Rapoport (Microsoft) -- Sincerely yours, Mike.