2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/spinlock.h>
22 #include <linux/completion.h>
23 #include <linux/buffer_head.h>
24 #include <linux/kobject.h>
25 #include <linux/bug.h>
26 #include <linux/genhd.h>
27 #include <linux/debugfs.h>
31 #include "transaction.h"
35 static inline struct btrfs_fs_info
*to_fs_info(struct kobject
*kobj
);
36 static inline struct btrfs_fs_devices
*to_fs_devs(struct kobject
*kobj
);
38 static u64
get_features(struct btrfs_fs_info
*fs_info
,
39 enum btrfs_feature_set set
)
41 struct btrfs_super_block
*disk_super
= fs_info
->super_copy
;
42 if (set
== FEAT_COMPAT
)
43 return btrfs_super_compat_flags(disk_super
);
44 else if (set
== FEAT_COMPAT_RO
)
45 return btrfs_super_compat_ro_flags(disk_super
);
47 return btrfs_super_incompat_flags(disk_super
);
50 static void set_features(struct btrfs_fs_info
*fs_info
,
51 enum btrfs_feature_set set
, u64 features
)
53 struct btrfs_super_block
*disk_super
= fs_info
->super_copy
;
54 if (set
== FEAT_COMPAT
)
55 btrfs_set_super_compat_flags(disk_super
, features
);
56 else if (set
== FEAT_COMPAT_RO
)
57 btrfs_set_super_compat_ro_flags(disk_super
, features
);
59 btrfs_set_super_incompat_flags(disk_super
, features
);
62 static int can_modify_feature(struct btrfs_feature_attr
*fa
)
66 switch (fa
->feature_set
) {
68 set
= BTRFS_FEATURE_COMPAT_SAFE_SET
;
69 clear
= BTRFS_FEATURE_COMPAT_SAFE_CLEAR
;
72 set
= BTRFS_FEATURE_COMPAT_RO_SAFE_SET
;
73 clear
= BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR
;
76 set
= BTRFS_FEATURE_INCOMPAT_SAFE_SET
;
77 clear
= BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR
;
80 printk(KERN_WARNING
"btrfs: sysfs: unknown feature set %d\n",
85 if (set
& fa
->feature_bit
)
87 if (clear
& fa
->feature_bit
)
93 static ssize_t
btrfs_feature_attr_show(struct kobject
*kobj
,
94 struct kobj_attribute
*a
, char *buf
)
97 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
98 struct btrfs_feature_attr
*fa
= to_btrfs_feature_attr(a
);
100 u64 features
= get_features(fs_info
, fa
->feature_set
);
101 if (features
& fa
->feature_bit
)
104 val
= can_modify_feature(fa
);
106 return snprintf(buf
, PAGE_SIZE
, "%d\n", val
);
109 static ssize_t
btrfs_feature_attr_store(struct kobject
*kobj
,
110 struct kobj_attribute
*a
,
111 const char *buf
, size_t count
)
113 struct btrfs_fs_info
*fs_info
;
114 struct btrfs_feature_attr
*fa
= to_btrfs_feature_attr(a
);
115 u64 features
, set
, clear
;
119 fs_info
= to_fs_info(kobj
);
123 if (fs_info
->sb
->s_flags
& MS_RDONLY
)
126 ret
= kstrtoul(skip_spaces(buf
), 0, &val
);
130 if (fa
->feature_set
== FEAT_COMPAT
) {
131 set
= BTRFS_FEATURE_COMPAT_SAFE_SET
;
132 clear
= BTRFS_FEATURE_COMPAT_SAFE_CLEAR
;
133 } else if (fa
->feature_set
== FEAT_COMPAT_RO
) {
134 set
= BTRFS_FEATURE_COMPAT_RO_SAFE_SET
;
135 clear
= BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR
;
137 set
= BTRFS_FEATURE_INCOMPAT_SAFE_SET
;
138 clear
= BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR
;
141 features
= get_features(fs_info
, fa
->feature_set
);
144 if ((val
&& (features
& fa
->feature_bit
)) ||
145 (!val
&& !(features
& fa
->feature_bit
)))
148 if ((val
&& !(set
& fa
->feature_bit
)) ||
149 (!val
&& !(clear
& fa
->feature_bit
))) {
151 "%sabling feature %s on mounted fs is not supported.",
152 val
? "En" : "Dis", fa
->kobj_attr
.attr
.name
);
156 btrfs_info(fs_info
, "%s %s feature flag",
157 val
? "Setting" : "Clearing", fa
->kobj_attr
.attr
.name
);
159 spin_lock(&fs_info
->super_lock
);
160 features
= get_features(fs_info
, fa
->feature_set
);
162 features
|= fa
->feature_bit
;
164 features
&= ~fa
->feature_bit
;
165 set_features(fs_info
, fa
->feature_set
, features
);
166 spin_unlock(&fs_info
->super_lock
);
169 * We don't want to do full transaction commit from inside sysfs
171 btrfs_set_pending(fs_info
, COMMIT
);
172 wake_up_process(fs_info
->transaction_kthread
);
177 static umode_t
btrfs_feature_visible(struct kobject
*kobj
,
178 struct attribute
*attr
, int unused
)
180 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
181 umode_t mode
= attr
->mode
;
184 struct btrfs_feature_attr
*fa
;
187 fa
= attr_to_btrfs_feature_attr(attr
);
188 features
= get_features(fs_info
, fa
->feature_set
);
190 if (can_modify_feature(fa
))
192 else if (!(features
& fa
->feature_bit
))
199 BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref
, MIXED_BACKREF
);
200 BTRFS_FEAT_ATTR_INCOMPAT(default_subvol
, DEFAULT_SUBVOL
);
201 BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups
, MIXED_GROUPS
);
202 BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo
, COMPRESS_LZO
);
203 BTRFS_FEAT_ATTR_INCOMPAT(big_metadata
, BIG_METADATA
);
204 BTRFS_FEAT_ATTR_INCOMPAT(extended_iref
, EXTENDED_IREF
);
205 BTRFS_FEAT_ATTR_INCOMPAT(raid56
, RAID56
);
206 BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata
, SKINNY_METADATA
);
207 BTRFS_FEAT_ATTR_INCOMPAT(no_holes
, NO_HOLES
);
208 BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree
, FREE_SPACE_TREE
);
210 static struct attribute
*btrfs_supported_feature_attrs
[] = {
211 BTRFS_FEAT_ATTR_PTR(mixed_backref
),
212 BTRFS_FEAT_ATTR_PTR(default_subvol
),
213 BTRFS_FEAT_ATTR_PTR(mixed_groups
),
214 BTRFS_FEAT_ATTR_PTR(compress_lzo
),
215 BTRFS_FEAT_ATTR_PTR(big_metadata
),
216 BTRFS_FEAT_ATTR_PTR(extended_iref
),
217 BTRFS_FEAT_ATTR_PTR(raid56
),
218 BTRFS_FEAT_ATTR_PTR(skinny_metadata
),
219 BTRFS_FEAT_ATTR_PTR(no_holes
),
220 BTRFS_FEAT_ATTR_PTR(free_space_tree
),
224 static const struct attribute_group btrfs_feature_attr_group
= {
226 .is_visible
= btrfs_feature_visible
,
227 .attrs
= btrfs_supported_feature_attrs
,
230 static ssize_t
btrfs_show_u64(u64
*value_ptr
, spinlock_t
*lock
, char *buf
)
238 return snprintf(buf
, PAGE_SIZE
, "%llu\n", val
);
241 static ssize_t
global_rsv_size_show(struct kobject
*kobj
,
242 struct kobj_attribute
*ka
, char *buf
)
244 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
->parent
);
245 struct btrfs_block_rsv
*block_rsv
= &fs_info
->global_block_rsv
;
246 return btrfs_show_u64(&block_rsv
->size
, &block_rsv
->lock
, buf
);
248 BTRFS_ATTR(global_rsv_size
, global_rsv_size_show
);
250 static ssize_t
global_rsv_reserved_show(struct kobject
*kobj
,
251 struct kobj_attribute
*a
, char *buf
)
253 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
->parent
);
254 struct btrfs_block_rsv
*block_rsv
= &fs_info
->global_block_rsv
;
255 return btrfs_show_u64(&block_rsv
->reserved
, &block_rsv
->lock
, buf
);
257 BTRFS_ATTR(global_rsv_reserved
, global_rsv_reserved_show
);
259 #define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj)
260 #define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj)
262 static ssize_t
raid_bytes_show(struct kobject
*kobj
,
263 struct kobj_attribute
*attr
, char *buf
);
264 BTRFS_RAID_ATTR(total_bytes
, raid_bytes_show
);
265 BTRFS_RAID_ATTR(used_bytes
, raid_bytes_show
);
267 static ssize_t
raid_bytes_show(struct kobject
*kobj
,
268 struct kobj_attribute
*attr
, char *buf
)
271 struct btrfs_space_info
*sinfo
= to_space_info(kobj
->parent
);
272 struct btrfs_block_group_cache
*block_group
;
273 int index
= to_raid_kobj(kobj
)->raid_type
;
276 down_read(&sinfo
->groups_sem
);
277 list_for_each_entry(block_group
, &sinfo
->block_groups
[index
], list
) {
278 if (&attr
->attr
== BTRFS_RAID_ATTR_PTR(total_bytes
))
279 val
+= block_group
->key
.offset
;
281 val
+= btrfs_block_group_used(&block_group
->item
);
283 up_read(&sinfo
->groups_sem
);
284 return snprintf(buf
, PAGE_SIZE
, "%llu\n", val
);
287 static struct attribute
*raid_attributes
[] = {
288 BTRFS_RAID_ATTR_PTR(total_bytes
),
289 BTRFS_RAID_ATTR_PTR(used_bytes
),
293 static void release_raid_kobj(struct kobject
*kobj
)
295 kfree(to_raid_kobj(kobj
));
298 struct kobj_type btrfs_raid_ktype
= {
299 .sysfs_ops
= &kobj_sysfs_ops
,
300 .release
= release_raid_kobj
,
301 .default_attrs
= raid_attributes
,
304 #define SPACE_INFO_ATTR(field) \
305 static ssize_t btrfs_space_info_show_##field(struct kobject *kobj, \
306 struct kobj_attribute *a, \
309 struct btrfs_space_info *sinfo = to_space_info(kobj); \
310 return btrfs_show_u64(&sinfo->field, &sinfo->lock, buf); \
312 BTRFS_ATTR(field, btrfs_space_info_show_##field)
314 static ssize_t
btrfs_space_info_show_total_bytes_pinned(struct kobject
*kobj
,
315 struct kobj_attribute
*a
,
318 struct btrfs_space_info
*sinfo
= to_space_info(kobj
);
319 s64 val
= percpu_counter_sum(&sinfo
->total_bytes_pinned
);
320 return snprintf(buf
, PAGE_SIZE
, "%lld\n", val
);
323 SPACE_INFO_ATTR(flags
);
324 SPACE_INFO_ATTR(total_bytes
);
325 SPACE_INFO_ATTR(bytes_used
);
326 SPACE_INFO_ATTR(bytes_pinned
);
327 SPACE_INFO_ATTR(bytes_reserved
);
328 SPACE_INFO_ATTR(bytes_may_use
);
329 SPACE_INFO_ATTR(bytes_readonly
);
330 SPACE_INFO_ATTR(disk_used
);
331 SPACE_INFO_ATTR(disk_total
);
332 BTRFS_ATTR(total_bytes_pinned
, btrfs_space_info_show_total_bytes_pinned
);
334 static struct attribute
*space_info_attrs
[] = {
335 BTRFS_ATTR_PTR(flags
),
336 BTRFS_ATTR_PTR(total_bytes
),
337 BTRFS_ATTR_PTR(bytes_used
),
338 BTRFS_ATTR_PTR(bytes_pinned
),
339 BTRFS_ATTR_PTR(bytes_reserved
),
340 BTRFS_ATTR_PTR(bytes_may_use
),
341 BTRFS_ATTR_PTR(bytes_readonly
),
342 BTRFS_ATTR_PTR(disk_used
),
343 BTRFS_ATTR_PTR(disk_total
),
344 BTRFS_ATTR_PTR(total_bytes_pinned
),
348 static void space_info_release(struct kobject
*kobj
)
350 struct btrfs_space_info
*sinfo
= to_space_info(kobj
);
351 percpu_counter_destroy(&sinfo
->total_bytes_pinned
);
355 struct kobj_type space_info_ktype
= {
356 .sysfs_ops
= &kobj_sysfs_ops
,
357 .release
= space_info_release
,
358 .default_attrs
= space_info_attrs
,
361 static const struct attribute
*allocation_attrs
[] = {
362 BTRFS_ATTR_PTR(global_rsv_reserved
),
363 BTRFS_ATTR_PTR(global_rsv_size
),
367 static ssize_t
btrfs_label_show(struct kobject
*kobj
,
368 struct kobj_attribute
*a
, char *buf
)
370 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
371 char *label
= fs_info
->super_copy
->label
;
374 spin_lock(&fs_info
->super_lock
);
375 ret
= snprintf(buf
, PAGE_SIZE
, label
[0] ? "%s\n" : "%s", label
);
376 spin_unlock(&fs_info
->super_lock
);
381 static ssize_t
btrfs_label_store(struct kobject
*kobj
,
382 struct kobj_attribute
*a
,
383 const char *buf
, size_t len
)
385 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
391 if (fs_info
->sb
->s_flags
& MS_RDONLY
)
395 * p_len is the len until the first occurrence of either
398 p_len
= strcspn(buf
, "\n");
400 if (p_len
>= BTRFS_LABEL_SIZE
)
403 spin_lock(&fs_info
->super_lock
);
404 memset(fs_info
->super_copy
->label
, 0, BTRFS_LABEL_SIZE
);
405 memcpy(fs_info
->super_copy
->label
, buf
, p_len
);
406 spin_unlock(&fs_info
->super_lock
);
409 * We don't want to do full transaction commit from inside sysfs
411 btrfs_set_pending(fs_info
, COMMIT
);
412 wake_up_process(fs_info
->transaction_kthread
);
416 BTRFS_ATTR_RW(label
, btrfs_label_show
, btrfs_label_store
);
418 static ssize_t
btrfs_nodesize_show(struct kobject
*kobj
,
419 struct kobj_attribute
*a
, char *buf
)
421 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
423 return snprintf(buf
, PAGE_SIZE
, "%u\n", fs_info
->super_copy
->nodesize
);
426 BTRFS_ATTR(nodesize
, btrfs_nodesize_show
);
428 static ssize_t
btrfs_sectorsize_show(struct kobject
*kobj
,
429 struct kobj_attribute
*a
, char *buf
)
431 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
433 return snprintf(buf
, PAGE_SIZE
, "%u\n", fs_info
->super_copy
->sectorsize
);
436 BTRFS_ATTR(sectorsize
, btrfs_sectorsize_show
);
438 static ssize_t
btrfs_clone_alignment_show(struct kobject
*kobj
,
439 struct kobj_attribute
*a
, char *buf
)
441 struct btrfs_fs_info
*fs_info
= to_fs_info(kobj
);
443 return snprintf(buf
, PAGE_SIZE
, "%u\n", fs_info
->super_copy
->sectorsize
);
446 BTRFS_ATTR(clone_alignment
, btrfs_clone_alignment_show
);
448 static const struct attribute
*btrfs_attrs
[] = {
449 BTRFS_ATTR_PTR(label
),
450 BTRFS_ATTR_PTR(nodesize
),
451 BTRFS_ATTR_PTR(sectorsize
),
452 BTRFS_ATTR_PTR(clone_alignment
),
456 static void btrfs_release_fsid_kobj(struct kobject
*kobj
)
458 struct btrfs_fs_devices
*fs_devs
= to_fs_devs(kobj
);
460 memset(&fs_devs
->fsid_kobj
, 0, sizeof(struct kobject
));
461 complete(&fs_devs
->kobj_unregister
);
464 static struct kobj_type btrfs_ktype
= {
465 .sysfs_ops
= &kobj_sysfs_ops
,
466 .release
= btrfs_release_fsid_kobj
,
469 static inline struct btrfs_fs_devices
*to_fs_devs(struct kobject
*kobj
)
471 if (kobj
->ktype
!= &btrfs_ktype
)
473 return container_of(kobj
, struct btrfs_fs_devices
, fsid_kobj
);
476 static inline struct btrfs_fs_info
*to_fs_info(struct kobject
*kobj
)
478 if (kobj
->ktype
!= &btrfs_ktype
)
480 return to_fs_devs(kobj
)->fs_info
;
483 #define NUM_FEATURE_BITS 64
484 static char btrfs_unknown_feature_names
[3][NUM_FEATURE_BITS
][13];
485 static struct btrfs_feature_attr btrfs_feature_attrs
[3][NUM_FEATURE_BITS
];
487 static const u64 supported_feature_masks
[3] = {
488 [FEAT_COMPAT
] = BTRFS_FEATURE_COMPAT_SUPP
,
489 [FEAT_COMPAT_RO
] = BTRFS_FEATURE_COMPAT_RO_SUPP
,
490 [FEAT_INCOMPAT
] = BTRFS_FEATURE_INCOMPAT_SUPP
,
493 static int addrm_unknown_feature_attrs(struct btrfs_fs_info
*fs_info
, bool add
)
497 for (set
= 0; set
< FEAT_MAX
; set
++) {
499 struct attribute
*attrs
[2];
500 struct attribute_group agroup
= {
504 u64 features
= get_features(fs_info
, set
);
505 features
&= ~supported_feature_masks
[set
];
511 for (i
= 0; i
< NUM_FEATURE_BITS
; i
++) {
512 struct btrfs_feature_attr
*fa
;
514 if (!(features
& (1ULL << i
)))
517 fa
= &btrfs_feature_attrs
[set
][i
];
518 attrs
[0] = &fa
->kobj_attr
.attr
;
521 ret
= sysfs_merge_group(&fs_info
->fs_devices
->fsid_kobj
,
526 sysfs_unmerge_group(&fs_info
->fs_devices
->fsid_kobj
,
534 static void __btrfs_sysfs_remove_fsid(struct btrfs_fs_devices
*fs_devs
)
536 if (fs_devs
->device_dir_kobj
) {
537 kobject_del(fs_devs
->device_dir_kobj
);
538 kobject_put(fs_devs
->device_dir_kobj
);
539 fs_devs
->device_dir_kobj
= NULL
;
542 if (fs_devs
->fsid_kobj
.state_initialized
) {
543 kobject_del(&fs_devs
->fsid_kobj
);
544 kobject_put(&fs_devs
->fsid_kobj
);
545 wait_for_completion(&fs_devs
->kobj_unregister
);
549 /* when fs_devs is NULL it will remove all fsid kobject */
550 void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices
*fs_devs
)
552 struct list_head
*fs_uuids
= btrfs_get_fs_uuids();
555 __btrfs_sysfs_remove_fsid(fs_devs
);
559 list_for_each_entry(fs_devs
, fs_uuids
, list
) {
560 __btrfs_sysfs_remove_fsid(fs_devs
);
564 void btrfs_sysfs_remove_mounted(struct btrfs_fs_info
*fs_info
)
566 btrfs_reset_fs_info_ptr(fs_info
);
568 if (fs_info
->space_info_kobj
) {
569 sysfs_remove_files(fs_info
->space_info_kobj
, allocation_attrs
);
570 kobject_del(fs_info
->space_info_kobj
);
571 kobject_put(fs_info
->space_info_kobj
);
573 addrm_unknown_feature_attrs(fs_info
, false);
574 sysfs_remove_group(&fs_info
->fs_devices
->fsid_kobj
, &btrfs_feature_attr_group
);
575 sysfs_remove_files(&fs_info
->fs_devices
->fsid_kobj
, btrfs_attrs
);
576 btrfs_sysfs_rm_device_link(fs_info
->fs_devices
, NULL
);
579 const char * const btrfs_feature_set_names
[3] = {
580 [FEAT_COMPAT
] = "compat",
581 [FEAT_COMPAT_RO
] = "compat_ro",
582 [FEAT_INCOMPAT
] = "incompat",
585 char *btrfs_printable_features(enum btrfs_feature_set set
, u64 flags
)
587 size_t bufsize
= 4096; /* safe max, 64 names * 64 bytes */
592 str
= kmalloc(bufsize
, GFP_KERNEL
);
596 for (i
= 0; i
< ARRAY_SIZE(btrfs_feature_attrs
[set
]); i
++) {
599 if (!(flags
& (1ULL << i
)))
602 name
= btrfs_feature_attrs
[set
][i
].kobj_attr
.attr
.name
;
603 len
+= snprintf(str
+ len
, bufsize
- len
, "%s%s",
604 len
? "," : "", name
);
610 static void init_feature_attrs(void)
612 struct btrfs_feature_attr
*fa
;
615 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names
) !=
616 ARRAY_SIZE(btrfs_feature_attrs
));
617 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names
[0]) !=
618 ARRAY_SIZE(btrfs_feature_attrs
[0]));
620 memset(btrfs_feature_attrs
, 0, sizeof(btrfs_feature_attrs
));
621 memset(btrfs_unknown_feature_names
, 0,
622 sizeof(btrfs_unknown_feature_names
));
624 for (i
= 0; btrfs_supported_feature_attrs
[i
]; i
++) {
625 struct btrfs_feature_attr
*sfa
;
626 struct attribute
*a
= btrfs_supported_feature_attrs
[i
];
628 sfa
= attr_to_btrfs_feature_attr(a
);
629 bit
= ilog2(sfa
->feature_bit
);
630 fa
= &btrfs_feature_attrs
[sfa
->feature_set
][bit
];
632 fa
->kobj_attr
.attr
.name
= sfa
->kobj_attr
.attr
.name
;
635 for (set
= 0; set
< FEAT_MAX
; set
++) {
636 for (i
= 0; i
< ARRAY_SIZE(btrfs_feature_attrs
[set
]); i
++) {
637 char *name
= btrfs_unknown_feature_names
[set
][i
];
638 fa
= &btrfs_feature_attrs
[set
][i
];
640 if (fa
->kobj_attr
.attr
.name
)
643 snprintf(name
, 13, "%s:%u",
644 btrfs_feature_set_names
[set
], i
);
646 fa
->kobj_attr
.attr
.name
= name
;
647 fa
->kobj_attr
.attr
.mode
= S_IRUGO
;
648 fa
->feature_set
= set
;
649 fa
->feature_bit
= 1ULL << i
;
654 /* when one_device is NULL, it removes all device links */
656 int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices
*fs_devices
,
657 struct btrfs_device
*one_device
)
659 struct hd_struct
*disk
;
660 struct kobject
*disk_kobj
;
662 if (!fs_devices
->device_dir_kobj
)
665 if (one_device
&& one_device
->bdev
) {
666 disk
= one_device
->bdev
->bd_part
;
667 disk_kobj
= &part_to_dev(disk
)->kobj
;
669 sysfs_remove_link(fs_devices
->device_dir_kobj
,
676 list_for_each_entry(one_device
,
677 &fs_devices
->devices
, dev_list
) {
678 if (!one_device
->bdev
)
680 disk
= one_device
->bdev
->bd_part
;
681 disk_kobj
= &part_to_dev(disk
)->kobj
;
683 sysfs_remove_link(fs_devices
->device_dir_kobj
,
690 int btrfs_sysfs_add_device(struct btrfs_fs_devices
*fs_devs
)
692 if (!fs_devs
->device_dir_kobj
)
693 fs_devs
->device_dir_kobj
= kobject_create_and_add("devices",
694 &fs_devs
->fsid_kobj
);
696 if (!fs_devs
->device_dir_kobj
)
702 int btrfs_sysfs_add_device_link(struct btrfs_fs_devices
*fs_devices
,
703 struct btrfs_device
*one_device
)
706 struct btrfs_device
*dev
;
708 list_for_each_entry(dev
, &fs_devices
->devices
, dev_list
) {
709 struct hd_struct
*disk
;
710 struct kobject
*disk_kobj
;
715 if (one_device
&& one_device
!= dev
)
718 disk
= dev
->bdev
->bd_part
;
719 disk_kobj
= &part_to_dev(disk
)->kobj
;
721 error
= sysfs_create_link(fs_devices
->device_dir_kobj
,
722 disk_kobj
, disk_kobj
->name
);
730 /* /sys/fs/btrfs/ entry */
731 static struct kset
*btrfs_kset
;
733 /* /sys/kernel/debug/btrfs */
734 static struct dentry
*btrfs_debugfs_root_dentry
;
736 /* Debugging tunables and exported data */
737 u64 btrfs_debugfs_test
;
740 * Can be called by the device discovery thread.
741 * And parent can be specified for seed device
743 int btrfs_sysfs_add_fsid(struct btrfs_fs_devices
*fs_devs
,
744 struct kobject
*parent
)
748 init_completion(&fs_devs
->kobj_unregister
);
749 fs_devs
->fsid_kobj
.kset
= btrfs_kset
;
750 error
= kobject_init_and_add(&fs_devs
->fsid_kobj
,
751 &btrfs_ktype
, parent
, "%pU", fs_devs
->fsid
);
755 int btrfs_sysfs_add_mounted(struct btrfs_fs_info
*fs_info
)
758 struct btrfs_fs_devices
*fs_devs
= fs_info
->fs_devices
;
759 struct kobject
*fsid_kobj
= &fs_devs
->fsid_kobj
;
761 btrfs_set_fs_info_ptr(fs_info
);
763 error
= btrfs_sysfs_add_device_link(fs_devs
, NULL
);
767 error
= sysfs_create_files(fsid_kobj
, btrfs_attrs
);
769 btrfs_sysfs_rm_device_link(fs_devs
, NULL
);
773 error
= sysfs_create_group(fsid_kobj
,
774 &btrfs_feature_attr_group
);
778 error
= addrm_unknown_feature_attrs(fs_info
, true);
782 fs_info
->space_info_kobj
= kobject_create_and_add("allocation",
784 if (!fs_info
->space_info_kobj
) {
789 error
= sysfs_create_files(fs_info
->space_info_kobj
, allocation_attrs
);
795 btrfs_sysfs_remove_mounted(fs_info
);
801 * Change per-fs features in /sys/fs/btrfs/UUID/features to match current
802 * values in superblock. Call after any changes to incompat/compat_ro flags
804 void btrfs_sysfs_feature_update(struct btrfs_fs_info
*fs_info
,
805 u64 bit
, enum btrfs_feature_set set
)
807 struct btrfs_fs_devices
*fs_devs
;
808 struct kobject
*fsid_kobj
;
815 features
= get_features(fs_info
, set
);
816 ASSERT(bit
& supported_feature_masks
[set
]);
818 fs_devs
= fs_info
->fs_devices
;
819 fsid_kobj
= &fs_devs
->fsid_kobj
;
821 if (!fsid_kobj
->state_initialized
)
825 * FIXME: this is too heavy to update just one value, ideally we'd like
826 * to use sysfs_update_group but some refactoring is needed first.
828 sysfs_remove_group(fsid_kobj
, &btrfs_feature_attr_group
);
829 ret
= sysfs_create_group(fsid_kobj
, &btrfs_feature_attr_group
);
832 static int btrfs_init_debugfs(void)
834 #ifdef CONFIG_DEBUG_FS
835 btrfs_debugfs_root_dentry
= debugfs_create_dir("btrfs", NULL
);
836 if (!btrfs_debugfs_root_dentry
)
839 debugfs_create_u64("test", S_IRUGO
| S_IWUGO
, btrfs_debugfs_root_dentry
,
840 &btrfs_debugfs_test
);
845 int btrfs_init_sysfs(void)
849 btrfs_kset
= kset_create_and_add("btrfs", NULL
, fs_kobj
);
853 ret
= btrfs_init_debugfs();
857 init_feature_attrs();
858 ret
= sysfs_create_group(&btrfs_kset
->kobj
, &btrfs_feature_attr_group
);
864 debugfs_remove_recursive(btrfs_debugfs_root_dentry
);
866 kset_unregister(btrfs_kset
);
871 void btrfs_exit_sysfs(void)
873 sysfs_remove_group(&btrfs_kset
->kobj
, &btrfs_feature_attr_group
);
874 kset_unregister(btrfs_kset
);
875 debugfs_remove_recursive(btrfs_debugfs_root_dentry
);