Skip to content

Commit

Permalink
Release 5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
joe0184 committed Sep 13, 2024
0 parents commit 4fd60b4
Show file tree
Hide file tree
Showing 735 changed files with 171,019 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = tab
indent_size = 8

[*.py]
indent_size = 4
10 changes: 10 additions & 0 deletions 64-btrfs-dm.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
SUBSYSTEM!="block", GOTO="btrfs_end"
KERNEL!="dm-[0-9]*", GOTO="btrfs_end"
ACTION!="add|change", GOTO="btrfs_end"
ENV{ID_FS_TYPE}!="btrfs", GOTO="btrfs_end"

# Once the device mapper symlink is created, tell btrfs about it
# so we get the friendly name in /proc/mounts (and tools that read it)
ENV{DM_NAME}=="?*", RUN{builtin}+="btrfs ready /dev/mapper/$env{DM_NAME}"

LABEL="btrfs_end"
9 changes: 9 additions & 0 deletions 64-btrfs-zoned.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SUBSYSTEM!="block", GOTO="btrfs_end"
ACTION!="add|change", GOTO="btrfs_end"
ENV{ID_FS_TYPE}!="btrfs", GOTO="btrfs_end"

# Zoned btrfs needs an IO scheduler that supports zone write locking and
# currently mq-deadline is the only scheduler capable of this.
ATTR{queue/zoned}=="host-managed", ATTR{queue/scheduler}="mq-deadline"

LABEL="btrfs_end"
Loading

0 comments on commit 4fd60b4

Please sign in to comment.