Whamcloud - gitweb
LU-2444 build: fix 'error handling' issues
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_lproc.c
index 59dac88..0f522d8 100644 (file)
@@ -1,6 +1,4 @@
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
- *
+/*
  * GPL HEADER START
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -29,7 +27,7 @@
  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2011, Whamcloud, Inc.
+ * Copyright (c) 2011, 2012, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -43,8 +41,6 @@
 #define DEBUG_SUBSYSTEM S_CLASS
 
 #include <lprocfs_status.h>
-#include <lu_time.h>
-
 #include <lustre/lustre_idl.h>
 
 #include "osd_internal.h"
@@ -197,7 +193,7 @@ static int osd_stats_init(struct osd_device *osd)
         ENTRY;
 
         for (i = 0; i < BRW_LAST; i++)
-                cfs_spin_lock_init(&osd->od_brw_stats.hist[i].oh_lock);
+               spin_lock_init(&osd->od_brw_stats.hist[i].oh_lock);
 
         osd->od_stats = lprocfs_alloc_stats(LPROC_OSD_LAST, 0);
         if (osd->od_stats != NULL) {
@@ -232,8 +228,8 @@ static int osd_stats_init(struct osd_device *osd)
                                      LPROCFS_CNTR_AVGMINMAX,
                                      "thandle closing", "usec");
 #endif
-                lprocfs_seq_create(osd->od_proc_entry, "brw_stats",
-                                   0444, &osd_brw_stats_fops, osd);
+               result = lprocfs_seq_create(osd->od_proc_entry, "brw_stats",
+                                           0644, &osd_brw_stats_fops, osd);
         } else
                 result = -ENOMEM;
 
@@ -241,23 +237,16 @@ out:
         RETURN(result);
 }
 
-static const char *osd_counter_names[] = {
-#if OSD_THANDLE_STATS
-        [LPROC_OSD_THANDLE_STARTING] = "thandle starting",
-        [LPROC_OSD_THANDLE_OPEN]     = "thandle open",
-        [LPROC_OSD_THANDLE_CLOSING]  = "thandle closing"
-#endif
-};
-
 int osd_procfs_init(struct osd_device *osd, const char *name)
 {
         struct lprocfs_static_vars lvars;
-        struct lu_device    *ld = &osd->od_dt_dev.dd_lu_dev;
         struct obd_type     *type;
         int                  rc;
         ENTRY;
 
-        type = ld->ld_type->ldt_obd_type;
+       /* at the moment there is no linkage between lu_type
+        * and obd_type, so we lookup obd_type this way */
+       type = class_search_type(LUSTRE_OSD_LDISKFS_NAME);
 
         LASSERT(name != NULL);
         LASSERT(type != NULL);
@@ -265,7 +254,7 @@ int osd_procfs_init(struct osd_device *osd, const char *name)
         /* Find the type procroot and add the proc entry for this device */
         lprocfs_osd_init_vars(&lvars);
         osd->od_proc_entry = lprocfs_register(name, type->typ_procroot,
-                                              lvars.obd_vars, osd);
+                                              lvars.obd_vars, &osd->od_dt_dev);
         if (IS_ERR(osd->od_proc_entry)) {
                 rc = PTR_ERR(osd->od_proc_entry);
                 CERROR("Error %d setting up lprocfs for %s\n",
@@ -274,10 +263,6 @@ int osd_procfs_init(struct osd_device *osd, const char *name)
                 GOTO(out, rc);
         }
 
-        rc = lu_time_init(&osd->od_stats,
-                          osd->od_proc_entry,
-                          osd_counter_names, ARRAY_SIZE(osd_counter_names));
-
         rc = osd_stats_init(osd);
 
         EXIT;
@@ -289,8 +274,8 @@ out:
 
 int osd_procfs_fini(struct osd_device *osd)
 {
-        if (osd->od_stats)
-                lu_time_fini(&osd->od_stats);
+       if (osd->od_stats)
+               lprocfs_free_stats(&osd->od_stats);
 
         if (osd->od_proc_entry) {
                  lprocfs_remove(&osd->od_proc_entry);
@@ -299,189 +284,210 @@ int osd_procfs_fini(struct osd_device *osd)
         RETURN(0);
 }
 
-void osd_lprocfs_time_start(const struct lu_env *env)
+static int lprocfs_osd_rd_fstype(char *page, char **start, off_t off, int count,
+                                int *eof, void *data)
 {
-        lu_lprocfs_time_start(env);
+       struct osd_device *osd = osd_dt_dev(data);
+
+        LASSERT(osd != NULL);
+        return snprintf(page, count, "ldiskfs\n");
 }
 
-void osd_lprocfs_time_end(const struct lu_env *env, struct osd_device *osd,
-                          int idx)
+static int lprocfs_osd_rd_mntdev(char *page, char **start, off_t off, int count,
+                                 int *eof, void *data)
 {
-        lu_lprocfs_time_end(env, osd->od_stats, idx);
-}
+        struct osd_device *osd = osd_dt_dev(data);
+
+        LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+                return -EINPROGRESS;
 
+       *eof = 1;
 
+       return snprintf(page, count, "%s\n", osd->od_mntdev);
+}
 
-int lprocfs_osd_rd_blksize(char *page, char **start, off_t off, int count,
-                           int *eof, void *data)
+static int lprocfs_osd_rd_cache(char *page, char **start, off_t off,
+                               int count, int *eof, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
+       struct osd_device *osd = osd_dt_dev(data);
 
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
 
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                *eof = 1;
-                rc = snprintf(page, count, "%u\n", osd->od_statfs.os_bsize);
-        }
-        return rc;
+       return snprintf(page, count, "%u\n", osd->od_read_cache);
 }
 
-int lprocfs_osd_rd_kbytestotal(char *page, char **start, off_t off, int count,
-                               int *eof, void *data)
+static int lprocfs_osd_wr_cache(struct file *file, const char *buffer,
+                               unsigned long count, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
+       struct osd_device       *osd = osd_dt_dev(data);
+       int                      val, rc;
 
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
-
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                __u32 blk_size = osd->od_statfs.os_bsize >> 10;
-                __u64 result = osd->od_statfs.os_blocks;
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
 
-                while (blk_size >>= 1)
-                        result <<= 1;
+       rc = lprocfs_write_helper(buffer, count, &val);
+       if (rc)
+               return rc;
 
-                *eof = 1;
-                rc = snprintf(page, count, LPU64"\n", result);
-        }
-        return rc;
+       osd->od_read_cache = !!val;
+       return count;
 }
 
-int lprocfs_osd_rd_kbytesfree(char *page, char **start, off_t off, int count,
-                              int *eof, void *data)
+static int lprocfs_osd_rd_wcache(char *page, char **start, off_t off,
+                                int count, int *eof, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
-
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
-
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                __u32 blk_size = osd->od_statfs.os_bsize >> 10;
-                __u64 result = osd->od_statfs.os_bfree;
+       struct osd_device *osd = osd_dt_dev(data);
 
-                while (blk_size >>= 1)
-                        result <<= 1;
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
 
-                *eof = 1;
-                rc = snprintf(page, count, LPU64"\n", result);
-        }
-        return rc;
+       return snprintf(page, count, "%u\n", osd->od_writethrough_cache);
 }
 
-int lprocfs_osd_rd_kbytesavail(char *page, char **start, off_t off, int count,
-                               int *eof, void *data)
+static int lprocfs_osd_wr_wcache(struct file *file, const char *buffer,
+                                unsigned long count, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
+       struct osd_device       *osd = osd_dt_dev(data);
+       int                      val, rc;
 
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
 
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                __u32 blk_size = osd->od_statfs.os_bsize >> 10;
-                __u64 result = osd->od_statfs.os_bavail;
+       rc = lprocfs_write_helper(buffer, count, &val);
+       if (rc)
+               return rc;
 
-                while (blk_size >>= 1)
-                        result <<= 1;
+       osd->od_writethrough_cache = !!val;
+       return count;
+}
 
-                *eof = 1;
-                rc = snprintf(page, count, LPU64"\n", result);
-        }
-        return rc;
+static int lprocfs_osd_wr_force_sync(struct file *file, const char *buffer,
+                                    unsigned long count, void *data)
+{
+       struct osd_device       *osd = osd_dt_dev(data);
+       struct dt_device        *dt = data;
+       struct lu_env            env;
+       int                      rc;
+
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
+
+       rc = lu_env_init(&env, LCT_LOCAL);
+       if (rc)
+               return rc;
+       rc = dt_sync(&env, dt);
+       lu_env_fini(&env);
+
+       return rc == 0 ? count : rc;
 }
 
-int lprocfs_osd_rd_filestotal(char *page, char **start, off_t off, int count,
+static int lprocfs_osd_rd_pdo(char *page, char **start, off_t off, int count,
                               int *eof, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
+        *eof = 1;
 
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
+        return snprintf(page, count, "%s\n", ldiskfs_pdo ? "ON" : "OFF");
+}
 
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                *eof = 1;
-                rc = snprintf(page, count, LPU64"\n", osd->od_statfs.os_files);
-        }
+static int lprocfs_osd_wr_pdo(struct file *file, const char *buffer,
+                              unsigned long count, void *data)
+{
+        int     pdo;
+        int     rc;
+
+        rc = lprocfs_write_helper(buffer, count, &pdo);
+        if (rc != 0)
+                return rc;
 
-        return rc;
+        ldiskfs_pdo = !!pdo;
+
+        return count;
 }
 
-int lprocfs_osd_rd_filesfree(char *page, char **start, off_t off, int count,
-                             int *eof, void *data)
+static int lprocfs_osd_rd_auto_scrub(char *page, char **start, off_t off,
+                                    int count, int *eof, void *data)
 {
-        struct osd_device *osd = data;
-        int rc;
+       struct osd_device *dev = osd_dt_dev(data);
 
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
+       LASSERT(dev != NULL);
+       if (unlikely(dev->od_mnt == NULL))
+               return -EINPROGRESS;
 
-        rc = osd_statfs(NULL, &osd->od_dt_dev, &osd->od_statfs);
-        if (!rc) {
-                *eof = 1;
-                rc = snprintf(page, count, LPU64"\n", osd->od_statfs.os_ffree);
-        }
-        return rc;
+       *eof = 1;
+       return snprintf(page, count, "%d\n", !dev->od_noscrub);
 }
 
-int lprocfs_osd_rd_fstype(char *page, char **start, off_t off, int count,
-                          int *eof, void *data)
+static int lprocfs_osd_wr_auto_scrub(struct file *file, const char *buffer,
+                                    unsigned long count, void *data)
 {
-        struct obd_device *osd = data;
+       struct osd_device *dev = osd_dt_dev(data);
+       int val, rc;
 
-        LASSERT(osd != NULL);
-        return snprintf(page, count, "ldiskfs\n");
+       LASSERT(dev != NULL);
+       if (unlikely(dev->od_mnt == NULL))
+               return -EINPROGRESS;
+
+       rc = lprocfs_write_helper(buffer, count, &val);
+       if (rc)
+               return rc;
+
+       dev->od_noscrub = !val;
+       return count;
 }
 
-static int lprocfs_osd_rd_mntdev(char *page, char **start, off_t off, int count,
-                                 int *eof, void *data)
+static int lprocfs_osd_rd_oi_scrub(char *page, char **start, off_t off,
+                                  int count, int *eof, void *data)
 {
-        struct osd_device *osd = data;
-
-        LASSERT(osd != NULL);
-        if (unlikely(osd->od_mount == NULL))
-                return -EINPROGRESS;
+       struct osd_device *dev = osd_dt_dev(data);
 
-        LASSERT(osd->od_mount->lmi_mnt->mnt_devname);
-        *eof = 1;
+       LASSERT(dev != NULL);
+       if (unlikely(dev->od_mnt == NULL))
+               return -EINPROGRESS;
 
-        return snprintf(page, count, "%s\n",
-                        osd->od_mount->lmi_mnt->mnt_devname);
+       *eof = 1;
+       return osd_scrub_dump(dev, page, count);
 }
 
-#ifdef HAVE_LDISKFS_PDO
-static int lprocfs_osd_rd_pdo(char *page, char **start, off_t off, int count,
-                              int *eof, void *data)
+int lprocfs_osd_rd_readcache(char *page, char **start, off_t off, int count,
+                            int *eof, void *data)
 {
-        *eof = 1;
+       struct osd_device       *osd = osd_dt_dev(data);
+       int                      rc;
 
-        return snprintf(page, count, "%s\n", ldiskfs_pdo ? "ON" : "OFF");
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
+
+       rc = snprintf(page, count, LPU64"\n", osd->od_readcache_max_filesize);
+       return rc;
 }
 
-static int lprocfs_osd_wr_pdo(struct file *file, const char *buffer,
-                              unsigned long count, void *data)
+int lprocfs_osd_wr_readcache(struct file *file, const char *buffer,
+                            unsigned long count, void *data)
 {
-        int     pdo;
-        int     rc;
+       struct osd_device       *osd = osd_dt_dev(data);
+       __u64                    val;
+       int                      rc;
 
-        rc = lprocfs_write_helper(buffer, count, &pdo);
-        if (rc != 0)
-                return rc;
+       LASSERT(osd != NULL);
+       if (unlikely(osd->od_mnt == NULL))
+               return -EINPROGRESS;
 
-        ldiskfs_pdo = !!pdo;
+       rc = lprocfs_write_u64_helper(buffer, count, &val);
+       if (rc)
+               return rc;
 
-        return count;
+       osd->od_readcache_max_filesize = val > OSD_MAX_CACHE_SIZE ?
+                                        OSD_MAX_CACHE_SIZE : val;
+       return count;
 }
-#endif
 
 struct lprocfs_vars lprocfs_osd_obd_vars[] = {
         { "blocksize",       lprocfs_osd_rd_blksize,     0, 0 },
@@ -492,10 +498,18 @@ struct lprocfs_vars lprocfs_osd_obd_vars[] = {
         { "filesfree",       lprocfs_osd_rd_filesfree,   0, 0 },
         { "fstype",          lprocfs_osd_rd_fstype,      0, 0 },
         { "mntdev",          lprocfs_osd_rd_mntdev,      0, 0 },
-#ifdef HAVE_LDISKFS_PDO
+       { "force_sync",      0, lprocfs_osd_wr_force_sync     },
         { "pdo",             lprocfs_osd_rd_pdo, lprocfs_osd_wr_pdo, 0 },
-#endif
-        { 0 }
+       { "auto_scrub",      lprocfs_osd_rd_auto_scrub,
+                            lprocfs_osd_wr_auto_scrub,  0 },
+       { "oi_scrub",        lprocfs_osd_rd_oi_scrub,    0, 0 },
+       { "force_sync",         0, lprocfs_osd_wr_force_sync },
+       { "read_cache_enable",  lprocfs_osd_rd_cache, lprocfs_osd_wr_cache, 0 },
+       { "writethrough_cache_enable",  lprocfs_osd_rd_wcache,
+                                       lprocfs_osd_wr_wcache, 0 },
+       { "readcache_max_filesize",     lprocfs_osd_rd_readcache,
+                                       lprocfs_osd_wr_readcache, 0 },
+       { 0 }
 };
 
 struct lprocfs_vars lprocfs_osd_module_vars[] = {