This patch fixes a pointer issue from passing a struct as a parameter to the function btrfs_root_dec_send_in_progress.
Signed-off-by: Ben Marsh <bmars...@gmail.com> --- fs/btrfs/send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 63a6152..47ee63e 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -5911,7 +5911,7 @@ commit_trans: return btrfs_commit_transaction(trans, sctx->send_root); } -static void btrfs_root_dec_send_in_progress(struct btrfs_root* root) +static void btrfs_root_dec_send_in_progress(struct btrfs_root *root) { spin_lock(&root->root_item_lock); root->send_in_progress--; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html