Clarify stevedore variables

parent 4330e25d
......@@ -1223,8 +1223,10 @@ static const struct stevedore sfedsk_stevedore = {
.magic = STEVEDORE_MAGIC,
.name = "fellow disk (internal)",
.methods = &sfedsk_methods,
.var_free_space = NULL, // TODO
.var_used_space = NULL, // TODO
// we never hand out internal stevedores to VCL
.var_free_space = NULL,
.var_used_space = NULL,
.var_happy = NULL,
};
/* ----------------------------------------------------------------------
......@@ -1261,8 +1263,10 @@ static const struct stevedore sfeexp_stevedore = {
.magic = STEVEDORE_MAGIC,
.name = "fellow expiry (internal)",
.methods = &sfeexp_methods,
.var_free_space = NULL, // TODO
.var_used_space = NULL, // TODO
// we never hand out internal stevedores to VCL
.var_free_space = NULL,
.var_used_space = NULL,
.var_happy = NULL,
};
static void v_matchproto_(objfree_f)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment