Whamcloud - gitweb
90c02699003857e29694ab98755858633eadf002
[fs/lustre-release.git] / lustre / mdt / mdt_fs.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdt/mdt_fs.c
33  *
34  * Lustre Metadata Server (MDS) filesystem interface code
35  */
36
37 #define DEBUG_SUBSYSTEM S_MDS
38
39 #include "mdt_internal.h"
40
41 static const struct file_operations mdt_open_files_seq_fops = {
42         .owner   = THIS_MODULE,
43         .open    = lprocfs_mdt_open_files_seq_open,
44         .read    = seq_read,
45         .llseek  = seq_lseek,
46         .release = seq_release,
47 };
48
49 /**
50  * Initialize MDT per-export statistics.
51  *
52  * This function sets up procfs entries for various MDT export counters. These
53  * counters are for per-client statistics tracked on the server.
54  *
55  * \param[in] obd       OBD device
56  * \param[in] exp       OBD export
57  * \param[in] localdata NID of client
58  *
59  * \retval              0 if successful
60  * \retval              negative value on error
61  */
62 int mdt_export_stats_init(struct obd_device *obd, struct obd_export *exp,
63                           void *localdata)
64 {
65         lnet_nid_t *client_nid = localdata;
66         struct nid_stat *stats;
67         int rc;
68         ENTRY;
69
70         rc = lprocfs_exp_setup(exp, client_nid);
71         if (rc != 0)
72                 /* Mask error for already created /proc entries */
73                 RETURN(rc == -EALREADY ? 0 : rc);
74
75         stats = exp->exp_nid_stats;
76         stats->nid_stats = lprocfs_alloc_stats(LPROC_MDT_LAST,
77                                                 LPROCFS_STATS_FLAG_NOPERCPU);
78         if (stats->nid_stats == NULL)
79                 RETURN(-ENOMEM);
80
81         mdt_stats_counter_init(stats->nid_stats, 0);
82
83         rc = lprocfs_register_stats(stats->nid_proc, "stats", stats->nid_stats);
84         if (rc != 0) {
85                 lprocfs_free_stats(&stats->nid_stats);
86                 GOTO(out, rc);
87         }
88
89         rc = lprocfs_nid_ldlm_stats_init(stats);
90         if (rc != 0)
91                 GOTO(out, rc);
92
93         rc = lprocfs_seq_create(stats->nid_proc, "open_files",
94                                 0444, &mdt_open_files_seq_fops, stats);
95         if (rc != 0) {
96                 CWARN("%s: error adding the open_files file: rc = %d\n",
97                         obd->obd_name, rc);
98                 GOTO(out, rc);
99         }
100 out:
101         RETURN(rc);
102 }