Whamcloud - gitweb
LU-13344 libcfs: Abstract proc_fs with proc_ops
[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 <linux/fs.h>
40 #include <libcfs/linux/linux-fs.h>
41 #include "mdt_internal.h"
42
43 static const struct proc_ops mdt_open_files_seq_fops = {
44         PROC_OWNER(THIS_MODULE)
45         .proc_open              = lprocfs_mdt_open_files_seq_open,
46         .proc_read              = seq_read,
47         .proc_lseek             = seq_lseek,
48         .proc_release           = seq_release,
49 };
50
51 /**
52  * Initialize MDT per-export statistics.
53  *
54  * This function sets up procfs entries for various MDT export counters. These
55  * counters are for per-client statistics tracked on the server.
56  *
57  * \param[in] obd       OBD device
58  * \param[in] exp       OBD export
59  * \param[in] localdata NID of client
60  *
61  * \retval              0 if successful
62  * \retval              negative value on error
63  */
64 int mdt_export_stats_init(struct obd_device *obd, struct obd_export *exp,
65                           void *localdata)
66 {
67         lnet_nid_t *client_nid = localdata;
68         struct nid_stat *stats;
69         int rc;
70         ENTRY;
71
72         rc = lprocfs_exp_setup(exp, client_nid);
73         if (rc != 0)
74                 /* Mask error for already created /proc entries */
75                 RETURN(rc == -EALREADY ? 0 : rc);
76
77         stats = exp->exp_nid_stats;
78         stats->nid_stats = lprocfs_alloc_stats(LPROC_MDT_LAST,
79                                                 LPROCFS_STATS_FLAG_NOPERCPU);
80         if (stats->nid_stats == NULL)
81                 RETURN(-ENOMEM);
82
83         mdt_stats_counter_init(stats->nid_stats, 0);
84
85         rc = lprocfs_register_stats(stats->nid_proc, "stats", stats->nid_stats);
86         if (rc != 0) {
87                 lprocfs_free_stats(&stats->nid_stats);
88                 GOTO(out, rc);
89         }
90
91         rc = lprocfs_nid_ldlm_stats_init(stats);
92         if (rc != 0)
93                 GOTO(out, rc);
94
95         rc = lprocfs_seq_create(stats->nid_proc, "open_files",
96                                 0444, &mdt_open_files_seq_fops, stats);
97         if (rc != 0) {
98                 CWARN("%s: error adding the open_files file: rc = %d\n",
99                         obd->obd_name, rc);
100                 GOTO(out, rc);
101         }
102 out:
103         RETURN(rc);
104 }