mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
36 lines
645 B
C
36 lines
645 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
#include <linux/percpu_counter.h>
|
||
|
|
||
|
#include "metric.h"
|
||
|
|
||
|
int ceph_metric_init(struct ceph_client_metric *m)
|
||
|
{
|
||
|
int ret;
|
||
|
|
||
|
if (!m)
|
||
|
return -EINVAL;
|
||
|
|
||
|
atomic64_set(&m->total_dentries, 0);
|
||
|
ret = percpu_counter_init(&m->d_lease_hit, 0, GFP_KERNEL);
|
||
|
if (ret)
|
||
|
return ret;
|
||
|
ret = percpu_counter_init(&m->d_lease_mis, 0, GFP_KERNEL);
|
||
|
if (ret) {
|
||
|
percpu_counter_destroy(&m->d_lease_hit);
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void ceph_metric_destroy(struct ceph_client_metric *m)
|
||
|
{
|
||
|
if (!m)
|
||
|
return;
|
||
|
|
||
|
percpu_counter_destroy(&m->d_lease_mis);
|
||
|
percpu_counter_destroy(&m->d_lease_hit);
|
||
|
}
|