Whamcloud - gitweb
LU-8569 linkea: linkEA size limitation
[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         LASSERT(!obd->obd_uses_nid_stats);
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);
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 }