Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=891ba6d4a5f9e6302bb6542592d73feb4d0d3687
Commit:     891ba6d4a5f9e6302bb6542592d73feb4d0d3687
Parent:     7a9f53b3c1875bef22ad4588e818bc046ef183da
Author:     Steven Whitehouse <[EMAIL PROTECTED]>
AuthorDate: Thu Sep 20 15:26:33 2007 +0100
Committer:  Steven Whitehouse <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 08:56:31 2007 +0100

    [GFS2] Don't try to remove buffers that don't exist
    
    Signed-off-by: Steven Whitehouse <[EMAIL PROTECTED]>
---
 fs/gfs2/ops_address.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c
index 4002f41..873a511 100644
--- a/fs/gfs2/ops_address.c
+++ b/fs/gfs2/ops_address.c
@@ -747,7 +747,7 @@ int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
        struct gfs2_bufdata *bd;
 
        if (!page_has_buffers(page))
-               goto out;
+               return 0;
 
        gfs2_log_lock(sdp);
        head = bh = page_buffers(page);
@@ -787,7 +787,6 @@ int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
                bh = bh->b_this_page;
        } while (bh != head);
 
-out:
        return try_to_free_buffers(page);
 cannot_release:
        gfs2_log_unlock(sdp);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to