Whamcloud - gitweb
LU-1347 build: remove the vim/emacs modelines
[fs/lustre-release.git] / lustre / cmm / cmm_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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/cmm/cmm_lproc.c
35  *
36  * CMM lprocfs stuff
37  *
38  * Author: Wang Di      <wangdi@clusterfs.com>
39  * Author: Yury Umanets <umka@clusterfs.com>
40  */
41 #ifndef EXPORT_SYMTAB
42 # define EXPORT_SYMTAB
43 #endif
44 #define DEBUG_SUBSYSTEM S_MDS
45
46 #include <linux/module.h>
47 #include <obd.h>
48 #include <obd_class.h>
49 #include <lustre_ver.h>
50 #include <obd_support.h>
51 #include <lprocfs_status.h>
52 #include <lu_time.h>
53
54 #include <lustre/lustre_idl.h>
55
56 #include "cmm_internal.h"
57 /**
58  * \addtogroup cmm
59  * @{
60  */
61 static const char *cmm_counter_names[LPROC_CMM_NR] = {
62         [LPROC_CMM_SPLIT_CHECK] = "split_check",
63         [LPROC_CMM_SPLIT]       = "split",
64         [LPROC_CMM_LOOKUP]      = "lookup",
65         [LPROC_CMM_CREATE]      = "create"
66 };
67
68 int cmm_procfs_init(struct cmm_device *cmm, const char *name)
69 {
70         struct lu_device    *ld = &cmm->cmm_md_dev.md_lu_dev;
71         struct obd_type     *type;
72         int                  rc;
73         ENTRY;
74
75         type = ld->ld_type->ldt_obd_type;
76
77         LASSERT(name != NULL);
78         LASSERT(type != NULL);
79
80         /* Find the type procroot and add the proc entry for this device. */
81         cmm->cmm_proc_entry = lprocfs_register(name, type->typ_procroot,
82                                                NULL, NULL);
83         if (IS_ERR(cmm->cmm_proc_entry)) {
84                 rc = PTR_ERR(cmm->cmm_proc_entry);
85                 CERROR("Error %d setting up lprocfs for %s\n",
86                        rc, name);
87                 cmm->cmm_proc_entry = NULL;
88                 GOTO(out, rc);
89         }
90
91         rc = lu_time_init(&cmm->cmm_stats,
92                           cmm->cmm_proc_entry,
93                           cmm_counter_names, ARRAY_SIZE(cmm_counter_names));
94
95         EXIT;
96 out:
97         if (rc)
98                cmm_procfs_fini(cmm);
99         return rc;
100 }
101
102 int cmm_procfs_fini(struct cmm_device *cmm)
103 {
104         if (cmm->cmm_stats)
105                 lu_time_fini(&cmm->cmm_stats);
106
107         if (cmm->cmm_proc_entry) {
108                  lprocfs_remove(&cmm->cmm_proc_entry);
109                  cmm->cmm_proc_entry = NULL;
110         }
111         RETURN(0);
112 }
113
114 void cmm_lprocfs_time_start(const struct lu_env *env)
115 {
116         lu_lprocfs_time_start(env);
117 }
118
119 void cmm_lprocfs_time_end(const struct lu_env *env, struct cmm_device *cmm,
120                           int idx)
121 {
122         lu_lprocfs_time_end(env, cmm->cmm_stats, idx);
123 }
124 /** @} */