Commit 55e1abb0 authored by Nils Goroll's avatar Nils Goroll

reorder for clarity

parent 73d2ae78
......@@ -1360,10 +1360,10 @@ bytes_unpend_worklist(struct req *req, struct bytes_tree *tree,
}
if (node->parent && node->parent->state == ST_OPEN) {
tree->front = node;
VSLdbgv(req, "bytes_unpend: return at "
"node %p state %u - await sibling",
node, node->state);
tree->front = node;
return;
}
......@@ -1385,10 +1385,10 @@ bytes_unpend_worklist(struct req *req, struct bytes_tree *tree,
}
if (node->state == ST_PRIVATE) {
tree->front = node;
VSLdbgv(req, "bytes_unpend: return at "
"node %p state %u - private",
node, node->state);
tree->front = node;
return;
}
......@@ -1401,8 +1401,8 @@ bytes_unpend_worklist(struct req *req, struct bytes_tree *tree,
}
if (node->state == ST_OPEN) {
tree->front = node;
VSLdbg(req, "bytes_unpend: init node no children");
tree->front = node;
return;
}
......
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