mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
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'. Link: https://lore.kernel.org/20260316-kho-v9-2-ed6dcd951988@debian.org Signed-off-by: Breno Leitao <leitao@debian.org> Reviewed-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> Cc: Alexander Graf <graf@amazon.com> Cc: David Hildenbrand <david@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: "Liam R. Howlett" <Liam.Howlett@oracle.com> Cc: Lorenzo Stoakes <ljs@kernel.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Pasha Tatashin <pasha.tatashin@soleen.com> Cc: SeongJae Park <sj@kernel.org> Cc: Shuah Khan <skhan@linuxfoundation.org> Cc: Suren Baghdasaryan <surenb@google.com> Cc: Vlastimil Babka <vbabka@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LINUX_KEXEC_HANDOVER_INTERNAL_H
|
|
#define LINUX_KEXEC_HANDOVER_INTERNAL_H
|
|
|
|
#include <linux/kexec_handover.h>
|
|
#include <linux/list.h>
|
|
#include <linux/types.h>
|
|
|
|
#ifdef CONFIG_KEXEC_HANDOVER_DEBUGFS
|
|
#include <linux/debugfs.h>
|
|
|
|
struct kho_debugfs {
|
|
struct dentry *dir;
|
|
struct dentry *sub_fdt_dir;
|
|
struct list_head fdt_list;
|
|
};
|
|
|
|
#else
|
|
struct kho_debugfs {};
|
|
#endif
|
|
|
|
extern struct kho_scratch *kho_scratch;
|
|
extern unsigned int kho_scratch_cnt;
|
|
|
|
#ifdef CONFIG_KEXEC_HANDOVER_DEBUGFS
|
|
int kho_debugfs_init(void);
|
|
void kho_in_debugfs_init(struct kho_debugfs *dbg, const void *fdt);
|
|
int kho_out_debugfs_init(struct kho_debugfs *dbg);
|
|
int kho_debugfs_blob_add(struct kho_debugfs *dbg, const char *name,
|
|
const void *blob, size_t size, bool root);
|
|
void kho_debugfs_blob_remove(struct kho_debugfs *dbg, void *blob);
|
|
#else
|
|
static inline int kho_debugfs_init(void) { return 0; }
|
|
static inline void kho_in_debugfs_init(struct kho_debugfs *dbg,
|
|
const void *fdt) { }
|
|
static inline int kho_out_debugfs_init(struct kho_debugfs *dbg) { return 0; }
|
|
static inline int kho_debugfs_blob_add(struct kho_debugfs *dbg,
|
|
const char *name, const void *blob,
|
|
size_t size, bool root) { return 0; }
|
|
static inline void kho_debugfs_blob_remove(struct kho_debugfs *dbg,
|
|
void *blob) { }
|
|
#endif /* CONFIG_KEXEC_HANDOVER_DEBUGFS */
|
|
|
|
#ifdef CONFIG_KEXEC_HANDOVER_DEBUG
|
|
bool kho_scratch_overlap(phys_addr_t phys, size_t size);
|
|
#else
|
|
static inline bool kho_scratch_overlap(phys_addr_t phys, size_t size)
|
|
{
|
|
return false;
|
|
}
|
|
#endif /* CONFIG_KEXEC_HANDOVER_DEBUG */
|
|
|
|
#endif /* LINUX_KEXEC_HANDOVER_INTERNAL_H */
|