clear_fixmap(FIX_APEI_GHES_IRQ);
 }
 
-static int ghes_estatus_pool_init(void)
+static int ghes_estatus_pool_expand(unsigned long len); //temporary
+
+int ghes_estatus_pool_init(void)
 {
        ghes_estatus_pool = gen_pool_create(GHES_ESTATUS_POOL_MIN_ALLOC_ORDER, -1);
        if (!ghes_estatus_pool)
                return -ENOMEM;
-       return 0;
-}
 
-static void ghes_estatus_pool_free_chunk(struct gen_pool *pool,
-                                             struct gen_pool_chunk *chunk,
-                                             void *data)
-{
-       vfree((void *)chunk->start_addr);
-}
-
-static void ghes_estatus_pool_exit(void)
-{
-       gen_pool_for_each_chunk(ghes_estatus_pool,
-                               ghes_estatus_pool_free_chunk, NULL);
-       gen_pool_destroy(ghes_estatus_pool);
+       return ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
+                                       GHES_ESTATUS_CACHE_ALLOCED_MAX);
 }
 
 static int ghes_estatus_pool_expand(unsigned long len)
 
        ghes_nmi_init_cxt();
 
-       rc = ghes_estatus_pool_init();
-       if (rc)
-               goto err;
-
-       rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
-                                     GHES_ESTATUS_CACHE_ALLOCED_MAX);
-       if (rc)
-               goto err_pool_exit;
-
        rc = platform_driver_register(&ghes_platform_driver);
        if (rc)
-               goto err_pool_exit;
+               goto err;
 
        rc = apei_osc_setup();
        if (rc == 0 && osc_sb_apei_support_acked)
                pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n");
 
        return 0;
-err_pool_exit:
-       ghes_estatus_pool_exit();
 err:
        return rc;
 }
 
 #include <linux/io.h>
 #include <linux/platform_device.h>
 #include <acpi/apei.h>
+#include <acpi/ghes.h>
 
 #include "apei-internal.h"
 
        rc = apei_hest_parse(hest_parse_ghes, &ghes_arr);
        if (rc)
                goto err;
+
+       rc = ghes_estatus_pool_init();
+       if (rc)
+               goto err;
+
 out:
        kfree(ghes_arr.ghes_devs);
        return rc;
                rc = apei_hest_parse(hest_parse_ghes_count, &ghes_count);
                if (rc)
                        goto err;
-               rc = hest_ghes_dev_register(ghes_count);
+
+               if (ghes_count)
+                       rc = hest_ghes_dev_register(ghes_count);
                if (rc)
                        goto err;
        }