Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 2 | |
| 3 | #ifndef BTRFS_SYSFS_H |
| 4 | #define BTRFS_SYSFS_H |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 5 | |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 6 | /* |
| 7 | * Data exported through sysfs |
| 8 | */ |
| 9 | extern u64 btrfs_debugfs_test; |
| 10 | |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 11 | enum btrfs_feature_set { |
Tomohiro Misono | 6c52157 | 2018-05-16 17:09:26 +0900 | [diff] [blame] | 12 | FEAT_COMPAT = 0, |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 13 | FEAT_COMPAT_RO, |
| 14 | FEAT_INCOMPAT, |
| 15 | FEAT_MAX |
| 16 | }; |
| 17 | |
| 18 | #define __INIT_KOBJ_ATTR(_name, _mode, _show, _store) \ |
| 19 | { \ |
| 20 | .attr = { .name = __stringify(_name), .mode = _mode }, \ |
| 21 | .show = _show, \ |
| 22 | .store = _store, \ |
| 23 | } |
| 24 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 25 | #define BTRFS_ATTR_RW(_prefix, _name, _show, _store) \ |
| 26 | static struct kobj_attribute btrfs_attr_##_prefix##_##_name = \ |
Anand Jain | 20ee082 | 2014-07-30 20:04:09 +0800 | [diff] [blame] | 27 | __INIT_KOBJ_ATTR(_name, 0644, _show, _store) |
Anand Jain | 98b3d38 | 2014-07-30 20:04:08 +0800 | [diff] [blame] | 28 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 29 | #define BTRFS_ATTR(_prefix, _name, _show) \ |
| 30 | static struct kobj_attribute btrfs_attr_##_prefix##_##_name = \ |
Anand Jain | 20ee082 | 2014-07-30 20:04:09 +0800 | [diff] [blame] | 31 | __INIT_KOBJ_ATTR(_name, 0444, _show, NULL) |
Anand Jain | 98b3d38 | 2014-07-30 20:04:08 +0800 | [diff] [blame] | 32 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 33 | #define BTRFS_ATTR_PTR(_prefix, _name) \ |
| 34 | (&btrfs_attr_##_prefix##_##_name.attr) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 35 | |
| 36 | |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 37 | struct btrfs_feature_attr { |
| 38 | struct kobj_attribute kobj_attr; |
| 39 | enum btrfs_feature_set feature_set; |
| 40 | u64 feature_bit; |
| 41 | }; |
| 42 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 43 | #define BTRFS_FEAT_ATTR(_name, _feature_set, _feature_prefix, _feature_bit) \ |
| 44 | static struct btrfs_feature_attr btrfs_attr_features_##_name = { \ |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 45 | .kobj_attr = __INIT_KOBJ_ATTR(_name, S_IRUGO, \ |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 46 | btrfs_feature_attr_show, \ |
| 47 | btrfs_feature_attr_store), \ |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 48 | .feature_set = _feature_set, \ |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 49 | .feature_bit = _feature_prefix ##_## _feature_bit, \ |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 50 | } |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 51 | #define BTRFS_FEAT_ATTR_PTR(_name) \ |
| 52 | (&btrfs_attr_features_##_name.kobj_attr.attr) |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 53 | |
| 54 | #define BTRFS_FEAT_ATTR_COMPAT(name, feature) \ |
| 55 | BTRFS_FEAT_ATTR(name, FEAT_COMPAT, BTRFS_FEATURE_COMPAT, feature) |
| 56 | #define BTRFS_FEAT_ATTR_COMPAT_RO(name, feature) \ |
David Sterba | ba2d084 | 2016-01-20 19:07:04 +0100 | [diff] [blame] | 57 | BTRFS_FEAT_ATTR(name, FEAT_COMPAT_RO, BTRFS_FEATURE_COMPAT_RO, feature) |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 58 | #define BTRFS_FEAT_ATTR_INCOMPAT(name, feature) \ |
| 59 | BTRFS_FEAT_ATTR(name, FEAT_INCOMPAT, BTRFS_FEATURE_INCOMPAT, feature) |
| 60 | |
| 61 | /* convert from attribute */ |
David Sterba | 093adbc | 2015-02-24 19:40:41 +0100 | [diff] [blame] | 62 | static inline struct btrfs_feature_attr * |
| 63 | to_btrfs_feature_attr(struct kobj_attribute *a) |
| 64 | { |
| 65 | return container_of(a, struct btrfs_feature_attr, kobj_attr); |
| 66 | } |
| 67 | |
| 68 | static inline struct kobj_attribute *attr_to_btrfs_attr(struct attribute *attr) |
| 69 | { |
| 70 | return container_of(attr, struct kobj_attribute, attr); |
| 71 | } |
| 72 | |
| 73 | static inline struct btrfs_feature_attr * |
| 74 | attr_to_btrfs_feature_attr(struct attribute *attr) |
| 75 | { |
| 76 | return to_btrfs_feature_attr(attr_to_btrfs_attr(attr)); |
| 77 | } |
| 78 | |
Jeff Mahoney | 3b02a68 | 2013-11-01 13:07:02 -0400 | [diff] [blame] | 79 | char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags); |
Tomohiro Misono | 6c52157 | 2018-05-16 17:09:26 +0900 | [diff] [blame] | 80 | extern const char * const btrfs_feature_set_names[FEAT_MAX]; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 81 | extern struct kobj_type space_info_ktype; |
| 82 | extern struct kobj_type btrfs_raid_ktype; |
Anand Jain | e3bd697 | 2015-08-14 18:32:48 +0800 | [diff] [blame] | 83 | int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices, |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 84 | struct btrfs_device *one_device); |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 85 | int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices *fs_devices, |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 86 | struct btrfs_device *one_device); |
Anand Jain | 0c10e2d | 2015-03-10 06:38:35 +0800 | [diff] [blame] | 87 | int btrfs_sysfs_add_fsid(struct btrfs_fs_devices *fs_devs, |
| 88 | struct kobject *parent); |
Anand Jain | ef1a0da | 2015-03-10 06:38:36 +0800 | [diff] [blame] | 89 | int btrfs_sysfs_add_device(struct btrfs_fs_devices *fs_devs); |
Anand Jain | 1d1c1be | 2015-03-10 06:38:37 +0800 | [diff] [blame] | 90 | void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs); |
David Sterba | 444e751 | 2016-01-21 18:50:40 +0100 | [diff] [blame] | 91 | void btrfs_sysfs_feature_update(struct btrfs_fs_info *fs_info, |
| 92 | u64 bit, enum btrfs_feature_set set); |
| 93 | |
David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 94 | #endif |