diff options
author | 2024-10-22 23:18:45 +0100 | |
---|---|---|
committer | 2024-10-22 23:18:45 +0100 | |
commit | 5ddc236d094d496bcd1e78aaa88bdde530073b6f (patch) | |
tree | 2435f76086b7bbf9739c05411baa2f1520cd9618 /fs/btrfs/send.c | |
parent | regulator: rk808: Restrict DVS GPIOs to the RK808 variant only (diff) | |
parent | regulator: core: remove machine init callback from config (diff) | |
download | wireguard-linux-5ddc236d094d496bcd1e78aaa88bdde530073b6f.tar.xz wireguard-linux-5ddc236d094d496bcd1e78aaa88bdde530073b6f.zip |
regulator: init_data handling update
Merge series from Jerome Brunet <jbrunet@baylibre.com>:
This patchset groups the regulator patches around the init_data topic
discussed on pmbus write protect patchset [1]
[1]: https://lore.kernel.org/r/20240920-pmbus-wp-v1-0-d679ef31c483@baylibre.com
Diffstat (limited to 'fs/btrfs/send.c')
-rw-r--r-- | fs/btrfs/send.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 27306d98ec43..b068469871f8 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -7190,13 +7190,11 @@ static int changed_extent(struct send_ctx *sctx, static int changed_verity(struct send_ctx *sctx, enum btrfs_compare_tree_result result) { - int ret = 0; - if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) { if (result == BTRFS_COMPARE_TREE_NEW) sctx->cur_inode_needs_verity = true; } - return ret; + return 0; } static int dir_changed(struct send_ctx *sctx, u64 dir) |