[GFS2] Fix a ref count bug and other clean ups
authorSteven Whitehouse <swhiteho@redhat.com>
Fri, 7 Apr 2006 15:17:32 +0000 (11:17 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 7 Apr 2006 15:17:32 +0000 (11:17 -0400)
This fixes a ref count bug that sometimes showed up a umount time
(causing it to hang) but it otherwise mostly harmless. At the same
time there are some clean ups including making the log operations
structures const, moving a memory allocation so that its not done
in the fast path of checking to see if there is an outstanding
transaction related to a particular glock.

Removes the sd_log_wrap varaible which was updated, but never actually
used anywhere. Updates the gfs2 ioctl() to run without the kernel lock
(which it never needed anyway). Removes the "invalidate inodes" loop
from GFS2's put_super routine. This is done in kill super anyway so
we don't need to do it here. The loop was also bogus in that if there
are any inodes "stuck" at this point its a bug and we need to know
about it rather than hide it by hanging forever.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
14 files changed:
fs/gfs2/daemon.c
fs/gfs2/dir.c
fs/gfs2/glops.c
fs/gfs2/incore.h
fs/gfs2/log.c
fs/gfs2/log.h
fs/gfs2/lops.c
fs/gfs2/lops.h
fs/gfs2/meta_io.c
fs/gfs2/ops_file.c
fs/gfs2/ops_fstype.c
fs/gfs2/ops_super.c
fs/gfs2/quota.c
fs/gfs2/trans.c

index 94317dc7e42cee58f28a42565255ba772c2593cc..b3830b92d78c85fc01ec35425f037e84c539ee1c 100644 (file)
@@ -129,7 +129,7 @@ int gfs2_logd(void *data)
                gfs2_ail1_empty(sdp, DIO_ALL);
 
                if (time_after_eq(jiffies, t)) {
-                       gfs2_log_flush(sdp);
+                       gfs2_log_flush(sdp, NULL);
                        sdp->sd_log_flush_time = jiffies;
                }
 
index 66917f2c64aa174b3846bdda6f11b0d4321eaf8e..316eed688f8e425b0a883a51cb47ad7faf96666b 100644 (file)
@@ -789,6 +789,8 @@ static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
        if (error)
                return ERR_PTR(error);
        dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
+       brelse(bh);
+
 got_dent:
        *pbh = bh;
        return dent;
index d9334eb72df810aa47f198c4a736341dcc8f6f3f..d180c89dd567340725c7095d33701fb26a34435b 100644 (file)
@@ -45,7 +45,7 @@ static void meta_go_sync(struct gfs2_glock *gl, int flags)
                return;
 
        if (test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) {
-               gfs2_log_flush_glock(gl);
+               gfs2_log_flush(gl->gl_sbd, gl);
                gfs2_meta_sync(gl, flags | DIO_START | DIO_WAIT);
                if (flags & DIO_RELEASE)
                        gfs2_ail_empty_gl(gl);
@@ -149,12 +149,12 @@ static void inode_go_sync(struct gfs2_glock *gl, int flags)
        if (test_bit(GLF_DIRTY, &gl->gl_flags)) {
                if (meta && data) {
                        gfs2_page_sync(gl, flags | DIO_START);
-                       gfs2_log_flush_glock(gl);
+                       gfs2_log_flush(gl->gl_sbd, gl);
                        gfs2_meta_sync(gl, flags | DIO_START | DIO_WAIT);
                        gfs2_page_sync(gl, flags | DIO_WAIT);
                        clear_bit(GLF_DIRTY, &gl->gl_flags);
                } else if (meta) {
-                       gfs2_log_flush_glock(gl);
+                       gfs2_log_flush(gl->gl_sbd, gl);
                        gfs2_meta_sync(gl, flags | DIO_START | DIO_WAIT);
                } else if (data)
                        gfs2_page_sync(gl, flags | DIO_START | DIO_WAIT);
index 423cfa72b4c78d176ad1e23df303e68cc63541ae..dfed83b37ab70de6d14c67027f02dd8eb6199f99 100644 (file)
@@ -62,12 +62,12 @@ struct gfs2_log_operations {
                                 struct gfs2_log_descriptor *ld, __be64 *ptr,
                                 int pass);
        void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
-       char *lo_name;
+       const char *lo_name;
 };
 
 struct gfs2_log_element {
        struct list_head le_list;
-       struct gfs2_log_operations *le_ops;
+       const struct gfs2_log_operations *le_ops;
 };
 
 struct gfs2_bitmap {
@@ -618,6 +618,7 @@ struct gfs2_sbd {
        unsigned int sd_log_num_rg;
        unsigned int sd_log_num_databuf;
        unsigned int sd_log_num_jdata;
+       unsigned int sd_log_num_hdrs;
 
        struct list_head sd_log_le_gl;
        struct list_head sd_log_le_buf;
@@ -631,7 +632,6 @@ struct gfs2_sbd {
        uint64_t sd_log_sequence;
        unsigned int sd_log_head;
        unsigned int sd_log_tail;
-       uint64_t sd_log_wraps;
        int sd_log_idle;
 
        unsigned long sd_log_flush_time;
index ea69376c00d8aca04cf8ae21123420479734f16a..cadfef193e55eb02c711d125399cd17bbef7b39a 100644 (file)
@@ -171,13 +171,14 @@ int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks)
        while(sdp->sd_log_blks_free <= blks) {
                gfs2_log_unlock(sdp);
                gfs2_ail1_empty(sdp, 0);
-               gfs2_log_flush(sdp);
+               gfs2_log_flush(sdp, NULL);
 
                if (try++)
                        gfs2_ail1_start(sdp, 0);
                gfs2_log_lock(sdp);
        }
        sdp->sd_log_blks_free -= blks;
+       /* printk(KERN_INFO "reserved %u blocks (%u left)\n", blks, sdp->sd_log_blks_free); */
        gfs2_log_unlock(sdp);
        mutex_unlock(&sdp->sd_log_reserve_mutex);
 
@@ -199,6 +200,7 @@ void gfs2_log_release(struct gfs2_sbd *sdp, unsigned int blks)
 
        gfs2_log_lock(sdp);
        sdp->sd_log_blks_free += blks;
+       /* printk(KERN_INFO "released %u blocks (%u left)\n", blks, sdp->sd_log_blks_free); */
        gfs2_assert_withdraw(sdp,
                             sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks);
        gfs2_log_unlock(sdp);
@@ -342,6 +344,7 @@ static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail, int pull)
 
        gfs2_log_lock(sdp);
        sdp->sd_log_blks_free += dist - ((pull) ? 1 : 0);
+       /* printk(KERN_INFO "pull tail refunding %u blocks (%u left) pull=%d\n", dist - ((pull) ? 1 : 0), sdp->sd_log_blks_free, pull); */
        gfs2_assert_withdraw(sdp,
                             sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks);
        gfs2_log_unlock(sdp);
@@ -364,6 +367,8 @@ static void log_write_header(struct gfs2_sbd *sdp, uint32_t flags, int pull)
        unsigned int tail;
        uint32_t hash;
 
+       /* printk(KERN_INFO "log write header start (flags=%08x, pull=%d)\n", flags, pull); */
+
        bh = sb_getblk(sdp->sd_vfs, blkno);
        lock_buffer(bh);
        memset(bh->b_data, 0, bh->b_size);
@@ -398,6 +403,8 @@ static void log_write_header(struct gfs2_sbd *sdp, uint32_t flags, int pull)
 
        sdp->sd_log_idle = (tail == sdp->sd_log_flush_head);
        log_incr_head(sdp);
+
+       /* printk(KERN_INFO "log write header out\n"); */
 }
 
 static void log_flush_commit(struct gfs2_sbd *sdp)
@@ -432,20 +439,16 @@ static void log_flush_commit(struct gfs2_sbd *sdp)
 }
 
 /**
- * gfs2_log_flush_i - flush incore transaction(s)
+ * gfs2_log_flush - flush incore transaction(s)
  * @sdp: the filesystem
  * @gl: The glock structure to flush.  If NULL, flush the whole incore log
  *
  */
 
-void gfs2_log_flush_i(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
+void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
 {
        struct gfs2_ail *ai;
 
-       ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL);
-       INIT_LIST_HEAD(&ai->ai_ail1_list);
-       INIT_LIST_HEAD(&ai->ai_ail2_list);
-
        down_write(&sdp->sd_log_flush_lock);
 
        if (gl) {
@@ -453,12 +456,14 @@ void gfs2_log_flush_i(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
                if (list_empty(&gl->gl_le.le_list)) {
                        gfs2_log_unlock(sdp);
                        up_write(&sdp->sd_log_flush_lock);
-                       kfree(ai);
                        return;
                }
                gfs2_log_unlock(sdp);
        }
 
+       ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL);
+       INIT_LIST_HEAD(&ai->ai_ail1_list);
+       INIT_LIST_HEAD(&ai->ai_ail2_list);
 
        gfs2_assert_withdraw(sdp,
                        sdp->sd_log_num_buf == sdp->sd_log_commited_buf);
@@ -476,11 +481,12 @@ void gfs2_log_flush_i(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
                log_write_header(sdp, 0, PULL);
        lops_after_commit(sdp, ai);
        sdp->sd_log_head = sdp->sd_log_flush_head;
-       if (sdp->sd_log_flush_wrapped)
-               sdp->sd_log_wraps++;
+
+       /* printk(KERN_INFO "sd_log_num_hdrs %u\n", sdp->sd_log_num_hdrs); */
 
        sdp->sd_log_blks_reserved =
                sdp->sd_log_commited_buf =
+               sdp->sd_log_num_hdrs = 
                sdp->sd_log_commited_revoke = 0;
 
        gfs2_log_lock(sdp);
@@ -519,8 +525,7 @@ static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
        sdp->sd_log_blks_free += tr->tr_reserved -
                                 (reserved - sdp->sd_log_blks_reserved);
 
-       gfs2_assert_withdraw(sdp,
-                            sdp->sd_log_blks_free >= old);
+       gfs2_assert_withdraw(sdp, sdp->sd_log_blks_free >= old);
        gfs2_assert_withdraw(sdp,
                             sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks);
 
@@ -548,7 +553,7 @@ void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
        gfs2_log_lock(sdp);
        if (sdp->sd_log_num_buf > gfs2_tune_get(sdp, gt_incore_log_blocks)) {
                gfs2_log_unlock(sdp);
-               gfs2_log_flush(sdp);
+               gfs2_log_flush(sdp, NULL);
        } else
                gfs2_log_unlock(sdp);
 }
@@ -583,8 +588,6 @@ void gfs2_log_shutdown(struct gfs2_sbd *sdp)
        gfs2_assert_withdraw(sdp, list_empty(&sdp->sd_ail2_list));
 
        sdp->sd_log_head = sdp->sd_log_flush_head;
-       if (sdp->sd_log_flush_wrapped)
-               sdp->sd_log_wraps++;
        sdp->sd_log_tail = sdp->sd_log_head;
 
        up_write(&sdp->sd_log_flush_lock);
index e7a6a65c530f3297dea5d4ead8c1035d0af6a968..84a3e902e84876555c01887698a695d4047f6df6 100644 (file)
@@ -37,7 +37,6 @@ static inline void gfs2_log_pointers_init(struct gfs2_sbd *sdp,
 {
        if (++value == sdp->sd_jdesc->jd_blocks) {
                value = 0;
-               sdp->sd_log_wraps++;
        }
        sdp->sd_log_head = sdp->sd_log_tail = value;
 }
@@ -54,10 +53,7 @@ void gfs2_log_release(struct gfs2_sbd *sdp, unsigned int blks);
 struct buffer_head *gfs2_log_get_buf(struct gfs2_sbd *sdp);
 struct buffer_head *gfs2_log_fake_buf(struct gfs2_sbd *sdp,
                                      struct buffer_head *real);
-
-#define gfs2_log_flush(sdp) gfs2_log_flush_i((sdp), NULL)
-#define gfs2_log_flush_glock(gl) gfs2_log_flush_i((gl)->gl_sbd, (gl))
-void gfs2_log_flush_i(struct gfs2_sbd *sdp, struct gfs2_glock *gl);
+void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl);
 void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *trans);
 
 void gfs2_log_shutdown(struct gfs2_sbd *sdp);
index 689c9101c0fbbc596484f33dc04e7e69be439173..4d90eb3114977372e45f855c3c7cb9119dcee02c 100644 (file)
@@ -130,6 +130,7 @@ static void buf_lo_before_commit(struct gfs2_sbd *sdp)
                if (total > limit)
                        num = limit;
                bh = gfs2_log_get_buf(sdp);
+               sdp->sd_log_num_hdrs++;
                ld = (struct gfs2_log_descriptor *)bh->b_data;
                ptr = (__be64 *)(bh->b_data + offset);
                ld->ld_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
@@ -570,6 +571,7 @@ static void databuf_lo_before_commit(struct gfs2_sbd *sdp)
                                gfs2_log_unlock(sdp);
                                if (!bh) {
                                        bh = gfs2_log_get_buf(sdp);
+                                       sdp->sd_log_num_hdrs++;
                                        ld = (struct gfs2_log_descriptor *)
                                             bh->b_data;
                                        ptr = (__be64 *)(bh->b_data + offset);
@@ -750,13 +752,13 @@ static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
 }
 
 
-struct gfs2_log_operations gfs2_glock_lops = {
+const struct gfs2_log_operations gfs2_glock_lops = {
        .lo_add = glock_lo_add,
        .lo_after_commit = glock_lo_after_commit,
        .lo_name = "glock"
 };
 
-struct gfs2_log_operations gfs2_buf_lops = {
+const struct gfs2_log_operations gfs2_buf_lops = {
        .lo_add = buf_lo_add,
        .lo_incore_commit = buf_lo_incore_commit,
        .lo_before_commit = buf_lo_before_commit,
@@ -767,7 +769,7 @@ struct gfs2_log_operations gfs2_buf_lops = {
        .lo_name = "buf"
 };
 
-struct gfs2_log_operations gfs2_revoke_lops = {
+const struct gfs2_log_operations gfs2_revoke_lops = {
        .lo_add = revoke_lo_add,
        .lo_before_commit = revoke_lo_before_commit,
        .lo_before_scan = revoke_lo_before_scan,
@@ -776,13 +778,13 @@ struct gfs2_log_operations gfs2_revoke_lops = {
        .lo_name = "revoke"
 };
 
-struct gfs2_log_operations gfs2_rg_lops = {
+const struct gfs2_log_operations gfs2_rg_lops = {
        .lo_add = rg_lo_add,
        .lo_after_commit = rg_lo_after_commit,
        .lo_name = "rg"
 };
 
-struct gfs2_log_operations gfs2_databuf_lops = {
+const struct gfs2_log_operations gfs2_databuf_lops = {
        .lo_add = databuf_lo_add,
        .lo_incore_commit = buf_lo_incore_commit,
        .lo_before_commit = databuf_lo_before_commit,
@@ -792,7 +794,7 @@ struct gfs2_log_operations gfs2_databuf_lops = {
        .lo_name = "databuf"
 };
 
-struct gfs2_log_operations *gfs2_log_ops[] = {
+const struct gfs2_log_operations *gfs2_log_ops[] = {
        &gfs2_glock_lops,
        &gfs2_buf_lops,
        &gfs2_revoke_lops,
index 417f5aade4b1017436d03dd0d19922ff6a2bb57a..0c78d222d6f2421949a73aa094963c1d17d0333b 100644 (file)
 #ifndef __LOPS_DOT_H__
 #define __LOPS_DOT_H__
 
-extern struct gfs2_log_operations gfs2_glock_lops;
-extern struct gfs2_log_operations gfs2_buf_lops;
-extern struct gfs2_log_operations gfs2_revoke_lops;
-extern struct gfs2_log_operations gfs2_rg_lops;
-extern struct gfs2_log_operations gfs2_databuf_lops;
+extern const struct gfs2_log_operations gfs2_glock_lops;
+extern const struct gfs2_log_operations gfs2_buf_lops;
+extern const struct gfs2_log_operations gfs2_revoke_lops;
+extern const struct gfs2_log_operations gfs2_rg_lops;
+extern const struct gfs2_log_operations gfs2_databuf_lops;
 
-extern struct gfs2_log_operations *gfs2_log_ops[];
+extern const struct gfs2_log_operations *gfs2_log_ops[];
 
 static inline void lops_init_le(struct gfs2_log_element *le,
-                               struct gfs2_log_operations *lops)
+                               const struct gfs2_log_operations *lops)
 {
        INIT_LIST_HEAD(&le->le_list);
        le->le_ops = lops;
index b85fa24646661335c343a4fbfa3f1438b28d5b1a..4a6aacf294d5a3b5b7573ce2313b096d62288b72 100644 (file)
@@ -59,11 +59,12 @@ static int gfs2_aspace_writepage(struct page *page,
 
 static void stuck_releasepage(struct buffer_head *bh)
 {
-       struct gfs2_sbd *sdp = bh->b_page->mapping->host->i_sb->s_fs_info;
+       struct inode *inode = bh->b_page->mapping->host;
+       struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
        struct gfs2_bufdata *bd = bh->b_private;
        struct gfs2_glock *gl;
 
-       fs_warn(sdp, "stuck in gfs2_releasepage()\n");
+       fs_warn(sdp, "stuck in gfs2_releasepage() %p\n", inode);
        fs_warn(sdp, "blkno = %llu, bh->b_count = %d\n",
                (uint64_t)bh->b_blocknr, atomic_read(&bh->b_count));
        fs_warn(sdp, "pinned = %u\n", buffer_pinned(bh));
@@ -191,7 +192,6 @@ struct inode *gfs2_aspace_get(struct gfs2_sbd *sdp)
                aspace->u.generic_ip = NULL;
                insert_inode_hash(aspace);
        }
-
        return aspace;
 }
 
@@ -353,7 +353,7 @@ void gfs2_ail_empty_gl(struct gfs2_glock *gl)
        gfs2_log_unlock(sdp);
 
        gfs2_trans_end(sdp);
-       gfs2_log_flush(sdp);
+       gfs2_log_flush(sdp, NULL);
 }
 
 /**
@@ -876,7 +876,7 @@ void gfs2_meta_ra(struct gfs2_glock *gl, uint64_t dblock, uint32_t extlen)
 
 void gfs2_meta_syncfs(struct gfs2_sbd *sdp)
 {
-       gfs2_log_flush(sdp);
+       gfs2_log_flush(sdp, NULL);
        for (;;) {
                gfs2_ail1_start(sdp, DIO_ALL);
                if (gfs2_ail1_empty(sdp, DIO_ALL))
index 9bb296717086fa3ccb734d2c616f495333e6cb1e..3fb1a29f88a6ff233785207502f4c41f574a79cb 100644 (file)
@@ -561,8 +561,9 @@ static const u32 gfs2_to_iflags[32] = {
        [gfs2fl_InheritJdata] = IFLAG_INHERITJDATA,
 };
 
-static int gfs2_get_flags(struct inode *inode, u32 __user *ptr)
+static int gfs2_get_flags(struct file *filp, u32 __user *ptr)
 {
+       struct inode *inode = filp->f_dentry->d_inode;
        struct gfs2_inode *ip = inode->u.generic_ip;
        struct gfs2_holder gh;
        int error;
@@ -600,8 +601,9 @@ static int gfs2_get_flags(struct inode *inode, u32 __user *ptr)
  * @mask: Indicates which flags are valid
  *
  */
-static int do_gfs2_set_flags(struct inode *inode, u32 reqflags, u32 mask)
+static int do_gfs2_set_flags(struct file *filp, u32 reqflags, u32 mask)
 {
+       struct inode *inode = filp->f_dentry->d_inode;
        struct gfs2_inode *ip = inode->u.generic_ip;
        struct gfs2_sbd *sdp = ip->i_sbd;
        struct buffer_head *bh;
@@ -659,23 +661,22 @@ out:
        return error;
 }
 
-static int gfs2_set_flags(struct inode *inode, u32 __user *ptr)
+static int gfs2_set_flags(struct file *filp, u32 __user *ptr)
 {
        u32 iflags, gfsflags;
        if (get_user(iflags, ptr))
                return -EFAULT;
        gfsflags = iflags_cvt(iflags_to_gfs2, iflags);
-       return do_gfs2_set_flags(inode, gfsflags, ~0);
+       return do_gfs2_set_flags(filp, gfsflags, ~0);
 }
 
-int gfs2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
-              unsigned long arg)
+static long gfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
 {
        switch(cmd) {
        case IFLAGS_GET_IOC:
-               return gfs2_get_flags(inode, (u32 __user *)arg);
+               return gfs2_get_flags(filp, (u32 __user *)arg);
        case IFLAGS_SET_IOC:
-               return gfs2_set_flags(inode, (u32 __user *)arg);
+               return gfs2_set_flags(filp, (u32 __user *)arg);
        }
        return -ENOTTY;
 }
@@ -808,7 +809,7 @@ static int gfs2_fsync(struct file *file, struct dentry *dentry, int datasync)
 {
        struct gfs2_inode *ip = dentry->d_inode->u.generic_ip;
 
-       gfs2_log_flush_glock(ip->i_gl);
+       gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
 
        return 0;
 }
@@ -974,7 +975,7 @@ struct file_operations gfs2_file_fops = {
        .write = generic_file_write,
        .writev = generic_file_writev,
        .aio_write = generic_file_aio_write,
-       .ioctl = gfs2_ioctl,
+       .unlocked_ioctl = gfs2_ioctl,
        .mmap = gfs2_mmap,
        .open = gfs2_open,
        .release = gfs2_close,
@@ -988,7 +989,7 @@ struct file_operations gfs2_file_fops = {
 
 struct file_operations gfs2_dir_fops = {
        .readdir = gfs2_readdir,
-       .ioctl = gfs2_ioctl,
+       .unlocked_ioctl = gfs2_ioctl,
        .open = gfs2_open,
        .release = gfs2_close,
        .fsync = gfs2_fsync,
index 5166455b9fddc4850e566bed48ad2adf1ef67f16..4538a1e621e885bbfe1e1ffeef94f16483972bcb 100644 (file)
@@ -276,8 +276,8 @@ static struct inode *gfs2_lookup_root(struct gfs2_sbd *sdp,
        struct gfs2_inode *ip;
        struct inode *inode;
 
-       error = gfs2_glock_get(sdp, inum->no_addr,
-                               &gfs2_inode_glops, CREATE, &gl);
+       error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops,
+                              CREATE, &gl);
         if (!error) {
                        error = gfs2_inode_get(gl, inum, CREATE, &ip);
                if (!error) {
index f7349c0989a9f59ccf1a38eefaa6e13150cc292e..80ce40c1dfb618f248d7be95039d80a1c5f7fa8f 100644 (file)
@@ -53,7 +53,7 @@ static int gfs2_write_inode(struct inode *inode, int sync)
        if (current->flags & PF_MEMALLOC)
                return 0;
        if (ip && sync)
-               gfs2_log_flush_glock(ip->i_gl);
+               gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
 
        return 0;
 }
@@ -121,10 +121,8 @@ static void gfs2_put_super(struct super_block *sb)
        }
 
        gfs2_glock_dq_uninit(&sdp->sd_live_gh);
-
        gfs2_clear_rgrpd(sdp);
        gfs2_jindex_free(sdp);
-
        /*  Take apart glock structures and buffer lists  */
        gfs2_gl_hash_clear(sdp, WAIT);
 
@@ -135,10 +133,6 @@ static void gfs2_put_super(struct super_block *sb)
 
        gfs2_sys_fs_del(sdp);
 
-       /*  Get rid of any extra inodes  */
-       while (invalidate_inodes(sb))
-               yield();
-
        vfree(sdp);
 
        sb->s_fs_info = NULL;
@@ -149,13 +143,13 @@ static void gfs2_put_super(struct super_block *sb)
  * @sb: the filesystem
  *
  * This function is called every time sync(2) is called.
- * After this exits, all dirty buffers and synced.
+ * After this exits, all dirty buffers are synced.
  */
 
 static void gfs2_write_super(struct super_block *sb)
 {
        struct gfs2_sbd *sdp = sb->s_fs_info;
-       gfs2_log_flush(sdp);
+       gfs2_log_flush(sdp, NULL);
 }
 
 /**
index c57b5cf1d583fdea69f450badba9ecf77abd6248..90e32a3dc50d18b6d11013218e816a768a51837d 100644 (file)
@@ -749,7 +749,7 @@ static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)
        while (qx--)
                gfs2_glock_dq_uninit(&ghs[qx]);
        kfree(ghs);
-       gfs2_log_flush_glock(ip->i_gl);
+       gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
 
        return error;
 }
index d72f79e67c949f5d250345ab2da0193469af779f..061f4a9a1db44446db4163149510ef96e09710d3 100644 (file)
@@ -120,7 +120,7 @@ void gfs2_trans_end(struct gfs2_sbd *sdp)
         kfree(tr);
 
        if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
-               gfs2_log_flush(sdp);
+               gfs2_log_flush(sdp, NULL);
 }
 
 void gfs2_trans_add_gl(struct gfs2_glock *gl)