Merge "REF_DEBUG: Prevent logging of container node objects."

This commit is contained in:
Joshua Colp
2016-07-08 07:09:25 -05:00
committed by Gerrit Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -274,7 +274,7 @@ static enum ao2_container_insert hash_ao2_insert_node(struct ao2_container_hash
break;
case AO2_CONTAINER_ALLOC_OPT_DUPS_REPLACE:
SWAP(cur->common.obj, node->common.obj);
ao2_t_ref(node, -1, "Discard the new node.");
ao2_t_ref(node, -1, NULL);
return AO2_CONTAINER_INSERT_NODE_OBJ_REPLACED;
}
}
@@ -307,7 +307,7 @@ static enum ao2_container_insert hash_ao2_insert_node(struct ao2_container_hash
break;
case AO2_CONTAINER_ALLOC_OPT_DUPS_REPLACE:
SWAP(cur->common.obj, node->common.obj);
ao2_t_ref(node, -1, "Discard the new node.");
ao2_t_ref(node, -1, NULL);
return AO2_CONTAINER_INSERT_NODE_OBJ_REPLACED;
}
}

View File

@@ -1243,7 +1243,7 @@ static enum ao2_container_insert rb_ao2_insert_node(struct ao2_container_rbtree
break;
case AO2_CONTAINER_ALLOC_OPT_DUPS_REPLACE:
SWAP(cur->common.obj, node->common.obj);
ao2_t_ref(node, -1, "Don't need the new node.");
ao2_t_ref(node, -1, NULL);
return AO2_CONTAINER_INSERT_NODE_OBJ_REPLACED;
}