Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1339336

[PATCH 2/3] Btrfs: disk-io: fixed an assignment error

From Philippe Loctaux <phil@philippeloctaux.com>
Newsgroups linux.kernel
Subject [PATCH 2/3] Btrfs: disk-io: fixed an assignment error
Date 2016-02-22 12:00 +0100
Message-ID <r4WnD-4v7-5@gated-at.bofh.it> (permalink)
References <r4VKV-47A-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Added spaces required around the equal sign, fixing a checkpatch error.

Signed-off-by: Philippe Loctaux <phil@philippeloctaux.com>
---
 fs/btrfs/disk-io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 84cbf16..f642b30 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -4412,7 +4412,7 @@ void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
 	btrfs_destroy_pinned_extent(root,
 				    root->fs_info->pinned_extents);
 
-	cur_trans->state =TRANS_STATE_COMPLETED;
+	cur_trans->state = TRANS_STATE_COMPLETED;
 	wake_up(&cur_trans->commit_wait);
 
 	/*
-- 
2.7.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/3] Btrfs: disk-io: fixed a brace coding style issue Philippe Loctaux <phil@philippeloctaux.com> - 2016-02-22 11:20 +0100
  [PATCH 2/3] Btrfs: disk-io: fixed an assignment error Philippe Loctaux <phil@philippeloctaux.com> - 2016-02-22 12:00 +0100
  [PATCH 3/3] Btrfs: disk-io: fixed a comment block coding style issue Philippe Loctaux <phil@philippeloctaux.com> - 2016-02-22 12:40 +0100

csiph-web