]> git.proxmox.com Git - mirror_spl-debian.git/blob - include/sys/kstat.h
Add basic dynamic kstat support
[mirror_spl-debian.git] / include / sys / kstat.h
1 /*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6 * UCRL-CODE-235197
7 *
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://github.com/behlendorf/spl/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 \*****************************************************************************/
24
25 #ifndef _SPL_KSTAT_H
26 #define _SPL_KSTAT_H
27
28 #include <linux/module.h>
29 #include <linux/proc_compat.h>
30 #include <sys/types.h>
31 #include <sys/time.h>
32 #include <sys/kmem.h>
33
34 #define KSTAT_STRLEN 31
35
36 /* For reference valid classes are:
37 * disk, tape, net, controller, vm, kvm, hat, streams, kstat, misc
38 */
39
40 #define KSTAT_TYPE_RAW 0 /* can be anything; ks_ndata >= 1 */
41 #define KSTAT_TYPE_NAMED 1 /* name/value pair; ks_ndata >= 1 */
42 #define KSTAT_TYPE_INTR 2 /* interrupt stats; ks_ndata == 1 */
43 #define KSTAT_TYPE_IO 3 /* I/O stats; ks_ndata == 1 */
44 #define KSTAT_TYPE_TIMER 4 /* event timer; ks_ndata >= 1 */
45 #define KSTAT_NUM_TYPES 5
46
47 #define KSTAT_DATA_CHAR 0
48 #define KSTAT_DATA_INT32 1
49 #define KSTAT_DATA_UINT32 2
50 #define KSTAT_DATA_INT64 3
51 #define KSTAT_DATA_UINT64 4
52 #define KSTAT_DATA_LONG 5
53 #define KSTAT_DATA_ULONG 6
54 #define KSTAT_DATA_STRING 7
55 #define KSTAT_NUM_DATAS 8
56
57 #define KSTAT_INTR_HARD 0
58 #define KSTAT_INTR_SOFT 1
59 #define KSTAT_INTR_WATCHDOG 2
60 #define KSTAT_INTR_SPURIOUS 3
61 #define KSTAT_INTR_MULTSVC 4
62 #define KSTAT_NUM_INTRS 5
63
64 #define KSTAT_FLAG_VIRTUAL 0x01
65 #define KSTAT_FLAG_VAR_SIZE 0x02
66 #define KSTAT_FLAG_WRITABLE 0x04
67 #define KSTAT_FLAG_PERSISTENT 0x08
68 #define KSTAT_FLAG_DORMANT 0x10
69 #define KSTAT_FLAG_UNSUPPORTED (KSTAT_FLAG_VAR_SIZE | KSTAT_FLAG_WRITABLE | \
70 KSTAT_FLAG_PERSISTENT | KSTAT_FLAG_DORMANT)
71
72
73 #define KS_MAGIC 0x9d9d9d9d
74
75 /* Dynamic updates */
76 #define KSTAT_READ 0
77 #define KSTAT_WRITE 1
78
79 struct kstat_s;
80
81 typedef int kid_t; /* unique kstat id */
82 typedef int kstat_update_t(struct kstat_s *, int); /* dynamic update cb */
83
84 typedef struct kstat_s {
85 int ks_magic; /* magic value */
86 kid_t ks_kid; /* unique kstat ID */
87 hrtime_t ks_crtime; /* creation time */
88 hrtime_t ks_snaptime; /* last access time */
89 char ks_module[KSTAT_STRLEN+1]; /* provider module name */
90 int ks_instance; /* provider module instance */
91 char ks_name[KSTAT_STRLEN+1]; /* kstat name */
92 char ks_class[KSTAT_STRLEN+1]; /* kstat class */
93 uchar_t ks_type; /* kstat data type */
94 uchar_t ks_flags; /* kstat flags */
95 void *ks_data; /* kstat type-specific data */
96 uint_t ks_ndata; /* # of type-specific data records */
97 size_t ks_data_size; /* size of kstat data section */
98 struct proc_dir_entry *ks_proc; /* proc linkage */
99 kstat_update_t *ks_update; /* dynamic updates */
100 void *ks_private; /* private data */
101 spinlock_t ks_lock; /* kstat data lock */
102 struct list_head ks_list; /* kstat linkage */
103 } kstat_t;
104
105 typedef struct kstat_named_s {
106 char name[KSTAT_STRLEN]; /* name of counter */
107 uchar_t data_type; /* data type */
108 union {
109 char c[16]; /* 128-bit int */
110 int32_t i32; /* 32-bit signed int */
111 uint32_t ui32; /* 32-bit unsigned int */
112 int64_t i64; /* 64-bit signed int */
113 uint64_t ui64; /* 64-bit unsigned int */
114 long l; /* native signed long */
115 ulong_t ul; /* native unsigned long */
116 struct {
117 union {
118 char *ptr; /* NULL-term string */
119 char __pad[8]; /* 64-bit padding */
120 } addr;
121 uint32_t len; /* # bytes for strlen + '\0' */
122 } string;
123 } value;
124 } kstat_named_t;
125
126 #define KSTAT_NAMED_STR_PTR(knptr) ((knptr)->value.string.addr.ptr)
127 #define KSTAT_NAMED_STR_BUFLEN(knptr) ((knptr)->value.string.len)
128
129 typedef struct kstat_intr {
130 uint_t intrs[KSTAT_NUM_INTRS];
131 } kstat_intr_t;
132
133 typedef struct kstat_io {
134 u_longlong_t nread; /* number of bytes read */
135 u_longlong_t nwritten; /* number of bytes written */
136 uint_t reads; /* number of read operations */
137 uint_t writes; /* number of write operations */
138 hrtime_t wtime; /* cumulative wait (pre-service) time */
139 hrtime_t wlentime; /* cumulative wait length*time product*/
140 hrtime_t wlastupdate; /* last time wait queue changed */
141 hrtime_t rtime; /* cumulative run (service) time */
142 hrtime_t rlentime; /* cumulative run length*time product */
143 hrtime_t rlastupdate; /* last time run queue changed */
144 uint_t wcnt; /* count of elements in wait state */
145 uint_t rcnt; /* count of elements in run state */
146 } kstat_io_t;
147
148 typedef struct kstat_timer {
149 char name[KSTAT_STRLEN+1]; /* event name */
150 u_longlong_t num_events; /* number of events */
151 hrtime_t elapsed_time; /* cumulative elapsed time */
152 hrtime_t min_time; /* shortest event duration */
153 hrtime_t max_time; /* longest event duration */
154 hrtime_t start_time; /* previous event start time */
155 hrtime_t stop_time; /* previous event stop time */
156 } kstat_timer_t;
157
158 int spl_kstat_init(void);
159 void spl_kstat_fini(void);
160
161 extern kstat_t *__kstat_create(const char *ks_module, int ks_instance,
162 const char *ks_name, const char *ks_class,
163 uchar_t ks_type, uint_t ks_ndata,
164 uchar_t ks_flags);
165 extern void __kstat_install(kstat_t *ksp);
166 extern void __kstat_delete(kstat_t *ksp);
167
168 #define kstat_create(m,i,n,c,t,s,f) __kstat_create(m,i,n,c,t,s,f)
169 #define kstat_install(k) __kstat_install(k)
170 #define kstat_delete(k) __kstat_delete(k)
171
172 #endif /* _SPL_KSTAT_H */