Skip to content

Commit 4fd60b4

Browse files
committed
Release 5.19
0 parents  commit 4fd60b4

File tree

735 files changed

+171019
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

735 files changed

+171019
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[*]
2+
end_of_line = lf
3+
insert_final_newline = true
4+
trim_trailing_whitespace = true
5+
charset = utf-8
6+
indent_style = tab
7+
indent_size = 8
8+
9+
[*.py]
10+
indent_size = 4

64-btrfs-dm.rules

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SUBSYSTEM!="block", GOTO="btrfs_end"
2+
KERNEL!="dm-[0-9]*", GOTO="btrfs_end"
3+
ACTION!="add|change", GOTO="btrfs_end"
4+
ENV{ID_FS_TYPE}!="btrfs", GOTO="btrfs_end"
5+
6+
# Once the device mapper symlink is created, tell btrfs about it
7+
# so we get the friendly name in /proc/mounts (and tools that read it)
8+
ENV{DM_NAME}=="?*", RUN{builtin}+="btrfs ready /dev/mapper/$env{DM_NAME}"
9+
10+
LABEL="btrfs_end"

64-btrfs-zoned.rules

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SUBSYSTEM!="block", GOTO="btrfs_end"
2+
ACTION!="add|change", GOTO="btrfs_end"
3+
ENV{ID_FS_TYPE}!="btrfs", GOTO="btrfs_end"
4+
5+
# Zoned btrfs needs an IO scheduler that supports zone write locking and
6+
# currently mq-deadline is the only scheduler capable of this.
7+
ATTR{queue/zoned}=="host-managed", ATTR{queue/scheduler}="mq-deadline"
8+
9+
LABEL="btrfs_end"

0 commit comments

Comments
 (0)