diff options
Diffstat (limited to 'xlators/cluster/ec/src/ec.c')
-rw-r--r-- | xlators/cluster/ec/src/ec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/cluster/ec/src/ec.c b/xlators/cluster/ec/src/ec.c index 06f814f9f5c..e93ae4f86fb 100644 --- a/xlators/cluster/ec/src/ec.c +++ b/xlators/cluster/ec/src/ec.c @@ -604,6 +604,10 @@ init (xlator_t *this) if (ec_assign_read_policy (ec, read_policy)) goto failed; + this->itable = inode_table_new (EC_SHD_INODE_LRU_LIMIT, this); + if (!this->itable) + goto failed; + if (ec->shd.iamshd) ec_selfheal_daemon_init (this); gf_msg_debug (this->name, 0, "Disperse translator initialized."); |