/* XBC node initializer */
 int __init xbc_init(const char *buf, size_t size, const char **emsg, int *epos);
 
+/* XBC node and size information */
+int __init xbc_get_info(int *node_size, size_t *data_size);
 
 /* XBC cleanup data structures */
 void __init xbc_destroy_all(void);
 
                        pr_err("Failed to parse bootconfig: %s at %d.\n",
                                msg, pos);
        } else {
+               xbc_get_info(&ret, NULL);
                pr_info("Load bootconfig: %d bytes %d nodes\n", size, ret);
                /* keys starting with "kernel." are passed via cmdline */
                extra_command_line = xbc_make_cmdline("kernel");
 
 static int open_brace[XBC_DEPTH_MAX] __initdata;
 static int brace_index __initdata;
 
+/**
+ * xbc_get_info() - Get the information of loaded boot config
+ * node_size: A pointer to store the number of nodes.
+ * data_size: A pointer to store the size of bootconfig data.
+ *
+ * Get the number of used nodes in @node_size if it is not NULL,
+ * and the size of bootconfig data in @data_size if it is not NULL.
+ * Return 0 if the boot config is initialized, or return -ENODEV.
+ */
+int __init xbc_get_info(int *node_size, size_t *data_size)
+{
+       if (!xbc_data)
+               return -ENODEV;
+
+       if (node_size)
+               *node_size = xbc_node_num;
+       if (data_size)
+               *data_size = xbc_data_size;
+       return 0;
+}
+
 static int __init xbc_parse_error(const char *msg, const char *p)
 {
        xbc_err_msg = msg;
 
                return ret;
        }
        printf("Apply %s to %s\n", xbc_path, path);
+       xbc_get_info(&ret, NULL);
        printf("\tNumber of nodes: %d\n", ret);
        printf("\tSize: %u bytes\n", (unsigned int)size);
        printf("\tChecksum: %d\n", (unsigned int)csum);