GFS2: Remove obsolete code in quota.c
[safe/jmp/linux-2.6] / fs / gfs2 / util.c
index d31e355..f6a7efa 100644 (file)
@@ -13,7 +13,6 @@
 #include <linux/buffer_head.h>
 #include <linux/crc32.h>
 #include <linux/gfs2_ondisk.h>
-#include <linux/lm_interface.h>
 #include <asm/uaccess.h>
 
 #include "gfs2.h"
@@ -25,6 +24,7 @@ struct kmem_cache *gfs2_glock_cachep __read_mostly;
 struct kmem_cache *gfs2_inode_cachep __read_mostly;
 struct kmem_cache *gfs2_bufdata_cachep __read_mostly;
 struct kmem_cache *gfs2_rgrpd_cachep __read_mostly;
+struct kmem_cache *gfs2_quotad_cachep __read_mostly;
 
 void gfs2_assert_i(struct gfs2_sbd *sdp)
 {
@@ -34,22 +34,34 @@ void gfs2_assert_i(struct gfs2_sbd *sdp)
 
 int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...)
 {
+       struct lm_lockstruct *ls = &sdp->sd_lockstruct;
+       const struct lm_lockops *lm = ls->ls_ops;
        va_list args;
 
-       if (test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags))
+       if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW &&
+           test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags))
                return 0;
 
        va_start(args, fmt);
        vprintk(fmt, args);
        va_end(args);
 
-       fs_err(sdp, "about to withdraw this file system\n");
-       BUG_ON(sdp->sd_args.ar_debug);
+       if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW) {
+               fs_err(sdp, "about to withdraw this file system\n");
+               BUG_ON(sdp->sd_args.ar_debug);
 
-       fs_err(sdp, "telling LM to withdraw\n");
-       gfs2_withdraw_lockproto(&sdp->sd_lockstruct);
-       fs_err(sdp, "withdrawn\n");
-       dump_stack();
+               kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE);
+
+               if (lm->lm_unmount) {
+                       fs_err(sdp, "telling LM to unmount\n");
+                       lm->lm_unmount(sdp);
+               }
+               fs_err(sdp, "withdrawn\n");
+               dump_stack();
+       }
+
+       if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
+               panic("GFS2: fsid=%s: panic requested.\n", sdp->sd_fsname);
 
        return -1;
 }
@@ -87,17 +99,24 @@ int gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
                        gfs2_tune_get(sdp, gt_complain_secs) * HZ))
                return -2;
 
-       printk(KERN_WARNING
-              "GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
-              "GFS2: fsid=%s:   function = %s, file = %s, line = %u\n",
-              sdp->sd_fsname, assertion,
-              sdp->sd_fsname, function, file, line);
+       if (sdp->sd_args.ar_errors == GFS2_ERRORS_WITHDRAW)
+               printk(KERN_WARNING
+                      "GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
+                      "GFS2: fsid=%s:   function = %s, file = %s, line = %u\n",
+                      sdp->sd_fsname, assertion,
+                      sdp->sd_fsname, function, file, line);
 
        if (sdp->sd_args.ar_debug)
                BUG();
        else
                dump_stack();
 
+       if (sdp->sd_args.ar_errors == GFS2_ERRORS_PANIC)
+               panic("GFS2: fsid=%s: warning: assertion \"%s\" failed\n"
+                     "GFS2: fsid=%s:   function = %s, file = %s, line = %u\n",
+                     sdp->sd_fsname, assertion,
+                     sdp->sd_fsname, function, file, line);
+
        sdp->sd_last_warning = jiffies;
 
        return -1;