diff options
| author | David Sterba <[email protected]> | 2014-05-07 17:37:51 +0200 |
|---|---|---|
| committer | Chris Mason <[email protected]> | 2014-06-09 17:20:26 -0700 |
| commit | 7d824b6f9cf28917d8a05891ef423fb0e4e34c69 (patch) | |
| tree | a362fbac437c6d997c9d389c9c934537d36fdb98 /include/uapi/linux | |
| parent | fc19c5e73645f95d3eca12b4e91e7b56faf1e4a4 (diff) | |
btrfs: balance filter: add limit of processed chunks
This started as debugging helper, to watch the effects of converting
between raid levels on multiple devices, but could be useful standalone.
In my case the usage filter was not finegrained enough and led to
converting too many chunks at once. Another example use is in connection
with drange+devid or vrange filters that allow to work with a specific
chunk or even with a chunk on a given device.
The limit filter applies last, the value of 0 means no limiting.
CC: Ilya Dryomov <[email protected]>
CC: Hugo Mills <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Signed-off-by: Chris Mason <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/btrfs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/btrfs.h b/include/uapi/linux/btrfs.h index b4d69092fbdb..901a3c563f60 100644 --- a/include/uapi/linux/btrfs.h +++ b/include/uapi/linux/btrfs.h @@ -211,7 +211,8 @@ struct btrfs_balance_args { __u64 flags; - __u64 unused[8]; + __u64 limit; /* limit number of processed chunks */ + __u64 unused[7]; } __attribute__ ((__packed__)); /* report balance progress to userspace */ |