Whamcloud - gitweb
0854ce6c0b08287fd55fa51f36ab0db50a60a578
[fs/lustre-release.git] / lustre / osd-zfs / osd_lproc.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * Copyright (c) 2012, Intel Corporation.
32  * Use is subject to license terms.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  *
38  * lustre/osd-zfs/osd_lproc.c
39  *
40  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
41  * Author: Mike Pershin <tappro@whamcloud.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_CLASS
45
46 #include <obd.h>
47 #include <obd_class.h>
48 #include <lprocfs_status.h>
49 #include <lustre/lustre_idl.h>
50
51 #include "osd_internal.h"
52
53 #ifdef LPROCFS
54
55 static int osd_stats_init(struct osd_device *osd)
56 {
57         int result;
58         ENTRY;
59
60         osd->od_stats = lprocfs_alloc_stats(LPROC_OSD_LAST, 0);
61         if (osd->od_stats != NULL) {
62                 result = lprocfs_register_stats(osd->od_proc_entry, "stats",
63                                 osd->od_stats);
64                 if (result)
65                         GOTO(out, result);
66
67                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_GET_PAGE,
68                                 LPROCFS_CNTR_AVGMINMAX|LPROCFS_CNTR_STDDEV,
69                                 "get_page", "usec");
70                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_NO_PAGE,
71                                 LPROCFS_CNTR_AVGMINMAX,
72                                 "get_page_failures", "num");
73                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_ACCESS,
74                                 LPROCFS_CNTR_AVGMINMAX,
75                                 "cache_access", "pages");
76                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_HIT,
77                                 LPROCFS_CNTR_AVGMINMAX,
78                                 "cache_hit", "pages");
79                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_MISS,
80                                 LPROCFS_CNTR_AVGMINMAX,
81                                 "cache_miss", "pages");
82                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_COPY_IO,
83                                 LPROCFS_CNTR_AVGMINMAX,
84                                 "copy", "pages");
85                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_ZEROCOPY_IO,
86                                 LPROCFS_CNTR_AVGMINMAX,
87                                 "zerocopy", "pages");
88                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_TAIL_IO,
89                                 LPROCFS_CNTR_AVGMINMAX,
90                                 "tail", "pages");
91 #ifdef OSD_THANDLE_STATS
92                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_STARTING,
93                                 LPROCFS_CNTR_AVGMINMAX,
94                                 "thandle_starting", "usec");
95                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_OPEN,
96                                 LPROCFS_CNTR_AVGMINMAX,
97                                 "thandle_open", "usec");
98                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_CLOSING,
99                                 LPROCFS_CNTR_AVGMINMAX,
100                                 "thandle_closing", "usec");
101 #endif
102         } else {
103                 result = -ENOMEM;
104         }
105
106 out:
107         RETURN(result);
108 }
109
110 static int lprocfs_osd_rd_fstype(char *page, char **start, off_t off,
111                                 int count, int *eof, void *data)
112 {
113         return snprintf(page, count, "zfs\n");
114 }
115
116 static int lprocfs_osd_rd_mntdev(char *page, char **start, off_t off, int count,
117                                 int *eof, void *data)
118 {
119         struct osd_device *osd = osd_dt_dev((struct dt_device *)data);
120
121         LASSERT(osd != NULL);
122         *eof = 1;
123
124         return snprintf(page, count, "%s\n", osd->od_mntdev);
125 }
126
127 static int lprocfs_osd_wr_force_sync(struct file *file, const char *buffer,
128                                         unsigned long count, void *data)
129 {
130         struct dt_device  *dt = data;
131         struct lu_env      env;
132         int rc;
133
134         rc = lu_env_init(&env, LCT_LOCAL);
135         if (rc)
136                 return rc;
137         rc = dt_sync(&env, dt);
138         lu_env_fini(&env);
139
140         return rc == 0 ? count : rc;
141 }
142
143 static int lprocfs_osd_rd_iused_est(char *page, char **start, off_t off, int count,
144                                         int *eof, void *data)
145 {
146         struct osd_device *osd = osd_dt_dev((struct dt_device *)data);
147         LASSERT(osd != NULL);
148
149         return snprintf(page, count, "%d\n", osd->od_quota_iused_est);
150 }
151
152 static int lprocfs_osd_wr_iused_est(struct file *file, const char *buffer,
153                                         unsigned long count, void *data)
154 {
155         struct osd_device *osd = osd_dt_dev((struct dt_device *)data);
156         int                rc, val;
157
158         LASSERT(osd != NULL);
159
160         rc = lprocfs_write_helper(buffer, count, &val);
161         if (rc)
162                 return rc;
163
164         osd->od_quota_iused_est = !!val;
165
166         return count;
167 }
168
169 struct lprocfs_vars lprocfs_osd_obd_vars[] = {
170         { "blocksize",          lprocfs_dt_rd_blksize,  0, 0 },
171         { "kbytestotal",        lprocfs_dt_rd_kbytestotal,      0, 0 },
172         { "kbytesfree",         lprocfs_dt_rd_kbytesfree,       0, 0 },
173         { "kbytesavail",        lprocfs_dt_rd_kbytesavail,      0, 0 },
174         { "filestotal",         lprocfs_dt_rd_filestotal,       0, 0 },
175         { "filesfree",          lprocfs_dt_rd_filesfree,        0, 0 },
176         { "fstype",          lprocfs_osd_rd_fstype,      0, 0 },
177         { "mntdev",          lprocfs_osd_rd_mntdev,      0, 0 },
178         { "force_sync",      0, lprocfs_osd_wr_force_sync     },
179         { "quota_iused_estimate",  lprocfs_osd_rd_iused_est,
180                 lprocfs_osd_wr_iused_est,   0, 0 },
181         { 0 }
182 };
183
184 struct lprocfs_vars lprocfs_osd_module_vars[] = {
185         { "num_refs",        lprocfs_rd_numrefs,         0, 0 },
186         { 0 }
187 };
188
189 int osd_procfs_init(struct osd_device *osd, const char *name)
190 {
191         struct obd_type *type;
192         int              rc;
193         ENTRY;
194
195         if (osd->od_proc_entry)
196                 RETURN(0);
197
198         /* at the moment there is no linkage between lu_type
199          * and obd_type, so we lookup obd_type this way */
200         type = class_search_type(LUSTRE_OSD_ZFS_NAME);
201
202         LASSERT(name != NULL);
203         LASSERT(type != NULL);
204
205         osd->od_proc_entry = lprocfs_register(name, type->typ_procroot,
206                         lprocfs_osd_obd_vars, &osd->od_dt_dev);
207         if (IS_ERR(osd->od_proc_entry)) {
208                 rc = PTR_ERR(osd->od_proc_entry);
209                 CERROR("Error %d setting up lprocfs for %s\n", rc, name);
210                 osd->od_proc_entry = NULL;
211                 GOTO(out, rc);
212         }
213
214         rc = osd_stats_init(osd);
215
216         GOTO(out, rc);
217 out:
218         if (rc)
219                 osd_procfs_fini(osd);
220         return rc;
221 }
222
223 int osd_procfs_fini(struct osd_device *osd)
224 {
225         ENTRY;
226
227         if (osd->od_stats)
228                 lprocfs_free_stats(&osd->od_stats);
229
230         if (osd->od_proc_entry) {
231                 lprocfs_remove(&osd->od_proc_entry);
232                 osd->od_proc_entry = NULL;
233         }
234
235         RETURN(0);
236 }
237
238 #endif