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 E9BDF153BE9 for ; Tue, 27 Jan 2026 07:27:01 +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=1769498822; cv=none; b=npyZoBl/hbHD34uYOadHJOpQRkfa8aEboEMpALtqv00LLW41NHLrMMxm+xXgnfNVF8Zc7xeKPqFH5AFIzWNkPNyGF1l6fkxInaE5Wv2oqJsRYKprQETDww17mohMsVH5Og78Qd27Hklw3XFuUO6IErNL5eWZfVgHx7YlL3ERTMA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769498822; c=relaxed/simple; bh=2kiaOIVcsIwszKKFeZ5JCkrNsk0h0wj5t3pR7iEwX9I=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=BVHTDzjltzg6XrzWXH+3zgB797xXa4UEG638gEWB2X+FG1hTNaYdRyYj9qw4jRLo9DOyM9xd4aJThpH0eC7M2h6meVzUKDpo4bPnIjSrcfE5m+I9Sdhcq3ee9JyW4M6/JIfyMI76u1q2btjXhHFlBmSGb9PFjOiLavdL6CP980s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=PWxtpAUF; 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="PWxtpAUF" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B8D68C116C6; Tue, 27 Jan 2026 07:26:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769498821; bh=2kiaOIVcsIwszKKFeZ5JCkrNsk0h0wj5t3pR7iEwX9I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PWxtpAUFbQ76pTxzVPToj3w6NaJQsjdU+tedyUYSp+TFzVS5UtTRClnMJTMbLNI4z LzDhiUZ6iwf+i1bC+4GcDsPKxfMhvUaRE7bFd81vD2Uviw1ds1eLmG/vrmL8RARMSZ 0NdCbbmYJsrqa6p6ttvdmXfP0DGRROpqsJJ85qq/pO0Hshvcxqxyff2n6QfNsCt6OF O4ff/mNm1uBOzexHIhE3ZJNqLJhLzNAAb6S/8WlGbbmzVKqhfk8ban3FuJY/TrqeYy 8gKxXOXCA8UYnFvPPR0Z82zhNiFS6EsWTQyd7VOYQb8DFx91Lvdv1t8QjFBlwPsWyG yCMWqhnsZ9gcA== Date: Tue, 27 Jan 2026 09:26:52 +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 v5 2/4] kho: rename fdt parameter to blob in kho_add/remove_subtree() Message-ID: References: <20260126-kho-v5-0-7cd0f69ab204@debian.org> <20260126-kho-v5-2-7cd0f69ab204@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: <20260126-kho-v5-2-7cd0f69ab204@debian.org> On Mon, Jan 26, 2026 at 08:07:24AM -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. So if we are doing renames, let's take care of kho_debugfs_fdt_*() as well. > Signed-off-by: Breno Leitao > --- > include/linux/kexec_handover.h | 8 ++++---- > kernel/liveupdate/kexec_handover.c | 18 +++++++++--------- > 2 files changed, 13 insertions(+), 13 deletions(-) -- Sincerely yours, Mike.