]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Btrfs: Fix "no csum found for inode" issue.
authorYan <yanzheng@21cn.com>
Fri, 15 Feb 2008 15:40:50 +0000 (10:40 -0500)
committerChris Mason <chris.mason@oracle.com>
Thu, 25 Sep 2008 15:04:00 +0000 (11:04 -0400)
A few codes were not properly updated for changes of extent map.  This
may be the causes of "no csum found for inode" issue.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent_io.c
fs/btrfs/file.c

index fcae999ab71211189977fd4466a01affa55d97bb..9262ab37a7cd8d9bcb5c24c077b3876a7a24e251 100644 (file)
@@ -2417,12 +2417,13 @@ int try_release_extent_mapping(struct extent_map_tree *map,
        u64 end = start + PAGE_CACHE_SIZE - 1;
        u64 orig_start = start;
        int ret = 1;
-
        if ((mask & __GFP_WAIT) &&
            page->mapping->host->i_size > 16 * 1024 * 1024) {
+               u64 len;
                while (start <= end) {
+                       len = end - start + 1;
                        spin_lock(&map->lock);
-                       em = lookup_extent_mapping(map, start, end);
+                       em = lookup_extent_mapping(map, start, len);
                        if (!em || IS_ERR(em)) {
                                spin_unlock(&map->lock);
                                break;
index f893960825440256a6faef215e996d30a11e5741..b0352b5958a57bdb23006b41db359ebb3a81b1dd 100644 (file)
@@ -357,10 +357,13 @@ int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
 {
        struct extent_map *em;
        struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
+       u64 len = end - start + 1;
 
+       if (end == (u64)-1)
+               len = (u64)-1;
        while(1) {
                spin_lock(&em_tree->lock);
-               em = lookup_extent_mapping(em_tree, start, end);
+               em = lookup_extent_mapping(em_tree, start, len);
                if (!em) {
                        spin_unlock(&em_tree->lock);
                        break;