diff options
author | Li Dongyang <lidongyang@novell.com> | 2011-03-24 10:24:27 +0000 |
---|---|---|
committer | root <Chris Mason chris.mason@oracle.com> | 2011-03-28 05:37:46 -0400 |
commit | 5378e60734f5b7bfe1b43dc191aaf6131c1befe7 (patch) | |
tree | b02c78e744a2a148b60a9c8046abef3f4381f544 /fs/btrfs/disk-io.c | |
parent | fce3bb9a1bd492793170e117c60d5718b7896af4 (diff) | |
download | op-kernel-dev-5378e60734f5b7bfe1b43dc191aaf6131c1befe7.zip op-kernel-dev-5378e60734f5b7bfe1b43dc191aaf6131c1befe7.tar.gz |
Btrfs: adjust btrfs_discard_extent() return errors and trimmed bytes
Callers of btrfs_discard_extent() should check if we are mounted with -o discard,
as we want to make fitrim to work even the fs is not mounted with -o discard.
Also we should use REQ_DISCARD to map the free extent to get a full mapping,
last we only return errors if
1. the error is not a EOPNOTSUPP
2. no device supports discard
Signed-off-by: Li Dongyang <lidongyang@novell.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 125639d..8ecc5419 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -3054,7 +3054,10 @@ static int btrfs_destroy_pinned_extent(struct btrfs_root *root, break; /* opt_discard */ - ret = btrfs_error_discard_extent(root, start, end + 1 - start); + if (btrfs_test_opt(root, DISCARD)) + ret = btrfs_error_discard_extent(root, start, + end + 1 - start, + NULL); clear_extent_dirty(unpin, start, end, GFP_NOFS); btrfs_error_unpin_extent_range(root, start, end); |