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