diff options
author | David Sterba <dsterba@suse.cz> | 2014-02-05 02:03:47 +0100 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-09-17 13:37:07 -0700 |
commit | 32471dc2ba287f0bb8ac9af65c46f089965191f2 (patch) | |
tree | ff99575f27f522b9b6edb052c33422b5c0b8e74b /fs/btrfs/transaction.c | |
parent | 9e82bf014195d6f0054982c463575cdce24292be (diff) | |
download | linux-32471dc2ba287f0bb8ac9af65c46f089965191f2.tar.bz2 |
btrfs: remove obsolete comment in btrfs_clean_one_deleted_snapshot
The comment applied when there was a BUG_ON.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/transaction.c')
-rw-r--r-- | fs/btrfs/transaction.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index d89c6d3542ca..977717b45bf7 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c @@ -1981,9 +1981,6 @@ int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) ret = btrfs_drop_snapshot(root, NULL, 0, 0); else ret = btrfs_drop_snapshot(root, NULL, 1, 0); - /* - * If we encounter a transaction abort during snapshot cleaning, we - * don't want to crash here - */ + return (ret < 0) ? 0 : 1; } |