[PATCH] btrfs-progs: remove redundant value set to path->reada in ctree.c/btrfs_alloc_path

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



btrfs_init_path has init the path to 0s.
No need to set ->reada 0 after path init.

Signed-off-by: Wang Sheng-Hui <shhuiw@xxxxxxxxx>
---
 ctree.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ctree.c b/ctree.c
index 2d86b1e..a04e0da 100644
--- a/ctree.c
+++ b/ctree.c
@@ -43,10 +43,9 @@ struct btrfs_path *btrfs_alloc_path(void)
 {
 	struct btrfs_path *path;
 	path = kmalloc(sizeof(struct btrfs_path), GFP_NOFS);
-	if (path) {
+	if (path)
 		btrfs_init_path(path);
-		path->reada = 0;
-	}
+
 	return path;
 }
 
-- 1.7.1 
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Filesystem Development]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux