mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
Make kstat.ks_update() callback atomic
Move the kstat ks_update() callback under the ks_lock. This enables dynamically sized kstats without modification to the kstat API. * Create a kstat with the KSTAT_FLAG_VIRTUAL flag. * Register a ->ks_update() callback which does: o Frees any existing ks_data buffer. o Set ks_data_size to the kstat array size. o Set ks_data to an allocated buffer of size ks_data_size o Populate the array of buffers with the required data. The buffer allocated in the ks_update() callback is guaranteed to remain allocated and valid while the proc sequence handler iterates over the buffer. The lock will not be dropped until kstat_seq_stop() function is run making it safe for concurrent access. To allow the ks_update() callback to perform memory allocations the lock was changed to a mutex. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
1e0c2c2ccf
commit
71c9f0b003
@ -30,6 +30,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/kmem.h>
|
#include <sys/kmem.h>
|
||||||
|
#include <sys/mutex.h>
|
||||||
|
|
||||||
#define KSTAT_STRLEN 31
|
#define KSTAT_STRLEN 31
|
||||||
|
|
||||||
@ -98,7 +99,7 @@ typedef struct kstat_s {
|
|||||||
struct proc_dir_entry *ks_proc; /* proc linkage */
|
struct proc_dir_entry *ks_proc; /* proc linkage */
|
||||||
kstat_update_t *ks_update; /* dynamic updates */
|
kstat_update_t *ks_update; /* dynamic updates */
|
||||||
void *ks_private; /* private data */
|
void *ks_private; /* private data */
|
||||||
spinlock_t ks_lock; /* kstat data lock */
|
kmutex_t ks_lock; /* kstat data lock */
|
||||||
struct list_head ks_list; /* kstat linkage */
|
struct list_head ks_list; /* kstat linkage */
|
||||||
} kstat_t;
|
} kstat_t;
|
||||||
|
|
||||||
|
@ -267,10 +267,11 @@ kstat_seq_start(struct seq_file *f, loff_t *pos)
|
|||||||
ASSERT(ksp->ks_magic == KS_MAGIC);
|
ASSERT(ksp->ks_magic == KS_MAGIC);
|
||||||
SENTRY;
|
SENTRY;
|
||||||
|
|
||||||
|
mutex_enter(&ksp->ks_lock);
|
||||||
|
|
||||||
/* Dynamically update kstat, on error existing kstats are used */
|
/* Dynamically update kstat, on error existing kstats are used */
|
||||||
(void) ksp->ks_update(ksp, KSTAT_READ);
|
(void) ksp->ks_update(ksp, KSTAT_READ);
|
||||||
|
|
||||||
spin_lock(&ksp->ks_lock);
|
|
||||||
ksp->ks_snaptime = gethrtime();
|
ksp->ks_snaptime = gethrtime();
|
||||||
|
|
||||||
if (!n)
|
if (!n)
|
||||||
@ -302,7 +303,7 @@ kstat_seq_stop(struct seq_file *f, void *v)
|
|||||||
kstat_t *ksp = (kstat_t *)f->private;
|
kstat_t *ksp = (kstat_t *)f->private;
|
||||||
ASSERT(ksp->ks_magic == KS_MAGIC);
|
ASSERT(ksp->ks_magic == KS_MAGIC);
|
||||||
|
|
||||||
spin_unlock(&ksp->ks_lock);
|
mutex_exit(&ksp->ks_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct seq_operations kstat_seq_ops = {
|
static struct seq_operations kstat_seq_ops = {
|
||||||
@ -360,7 +361,7 @@ __kstat_create(const char *ks_module, int ks_instance, const char *ks_name,
|
|||||||
spin_unlock(&kstat_lock);
|
spin_unlock(&kstat_lock);
|
||||||
|
|
||||||
ksp->ks_magic = KS_MAGIC;
|
ksp->ks_magic = KS_MAGIC;
|
||||||
spin_lock_init(&ksp->ks_lock);
|
mutex_init(&ksp->ks_lock, NULL, MUTEX_DEFAULT, NULL);
|
||||||
INIT_LIST_HEAD(&ksp->ks_list);
|
INIT_LIST_HEAD(&ksp->ks_list);
|
||||||
|
|
||||||
ksp->ks_crtime = gethrtime();
|
ksp->ks_crtime = gethrtime();
|
||||||
@ -445,11 +446,11 @@ __kstat_install(kstat_t *ksp)
|
|||||||
if (de_name == NULL)
|
if (de_name == NULL)
|
||||||
SGOTO(out, rc = -EUNATCH);
|
SGOTO(out, rc = -EUNATCH);
|
||||||
|
|
||||||
spin_lock(&ksp->ks_lock);
|
mutex_enter(&ksp->ks_lock);
|
||||||
ksp->ks_proc = de_name;
|
ksp->ks_proc = de_name;
|
||||||
de_name->proc_fops = &proc_kstat_operations;
|
de_name->proc_fops = &proc_kstat_operations;
|
||||||
de_name->data = (void *)ksp;
|
de_name->data = (void *)ksp;
|
||||||
spin_unlock(&ksp->ks_lock);
|
mutex_exit(&ksp->ks_lock);
|
||||||
out:
|
out:
|
||||||
if (rc) {
|
if (rc) {
|
||||||
spin_lock(&kstat_lock);
|
spin_lock(&kstat_lock);
|
||||||
@ -482,6 +483,7 @@ __kstat_delete(kstat_t *ksp)
|
|||||||
if (!(ksp->ks_flags & KSTAT_FLAG_VIRTUAL))
|
if (!(ksp->ks_flags & KSTAT_FLAG_VIRTUAL))
|
||||||
kmem_free(ksp->ks_data, ksp->ks_data_size);
|
kmem_free(ksp->ks_data, ksp->ks_data_size);
|
||||||
|
|
||||||
|
mutex_destroy(&ksp->ks_lock);
|
||||||
kmem_free(ksp, sizeof(*ksp));
|
kmem_free(ksp, sizeof(*ksp));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user