]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/orangefs/orangefs-sysfs.c
Merge tag 'mac80211-for-davem-2016-11-18' of git://git.kernel.org/pub/scm/linux/kerne...
[mirror_ubuntu-bionic-kernel.git] / fs / orangefs / orangefs-sysfs.c
CommitLineData
f7be4ee0
MM
1/*
2 * Documentation/ABI/stable/orangefs-sysfs:
3 *
4 * What: /sys/fs/orangefs/perf_counter_reset
5 * Date: June 2015
6 * Contact: Mike Marshall <hubcap@omnibond.com>
7 * Description:
8 * echo a 0 or a 1 into perf_counter_reset to
9 * reset all the counters in
10 * /sys/fs/orangefs/perf_counters
11 * except ones with PINT_PERF_PRESERVE set.
12 *
13 *
14 * What: /sys/fs/orangefs/perf_counters/...
15 * Date: Jun 2015
16 * Contact: Mike Marshall <hubcap@omnibond.com>
17 * Description:
18 * Counters and settings for various caches.
19 * Read only.
20 *
21 *
22 * What: /sys/fs/orangefs/perf_time_interval_secs
23 * Date: Jun 2015
24 * Contact: Mike Marshall <hubcap@omnibond.com>
25 * Description:
26 * Length of perf counter intervals in
27 * seconds.
28 *
29 *
30 * What: /sys/fs/orangefs/perf_history_size
31 * Date: Jun 2015
32 * Contact: Mike Marshall <hubcap@omnibond.com>
33 * Description:
34 * The perf_counters cache statistics have N, or
35 * perf_history_size, samples. The default is
36 * one.
37 *
38 * Every perf_time_interval_secs the (first)
39 * samples are reset.
40 *
41 * If N is greater than one, the "current" set
42 * of samples is reset, and the samples from the
43 * other N-1 intervals remain available.
44 *
45 *
46 * What: /sys/fs/orangefs/op_timeout_secs
47 * Date: Jun 2015
48 * Contact: Mike Marshall <hubcap@omnibond.com>
49 * Description:
50 * Service operation timeout in seconds.
51 *
52 *
53 * What: /sys/fs/orangefs/slot_timeout_secs
54 * Date: Jun 2015
55 * Contact: Mike Marshall <hubcap@omnibond.com>
56 * Description:
57 * "Slot" timeout in seconds. A "slot"
58 * is an indexed buffer in the shared
59 * memory segment used for communication
60 * between the kernel module and userspace.
61 * Slots are requested and waited for,
62 * the wait times out after slot_timeout_secs.
63 *
4cd8f319
MB
64 * What: /sys/fs/orangefs/dcache_timeout_msecs
65 * Date: Jul 2016
66 * Contact: Martin Brandenburg <martin@omnibond.com>
67 * Description:
68 * Time lookup is valid in milliseconds.
69 *
70 * What: /sys/fs/orangefs/getattr_timeout_msecs
71 * Date: Jul 2016
72 * Contact: Martin Brandenburg <martin@omnibond.com>
73 * Description:
74 * Time getattr is valid in milliseconds.
f7be4ee0 75 *
4d20a756
MB
76 * What: /sys/fs/orangefs/readahead_count
77 * Date: Aug 2016
78 * Contact: Martin Brandenburg <martin@omnibond.com>
79 * Description:
80 * Readahead cache buffer count.
81 *
82 * What: /sys/fs/orangefs/readahead_size
83 * Date: Aug 2016
84 * Contact: Martin Brandenburg <martin@omnibond.com>
85 * Description:
86 * Readahead cache buffer size.
87 *
88 * What: /sys/fs/orangefs/readahead_count_size
89 * Date: Aug 2016
90 * Contact: Martin Brandenburg <martin@omnibond.com>
91 * Description:
92 * Readahead cache buffer count and size.
93 *
f7be4ee0
MM
94 * What: /sys/fs/orangefs/acache/...
95 * Date: Jun 2015
4cd8f319 96 * Contact: Martin Brandenburg <martin@omnibond.com>
f7be4ee0
MM
97 * Description:
98 * Attribute cache configurable settings.
99 *
100 *
101 * What: /sys/fs/orangefs/ncache/...
102 * Date: Jun 2015
103 * Contact: Mike Marshall <hubcap@omnibond.com>
104 * Description:
105 * Name cache configurable settings.
106 *
107 *
108 * What: /sys/fs/orangefs/capcache/...
109 * Date: Jun 2015
110 * Contact: Mike Marshall <hubcap@omnibond.com>
111 * Description:
112 * Capability cache configurable settings.
113 *
114 *
115 * What: /sys/fs/orangefs/ccache/...
116 * Date: Jun 2015
117 * Contact: Mike Marshall <hubcap@omnibond.com>
118 * Description:
119 * Credential cache configurable settings.
120 *
121 */
122
123#include <linux/fs.h>
124#include <linux/kobject.h>
125#include <linux/string.h>
126#include <linux/sysfs.h>
127#include <linux/module.h>
128#include <linux/init.h>
129
130#include "protocol.h"
575e9461
MM
131#include "orangefs-kernel.h"
132#include "orangefs-sysfs.h"
f7be4ee0
MM
133
134#define ORANGEFS_KOBJ_ID "orangefs"
135#define ACACHE_KOBJ_ID "acache"
136#define CAPCACHE_KOBJ_ID "capcache"
137#define CCACHE_KOBJ_ID "ccache"
138#define NCACHE_KOBJ_ID "ncache"
139#define PC_KOBJ_ID "pc"
140#define STATS_KOBJ_ID "stats"
141
c27889cd
MB
142/*
143 * Every item calls orangefs_attr_show and orangefs_attr_store through
144 * orangefs_sysfs_ops. They look at the orangefs_attributes further below to
145 * call one of sysfs_int_show, sysfs_int_store, sysfs_service_op_show, or
146 * sysfs_service_op_store.
147 */
f7be4ee0
MM
148
149struct orangefs_attribute {
150 struct attribute attr;
7b0cae60 151 ssize_t (*show)(struct kobject *kobj,
f7be4ee0
MM
152 struct orangefs_attribute *attr,
153 char *buf);
7b0cae60 154 ssize_t (*store)(struct kobject *kobj,
f7be4ee0
MM
155 struct orangefs_attribute *attr,
156 const char *buf,
157 size_t count);
158};
159
f7be4ee0
MM
160static ssize_t orangefs_attr_show(struct kobject *kobj,
161 struct attribute *attr,
162 char *buf)
163{
164 struct orangefs_attribute *attribute;
f7be4ee0
MM
165
166 attribute = container_of(attr, struct orangefs_attribute, attr);
4a343664
MB
167 if (!attribute->show)
168 return -EIO;
169 return attribute->show(kobj, attribute, buf);
f7be4ee0
MM
170}
171
172static ssize_t orangefs_attr_store(struct kobject *kobj,
173 struct attribute *attr,
174 const char *buf,
175 size_t len)
176{
177 struct orangefs_attribute *attribute;
f7be4ee0 178
4a343664
MB
179 if (!strcmp(kobj->name, PC_KOBJ_ID) ||
180 !strcmp(kobj->name, STATS_KOBJ_ID))
181 return -EPERM;
f7be4ee0
MM
182
183 attribute = container_of(attr, struct orangefs_attribute, attr);
4a343664
MB
184 if (!attribute->store)
185 return -EIO;
186 return attribute->store(kobj, attribute, buf, len);
f7be4ee0
MM
187}
188
189static const struct sysfs_ops orangefs_sysfs_ops = {
190 .show = orangefs_attr_show,
191 .store = orangefs_attr_store,
192};
193
7b0cae60
MB
194static ssize_t sysfs_int_show(struct kobject *kobj,
195 struct orangefs_attribute *attr, char *buf)
f7be4ee0
MM
196{
197 int rc = -EIO;
f7be4ee0 198
7b0cae60
MB
199 gossip_debug(GOSSIP_SYSFS_DEBUG, "sysfs_int_show: id:%s:\n",
200 kobj->name);
f7be4ee0 201
7b0cae60
MB
202 if (!strcmp(kobj->name, ORANGEFS_KOBJ_ID)) {
203 if (!strcmp(attr->attr.name, "op_timeout_secs")) {
f7be4ee0
MM
204 rc = scnprintf(buf,
205 PAGE_SIZE,
206 "%d\n",
207 op_timeout_secs);
208 goto out;
7b0cae60 209 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
210 "slot_timeout_secs")) {
211 rc = scnprintf(buf,
212 PAGE_SIZE,
213 "%d\n",
214 slot_timeout_secs);
215 goto out;
7b0cae60 216 } else if (!strcmp(attr->attr.name,
4cd8f319
MB
217 "dcache_timeout_msecs")) {
218 rc = scnprintf(buf,
219 PAGE_SIZE,
220 "%d\n",
1d503617 221 orangefs_dcache_timeout_msecs);
4cd8f319 222 goto out;
7b0cae60 223 } else if (!strcmp(attr->attr.name,
4cd8f319
MB
224 "getattr_timeout_msecs")) {
225 rc = scnprintf(buf,
226 PAGE_SIZE,
227 "%d\n",
1d503617 228 orangefs_getattr_timeout_msecs);
4cd8f319 229 goto out;
f7be4ee0
MM
230 } else {
231 goto out;
232 }
233
7b0cae60
MB
234 } else if (!strcmp(kobj->name, STATS_KOBJ_ID)) {
235 if (!strcmp(attr->attr.name, "reads")) {
f7be4ee0
MM
236 rc = scnprintf(buf,
237 PAGE_SIZE,
238 "%lu\n",
889d5f1b 239 orangefs_stats.reads);
f7be4ee0 240 goto out;
7b0cae60 241 } else if (!strcmp(attr->attr.name, "writes")) {
f7be4ee0
MM
242 rc = scnprintf(buf,
243 PAGE_SIZE,
244 "%lu\n",
889d5f1b 245 orangefs_stats.writes);
f7be4ee0
MM
246 goto out;
247 } else {
248 goto out;
249 }
250 }
251
252out:
253
254 return rc;
255}
256
7b0cae60
MB
257static ssize_t sysfs_int_store(struct kobject *kobj,
258 struct orangefs_attribute *attr, const char *buf, size_t count)
f7be4ee0
MM
259{
260 int rc = 0;
261
262 gossip_debug(GOSSIP_SYSFS_DEBUG,
7b0cae60 263 "sysfs_int_store: start attr->attr.name:%s: buf:%s:\n",
f7be4ee0
MM
264 attr->attr.name, buf);
265
266 if (!strcmp(attr->attr.name, "op_timeout_secs")) {
267 rc = kstrtoint(buf, 0, &op_timeout_secs);
268 goto out;
269 } else if (!strcmp(attr->attr.name, "slot_timeout_secs")) {
270 rc = kstrtoint(buf, 0, &slot_timeout_secs);
271 goto out;
4cd8f319 272 } else if (!strcmp(attr->attr.name, "dcache_timeout_msecs")) {
1d503617 273 rc = kstrtoint(buf, 0, &orangefs_dcache_timeout_msecs);
4cd8f319
MB
274 goto out;
275 } else if (!strcmp(attr->attr.name, "getattr_timeout_msecs")) {
1d503617 276 rc = kstrtoint(buf, 0, &orangefs_getattr_timeout_msecs);
4cd8f319 277 goto out;
f7be4ee0
MM
278 } else {
279 goto out;
280 }
281
282out:
283 if (rc)
284 rc = -EINVAL;
285 else
286 rc = count;
287
288 return rc;
289}
290
291/*
292 * obtain attribute values from userspace with a service operation.
293 */
7b0cae60
MB
294static ssize_t sysfs_service_op_show(struct kobject *kobj,
295 struct orangefs_attribute *attr, char *buf)
f7be4ee0 296{
8bb8aefd 297 struct orangefs_kernel_op_s *new_op = NULL;
f7be4ee0
MM
298 int rc = 0;
299 char *ser_op_type = NULL;
f7be4ee0
MM
300 __u32 op_alloc_type;
301
302 gossip_debug(GOSSIP_SYSFS_DEBUG,
303 "sysfs_service_op_show: id:%s:\n",
7b0cae60 304 kobj->name);
f7be4ee0 305
7b0cae60 306 if (strcmp(kobj->name, PC_KOBJ_ID))
8bb8aefd 307 op_alloc_type = ORANGEFS_VFS_OP_PARAM;
f7be4ee0 308 else
8bb8aefd 309 op_alloc_type = ORANGEFS_VFS_OP_PERF_COUNT;
f7be4ee0
MM
310
311 new_op = op_alloc(op_alloc_type);
ed42fe05
AV
312 if (!new_op)
313 return -ENOMEM;
f7be4ee0
MM
314
315 /* Can't do a service_operation if the client is not running... */
316 rc = is_daemon_in_service();
317 if (rc) {
318 pr_info("%s: Client not running :%d:\n",
319 __func__,
320 is_daemon_in_service());
321 goto out;
322 }
323
7b0cae60 324 if (strcmp(kobj->name, PC_KOBJ_ID))
8bb8aefd 325 new_op->upcall.req.param.type = ORANGEFS_PARAM_REQUEST_GET;
f7be4ee0 326
7b0cae60 327 if (!strcmp(kobj->name, ORANGEFS_KOBJ_ID)) {
c51e0129
MB
328 /* Drop unsupported requests first. */
329 if (!(orangefs_features & ORANGEFS_FEATURE_READAHEAD) &&
b78b1198
MB
330 (!strcmp(attr->attr.name, "readahead_count") ||
331 !strcmp(attr->attr.name, "readahead_size") ||
332 !strcmp(attr->attr.name, "readahead_count_size"))) {
c51e0129
MB
333 rc = -EINVAL;
334 goto out;
335 }
336
7b0cae60 337 if (!strcmp(attr->attr.name, "perf_history_size"))
f7be4ee0 338 new_op->upcall.req.param.op =
8bb8aefd 339 ORANGEFS_PARAM_REQUEST_OP_PERF_HISTORY_SIZE;
7b0cae60 340 else if (!strcmp(attr->attr.name,
f7be4ee0
MM
341 "perf_time_interval_secs"))
342 new_op->upcall.req.param.op =
8bb8aefd 343 ORANGEFS_PARAM_REQUEST_OP_PERF_TIME_INTERVAL_SECS;
7b0cae60 344 else if (!strcmp(attr->attr.name,
f7be4ee0
MM
345 "perf_counter_reset"))
346 new_op->upcall.req.param.op =
8bb8aefd 347 ORANGEFS_PARAM_REQUEST_OP_PERF_RESET;
f7be4ee0 348
7b0cae60 349 else if (!strcmp(attr->attr.name,
4d20a756
MB
350 "readahead_count"))
351 new_op->upcall.req.param.op =
352 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT;
353
7b0cae60 354 else if (!strcmp(attr->attr.name,
4d20a756
MB
355 "readahead_size"))
356 new_op->upcall.req.param.op =
357 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_SIZE;
358
7b0cae60 359 else if (!strcmp(attr->attr.name,
4d20a756
MB
360 "readahead_count_size"))
361 new_op->upcall.req.param.op =
362 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT_SIZE;
7b0cae60
MB
363 } else if (!strcmp(kobj->name, ACACHE_KOBJ_ID)) {
364 if (!strcmp(attr->attr.name, "timeout_msecs"))
f7be4ee0 365 new_op->upcall.req.param.op =
8bb8aefd 366 ORANGEFS_PARAM_REQUEST_OP_ACACHE_TIMEOUT_MSECS;
f7be4ee0 367
7b0cae60 368 if (!strcmp(attr->attr.name, "hard_limit"))
f7be4ee0 369 new_op->upcall.req.param.op =
8bb8aefd 370 ORANGEFS_PARAM_REQUEST_OP_ACACHE_HARD_LIMIT;
f7be4ee0 371
7b0cae60 372 if (!strcmp(attr->attr.name, "soft_limit"))
f7be4ee0 373 new_op->upcall.req.param.op =
8bb8aefd 374 ORANGEFS_PARAM_REQUEST_OP_ACACHE_SOFT_LIMIT;
f7be4ee0 375
7b0cae60 376 if (!strcmp(attr->attr.name, "reclaim_percentage"))
f7be4ee0 377 new_op->upcall.req.param.op =
8bb8aefd 378 ORANGEFS_PARAM_REQUEST_OP_ACACHE_RECLAIM_PERCENTAGE;
f7be4ee0 379
7b0cae60
MB
380 } else if (!strcmp(kobj->name, CAPCACHE_KOBJ_ID)) {
381 if (!strcmp(attr->attr.name, "timeout_secs"))
f7be4ee0 382 new_op->upcall.req.param.op =
8bb8aefd 383 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_TIMEOUT_SECS;
f7be4ee0 384
7b0cae60 385 if (!strcmp(attr->attr.name, "hard_limit"))
f7be4ee0 386 new_op->upcall.req.param.op =
8bb8aefd 387 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_HARD_LIMIT;
f7be4ee0 388
7b0cae60 389 if (!strcmp(attr->attr.name, "soft_limit"))
f7be4ee0 390 new_op->upcall.req.param.op =
8bb8aefd 391 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_SOFT_LIMIT;
f7be4ee0 392
7b0cae60 393 if (!strcmp(attr->attr.name, "reclaim_percentage"))
f7be4ee0 394 new_op->upcall.req.param.op =
8bb8aefd 395 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_RECLAIM_PERCENTAGE;
f7be4ee0 396
7b0cae60
MB
397 } else if (!strcmp(kobj->name, CCACHE_KOBJ_ID)) {
398 if (!strcmp(attr->attr.name, "timeout_secs"))
f7be4ee0 399 new_op->upcall.req.param.op =
8bb8aefd 400 ORANGEFS_PARAM_REQUEST_OP_CCACHE_TIMEOUT_SECS;
f7be4ee0 401
7b0cae60 402 if (!strcmp(attr->attr.name, "hard_limit"))
f7be4ee0 403 new_op->upcall.req.param.op =
8bb8aefd 404 ORANGEFS_PARAM_REQUEST_OP_CCACHE_HARD_LIMIT;
f7be4ee0 405
7b0cae60 406 if (!strcmp(attr->attr.name, "soft_limit"))
f7be4ee0 407 new_op->upcall.req.param.op =
8bb8aefd 408 ORANGEFS_PARAM_REQUEST_OP_CCACHE_SOFT_LIMIT;
f7be4ee0 409
7b0cae60 410 if (!strcmp(attr->attr.name, "reclaim_percentage"))
f7be4ee0 411 new_op->upcall.req.param.op =
8bb8aefd 412 ORANGEFS_PARAM_REQUEST_OP_CCACHE_RECLAIM_PERCENTAGE;
f7be4ee0 413
7b0cae60
MB
414 } else if (!strcmp(kobj->name, NCACHE_KOBJ_ID)) {
415 if (!strcmp(attr->attr.name, "timeout_msecs"))
f7be4ee0 416 new_op->upcall.req.param.op =
8bb8aefd 417 ORANGEFS_PARAM_REQUEST_OP_NCACHE_TIMEOUT_MSECS;
f7be4ee0 418
7b0cae60 419 if (!strcmp(attr->attr.name, "hard_limit"))
f7be4ee0 420 new_op->upcall.req.param.op =
8bb8aefd 421 ORANGEFS_PARAM_REQUEST_OP_NCACHE_HARD_LIMIT;
f7be4ee0 422
7b0cae60 423 if (!strcmp(attr->attr.name, "soft_limit"))
f7be4ee0 424 new_op->upcall.req.param.op =
8bb8aefd 425 ORANGEFS_PARAM_REQUEST_OP_NCACHE_SOFT_LIMIT;
f7be4ee0 426
7b0cae60 427 if (!strcmp(attr->attr.name, "reclaim_percentage"))
f7be4ee0 428 new_op->upcall.req.param.op =
8bb8aefd 429 ORANGEFS_PARAM_REQUEST_OP_NCACHE_RECLAIM_PERCENTAGE;
f7be4ee0 430
7b0cae60
MB
431 } else if (!strcmp(kobj->name, PC_KOBJ_ID)) {
432 if (!strcmp(attr->attr.name, ACACHE_KOBJ_ID))
f7be4ee0 433 new_op->upcall.req.perf_count.type =
8bb8aefd 434 ORANGEFS_PERF_COUNT_REQUEST_ACACHE;
f7be4ee0 435
7b0cae60 436 if (!strcmp(attr->attr.name, CAPCACHE_KOBJ_ID))
f7be4ee0 437 new_op->upcall.req.perf_count.type =
8bb8aefd 438 ORANGEFS_PERF_COUNT_REQUEST_CAPCACHE;
f7be4ee0 439
7b0cae60 440 if (!strcmp(attr->attr.name, NCACHE_KOBJ_ID))
f7be4ee0 441 new_op->upcall.req.perf_count.type =
8bb8aefd 442 ORANGEFS_PERF_COUNT_REQUEST_NCACHE;
f7be4ee0
MM
443
444 } else {
445 gossip_err("sysfs_service_op_show: unknown kobj_id:%s:\n",
7b0cae60 446 kobj->name);
f7be4ee0
MM
447 rc = -EINVAL;
448 goto out;
449 }
450
451
7b0cae60 452 if (strcmp(kobj->name, PC_KOBJ_ID))
8bb8aefd 453 ser_op_type = "orangefs_param";
f7be4ee0 454 else
8bb8aefd 455 ser_op_type = "orangefs_perf_count";
f7be4ee0
MM
456
457 /*
458 * The service_operation will return an errno return code on
459 * error, and zero on success.
460 */
8bb8aefd 461 rc = service_operation(new_op, ser_op_type, ORANGEFS_OP_INTERRUPTIBLE);
f7be4ee0
MM
462
463out:
464 if (!rc) {
7b0cae60 465 if (strcmp(kobj->name, PC_KOBJ_ID)) {
4d20a756
MB
466 if (new_op->upcall.req.param.op ==
467 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT_SIZE) {
468 rc = scnprintf(buf, PAGE_SIZE, "%d %d\n",
469 (int)new_op->downcall.resp.param.u.
470 value32[0],
471 (int)new_op->downcall.resp.param.u.
472 value32[1]);
473 } else {
474 rc = scnprintf(buf, PAGE_SIZE, "%d\n",
475 (int)new_op->downcall.resp.param.u.value64);
476 }
f7be4ee0
MM
477 } else {
478 rc = scnprintf(
479 buf,
480 PAGE_SIZE,
481 "%s",
482 new_op->downcall.resp.perf_count.buffer);
483 }
484 }
485
ed42fe05 486 op_release(new_op);
f7be4ee0
MM
487
488 return rc;
489
490}
491
f7be4ee0
MM
492/*
493 * pass attribute values back to userspace with a service operation.
494 *
495 * We have to do a memory allocation, an sscanf and a service operation.
496 * And we have to evaluate what the user entered, to make sure the
497 * value is within the range supported by the attribute. So, there's
498 * a lot of return code checking and mapping going on here.
499 *
500 * We want to return 1 if we think everything went OK, and
501 * EINVAL if not.
502 */
7b0cae60
MB
503static ssize_t sysfs_service_op_store(struct kobject *kobj,
504 struct orangefs_attribute *attr, const char *buf, size_t count)
f7be4ee0 505{
8bb8aefd 506 struct orangefs_kernel_op_s *new_op = NULL;
f7be4ee0
MM
507 int val = 0;
508 int rc = 0;
f7be4ee0
MM
509
510 gossip_debug(GOSSIP_SYSFS_DEBUG,
511 "sysfs_service_op_store: id:%s:\n",
7b0cae60 512 kobj->name);
f7be4ee0 513
8bb8aefd 514 new_op = op_alloc(ORANGEFS_VFS_OP_PARAM);
ed42fe05
AV
515 if (!new_op)
516 return -EINVAL; /* sic */
f7be4ee0
MM
517
518 /* Can't do a service_operation if the client is not running... */
519 rc = is_daemon_in_service();
520 if (rc) {
521 pr_info("%s: Client not running :%d:\n",
522 __func__,
523 is_daemon_in_service());
524 goto out;
525 }
526
527 /*
4d20a756
MB
528 * The value we want to send back to userspace is in buf, unless this
529 * there are two parameters, which is specially handled below.
f7be4ee0 530 */
7b0cae60
MB
531 if (strcmp(kobj->name, ORANGEFS_KOBJ_ID) ||
532 strcmp(attr->attr.name, "readahead_count_size")) {
4d20a756
MB
533 rc = kstrtoint(buf, 0, &val);
534 if (rc)
535 goto out;
536 }
537
538 new_op->upcall.req.param.type = ORANGEFS_PARAM_REQUEST_SET;
f7be4ee0 539
7b0cae60 540 if (!strcmp(kobj->name, ORANGEFS_KOBJ_ID)) {
c51e0129
MB
541 /* Drop unsupported requests first. */
542 if (!(orangefs_features & ORANGEFS_FEATURE_READAHEAD) &&
b78b1198
MB
543 (!strcmp(attr->attr.name, "readahead_count") ||
544 !strcmp(attr->attr.name, "readahead_size") ||
545 !strcmp(attr->attr.name, "readahead_count_size"))) {
c51e0129
MB
546 rc = -EINVAL;
547 goto out;
548 }
f7be4ee0 549
7b0cae60 550 if (!strcmp(attr->attr.name, "perf_history_size")) {
f7be4ee0
MM
551 if (val > 0) {
552 new_op->upcall.req.param.op =
8bb8aefd 553 ORANGEFS_PARAM_REQUEST_OP_PERF_HISTORY_SIZE;
f7be4ee0
MM
554 } else {
555 rc = 0;
556 goto out;
557 }
7b0cae60 558 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
559 "perf_time_interval_secs")) {
560 if (val > 0) {
561 new_op->upcall.req.param.op =
8bb8aefd 562 ORANGEFS_PARAM_REQUEST_OP_PERF_TIME_INTERVAL_SECS;
f7be4ee0
MM
563 } else {
564 rc = 0;
565 goto out;
566 }
7b0cae60 567 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
568 "perf_counter_reset")) {
569 if ((val == 0) || (val == 1)) {
570 new_op->upcall.req.param.op =
8bb8aefd 571 ORANGEFS_PARAM_REQUEST_OP_PERF_RESET;
f7be4ee0
MM
572 } else {
573 rc = 0;
574 goto out;
575 }
7b0cae60 576 } else if (!strcmp(attr->attr.name,
4d20a756
MB
577 "readahead_count")) {
578 if ((val >= 0)) {
579 new_op->upcall.req.param.op =
580 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT;
581 } else {
582 rc = 0;
583 goto out;
584 }
7b0cae60 585 } else if (!strcmp(attr->attr.name,
4d20a756
MB
586 "readahead_size")) {
587 if ((val >= 0)) {
588 new_op->upcall.req.param.op =
589 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_SIZE;
590 } else {
591 rc = 0;
592 goto out;
593 }
7b0cae60 594 } else if (!strcmp(attr->attr.name,
4d20a756
MB
595 "readahead_count_size")) {
596 int val1, val2;
597 rc = sscanf(buf, "%d %d", &val1, &val2);
598 if (rc < 2) {
599 rc = 0;
600 goto out;
601 }
602 if ((val1 >= 0) && (val2 >= 0)) {
603 new_op->upcall.req.param.op =
604 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT_SIZE;
605 } else {
606 rc = 0;
607 goto out;
608 }
609 new_op->upcall.req.param.u.value32[0] = val1;
610 new_op->upcall.req.param.u.value32[1] = val2;
611 goto value_set;
7b0cae60 612 } else if (!strcmp(attr->attr.name,
4d20a756
MB
613 "perf_counter_reset")) {
614 if ((val > 0)) {
615 new_op->upcall.req.param.op =
616 ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT_SIZE;
617 } else {
618 rc = 0;
619 goto out;
620 }
f7be4ee0
MM
621 }
622
7b0cae60
MB
623 } else if (!strcmp(kobj->name, ACACHE_KOBJ_ID)) {
624 if (!strcmp(attr->attr.name, "hard_limit")) {
f7be4ee0
MM
625 if (val > -1) {
626 new_op->upcall.req.param.op =
8bb8aefd 627 ORANGEFS_PARAM_REQUEST_OP_ACACHE_HARD_LIMIT;
f7be4ee0
MM
628 } else {
629 rc = 0;
630 goto out;
631 }
7b0cae60 632 } else if (!strcmp(attr->attr.name, "soft_limit")) {
f7be4ee0
MM
633 if (val > -1) {
634 new_op->upcall.req.param.op =
8bb8aefd 635 ORANGEFS_PARAM_REQUEST_OP_ACACHE_SOFT_LIMIT;
f7be4ee0
MM
636 } else {
637 rc = 0;
638 goto out;
639 }
7b0cae60 640 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
641 "reclaim_percentage")) {
642 if ((val > -1) && (val < 101)) {
643 new_op->upcall.req.param.op =
8bb8aefd 644 ORANGEFS_PARAM_REQUEST_OP_ACACHE_RECLAIM_PERCENTAGE;
f7be4ee0
MM
645 } else {
646 rc = 0;
647 goto out;
648 }
7b0cae60 649 } else if (!strcmp(attr->attr.name, "timeout_msecs")) {
f7be4ee0
MM
650 if (val > -1) {
651 new_op->upcall.req.param.op =
8bb8aefd 652 ORANGEFS_PARAM_REQUEST_OP_ACACHE_TIMEOUT_MSECS;
f7be4ee0
MM
653 } else {
654 rc = 0;
655 goto out;
656 }
657 }
658
7b0cae60
MB
659 } else if (!strcmp(kobj->name, CAPCACHE_KOBJ_ID)) {
660 if (!strcmp(attr->attr.name, "hard_limit")) {
f7be4ee0
MM
661 if (val > -1) {
662 new_op->upcall.req.param.op =
8bb8aefd 663 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_HARD_LIMIT;
f7be4ee0
MM
664 } else {
665 rc = 0;
666 goto out;
667 }
7b0cae60 668 } else if (!strcmp(attr->attr.name, "soft_limit")) {
f7be4ee0
MM
669 if (val > -1) {
670 new_op->upcall.req.param.op =
8bb8aefd 671 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_SOFT_LIMIT;
f7be4ee0
MM
672 } else {
673 rc = 0;
674 goto out;
675 }
7b0cae60 676 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
677 "reclaim_percentage")) {
678 if ((val > -1) && (val < 101)) {
679 new_op->upcall.req.param.op =
8bb8aefd 680 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_RECLAIM_PERCENTAGE;
f7be4ee0
MM
681 } else {
682 rc = 0;
683 goto out;
684 }
7b0cae60 685 } else if (!strcmp(attr->attr.name, "timeout_secs")) {
f7be4ee0
MM
686 if (val > -1) {
687 new_op->upcall.req.param.op =
8bb8aefd 688 ORANGEFS_PARAM_REQUEST_OP_CAPCACHE_TIMEOUT_SECS;
f7be4ee0
MM
689 } else {
690 rc = 0;
691 goto out;
692 }
693 }
694
7b0cae60
MB
695 } else if (!strcmp(kobj->name, CCACHE_KOBJ_ID)) {
696 if (!strcmp(attr->attr.name, "hard_limit")) {
f7be4ee0
MM
697 if (val > -1) {
698 new_op->upcall.req.param.op =
8bb8aefd 699 ORANGEFS_PARAM_REQUEST_OP_CCACHE_HARD_LIMIT;
f7be4ee0
MM
700 } else {
701 rc = 0;
702 goto out;
703 }
7b0cae60 704 } else if (!strcmp(attr->attr.name, "soft_limit")) {
f7be4ee0
MM
705 if (val > -1) {
706 new_op->upcall.req.param.op =
8bb8aefd 707 ORANGEFS_PARAM_REQUEST_OP_CCACHE_SOFT_LIMIT;
f7be4ee0
MM
708 } else {
709 rc = 0;
710 goto out;
711 }
7b0cae60 712 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
713 "reclaim_percentage")) {
714 if ((val > -1) && (val < 101)) {
715 new_op->upcall.req.param.op =
8bb8aefd 716 ORANGEFS_PARAM_REQUEST_OP_CCACHE_RECLAIM_PERCENTAGE;
f7be4ee0
MM
717 } else {
718 rc = 0;
719 goto out;
720 }
7b0cae60 721 } else if (!strcmp(attr->attr.name, "timeout_secs")) {
f7be4ee0
MM
722 if (val > -1) {
723 new_op->upcall.req.param.op =
8bb8aefd 724 ORANGEFS_PARAM_REQUEST_OP_CCACHE_TIMEOUT_SECS;
f7be4ee0
MM
725 } else {
726 rc = 0;
727 goto out;
728 }
729 }
730
7b0cae60
MB
731 } else if (!strcmp(kobj->name, NCACHE_KOBJ_ID)) {
732 if (!strcmp(attr->attr.name, "hard_limit")) {
f7be4ee0
MM
733 if (val > -1) {
734 new_op->upcall.req.param.op =
8bb8aefd 735 ORANGEFS_PARAM_REQUEST_OP_NCACHE_HARD_LIMIT;
f7be4ee0
MM
736 } else {
737 rc = 0;
738 goto out;
739 }
7b0cae60 740 } else if (!strcmp(attr->attr.name, "soft_limit")) {
f7be4ee0
MM
741 if (val > -1) {
742 new_op->upcall.req.param.op =
8bb8aefd 743 ORANGEFS_PARAM_REQUEST_OP_NCACHE_SOFT_LIMIT;
f7be4ee0
MM
744 } else {
745 rc = 0;
746 goto out;
747 }
7b0cae60 748 } else if (!strcmp(attr->attr.name,
f7be4ee0
MM
749 "reclaim_percentage")) {
750 if ((val > -1) && (val < 101)) {
751 new_op->upcall.req.param.op =
8bb8aefd 752 ORANGEFS_PARAM_REQUEST_OP_NCACHE_RECLAIM_PERCENTAGE;
f7be4ee0
MM
753 } else {
754 rc = 0;
755 goto out;
756 }
7b0cae60 757 } else if (!strcmp(attr->attr.name, "timeout_msecs")) {
f7be4ee0
MM
758 if (val > -1) {
759 new_op->upcall.req.param.op =
8bb8aefd 760 ORANGEFS_PARAM_REQUEST_OP_NCACHE_TIMEOUT_MSECS;
f7be4ee0
MM
761 } else {
762 rc = 0;
763 goto out;
764 }
765 }
766
767 } else {
768 gossip_err("sysfs_service_op_store: unknown kobj_id:%s:\n",
7b0cae60 769 kobj->name);
f7be4ee0
MM
770 rc = -EINVAL;
771 goto out;
772 }
773
680908e5 774 new_op->upcall.req.param.u.value64 = val;
4d20a756 775value_set:
f7be4ee0
MM
776
777 /*
778 * The service_operation will return a errno return code on
779 * error, and zero on success.
780 */
8bb8aefd 781 rc = service_operation(new_op, "orangefs_param", ORANGEFS_OP_INTERRUPTIBLE);
f7be4ee0
MM
782
783 if (rc < 0) {
784 gossip_err("sysfs_service_op_store: service op returned:%d:\n",
785 rc);
786 rc = 0;
787 } else {
7b0cae60 788 rc = count;
f7be4ee0
MM
789 }
790
791out:
ed42fe05 792 op_release(new_op);
f7be4ee0 793
ed42fe05 794 if (rc == -ENOMEM || rc == 0)
f7be4ee0
MM
795 rc = -EINVAL;
796
797 return rc;
798}
799
f7be4ee0 800static struct orangefs_attribute op_timeout_secs_attribute =
7b0cae60 801 __ATTR(op_timeout_secs, 0664, sysfs_int_show, sysfs_int_store);
f7be4ee0
MM
802
803static struct orangefs_attribute slot_timeout_secs_attribute =
7b0cae60 804 __ATTR(slot_timeout_secs, 0664, sysfs_int_show, sysfs_int_store);
f7be4ee0 805
4cd8f319 806static struct orangefs_attribute dcache_timeout_msecs_attribute =
7b0cae60 807 __ATTR(dcache_timeout_msecs, 0664, sysfs_int_show, sysfs_int_store);
4cd8f319
MB
808
809static struct orangefs_attribute getattr_timeout_msecs_attribute =
7b0cae60 810 __ATTR(getattr_timeout_msecs, 0664, sysfs_int_show, sysfs_int_store);
4cd8f319 811
4d20a756 812static struct orangefs_attribute readahead_count_attribute =
7b0cae60
MB
813 __ATTR(readahead_count, 0664, sysfs_service_op_show,
814 sysfs_service_op_store);
4d20a756
MB
815
816static struct orangefs_attribute readahead_size_attribute =
7b0cae60
MB
817 __ATTR(readahead_size, 0664, sysfs_service_op_show,
818 sysfs_service_op_store);
4d20a756
MB
819
820static struct orangefs_attribute readahead_count_size_attribute =
7b0cae60
MB
821 __ATTR(readahead_count_size, 0664, sysfs_service_op_show,
822 sysfs_service_op_store);
4d20a756 823
f7be4ee0
MM
824static struct orangefs_attribute perf_counter_reset_attribute =
825 __ATTR(perf_counter_reset,
826 0664,
7b0cae60
MB
827 sysfs_service_op_show,
828 sysfs_service_op_store);
f7be4ee0
MM
829
830static struct orangefs_attribute perf_history_size_attribute =
831 __ATTR(perf_history_size,
832 0664,
7b0cae60
MB
833 sysfs_service_op_show,
834 sysfs_service_op_store);
f7be4ee0
MM
835
836static struct orangefs_attribute perf_time_interval_secs_attribute =
837 __ATTR(perf_time_interval_secs,
838 0664,
7b0cae60
MB
839 sysfs_service_op_show,
840 sysfs_service_op_store);
f7be4ee0
MM
841
842static struct attribute *orangefs_default_attrs[] = {
843 &op_timeout_secs_attribute.attr,
844 &slot_timeout_secs_attribute.attr,
4cd8f319
MB
845 &dcache_timeout_msecs_attribute.attr,
846 &getattr_timeout_msecs_attribute.attr,
4d20a756
MB
847 &readahead_count_attribute.attr,
848 &readahead_size_attribute.attr,
849 &readahead_count_size_attribute.attr,
f7be4ee0
MM
850 &perf_counter_reset_attribute.attr,
851 &perf_history_size_attribute.attr,
852 &perf_time_interval_secs_attribute.attr,
853 NULL,
854};
855
856static struct kobj_type orangefs_ktype = {
857 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
858 .default_attrs = orangefs_default_attrs,
859};
860
2e9f80da 861static struct orangefs_attribute acache_hard_limit_attribute =
f7be4ee0
MM
862 __ATTR(hard_limit,
863 0664,
7b0cae60
MB
864 sysfs_service_op_show,
865 sysfs_service_op_store);
f7be4ee0 866
2e9f80da 867static struct orangefs_attribute acache_reclaim_percent_attribute =
f7be4ee0
MM
868 __ATTR(reclaim_percentage,
869 0664,
7b0cae60
MB
870 sysfs_service_op_show,
871 sysfs_service_op_store);
f7be4ee0 872
2e9f80da 873static struct orangefs_attribute acache_soft_limit_attribute =
f7be4ee0
MM
874 __ATTR(soft_limit,
875 0664,
7b0cae60
MB
876 sysfs_service_op_show,
877 sysfs_service_op_store);
f7be4ee0 878
2e9f80da 879static struct orangefs_attribute acache_timeout_msecs_attribute =
f7be4ee0
MM
880 __ATTR(timeout_msecs,
881 0664,
7b0cae60
MB
882 sysfs_service_op_show,
883 sysfs_service_op_store);
f7be4ee0
MM
884
885static struct attribute *acache_orangefs_default_attrs[] = {
886 &acache_hard_limit_attribute.attr,
887 &acache_reclaim_percent_attribute.attr,
888 &acache_soft_limit_attribute.attr,
889 &acache_timeout_msecs_attribute.attr,
890 NULL,
891};
892
893static struct kobj_type acache_orangefs_ktype = {
4a343664 894 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
895 .default_attrs = acache_orangefs_default_attrs,
896};
897
2e9f80da 898static struct orangefs_attribute capcache_hard_limit_attribute =
f7be4ee0
MM
899 __ATTR(hard_limit,
900 0664,
7b0cae60
MB
901 sysfs_service_op_show,
902 sysfs_service_op_store);
f7be4ee0 903
2e9f80da 904static struct orangefs_attribute capcache_reclaim_percent_attribute =
f7be4ee0
MM
905 __ATTR(reclaim_percentage,
906 0664,
7b0cae60
MB
907 sysfs_service_op_show,
908 sysfs_service_op_store);
f7be4ee0 909
2e9f80da 910static struct orangefs_attribute capcache_soft_limit_attribute =
f7be4ee0
MM
911 __ATTR(soft_limit,
912 0664,
7b0cae60
MB
913 sysfs_service_op_show,
914 sysfs_service_op_store);
f7be4ee0 915
2e9f80da 916static struct orangefs_attribute capcache_timeout_secs_attribute =
f7be4ee0
MM
917 __ATTR(timeout_secs,
918 0664,
7b0cae60
MB
919 sysfs_service_op_show,
920 sysfs_service_op_store);
f7be4ee0
MM
921
922static struct attribute *capcache_orangefs_default_attrs[] = {
923 &capcache_hard_limit_attribute.attr,
924 &capcache_reclaim_percent_attribute.attr,
925 &capcache_soft_limit_attribute.attr,
926 &capcache_timeout_secs_attribute.attr,
927 NULL,
928};
929
930static struct kobj_type capcache_orangefs_ktype = {
4a343664 931 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
932 .default_attrs = capcache_orangefs_default_attrs,
933};
934
2e9f80da 935static struct orangefs_attribute ccache_hard_limit_attribute =
f7be4ee0
MM
936 __ATTR(hard_limit,
937 0664,
7b0cae60
MB
938 sysfs_service_op_show,
939 sysfs_service_op_store);
f7be4ee0 940
2e9f80da 941static struct orangefs_attribute ccache_reclaim_percent_attribute =
f7be4ee0
MM
942 __ATTR(reclaim_percentage,
943 0664,
7b0cae60
MB
944 sysfs_service_op_show,
945 sysfs_service_op_store);
f7be4ee0 946
2e9f80da 947static struct orangefs_attribute ccache_soft_limit_attribute =
f7be4ee0
MM
948 __ATTR(soft_limit,
949 0664,
7b0cae60
MB
950 sysfs_service_op_show,
951 sysfs_service_op_store);
f7be4ee0 952
2e9f80da 953static struct orangefs_attribute ccache_timeout_secs_attribute =
f7be4ee0
MM
954 __ATTR(timeout_secs,
955 0664,
7b0cae60
MB
956 sysfs_service_op_show,
957 sysfs_service_op_store);
f7be4ee0
MM
958
959static struct attribute *ccache_orangefs_default_attrs[] = {
960 &ccache_hard_limit_attribute.attr,
961 &ccache_reclaim_percent_attribute.attr,
962 &ccache_soft_limit_attribute.attr,
963 &ccache_timeout_secs_attribute.attr,
964 NULL,
965};
966
967static struct kobj_type ccache_orangefs_ktype = {
4a343664 968 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
969 .default_attrs = ccache_orangefs_default_attrs,
970};
971
2e9f80da 972static struct orangefs_attribute ncache_hard_limit_attribute =
f7be4ee0
MM
973 __ATTR(hard_limit,
974 0664,
7b0cae60
MB
975 sysfs_service_op_show,
976 sysfs_service_op_store);
f7be4ee0 977
2e9f80da 978static struct orangefs_attribute ncache_reclaim_percent_attribute =
f7be4ee0
MM
979 __ATTR(reclaim_percentage,
980 0664,
7b0cae60
MB
981 sysfs_service_op_show,
982 sysfs_service_op_store);
f7be4ee0 983
2e9f80da 984static struct orangefs_attribute ncache_soft_limit_attribute =
f7be4ee0
MM
985 __ATTR(soft_limit,
986 0664,
7b0cae60
MB
987 sysfs_service_op_show,
988 sysfs_service_op_store);
f7be4ee0 989
2e9f80da 990static struct orangefs_attribute ncache_timeout_msecs_attribute =
f7be4ee0
MM
991 __ATTR(timeout_msecs,
992 0664,
7b0cae60
MB
993 sysfs_service_op_show,
994 sysfs_service_op_store);
f7be4ee0
MM
995
996static struct attribute *ncache_orangefs_default_attrs[] = {
997 &ncache_hard_limit_attribute.attr,
998 &ncache_reclaim_percent_attribute.attr,
999 &ncache_soft_limit_attribute.attr,
1000 &ncache_timeout_msecs_attribute.attr,
1001 NULL,
1002};
1003
1004static struct kobj_type ncache_orangefs_ktype = {
4a343664 1005 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
1006 .default_attrs = ncache_orangefs_default_attrs,
1007};
1008
2e9f80da 1009static struct orangefs_attribute pc_acache_attribute =
f7be4ee0
MM
1010 __ATTR(acache,
1011 0664,
7b0cae60 1012 sysfs_service_op_show,
f7be4ee0
MM
1013 NULL);
1014
2e9f80da 1015static struct orangefs_attribute pc_capcache_attribute =
f7be4ee0
MM
1016 __ATTR(capcache,
1017 0664,
7b0cae60 1018 sysfs_service_op_show,
f7be4ee0
MM
1019 NULL);
1020
2e9f80da 1021static struct orangefs_attribute pc_ncache_attribute =
f7be4ee0
MM
1022 __ATTR(ncache,
1023 0664,
7b0cae60 1024 sysfs_service_op_show,
f7be4ee0
MM
1025 NULL);
1026
1027static struct attribute *pc_orangefs_default_attrs[] = {
1028 &pc_acache_attribute.attr,
1029 &pc_capcache_attribute.attr,
1030 &pc_ncache_attribute.attr,
1031 NULL,
1032};
1033
1034static struct kobj_type pc_orangefs_ktype = {
4a343664 1035 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
1036 .default_attrs = pc_orangefs_default_attrs,
1037};
1038
2e9f80da 1039static struct orangefs_attribute stats_reads_attribute =
f7be4ee0
MM
1040 __ATTR(reads,
1041 0664,
7b0cae60 1042 sysfs_int_show,
f7be4ee0
MM
1043 NULL);
1044
2e9f80da 1045static struct orangefs_attribute stats_writes_attribute =
f7be4ee0
MM
1046 __ATTR(writes,
1047 0664,
7b0cae60 1048 sysfs_int_show,
f7be4ee0
MM
1049 NULL);
1050
1051static struct attribute *stats_orangefs_default_attrs[] = {
1052 &stats_reads_attribute.attr,
1053 &stats_writes_attribute.attr,
1054 NULL,
1055};
1056
1057static struct kobj_type stats_orangefs_ktype = {
4a343664 1058 .sysfs_ops = &orangefs_sysfs_ops,
f7be4ee0
MM
1059 .default_attrs = stats_orangefs_default_attrs,
1060};
1061
dc3012a7
MB
1062static struct kobject *orangefs_obj;
1063static struct kobject *acache_orangefs_obj;
1064static struct kobject *capcache_orangefs_obj;
1065static struct kobject *ccache_orangefs_obj;
1066static struct kobject *ncache_orangefs_obj;
1067static struct kobject *pc_orangefs_obj;
1068static struct kobject *stats_orangefs_obj;
f7be4ee0
MM
1069
1070int orangefs_sysfs_init(void)
1071{
2180c52c 1072 int rc = -EINVAL;
f7be4ee0
MM
1073
1074 gossip_debug(GOSSIP_SYSFS_DEBUG, "orangefs_sysfs_init: start\n");
1075
1076 /* create /sys/fs/orangefs. */
1077 orangefs_obj = kzalloc(sizeof(*orangefs_obj), GFP_KERNEL);
2180c52c 1078 if (!orangefs_obj)
f7be4ee0 1079 goto out;
f7be4ee0 1080
dc3012a7 1081 rc = kobject_init_and_add(orangefs_obj,
f7be4ee0
MM
1082 &orangefs_ktype,
1083 fs_kobj,
1084 ORANGEFS_KOBJ_ID);
1085
2180c52c
MM
1086 if (rc)
1087 goto ofs_obj_bail;
f7be4ee0 1088
dc3012a7 1089 kobject_uevent(orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1090
1091 /* create /sys/fs/orangefs/acache. */
1092 acache_orangefs_obj = kzalloc(sizeof(*acache_orangefs_obj), GFP_KERNEL);
1093 if (!acache_orangefs_obj) {
1094 rc = -EINVAL;
2180c52c 1095 goto ofs_obj_bail;
f7be4ee0
MM
1096 }
1097
dc3012a7 1098 rc = kobject_init_and_add(acache_orangefs_obj,
f7be4ee0 1099 &acache_orangefs_ktype,
dc3012a7 1100 orangefs_obj,
f7be4ee0
MM
1101 ACACHE_KOBJ_ID);
1102
2180c52c
MM
1103 if (rc)
1104 goto acache_obj_bail;
f7be4ee0 1105
dc3012a7 1106 kobject_uevent(acache_orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1107
1108 /* create /sys/fs/orangefs/capcache. */
1109 capcache_orangefs_obj =
1110 kzalloc(sizeof(*capcache_orangefs_obj), GFP_KERNEL);
1111 if (!capcache_orangefs_obj) {
1112 rc = -EINVAL;
2180c52c 1113 goto acache_obj_bail;
f7be4ee0
MM
1114 }
1115
dc3012a7 1116 rc = kobject_init_and_add(capcache_orangefs_obj,
f7be4ee0 1117 &capcache_orangefs_ktype,
dc3012a7 1118 orangefs_obj,
f7be4ee0 1119 CAPCACHE_KOBJ_ID);
2180c52c
MM
1120 if (rc)
1121 goto capcache_obj_bail;
f7be4ee0 1122
dc3012a7 1123 kobject_uevent(capcache_orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1124
1125 /* create /sys/fs/orangefs/ccache. */
1126 ccache_orangefs_obj =
1127 kzalloc(sizeof(*ccache_orangefs_obj), GFP_KERNEL);
1128 if (!ccache_orangefs_obj) {
1129 rc = -EINVAL;
2180c52c 1130 goto capcache_obj_bail;
f7be4ee0
MM
1131 }
1132
dc3012a7 1133 rc = kobject_init_and_add(ccache_orangefs_obj,
f7be4ee0 1134 &ccache_orangefs_ktype,
dc3012a7 1135 orangefs_obj,
f7be4ee0 1136 CCACHE_KOBJ_ID);
2180c52c
MM
1137 if (rc)
1138 goto ccache_obj_bail;
f7be4ee0 1139
dc3012a7 1140 kobject_uevent(ccache_orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1141
1142 /* create /sys/fs/orangefs/ncache. */
1143 ncache_orangefs_obj = kzalloc(sizeof(*ncache_orangefs_obj), GFP_KERNEL);
1144 if (!ncache_orangefs_obj) {
1145 rc = -EINVAL;
2180c52c 1146 goto ccache_obj_bail;
f7be4ee0
MM
1147 }
1148
dc3012a7 1149 rc = kobject_init_and_add(ncache_orangefs_obj,
f7be4ee0 1150 &ncache_orangefs_ktype,
dc3012a7 1151 orangefs_obj,
f7be4ee0
MM
1152 NCACHE_KOBJ_ID);
1153
2180c52c
MM
1154 if (rc)
1155 goto ncache_obj_bail;
f7be4ee0 1156
dc3012a7 1157 kobject_uevent(ncache_orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1158
1159 /* create /sys/fs/orangefs/perf_counters. */
1160 pc_orangefs_obj = kzalloc(sizeof(*pc_orangefs_obj), GFP_KERNEL);
1161 if (!pc_orangefs_obj) {
1162 rc = -EINVAL;
2180c52c 1163 goto ncache_obj_bail;
f7be4ee0
MM
1164 }
1165
dc3012a7 1166 rc = kobject_init_and_add(pc_orangefs_obj,
f7be4ee0 1167 &pc_orangefs_ktype,
dc3012a7 1168 orangefs_obj,
f7be4ee0
MM
1169 "perf_counters");
1170
2180c52c
MM
1171 if (rc)
1172 goto pc_obj_bail;
f7be4ee0 1173
dc3012a7 1174 kobject_uevent(pc_orangefs_obj, KOBJ_ADD);
f7be4ee0
MM
1175
1176 /* create /sys/fs/orangefs/stats. */
1177 stats_orangefs_obj = kzalloc(sizeof(*stats_orangefs_obj), GFP_KERNEL);
1178 if (!stats_orangefs_obj) {
1179 rc = -EINVAL;
2180c52c 1180 goto pc_obj_bail;
f7be4ee0
MM
1181 }
1182
dc3012a7 1183 rc = kobject_init_and_add(stats_orangefs_obj,
f7be4ee0 1184 &stats_orangefs_ktype,
dc3012a7 1185 orangefs_obj,
f7be4ee0
MM
1186 STATS_KOBJ_ID);
1187
2180c52c
MM
1188 if (rc)
1189 goto stats_obj_bail;
f7be4ee0 1190
dc3012a7 1191 kobject_uevent(stats_orangefs_obj, KOBJ_ADD);
2180c52c
MM
1192 goto out;
1193
1194stats_obj_bail:
dc3012a7 1195 kobject_put(stats_orangefs_obj);
2180c52c 1196pc_obj_bail:
dc3012a7 1197 kobject_put(pc_orangefs_obj);
2180c52c 1198ncache_obj_bail:
dc3012a7 1199 kobject_put(ncache_orangefs_obj);
2180c52c 1200ccache_obj_bail:
dc3012a7 1201 kobject_put(ccache_orangefs_obj);
2180c52c 1202capcache_obj_bail:
dc3012a7 1203 kobject_put(capcache_orangefs_obj);
2180c52c 1204acache_obj_bail:
dc3012a7 1205 kobject_put(acache_orangefs_obj);
2180c52c 1206ofs_obj_bail:
dc3012a7 1207 kobject_put(orangefs_obj);
f7be4ee0
MM
1208out:
1209 return rc;
1210}
1211
1212void orangefs_sysfs_exit(void)
1213{
1214 gossip_debug(GOSSIP_SYSFS_DEBUG, "orangefs_sysfs_exit: start\n");
dc3012a7
MB
1215 kobject_put(acache_orangefs_obj);
1216 kobject_put(capcache_orangefs_obj);
1217 kobject_put(ccache_orangefs_obj);
1218 kobject_put(ncache_orangefs_obj);
1219 kobject_put(pc_orangefs_obj);
1220 kobject_put(stats_orangefs_obj);
1221 kobject_put(orangefs_obj);
f7be4ee0 1222}