aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/disk-io.c
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@redhat.com>2013-01-31 00:54:53 +0000
committerJosef Bacik <jbacik@fusionio.com>2013-02-20 12:59:15 -0500
commitd1d3cd27a32b819a0b0e2b9b6b5f9e80890f9821 (patch)
tree9622f1614fe3140ede1a7e2f10aabb756a5d585f /fs/btrfs/disk-io.c
parentbtrfs: remove unused fd in btrfs_ioctl_send() (diff)
downloadlinux-dev-d1d3cd27a32b819a0b0e2b9b6b5f9e80890f9821.tar.xz
linux-dev-d1d3cd27a32b819a0b0e2b9b6b5f9e80890f9821.zip
btrfs: list_entry can't return NULL
No need to test the result, we can't get a null pointer from list_entry() Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r--fs/btrfs/disk-io.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 8e58a1f90546..bd48bf21118e 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -3846,8 +3846,6 @@ int btrfs_cleanup_transaction(struct btrfs_root *root)
while (!list_empty(&list)) {
t = list_entry(list.next, struct btrfs_transaction, list);
- if (!t)
- break;
btrfs_destroy_ordered_operations(root);