* [PATCH 3/5] Btrfs: fix wrong file extent length
@ 2012-11-01 7:33 Miao Xie
2012-11-01 8:11 ` Liu Bo
0 siblings, 1 reply; 2+ messages in thread
From: Miao Xie @ 2012-11-01 7:33 UTC (permalink / raw)
To: Linux Btrfs
There are two types of the file extent - inline extent and regular extent,
When we log file extents, we didn't take inline extent into account, fix it.
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
---
fs/btrfs/ctree.h | 1 +
fs/btrfs/file-item.c | 21 ++++++++++++++++++++-
fs/btrfs/tree-log.c | 10 ++--------
3 files changed, 23 insertions(+), 9 deletions(-)
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index 2ce1135..f019fd2 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -3256,6 +3256,7 @@ int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_path *path, u64 objectid,
u64 bytenr, int mod);
+u64 btrfs_file_extent_length(struct btrfs_path *path);
int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_ordered_sum *sums);
diff --git a/fs/btrfs/file-item.c b/fs/btrfs/file-item.c
index 1ad08e4e4..bd38cef 100644
--- a/fs/btrfs/file-item.c
+++ b/fs/btrfs/file-item.c
@@ -133,7 +133,6 @@ fail:
return ERR_PTR(ret);
}
-
int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_path *path, u64 objectid,
@@ -151,6 +150,26 @@ int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
return ret;
}
+u64 btrfs_file_extent_length(struct btrfs_path *path)
+{
+ int extent_type;
+ struct btrfs_file_extent_item *fi;
+ u64 len;
+
+ fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
+ struct btrfs_file_extent_item);
+ extent_type = btrfs_file_extent_type(path->nodes[0], fi);
+
+ if (extent_type == BTRFS_FILE_EXTENT_REG ||
+ extent_type == BTRFS_FILE_EXTENT_PREALLOC)
+ len = btrfs_file_extent_num_bytes(path->nodes[0], fi);
+ else if (extent_type == BTRFS_FILE_EXTENT_INLINE)
+ len = btrfs_file_extent_inline_len(path->nodes[0], fi);
+ else
+ BUG();
+
+ return len;
+}
static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
struct inode *inode, struct bio *bio,
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
index e9ebb47..cbb544e 100644
--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -3143,7 +3143,6 @@ static int log_one_extent(struct btrfs_trans_handle *trans,
struct btrfs_path *dst_path, struct log_args *args)
{
struct btrfs_root *log = root->log_root;
- struct btrfs_file_extent_item *fi;
struct btrfs_key key;
u64 start = em->mod_start;
u64 search_start = start;
@@ -3199,10 +3198,7 @@ again:
}
} while (key.offset > start);
- fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
- struct btrfs_file_extent_item);
- num_bytes = btrfs_file_extent_num_bytes(path->nodes[0],
- fi);
+ num_bytes = btrfs_file_extent_length(path);
if (key.offset + num_bytes <= start) {
btrfs_release_path(path);
return -ENOENT;
@@ -3211,8 +3207,7 @@ again:
args->src = path->nodes[0];
next_slot:
btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
- fi = btrfs_item_ptr(args->src, path->slots[0],
- struct btrfs_file_extent_item);
+ num_bytes = btrfs_file_extent_length(path);
if (args->nr &&
args->start_slot + args->nr == path->slots[0]) {
args->nr++;
@@ -3230,7 +3225,6 @@ next_slot:
}
nritems = btrfs_header_nritems(path->nodes[0]);
path->slots[0]++;
- num_bytes = btrfs_file_extent_num_bytes(args->src, fi);
if (len < num_bytes) {
/* I _think_ this is ok, envision we write to a
* preallocated space that is adjacent to a previously
--
1.7.6.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 3/5] Btrfs: fix wrong file extent length
2012-11-01 7:33 [PATCH 3/5] Btrfs: fix wrong file extent length Miao Xie
@ 2012-11-01 8:11 ` Liu Bo
0 siblings, 0 replies; 2+ messages in thread
From: Liu Bo @ 2012-11-01 8:11 UTC (permalink / raw)
To: Miao Xie; +Cc: Linux Btrfs
On Thu, Nov 01, 2012 at 03:33:59PM +0800, Miao Xie wrote:
> There are two types of the file extent - inline extent and regular extent,
> When we log file extents, we didn't take inline extent into account, fix it.
>
Good catch.
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
thanks,
liubo
> Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
> ---
> fs/btrfs/ctree.h | 1 +
> fs/btrfs/file-item.c | 21 ++++++++++++++++++++-
> fs/btrfs/tree-log.c | 10 ++--------
> 3 files changed, 23 insertions(+), 9 deletions(-)
>
> diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
> index 2ce1135..f019fd2 100644
> --- a/fs/btrfs/ctree.h
> +++ b/fs/btrfs/ctree.h
> @@ -3256,6 +3256,7 @@ int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
> struct btrfs_root *root,
> struct btrfs_path *path, u64 objectid,
> u64 bytenr, int mod);
> +u64 btrfs_file_extent_length(struct btrfs_path *path);
> int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
> struct btrfs_root *root,
> struct btrfs_ordered_sum *sums);
> diff --git a/fs/btrfs/file-item.c b/fs/btrfs/file-item.c
> index 1ad08e4e4..bd38cef 100644
> --- a/fs/btrfs/file-item.c
> +++ b/fs/btrfs/file-item.c
> @@ -133,7 +133,6 @@ fail:
> return ERR_PTR(ret);
> }
>
> -
> int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
> struct btrfs_root *root,
> struct btrfs_path *path, u64 objectid,
> @@ -151,6 +150,26 @@ int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
> return ret;
> }
>
> +u64 btrfs_file_extent_length(struct btrfs_path *path)
> +{
> + int extent_type;
> + struct btrfs_file_extent_item *fi;
> + u64 len;
> +
> + fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
> + struct btrfs_file_extent_item);
> + extent_type = btrfs_file_extent_type(path->nodes[0], fi);
> +
> + if (extent_type == BTRFS_FILE_EXTENT_REG ||
> + extent_type == BTRFS_FILE_EXTENT_PREALLOC)
> + len = btrfs_file_extent_num_bytes(path->nodes[0], fi);
> + else if (extent_type == BTRFS_FILE_EXTENT_INLINE)
> + len = btrfs_file_extent_inline_len(path->nodes[0], fi);
> + else
> + BUG();
> +
> + return len;
> +}
>
> static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
> struct inode *inode, struct bio *bio,
> diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
> index e9ebb47..cbb544e 100644
> --- a/fs/btrfs/tree-log.c
> +++ b/fs/btrfs/tree-log.c
> @@ -3143,7 +3143,6 @@ static int log_one_extent(struct btrfs_trans_handle *trans,
> struct btrfs_path *dst_path, struct log_args *args)
> {
> struct btrfs_root *log = root->log_root;
> - struct btrfs_file_extent_item *fi;
> struct btrfs_key key;
> u64 start = em->mod_start;
> u64 search_start = start;
> @@ -3199,10 +3198,7 @@ again:
> }
> } while (key.offset > start);
>
> - fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
> - struct btrfs_file_extent_item);
> - num_bytes = btrfs_file_extent_num_bytes(path->nodes[0],
> - fi);
> + num_bytes = btrfs_file_extent_length(path);
> if (key.offset + num_bytes <= start) {
> btrfs_release_path(path);
> return -ENOENT;
> @@ -3211,8 +3207,7 @@ again:
> args->src = path->nodes[0];
> next_slot:
> btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
> - fi = btrfs_item_ptr(args->src, path->slots[0],
> - struct btrfs_file_extent_item);
> + num_bytes = btrfs_file_extent_length(path);
> if (args->nr &&
> args->start_slot + args->nr == path->slots[0]) {
> args->nr++;
> @@ -3230,7 +3225,6 @@ next_slot:
> }
> nritems = btrfs_header_nritems(path->nodes[0]);
> path->slots[0]++;
> - num_bytes = btrfs_file_extent_num_bytes(args->src, fi);
> if (len < num_bytes) {
> /* I _think_ this is ok, envision we write to a
> * preallocated space that is adjacent to a previously
> --
> 1.7.6.5
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-01 8:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-01 7:33 [PATCH 3/5] Btrfs: fix wrong file extent length Miao Xie
2012-11-01 8:11 ` Liu Bo
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.