]> err.no Git - linux-2.6/commitdiff
[GFS2] Style changes in ops_address.c
authorSteven Whitehouse <swhiteho@redhat.com>
Mon, 4 Sep 2006 18:59:35 +0000 (14:59 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Mon, 4 Sep 2006 18:59:35 +0000 (14:59 -0400)
As per the remainder of Jan Engelhardt's fourth email comments,
remove an cast thats not required. Also tidy up the "limit" code
in stuck_releasepage().

Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/ops_address.c

index 96988ccf208746188729498a7d0eb6e706938c06..d44d42fb4163b89d24363c8ff7bcfdf9984fd0a3 100644 (file)
@@ -517,7 +517,7 @@ static int gfs2_commit_write(struct file *file, struct page *page,
 
                kaddr = kmap_atomic(page, KM_USER0);
                memcpy(dibh->b_data + sizeof(struct gfs2_dinode) + from,
-                      (char *)kaddr + from, to - from);
+                      kaddr + from, to - from);
                kunmap_atomic(page, KM_USER0);
 
                SetPageUptodate(page);
@@ -704,8 +704,9 @@ static void stuck_releasepage(struct buffer_head *bh)
        struct gfs2_glock *gl;
 static unsigned limit = 0;
 
-       if (limit++ > 3)
+       if (limit > 3)
                return;
+       limit++;
 
        fs_warn(sdp, "stuck in gfs2_releasepage() %p\n", inode);
        fs_warn(sdp, "blkno = %llu, bh->b_count = %d\n",