|
@@ -127,19 +127,19 @@ static int add_cgroup(struct perf_evlist *evlist, char *str)
|
|
|
goto found;
|
|
|
n++;
|
|
|
}
|
|
|
- if (atomic_read(&cgrp->refcnt) == 0)
|
|
|
+ if (refcount_read(&cgrp->refcnt) == 0)
|
|
|
free(cgrp);
|
|
|
|
|
|
return -1;
|
|
|
found:
|
|
|
- atomic_inc(&cgrp->refcnt);
|
|
|
+ refcount_inc(&cgrp->refcnt);
|
|
|
counter->cgrp = cgrp;
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
void close_cgroup(struct cgroup_sel *cgrp)
|
|
|
{
|
|
|
- if (cgrp && atomic_dec_and_test(&cgrp->refcnt)) {
|
|
|
+ if (cgrp && refcount_dec_and_test(&cgrp->refcnt)) {
|
|
|
close(cgrp->fd);
|
|
|
zfree(&cgrp->name);
|
|
|
free(cgrp);
|