Whamcloud - gitweb
7307dfe583f58a76ddbb084bcb2228e14a8b6183
[fs/lustre-release.git] / lustre / obdclass / linux / linux-sysctl.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) 1999, 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
33 #include <linux/module.h>
34 #include <linux/sysctl.h>
35 #include <linux/sched.h>
36 #include <linux/mm.h>
37 #include <linux/sysctl.h>
38 #include <linux/version.h>
39 #include <linux/proc_fs.h>
40 #include <linux/slab.h>
41 #include <linux/stat.h>
42 #include <linux/ctype.h>
43 #include <asm/bitops.h>
44 #include <asm/uaccess.h>
45 #include <linux/utsname.h>
46
47 #define DEBUG_SUBSYSTEM S_CLASS
48
49 #include <obd_support.h>
50 #include <lprocfs_status.h>
51 #include <obd_class.h>
52
53 #ifdef CONFIG_SYSCTL
54 static struct ctl_table_header *obd_table_header;
55 #endif
56
57 struct static_lustre_uintvalue_attr {
58         struct {
59                 struct attribute attr;
60                 ssize_t (*show)(struct kobject *kobj, struct attribute *attr,
61                                 char *buf);
62                 ssize_t (*store)(struct kobject *kobj, struct attribute *attr,
63                                  const char *buf, size_t len);
64         } u;
65         int *value;
66 };
67
68 static ssize_t static_uintvalue_show(struct kobject *kobj,
69                                      struct attribute *attr,
70                                      char *buf)
71 {
72         struct static_lustre_uintvalue_attr *lattr = (void *)attr;
73
74         return sprintf(buf, "%d\n", *lattr->value);
75 }
76
77 static ssize_t static_uintvalue_store(struct kobject *kobj,
78                                       struct attribute *attr,
79                                       const char *buffer, size_t count)
80 {
81         struct static_lustre_uintvalue_attr *lattr  = (void *)attr;
82         unsigned int val;
83         int rc;
84
85         rc = kstrtouint(buffer, 10, &val);
86         if (rc)
87                 return rc;
88
89         *lattr->value = val;
90
91         return count;
92 }
93
94 #define LUSTRE_STATIC_UINT_ATTR(name, value) \
95 static struct static_lustre_uintvalue_attr lustre_sattr_##name =        \
96                                         {__ATTR(name, 0644,             \
97                                                 static_uintvalue_show,  \
98                                                 static_uintvalue_store),\
99                                                 value }
100
101 LUSTRE_STATIC_UINT_ATTR(timeout, &obd_timeout);
102
103 static ssize_t max_dirty_mb_show(struct kobject *kobj, struct attribute *attr,
104                                  char *buf)
105 {
106         return sprintf(buf, "%lu\n",
107                        obd_max_dirty_pages / (1 << (20 - PAGE_SHIFT)));
108 }
109
110 static ssize_t max_dirty_mb_store(struct kobject *kobj, struct attribute *attr,
111                                   const char *buffer, size_t count)
112 {
113         unsigned long val;
114         int rc;
115
116         rc = kstrtoul(buffer, 10, &val);
117         if (rc)
118                 return rc;
119
120         val *= 1 << (20 - PAGE_SHIFT); /* convert to pages */
121
122         if (val > ((totalram_pages / 10) * 9)) {
123                 /* Somebody wants to assign too much memory to dirty pages */
124                 return -EINVAL;
125         }
126
127         if (val < 4 << (20 - PAGE_SHIFT)) {
128                 /* Less than 4 Mb for dirty cache is also bad */
129                 return -EINVAL;
130         }
131
132         obd_max_dirty_pages = val;
133
134         return count;
135 }
136 LUSTRE_RW_ATTR(max_dirty_mb);
137
138 LUSTRE_STATIC_UINT_ATTR(debug_peer_on_timeout, &obd_debug_peer_on_timeout);
139 LUSTRE_STATIC_UINT_ATTR(dump_on_timeout, &obd_dump_on_timeout);
140 LUSTRE_STATIC_UINT_ATTR(dump_on_eviction, &obd_dump_on_eviction);
141 LUSTRE_STATIC_UINT_ATTR(at_min, &at_min);
142 LUSTRE_STATIC_UINT_ATTR(at_max, &at_max);
143 LUSTRE_STATIC_UINT_ATTR(at_extra, &at_extra);
144 LUSTRE_STATIC_UINT_ATTR(at_early_margin, &at_early_margin);
145 LUSTRE_STATIC_UINT_ATTR(at_history, &at_history);
146
147 #ifdef HAVE_SERVER_SUPPORT
148 LUSTRE_STATIC_UINT_ATTR(ldlm_timeout, &ldlm_timeout);
149 LUSTRE_STATIC_UINT_ATTR(bulk_timeout, &bulk_timeout);
150 #endif
151
152 static ssize_t memused_show(struct kobject *kobj, struct attribute *attr,
153                             char *buf)
154 {
155         return sprintf(buf, "%llu\n", obd_memory_sum());
156 }
157 LUSTRE_RO_ATTR(memused);
158
159 static ssize_t memused_max_show(struct kobject *kobj, struct attribute *attr,
160                                 char *buf)
161 {
162         return sprintf(buf, "%llu\n", obd_memory_max());
163 }
164 LUSTRE_RO_ATTR(memused_max);
165
166 #ifdef CONFIG_SYSCTL
167 static struct ctl_table obd_table[] = {
168         { 0 }
169 };
170
171 static struct ctl_table parent_table[] = {
172         {
173                 INIT_CTL_NAME
174                 .procname       = "lustre",
175                 .data           = NULL,
176                 .maxlen         = 0,
177                 .mode           = 0555,
178                 .child          = obd_table
179         },
180         { 0 }
181 };
182 #endif
183
184 static struct attribute *lustre_attrs[] = {
185         &lustre_sattr_timeout.u.attr,
186         &lustre_attr_max_dirty_mb.attr,
187         &lustre_sattr_debug_peer_on_timeout.u.attr,
188         &lustre_sattr_dump_on_timeout.u.attr,
189         &lustre_sattr_dump_on_eviction.u.attr,
190         &lustre_sattr_at_min.u.attr,
191         &lustre_sattr_at_max.u.attr,
192         &lustre_sattr_at_extra.u.attr,
193         &lustre_sattr_at_early_margin.u.attr,
194         &lustre_sattr_at_history.u.attr,
195         &lustre_attr_memused_max.attr,
196         &lustre_attr_memused.attr,
197 #ifdef HAVE_SERVER_SUPPORT
198         &lustre_sattr_ldlm_timeout.u.attr,
199         &lustre_sattr_bulk_timeout.u.attr,
200 #endif
201         NULL,
202 };
203
204 static struct attribute_group lustre_attr_group = {
205         .attrs = lustre_attrs,
206 };
207
208 int obd_sysctl_init(void)
209 {
210 #ifdef CONFIG_SYSCTL
211         if ( !obd_table_header )
212                 obd_table_header = register_sysctl_table(parent_table);
213 #endif
214         return sysfs_create_group(lustre_kobj, &lustre_attr_group);
215 }
216
217 void obd_sysctl_clean (void)
218 {
219 #ifdef CONFIG_SYSCTL
220         if ( obd_table_header )
221                 unregister_sysctl_table(obd_table_header);
222         obd_table_header = NULL;
223 #endif
224 }