Linux 6.9-rc6
[sfrench/cifs-2.6.git] / include / linux / bootconfig.h
index e5ee2c694401e0972d4a644f01ca523f63f83475..3f4b4ac527ca28c66119cf00fc13083633ec80a3 100644 (file)
@@ -288,7 +288,12 @@ int __init xbc_init(const char *buf, size_t size, const char **emsg, int *epos);
 int __init xbc_get_info(int *node_size, size_t *data_size);
 
 /* XBC cleanup data structures */
-void __init xbc_exit(void);
+void __init _xbc_exit(bool early);
+
+static inline void xbc_exit(void)
+{
+       _xbc_exit(false);
+}
 
 /* XBC embedded bootconfig data in kernel */
 #ifdef CONFIG_BOOT_CONFIG_EMBED