1 // SPDX-License-Identifier: GPL-2.0+
3 * Sysfs support implementation.
5 * Copyright (C) 2005-2014 Nippon Telegraph and Telephone Corporation.
6 * Copyright (C) 2014 HGST, Inc., a Western Digital Company.
8 * Written by Vyacheslav Dubeyko <Vyacheslav.Dubeyko@hgst.com>
11 #include <linux/kobject.h>
19 /* /sys/fs/<nilfs>/ */
20 static struct kset
*nilfs_kset
;
22 #define NILFS_DEV_INT_GROUP_OPS(name, parent_name) \
23 static ssize_t nilfs_##name##_attr_show(struct kobject *kobj, \
24 struct attribute *attr, char *buf) \
26 struct the_nilfs *nilfs = container_of(kobj->parent, \
28 ns_##parent_name##_kobj); \
29 struct nilfs_##name##_attr *a = container_of(attr, \
30 struct nilfs_##name##_attr, \
32 return a->show ? a->show(a, nilfs, buf) : 0; \
34 static ssize_t nilfs_##name##_attr_store(struct kobject *kobj, \
35 struct attribute *attr, \
36 const char *buf, size_t len) \
38 struct the_nilfs *nilfs = container_of(kobj->parent, \
40 ns_##parent_name##_kobj); \
41 struct nilfs_##name##_attr *a = container_of(attr, \
42 struct nilfs_##name##_attr, \
44 return a->store ? a->store(a, nilfs, buf, len) : 0; \
46 static const struct sysfs_ops nilfs_##name##_attr_ops = { \
47 .show = nilfs_##name##_attr_show, \
48 .store = nilfs_##name##_attr_store, \
51 #define NILFS_DEV_INT_GROUP_TYPE(name, parent_name) \
52 static void nilfs_##name##_attr_release(struct kobject *kobj) \
54 struct nilfs_sysfs_##parent_name##_subgroups *subgroups = container_of(kobj, \
55 struct nilfs_sysfs_##parent_name##_subgroups, \
57 complete(&subgroups->sg_##name##_kobj_unregister); \
59 static const struct kobj_type nilfs_##name##_ktype = { \
60 .default_groups = nilfs_##name##_groups, \
61 .sysfs_ops = &nilfs_##name##_attr_ops, \
62 .release = nilfs_##name##_attr_release, \
65 #define NILFS_DEV_INT_GROUP_FNS(name, parent_name) \
66 static int nilfs_sysfs_create_##name##_group(struct the_nilfs *nilfs) \
68 struct kobject *parent; \
69 struct kobject *kobj; \
70 struct completion *kobj_unregister; \
71 struct nilfs_sysfs_##parent_name##_subgroups *subgroups; \
73 subgroups = nilfs->ns_##parent_name##_subgroups; \
74 kobj = &subgroups->sg_##name##_kobj; \
75 kobj_unregister = &subgroups->sg_##name##_kobj_unregister; \
76 parent = &nilfs->ns_##parent_name##_kobj; \
77 kobj->kset = nilfs_kset; \
78 init_completion(kobj_unregister); \
79 err = kobject_init_and_add(kobj, &nilfs_##name##_ktype, parent, \
85 static void nilfs_sysfs_delete_##name##_group(struct the_nilfs *nilfs) \
87 kobject_put(&nilfs->ns_##parent_name##_subgroups->sg_##name##_kobj); \
90 /************************************************************************
91 * NILFS snapshot attrs *
92 ************************************************************************/
95 nilfs_snapshot_inodes_count_show(struct nilfs_snapshot_attr
*attr
,
96 struct nilfs_root
*root
, char *buf
)
98 return sysfs_emit(buf
, "%llu\n",
99 (unsigned long long)atomic64_read(&root
->inodes_count
));
103 nilfs_snapshot_blocks_count_show(struct nilfs_snapshot_attr
*attr
,
104 struct nilfs_root
*root
, char *buf
)
106 return sysfs_emit(buf
, "%llu\n",
107 (unsigned long long)atomic64_read(&root
->blocks_count
));
110 static const char snapshot_readme_str
[] =
111 "The group contains details about mounted snapshot.\n\n"
112 "(1) inodes_count\n\tshow number of inodes for snapshot.\n\n"
113 "(2) blocks_count\n\tshow number of blocks for snapshot.\n\n";
116 nilfs_snapshot_README_show(struct nilfs_snapshot_attr
*attr
,
117 struct nilfs_root
*root
, char *buf
)
119 return sysfs_emit(buf
, snapshot_readme_str
);
122 NILFS_SNAPSHOT_RO_ATTR(inodes_count
);
123 NILFS_SNAPSHOT_RO_ATTR(blocks_count
);
124 NILFS_SNAPSHOT_RO_ATTR(README
);
126 static struct attribute
*nilfs_snapshot_attrs
[] = {
127 NILFS_SNAPSHOT_ATTR_LIST(inodes_count
),
128 NILFS_SNAPSHOT_ATTR_LIST(blocks_count
),
129 NILFS_SNAPSHOT_ATTR_LIST(README
),
132 ATTRIBUTE_GROUPS(nilfs_snapshot
);
134 static ssize_t
nilfs_snapshot_attr_show(struct kobject
*kobj
,
135 struct attribute
*attr
, char *buf
)
137 struct nilfs_root
*root
=
138 container_of(kobj
, struct nilfs_root
, snapshot_kobj
);
139 struct nilfs_snapshot_attr
*a
=
140 container_of(attr
, struct nilfs_snapshot_attr
, attr
);
142 return a
->show
? a
->show(a
, root
, buf
) : 0;
145 static ssize_t
nilfs_snapshot_attr_store(struct kobject
*kobj
,
146 struct attribute
*attr
,
147 const char *buf
, size_t len
)
149 struct nilfs_root
*root
=
150 container_of(kobj
, struct nilfs_root
, snapshot_kobj
);
151 struct nilfs_snapshot_attr
*a
=
152 container_of(attr
, struct nilfs_snapshot_attr
, attr
);
154 return a
->store
? a
->store(a
, root
, buf
, len
) : 0;
157 static void nilfs_snapshot_attr_release(struct kobject
*kobj
)
159 struct nilfs_root
*root
= container_of(kobj
, struct nilfs_root
,
161 complete(&root
->snapshot_kobj_unregister
);
164 static const struct sysfs_ops nilfs_snapshot_attr_ops
= {
165 .show
= nilfs_snapshot_attr_show
,
166 .store
= nilfs_snapshot_attr_store
,
169 static const struct kobj_type nilfs_snapshot_ktype
= {
170 .default_groups
= nilfs_snapshot_groups
,
171 .sysfs_ops
= &nilfs_snapshot_attr_ops
,
172 .release
= nilfs_snapshot_attr_release
,
175 int nilfs_sysfs_create_snapshot_group(struct nilfs_root
*root
)
177 struct the_nilfs
*nilfs
;
178 struct kobject
*parent
;
182 parent
= &nilfs
->ns_dev_subgroups
->sg_mounted_snapshots_kobj
;
183 root
->snapshot_kobj
.kset
= nilfs_kset
;
184 init_completion(&root
->snapshot_kobj_unregister
);
186 if (root
->cno
== NILFS_CPTREE_CURRENT_CNO
) {
187 err
= kobject_init_and_add(&root
->snapshot_kobj
,
188 &nilfs_snapshot_ktype
,
190 "current_checkpoint");
192 err
= kobject_init_and_add(&root
->snapshot_kobj
,
193 &nilfs_snapshot_ktype
,
199 kobject_put(&root
->snapshot_kobj
);
204 void nilfs_sysfs_delete_snapshot_group(struct nilfs_root
*root
)
206 kobject_put(&root
->snapshot_kobj
);
209 /************************************************************************
210 * NILFS mounted snapshots attrs *
211 ************************************************************************/
213 static const char mounted_snapshots_readme_str
[] =
214 "The mounted_snapshots group contains group for\n"
215 "every mounted snapshot.\n";
218 nilfs_mounted_snapshots_README_show(struct nilfs_mounted_snapshots_attr
*attr
,
219 struct the_nilfs
*nilfs
, char *buf
)
221 return sysfs_emit(buf
, mounted_snapshots_readme_str
);
224 NILFS_MOUNTED_SNAPSHOTS_RO_ATTR(README
);
226 static struct attribute
*nilfs_mounted_snapshots_attrs
[] = {
227 NILFS_MOUNTED_SNAPSHOTS_ATTR_LIST(README
),
230 ATTRIBUTE_GROUPS(nilfs_mounted_snapshots
);
232 NILFS_DEV_INT_GROUP_OPS(mounted_snapshots
, dev
);
233 NILFS_DEV_INT_GROUP_TYPE(mounted_snapshots
, dev
);
234 NILFS_DEV_INT_GROUP_FNS(mounted_snapshots
, dev
);
236 /************************************************************************
237 * NILFS checkpoints attrs *
238 ************************************************************************/
241 nilfs_checkpoints_checkpoints_number_show(struct nilfs_checkpoints_attr
*attr
,
242 struct the_nilfs
*nilfs
,
246 struct nilfs_cpstat cpstat
;
249 down_read(&nilfs
->ns_segctor_sem
);
250 err
= nilfs_cpfile_get_stat(nilfs
->ns_cpfile
, &cpstat
);
251 up_read(&nilfs
->ns_segctor_sem
);
253 nilfs_err(nilfs
->ns_sb
, "unable to get checkpoint stat: err=%d",
258 ncheckpoints
= cpstat
.cs_ncps
;
260 return sysfs_emit(buf
, "%llu\n", ncheckpoints
);
264 nilfs_checkpoints_snapshots_number_show(struct nilfs_checkpoints_attr
*attr
,
265 struct the_nilfs
*nilfs
,
269 struct nilfs_cpstat cpstat
;
272 down_read(&nilfs
->ns_segctor_sem
);
273 err
= nilfs_cpfile_get_stat(nilfs
->ns_cpfile
, &cpstat
);
274 up_read(&nilfs
->ns_segctor_sem
);
276 nilfs_err(nilfs
->ns_sb
, "unable to get checkpoint stat: err=%d",
281 nsnapshots
= cpstat
.cs_nsss
;
283 return sysfs_emit(buf
, "%llu\n", nsnapshots
);
287 nilfs_checkpoints_last_seg_checkpoint_show(struct nilfs_checkpoints_attr
*attr
,
288 struct the_nilfs
*nilfs
,
293 spin_lock(&nilfs
->ns_last_segment_lock
);
294 last_cno
= nilfs
->ns_last_cno
;
295 spin_unlock(&nilfs
->ns_last_segment_lock
);
297 return sysfs_emit(buf
, "%llu\n", last_cno
);
301 nilfs_checkpoints_next_checkpoint_show(struct nilfs_checkpoints_attr
*attr
,
302 struct the_nilfs
*nilfs
,
307 down_read(&nilfs
->ns_segctor_sem
);
309 up_read(&nilfs
->ns_segctor_sem
);
311 return sysfs_emit(buf
, "%llu\n", cno
);
314 static const char checkpoints_readme_str
[] =
315 "The checkpoints group contains attributes that describe\n"
316 "details about volume's checkpoints.\n\n"
317 "(1) checkpoints_number\n\tshow number of checkpoints on volume.\n\n"
318 "(2) snapshots_number\n\tshow number of snapshots on volume.\n\n"
319 "(3) last_seg_checkpoint\n"
320 "\tshow checkpoint number of the latest segment.\n\n"
321 "(4) next_checkpoint\n\tshow next checkpoint number.\n\n";
324 nilfs_checkpoints_README_show(struct nilfs_checkpoints_attr
*attr
,
325 struct the_nilfs
*nilfs
, char *buf
)
327 return sysfs_emit(buf
, checkpoints_readme_str
);
330 NILFS_CHECKPOINTS_RO_ATTR(checkpoints_number
);
331 NILFS_CHECKPOINTS_RO_ATTR(snapshots_number
);
332 NILFS_CHECKPOINTS_RO_ATTR(last_seg_checkpoint
);
333 NILFS_CHECKPOINTS_RO_ATTR(next_checkpoint
);
334 NILFS_CHECKPOINTS_RO_ATTR(README
);
336 static struct attribute
*nilfs_checkpoints_attrs
[] = {
337 NILFS_CHECKPOINTS_ATTR_LIST(checkpoints_number
),
338 NILFS_CHECKPOINTS_ATTR_LIST(snapshots_number
),
339 NILFS_CHECKPOINTS_ATTR_LIST(last_seg_checkpoint
),
340 NILFS_CHECKPOINTS_ATTR_LIST(next_checkpoint
),
341 NILFS_CHECKPOINTS_ATTR_LIST(README
),
344 ATTRIBUTE_GROUPS(nilfs_checkpoints
);
346 NILFS_DEV_INT_GROUP_OPS(checkpoints
, dev
);
347 NILFS_DEV_INT_GROUP_TYPE(checkpoints
, dev
);
348 NILFS_DEV_INT_GROUP_FNS(checkpoints
, dev
);
350 /************************************************************************
351 * NILFS segments attrs *
352 ************************************************************************/
355 nilfs_segments_segments_number_show(struct nilfs_segments_attr
*attr
,
356 struct the_nilfs
*nilfs
,
359 return sysfs_emit(buf
, "%lu\n", nilfs
->ns_nsegments
);
363 nilfs_segments_blocks_per_segment_show(struct nilfs_segments_attr
*attr
,
364 struct the_nilfs
*nilfs
,
367 return sysfs_emit(buf
, "%lu\n", nilfs
->ns_blocks_per_segment
);
371 nilfs_segments_clean_segments_show(struct nilfs_segments_attr
*attr
,
372 struct the_nilfs
*nilfs
,
375 unsigned long ncleansegs
;
377 down_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
378 ncleansegs
= nilfs_sufile_get_ncleansegs(nilfs
->ns_sufile
);
379 up_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
381 return sysfs_emit(buf
, "%lu\n", ncleansegs
);
385 nilfs_segments_dirty_segments_show(struct nilfs_segments_attr
*attr
,
386 struct the_nilfs
*nilfs
,
389 struct nilfs_sustat sustat
;
392 down_read(&nilfs
->ns_segctor_sem
);
393 err
= nilfs_sufile_get_stat(nilfs
->ns_sufile
, &sustat
);
394 up_read(&nilfs
->ns_segctor_sem
);
396 nilfs_err(nilfs
->ns_sb
, "unable to get segment stat: err=%d",
401 return sysfs_emit(buf
, "%llu\n", sustat
.ss_ndirtysegs
);
404 static const char segments_readme_str
[] =
405 "The segments group contains attributes that describe\n"
406 "details about volume's segments.\n\n"
407 "(1) segments_number\n\tshow number of segments on volume.\n\n"
408 "(2) blocks_per_segment\n\tshow number of blocks in segment.\n\n"
409 "(3) clean_segments\n\tshow count of clean segments.\n\n"
410 "(4) dirty_segments\n\tshow count of dirty segments.\n\n";
413 nilfs_segments_README_show(struct nilfs_segments_attr
*attr
,
414 struct the_nilfs
*nilfs
,
417 return sysfs_emit(buf
, segments_readme_str
);
420 NILFS_SEGMENTS_RO_ATTR(segments_number
);
421 NILFS_SEGMENTS_RO_ATTR(blocks_per_segment
);
422 NILFS_SEGMENTS_RO_ATTR(clean_segments
);
423 NILFS_SEGMENTS_RO_ATTR(dirty_segments
);
424 NILFS_SEGMENTS_RO_ATTR(README
);
426 static struct attribute
*nilfs_segments_attrs
[] = {
427 NILFS_SEGMENTS_ATTR_LIST(segments_number
),
428 NILFS_SEGMENTS_ATTR_LIST(blocks_per_segment
),
429 NILFS_SEGMENTS_ATTR_LIST(clean_segments
),
430 NILFS_SEGMENTS_ATTR_LIST(dirty_segments
),
431 NILFS_SEGMENTS_ATTR_LIST(README
),
434 ATTRIBUTE_GROUPS(nilfs_segments
);
436 NILFS_DEV_INT_GROUP_OPS(segments
, dev
);
437 NILFS_DEV_INT_GROUP_TYPE(segments
, dev
);
438 NILFS_DEV_INT_GROUP_FNS(segments
, dev
);
440 /************************************************************************
441 * NILFS segctor attrs *
442 ************************************************************************/
445 nilfs_segctor_last_pseg_block_show(struct nilfs_segctor_attr
*attr
,
446 struct the_nilfs
*nilfs
,
451 spin_lock(&nilfs
->ns_last_segment_lock
);
452 last_pseg
= nilfs
->ns_last_pseg
;
453 spin_unlock(&nilfs
->ns_last_segment_lock
);
455 return sysfs_emit(buf
, "%llu\n",
456 (unsigned long long)last_pseg
);
460 nilfs_segctor_last_seg_sequence_show(struct nilfs_segctor_attr
*attr
,
461 struct the_nilfs
*nilfs
,
466 spin_lock(&nilfs
->ns_last_segment_lock
);
467 last_seq
= nilfs
->ns_last_seq
;
468 spin_unlock(&nilfs
->ns_last_segment_lock
);
470 return sysfs_emit(buf
, "%llu\n", last_seq
);
474 nilfs_segctor_last_seg_checkpoint_show(struct nilfs_segctor_attr
*attr
,
475 struct the_nilfs
*nilfs
,
480 spin_lock(&nilfs
->ns_last_segment_lock
);
481 last_cno
= nilfs
->ns_last_cno
;
482 spin_unlock(&nilfs
->ns_last_segment_lock
);
484 return sysfs_emit(buf
, "%llu\n", last_cno
);
488 nilfs_segctor_current_seg_sequence_show(struct nilfs_segctor_attr
*attr
,
489 struct the_nilfs
*nilfs
,
494 down_read(&nilfs
->ns_segctor_sem
);
495 seg_seq
= nilfs
->ns_seg_seq
;
496 up_read(&nilfs
->ns_segctor_sem
);
498 return sysfs_emit(buf
, "%llu\n", seg_seq
);
502 nilfs_segctor_current_last_full_seg_show(struct nilfs_segctor_attr
*attr
,
503 struct the_nilfs
*nilfs
,
508 down_read(&nilfs
->ns_segctor_sem
);
509 segnum
= nilfs
->ns_segnum
;
510 up_read(&nilfs
->ns_segctor_sem
);
512 return sysfs_emit(buf
, "%llu\n", segnum
);
516 nilfs_segctor_next_full_seg_show(struct nilfs_segctor_attr
*attr
,
517 struct the_nilfs
*nilfs
,
522 down_read(&nilfs
->ns_segctor_sem
);
523 nextnum
= nilfs
->ns_nextnum
;
524 up_read(&nilfs
->ns_segctor_sem
);
526 return sysfs_emit(buf
, "%llu\n", nextnum
);
530 nilfs_segctor_next_pseg_offset_show(struct nilfs_segctor_attr
*attr
,
531 struct the_nilfs
*nilfs
,
534 unsigned long pseg_offset
;
536 down_read(&nilfs
->ns_segctor_sem
);
537 pseg_offset
= nilfs
->ns_pseg_offset
;
538 up_read(&nilfs
->ns_segctor_sem
);
540 return sysfs_emit(buf
, "%lu\n", pseg_offset
);
544 nilfs_segctor_next_checkpoint_show(struct nilfs_segctor_attr
*attr
,
545 struct the_nilfs
*nilfs
,
550 down_read(&nilfs
->ns_segctor_sem
);
552 up_read(&nilfs
->ns_segctor_sem
);
554 return sysfs_emit(buf
, "%llu\n", cno
);
558 nilfs_segctor_last_seg_write_time_show(struct nilfs_segctor_attr
*attr
,
559 struct the_nilfs
*nilfs
,
564 down_read(&nilfs
->ns_segctor_sem
);
565 ctime
= nilfs
->ns_ctime
;
566 up_read(&nilfs
->ns_segctor_sem
);
568 return sysfs_emit(buf
, "%ptTs\n", &ctime
);
572 nilfs_segctor_last_seg_write_time_secs_show(struct nilfs_segctor_attr
*attr
,
573 struct the_nilfs
*nilfs
,
578 down_read(&nilfs
->ns_segctor_sem
);
579 ctime
= nilfs
->ns_ctime
;
580 up_read(&nilfs
->ns_segctor_sem
);
582 return sysfs_emit(buf
, "%llu\n", ctime
);
586 nilfs_segctor_last_nongc_write_time_show(struct nilfs_segctor_attr
*attr
,
587 struct the_nilfs
*nilfs
,
590 time64_t nongc_ctime
;
592 down_read(&nilfs
->ns_segctor_sem
);
593 nongc_ctime
= nilfs
->ns_nongc_ctime
;
594 up_read(&nilfs
->ns_segctor_sem
);
596 return sysfs_emit(buf
, "%ptTs\n", &nongc_ctime
);
600 nilfs_segctor_last_nongc_write_time_secs_show(struct nilfs_segctor_attr
*attr
,
601 struct the_nilfs
*nilfs
,
604 time64_t nongc_ctime
;
606 down_read(&nilfs
->ns_segctor_sem
);
607 nongc_ctime
= nilfs
->ns_nongc_ctime
;
608 up_read(&nilfs
->ns_segctor_sem
);
610 return sysfs_emit(buf
, "%llu\n", nongc_ctime
);
614 nilfs_segctor_dirty_data_blocks_count_show(struct nilfs_segctor_attr
*attr
,
615 struct the_nilfs
*nilfs
,
620 down_read(&nilfs
->ns_segctor_sem
);
621 ndirtyblks
= atomic_read(&nilfs
->ns_ndirtyblks
);
622 up_read(&nilfs
->ns_segctor_sem
);
624 return sysfs_emit(buf
, "%u\n", ndirtyblks
);
627 static const char segctor_readme_str
[] =
628 "The segctor group contains attributes that describe\n"
629 "segctor thread activity details.\n\n"
630 "(1) last_pseg_block\n"
631 "\tshow start block number of the latest segment.\n\n"
632 "(2) last_seg_sequence\n"
633 "\tshow sequence value of the latest segment.\n\n"
634 "(3) last_seg_checkpoint\n"
635 "\tshow checkpoint number of the latest segment.\n\n"
636 "(4) current_seg_sequence\n\tshow segment sequence counter.\n\n"
637 "(5) current_last_full_seg\n"
638 "\tshow index number of the latest full segment.\n\n"
639 "(6) next_full_seg\n"
640 "\tshow index number of the full segment index to be used next.\n\n"
641 "(7) next_pseg_offset\n"
642 "\tshow offset of next partial segment in the current full segment.\n\n"
643 "(8) next_checkpoint\n\tshow next checkpoint number.\n\n"
644 "(9) last_seg_write_time\n"
645 "\tshow write time of the last segment in human-readable format.\n\n"
646 "(10) last_seg_write_time_secs\n"
647 "\tshow write time of the last segment in seconds.\n\n"
648 "(11) last_nongc_write_time\n"
649 "\tshow write time of the last segment not for cleaner operation "
650 "in human-readable format.\n\n"
651 "(12) last_nongc_write_time_secs\n"
652 "\tshow write time of the last segment not for cleaner operation "
654 "(13) dirty_data_blocks_count\n"
655 "\tshow number of dirty data blocks.\n\n";
658 nilfs_segctor_README_show(struct nilfs_segctor_attr
*attr
,
659 struct the_nilfs
*nilfs
, char *buf
)
661 return sysfs_emit(buf
, segctor_readme_str
);
664 NILFS_SEGCTOR_RO_ATTR(last_pseg_block
);
665 NILFS_SEGCTOR_RO_ATTR(last_seg_sequence
);
666 NILFS_SEGCTOR_RO_ATTR(last_seg_checkpoint
);
667 NILFS_SEGCTOR_RO_ATTR(current_seg_sequence
);
668 NILFS_SEGCTOR_RO_ATTR(current_last_full_seg
);
669 NILFS_SEGCTOR_RO_ATTR(next_full_seg
);
670 NILFS_SEGCTOR_RO_ATTR(next_pseg_offset
);
671 NILFS_SEGCTOR_RO_ATTR(next_checkpoint
);
672 NILFS_SEGCTOR_RO_ATTR(last_seg_write_time
);
673 NILFS_SEGCTOR_RO_ATTR(last_seg_write_time_secs
);
674 NILFS_SEGCTOR_RO_ATTR(last_nongc_write_time
);
675 NILFS_SEGCTOR_RO_ATTR(last_nongc_write_time_secs
);
676 NILFS_SEGCTOR_RO_ATTR(dirty_data_blocks_count
);
677 NILFS_SEGCTOR_RO_ATTR(README
);
679 static struct attribute
*nilfs_segctor_attrs
[] = {
680 NILFS_SEGCTOR_ATTR_LIST(last_pseg_block
),
681 NILFS_SEGCTOR_ATTR_LIST(last_seg_sequence
),
682 NILFS_SEGCTOR_ATTR_LIST(last_seg_checkpoint
),
683 NILFS_SEGCTOR_ATTR_LIST(current_seg_sequence
),
684 NILFS_SEGCTOR_ATTR_LIST(current_last_full_seg
),
685 NILFS_SEGCTOR_ATTR_LIST(next_full_seg
),
686 NILFS_SEGCTOR_ATTR_LIST(next_pseg_offset
),
687 NILFS_SEGCTOR_ATTR_LIST(next_checkpoint
),
688 NILFS_SEGCTOR_ATTR_LIST(last_seg_write_time
),
689 NILFS_SEGCTOR_ATTR_LIST(last_seg_write_time_secs
),
690 NILFS_SEGCTOR_ATTR_LIST(last_nongc_write_time
),
691 NILFS_SEGCTOR_ATTR_LIST(last_nongc_write_time_secs
),
692 NILFS_SEGCTOR_ATTR_LIST(dirty_data_blocks_count
),
693 NILFS_SEGCTOR_ATTR_LIST(README
),
696 ATTRIBUTE_GROUPS(nilfs_segctor
);
698 NILFS_DEV_INT_GROUP_OPS(segctor
, dev
);
699 NILFS_DEV_INT_GROUP_TYPE(segctor
, dev
);
700 NILFS_DEV_INT_GROUP_FNS(segctor
, dev
);
702 /************************************************************************
703 * NILFS superblock attrs *
704 ************************************************************************/
707 nilfs_superblock_sb_write_time_show(struct nilfs_superblock_attr
*attr
,
708 struct the_nilfs
*nilfs
,
713 down_read(&nilfs
->ns_sem
);
714 sbwtime
= nilfs
->ns_sbwtime
;
715 up_read(&nilfs
->ns_sem
);
717 return sysfs_emit(buf
, "%ptTs\n", &sbwtime
);
721 nilfs_superblock_sb_write_time_secs_show(struct nilfs_superblock_attr
*attr
,
722 struct the_nilfs
*nilfs
,
727 down_read(&nilfs
->ns_sem
);
728 sbwtime
= nilfs
->ns_sbwtime
;
729 up_read(&nilfs
->ns_sem
);
731 return sysfs_emit(buf
, "%llu\n", sbwtime
);
735 nilfs_superblock_sb_write_count_show(struct nilfs_superblock_attr
*attr
,
736 struct the_nilfs
*nilfs
,
739 unsigned int sbwcount
;
741 down_read(&nilfs
->ns_sem
);
742 sbwcount
= nilfs
->ns_sbwcount
;
743 up_read(&nilfs
->ns_sem
);
745 return sysfs_emit(buf
, "%u\n", sbwcount
);
749 nilfs_superblock_sb_update_frequency_show(struct nilfs_superblock_attr
*attr
,
750 struct the_nilfs
*nilfs
,
753 unsigned int sb_update_freq
;
755 down_read(&nilfs
->ns_sem
);
756 sb_update_freq
= nilfs
->ns_sb_update_freq
;
757 up_read(&nilfs
->ns_sem
);
759 return sysfs_emit(buf
, "%u\n", sb_update_freq
);
763 nilfs_superblock_sb_update_frequency_store(struct nilfs_superblock_attr
*attr
,
764 struct the_nilfs
*nilfs
,
765 const char *buf
, size_t count
)
770 err
= kstrtouint(skip_spaces(buf
), 0, &val
);
772 nilfs_err(nilfs
->ns_sb
, "unable to convert string: err=%d",
777 if (val
< NILFS_SB_FREQ
) {
779 nilfs_warn(nilfs
->ns_sb
,
780 "superblock update frequency cannot be lesser than 10 seconds");
783 down_write(&nilfs
->ns_sem
);
784 nilfs
->ns_sb_update_freq
= val
;
785 up_write(&nilfs
->ns_sem
);
790 static const char sb_readme_str
[] =
791 "The superblock group contains attributes that describe\n"
792 "superblock's details.\n\n"
793 "(1) sb_write_time\n\tshow previous write time of super block "
794 "in human-readable format.\n\n"
795 "(2) sb_write_time_secs\n\tshow previous write time of super block "
797 "(3) sb_write_count\n\tshow write count of super block.\n\n"
798 "(4) sb_update_frequency\n"
799 "\tshow/set interval of periodical update of superblock (in seconds).\n\n"
800 "\tYou can set preferable frequency of superblock update by command:\n\n"
801 "\t'echo <val> > /sys/fs/<nilfs>/<dev>/superblock/sb_update_frequency'\n";
804 nilfs_superblock_README_show(struct nilfs_superblock_attr
*attr
,
805 struct the_nilfs
*nilfs
, char *buf
)
807 return sysfs_emit(buf
, sb_readme_str
);
810 NILFS_SUPERBLOCK_RO_ATTR(sb_write_time
);
811 NILFS_SUPERBLOCK_RO_ATTR(sb_write_time_secs
);
812 NILFS_SUPERBLOCK_RO_ATTR(sb_write_count
);
813 NILFS_SUPERBLOCK_RW_ATTR(sb_update_frequency
);
814 NILFS_SUPERBLOCK_RO_ATTR(README
);
816 static struct attribute
*nilfs_superblock_attrs
[] = {
817 NILFS_SUPERBLOCK_ATTR_LIST(sb_write_time
),
818 NILFS_SUPERBLOCK_ATTR_LIST(sb_write_time_secs
),
819 NILFS_SUPERBLOCK_ATTR_LIST(sb_write_count
),
820 NILFS_SUPERBLOCK_ATTR_LIST(sb_update_frequency
),
821 NILFS_SUPERBLOCK_ATTR_LIST(README
),
824 ATTRIBUTE_GROUPS(nilfs_superblock
);
826 NILFS_DEV_INT_GROUP_OPS(superblock
, dev
);
827 NILFS_DEV_INT_GROUP_TYPE(superblock
, dev
);
828 NILFS_DEV_INT_GROUP_FNS(superblock
, dev
);
830 /************************************************************************
831 * NILFS device attrs *
832 ************************************************************************/
835 ssize_t
nilfs_dev_revision_show(struct nilfs_dev_attr
*attr
,
836 struct the_nilfs
*nilfs
,
839 struct nilfs_super_block
*raw_sb
;
843 down_read(&nilfs
->ns_sem
);
844 raw_sb
= nilfs
->ns_sbp
[0];
845 major
= le32_to_cpu(raw_sb
->s_rev_level
);
846 minor
= le16_to_cpu(raw_sb
->s_minor_rev_level
);
847 up_read(&nilfs
->ns_sem
);
849 return sysfs_emit(buf
, "%d.%d\n", major
, minor
);
853 ssize_t
nilfs_dev_blocksize_show(struct nilfs_dev_attr
*attr
,
854 struct the_nilfs
*nilfs
,
857 return sysfs_emit(buf
, "%u\n", nilfs
->ns_blocksize
);
861 ssize_t
nilfs_dev_device_size_show(struct nilfs_dev_attr
*attr
,
862 struct the_nilfs
*nilfs
,
865 struct nilfs_super_block
*raw_sb
;
868 down_read(&nilfs
->ns_sem
);
869 raw_sb
= nilfs
->ns_sbp
[0];
870 dev_size
= le64_to_cpu(raw_sb
->s_dev_size
);
871 up_read(&nilfs
->ns_sem
);
873 return sysfs_emit(buf
, "%llu\n", dev_size
);
877 ssize_t
nilfs_dev_free_blocks_show(struct nilfs_dev_attr
*attr
,
878 struct the_nilfs
*nilfs
,
881 sector_t free_blocks
= 0;
883 nilfs_count_free_blocks(nilfs
, &free_blocks
);
884 return sysfs_emit(buf
, "%llu\n",
885 (unsigned long long)free_blocks
);
889 ssize_t
nilfs_dev_uuid_show(struct nilfs_dev_attr
*attr
,
890 struct the_nilfs
*nilfs
,
893 struct nilfs_super_block
*raw_sb
;
896 down_read(&nilfs
->ns_sem
);
897 raw_sb
= nilfs
->ns_sbp
[0];
898 len
= sysfs_emit(buf
, "%pUb\n", raw_sb
->s_uuid
);
899 up_read(&nilfs
->ns_sem
);
905 ssize_t
nilfs_dev_volume_name_show(struct nilfs_dev_attr
*attr
,
906 struct the_nilfs
*nilfs
,
909 struct nilfs_super_block
*raw_sb
;
912 down_read(&nilfs
->ns_sem
);
913 raw_sb
= nilfs
->ns_sbp
[0];
914 len
= scnprintf(buf
, sizeof(raw_sb
->s_volume_name
), "%s\n",
915 raw_sb
->s_volume_name
);
916 up_read(&nilfs
->ns_sem
);
921 static const char dev_readme_str
[] =
922 "The <device> group contains attributes that describe file system\n"
923 "partition's details.\n\n"
924 "(1) revision\n\tshow NILFS file system revision.\n\n"
925 "(2) blocksize\n\tshow volume block size in bytes.\n\n"
926 "(3) device_size\n\tshow volume size in bytes.\n\n"
927 "(4) free_blocks\n\tshow count of free blocks on volume.\n\n"
928 "(5) uuid\n\tshow volume's UUID.\n\n"
929 "(6) volume_name\n\tshow volume's name.\n\n";
931 static ssize_t
nilfs_dev_README_show(struct nilfs_dev_attr
*attr
,
932 struct the_nilfs
*nilfs
,
935 return sysfs_emit(buf
, dev_readme_str
);
938 NILFS_DEV_RO_ATTR(revision
);
939 NILFS_DEV_RO_ATTR(blocksize
);
940 NILFS_DEV_RO_ATTR(device_size
);
941 NILFS_DEV_RO_ATTR(free_blocks
);
942 NILFS_DEV_RO_ATTR(uuid
);
943 NILFS_DEV_RO_ATTR(volume_name
);
944 NILFS_DEV_RO_ATTR(README
);
946 static struct attribute
*nilfs_dev_attrs
[] = {
947 NILFS_DEV_ATTR_LIST(revision
),
948 NILFS_DEV_ATTR_LIST(blocksize
),
949 NILFS_DEV_ATTR_LIST(device_size
),
950 NILFS_DEV_ATTR_LIST(free_blocks
),
951 NILFS_DEV_ATTR_LIST(uuid
),
952 NILFS_DEV_ATTR_LIST(volume_name
),
953 NILFS_DEV_ATTR_LIST(README
),
956 ATTRIBUTE_GROUPS(nilfs_dev
);
958 static ssize_t
nilfs_dev_attr_show(struct kobject
*kobj
,
959 struct attribute
*attr
, char *buf
)
961 struct the_nilfs
*nilfs
= container_of(kobj
, struct the_nilfs
,
963 struct nilfs_dev_attr
*a
= container_of(attr
, struct nilfs_dev_attr
,
966 return a
->show
? a
->show(a
, nilfs
, buf
) : 0;
969 static ssize_t
nilfs_dev_attr_store(struct kobject
*kobj
,
970 struct attribute
*attr
,
971 const char *buf
, size_t len
)
973 struct the_nilfs
*nilfs
= container_of(kobj
, struct the_nilfs
,
975 struct nilfs_dev_attr
*a
= container_of(attr
, struct nilfs_dev_attr
,
978 return a
->store
? a
->store(a
, nilfs
, buf
, len
) : 0;
981 static void nilfs_dev_attr_release(struct kobject
*kobj
)
983 struct the_nilfs
*nilfs
= container_of(kobj
, struct the_nilfs
,
985 complete(&nilfs
->ns_dev_kobj_unregister
);
988 static const struct sysfs_ops nilfs_dev_attr_ops
= {
989 .show
= nilfs_dev_attr_show
,
990 .store
= nilfs_dev_attr_store
,
993 static const struct kobj_type nilfs_dev_ktype
= {
994 .default_groups
= nilfs_dev_groups
,
995 .sysfs_ops
= &nilfs_dev_attr_ops
,
996 .release
= nilfs_dev_attr_release
,
999 int nilfs_sysfs_create_device_group(struct super_block
*sb
)
1001 struct the_nilfs
*nilfs
= sb
->s_fs_info
;
1002 size_t devgrp_size
= sizeof(struct nilfs_sysfs_dev_subgroups
);
1005 nilfs
->ns_dev_subgroups
= kzalloc(devgrp_size
, GFP_KERNEL
);
1006 if (unlikely(!nilfs
->ns_dev_subgroups
)) {
1008 nilfs_err(sb
, "unable to allocate memory for device group");
1009 goto failed_create_device_group
;
1012 nilfs
->ns_dev_kobj
.kset
= nilfs_kset
;
1013 init_completion(&nilfs
->ns_dev_kobj_unregister
);
1014 err
= kobject_init_and_add(&nilfs
->ns_dev_kobj
, &nilfs_dev_ktype
, NULL
,
1017 goto cleanup_dev_kobject
;
1019 err
= nilfs_sysfs_create_mounted_snapshots_group(nilfs
);
1021 goto cleanup_dev_kobject
;
1023 err
= nilfs_sysfs_create_checkpoints_group(nilfs
);
1025 goto delete_mounted_snapshots_group
;
1027 err
= nilfs_sysfs_create_segments_group(nilfs
);
1029 goto delete_checkpoints_group
;
1031 err
= nilfs_sysfs_create_superblock_group(nilfs
);
1033 goto delete_segments_group
;
1035 err
= nilfs_sysfs_create_segctor_group(nilfs
);
1037 goto delete_superblock_group
;
1041 delete_superblock_group
:
1042 nilfs_sysfs_delete_superblock_group(nilfs
);
1044 delete_segments_group
:
1045 nilfs_sysfs_delete_segments_group(nilfs
);
1047 delete_checkpoints_group
:
1048 nilfs_sysfs_delete_checkpoints_group(nilfs
);
1050 delete_mounted_snapshots_group
:
1051 nilfs_sysfs_delete_mounted_snapshots_group(nilfs
);
1053 cleanup_dev_kobject
:
1054 kobject_put(&nilfs
->ns_dev_kobj
);
1055 kfree(nilfs
->ns_dev_subgroups
);
1057 failed_create_device_group
:
1061 void nilfs_sysfs_delete_device_group(struct the_nilfs
*nilfs
)
1063 nilfs_sysfs_delete_mounted_snapshots_group(nilfs
);
1064 nilfs_sysfs_delete_checkpoints_group(nilfs
);
1065 nilfs_sysfs_delete_segments_group(nilfs
);
1066 nilfs_sysfs_delete_superblock_group(nilfs
);
1067 nilfs_sysfs_delete_segctor_group(nilfs
);
1068 kobject_del(&nilfs
->ns_dev_kobj
);
1069 kobject_put(&nilfs
->ns_dev_kobj
);
1070 kfree(nilfs
->ns_dev_subgroups
);
1073 /************************************************************************
1074 * NILFS feature attrs *
1075 ************************************************************************/
1077 static ssize_t
nilfs_feature_revision_show(struct kobject
*kobj
,
1078 struct attribute
*attr
, char *buf
)
1080 return sysfs_emit(buf
, "%d.%d\n",
1081 NILFS_CURRENT_REV
, NILFS_MINOR_REV
);
1084 static const char features_readme_str
[] =
1085 "The features group contains attributes that describe NILFS file\n"
1086 "system driver features.\n\n"
1087 "(1) revision\n\tshow current revision of NILFS file system driver.\n";
1089 static ssize_t
nilfs_feature_README_show(struct kobject
*kobj
,
1090 struct attribute
*attr
,
1093 return sysfs_emit(buf
, features_readme_str
);
1096 NILFS_FEATURE_RO_ATTR(revision
);
1097 NILFS_FEATURE_RO_ATTR(README
);
1099 static struct attribute
*nilfs_feature_attrs
[] = {
1100 NILFS_FEATURE_ATTR_LIST(revision
),
1101 NILFS_FEATURE_ATTR_LIST(README
),
1105 static const struct attribute_group nilfs_feature_attr_group
= {
1107 .attrs
= nilfs_feature_attrs
,
1110 int __init
nilfs_sysfs_init(void)
1114 nilfs_kset
= kset_create_and_add(NILFS_ROOT_GROUP_NAME
, NULL
, fs_kobj
);
1117 nilfs_err(NULL
, "unable to create sysfs entry: err=%d", err
);
1118 goto failed_sysfs_init
;
1121 err
= sysfs_create_group(&nilfs_kset
->kobj
, &nilfs_feature_attr_group
);
1122 if (unlikely(err
)) {
1123 nilfs_err(NULL
, "unable to create feature group: err=%d", err
);
1124 goto cleanup_sysfs_init
;
1130 kset_unregister(nilfs_kset
);
1136 void nilfs_sysfs_exit(void)
1138 sysfs_remove_group(&nilfs_kset
->kobj
, &nilfs_feature_attr_group
);
1139 kset_unregister(nilfs_kset
);