Can be set by the user if needed, not referenced in any config scripts.
static inline void *ep_alloc(struct eltpool *pool)
{
pool->num_allocated++;
-#ifdef CONFIG_FAKE_ELTPOOL
+#ifdef CONFIG_UCW_FAKE_ELTPOOL
return xmalloc(pool->elt_size);
#else
struct eltpool_free *elt;
static inline void ep_free(struct eltpool *pool, void *p)
{
pool->num_allocated--;
-#ifdef CONFIG_FAKE_ELTPOOL
+#ifdef CONFIG_UCW_FAKE_ELTPOOL
(void) pool;
xfree(p);
#else