Whamcloud - gitweb
LU-7334 lov: Cleanup lov_stripe proc files
[fs/lustre-release.git] / lustre / lov / lproc_lov.c
index e0b3adb..b910d71 100644 (file)
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
+/*
+ * GPL HEADER START
  *
- *  Copyright (C) 2002 Cluster File Systems, Inc.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
- *   This file is part of Lustre, http://www.lustre.org.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
  *
- *   Lustre is free software; you can redistribute it and/or
- *   modify it under the terms of version 2 of the GNU General Public
- *   License as published by the Free Software Foundation.
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License version 2 for more details (a copy is included
+ * in the LICENSE file that accompanied this code).
  *
- *   Lustre is distributed in the hope that it will be useful,
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   GNU General Public License for more details.
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; If not, see
+ * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
  *
- *   You should have received a copy of the GNU General Public License
- *   along with Lustre; if not, write to the Free Software
- *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
  *
+ * GPL HEADER END
+ */
+/*
+ * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Use is subject to license terms.
+ *
+ * Copyright (c) 2012, 2015, Intel Corporation.
+ */
+/*
+ * This file is part of Lustre, http://www.lustre.org/
+ * Lustre is a trademark of Sun Microsystems, Inc.
  */
 #define DEBUG_SUBSYSTEM S_CLASS
 
 #include <linux/version.h>
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
 #include <asm/statfs.h>
-#endif
-#include <linux/lprocfs_status.h>
-#include <linux/obd_class.h>
-#include <linux/seq_file.h>
-
-#ifndef LPROCFS
-struct lprocfs_vars lprocfs_module_vars[] = { {0} };
-struct lprocfs_vars lprocfs_obd_vars[] = { {0} };
-#else
-
-DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     obd_self_statfs);
-DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, obd_self_statfs);
-DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  obd_self_statfs);
-DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  obd_self_statfs);
-DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   obd_self_statfs);
-DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  obd_self_statfs);
-
-int rd_stripesize(char *page, char **start, off_t off, int count, int *eof,
-                  void *data)
+#include <lprocfs_status.h>
+#include <obd_class.h>
+#include <lustre_param.h>
+#include "lov_internal.h"
+
+#ifdef CONFIG_PROC_FS
+static int lov_stripesize_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device *dev = (struct obd_device *)data;
-        struct lov_desc *desc;
+       struct obd_device *dev = (struct obd_device *)m->private;
+       struct lov_desc *desc;
 
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_size);
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+
+       seq_printf(m, LPU64"\n", desc->ld_default_stripe_size);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_stripesize);
 
-int rd_stripeoffset(char *page, char **start, off_t off, int count, int *eof,
-                    void *data)
+static int lov_stripeoffset_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device *dev = (struct obd_device *)data;
-        struct lov_desc *desc;
+       struct obd_device *dev = (struct obd_device *)m->private;
+       struct lov_desc *desc;
 
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_offset);
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+       seq_printf(m, LPU64"\n", desc->ld_default_stripe_offset);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_stripeoffset);
 
-int rd_stripetype(char *page, char **start, off_t off, int count, int *eof,
-                  void *data)
+static int lov_stripetype_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device* dev = (struct obd_device*)data;
-        struct lov_desc *desc;
+       struct obd_device* dev = (struct obd_device*)m->private;
+       struct lov_desc *desc;
 
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, "%u\n", desc->ld_pattern);
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+       seq_printf(m, "%u\n", desc->ld_pattern);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_stripetype);
 
-int rd_stripecount(char *page, char **start, off_t off, int count, int *eof,
-                   void *data)
+static int lov_stripecount_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device *dev = (struct obd_device *)data;
-        struct lov_desc *desc;
-
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, "%u\n", desc->ld_default_stripe_count);
+       struct obd_device *dev = (struct obd_device *)m->private;
+       struct lov_desc *desc;
+
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+       seq_printf(m, "%d\n",
+                 (__s16)(desc->ld_default_stripe_count + 1) - 1);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_stripecount);
 
-int rd_numobd(char *page, char **start, off_t off, int count, int *eof,
-              void *data)
+static int lov_numobd_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device *dev = (struct obd_device*)data;
-        struct lov_desc *desc;
-
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, "%u\n", desc->ld_tgt_count);
+       struct obd_device *dev = (struct obd_device*)m->private;
+       struct lov_desc *desc;
 
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+       seq_printf(m, "%u\n", desc->ld_tgt_count);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_numobd);
 
-int rd_activeobd(char *page, char **start, off_t off, int count, int *eof,
-                 void *data)
+static int lov_activeobd_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device* dev = (struct obd_device*)data;
-        struct lov_desc *desc;
+       struct obd_device* dev = (struct obd_device*)m->private;
+       struct lov_desc *desc;
 
-        LASSERT(dev != NULL);
-        desc = &dev->u.lov.desc;
-        *eof = 1;
-        return snprintf(page, count, "%u\n", desc->ld_active_tgt_count);
+       LASSERT(dev != NULL);
+       desc = &dev->u.lov.desc;
+       seq_printf(m, "%u\n", desc->ld_active_tgt_count);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_activeobd);
 
-int rd_mdc(char *page, char **start, off_t off, int count, int *eof, void *data)
+static int lov_desc_uuid_seq_show(struct seq_file *m, void *v)
 {
-        struct obd_device *dev = (struct obd_device*) data;
-        struct lov_obd *lov;
+       struct obd_device *dev = m->private;
+       struct lov_obd *lov;
 
-        LASSERT(dev != NULL);
-        lov = &dev->u.lov;
-        *eof = 1;
-        return snprintf(page, count, "%s\n", lov->mdcobd->obd_uuid.uuid);
+       LASSERT(dev != NULL);
+       lov = &dev->u.lov;
+       seq_printf(m, "%s\n", lov->desc.ld_uuid.uuid);
+       return 0;
 }
+LPROC_SEQ_FOPS_RO(lov_desc_uuid);
 
-static void *ll_tgt_seq_start(struct seq_file *p, loff_t *pos)
+static void *lov_tgt_seq_start(struct seq_file *p, loff_t *pos)
 {
         struct obd_device *dev = p->private;
         struct lov_obd *lov = &dev->u.lov;
 
-        return (*pos >= lov->desc.ld_tgt_count) ? NULL : &(lov->tgts[*pos]);
-
+        while (*pos < lov->desc.ld_tgt_count) {
+                if (lov->lov_tgts[*pos])
+                        return lov->lov_tgts[*pos];
+                ++*pos;
+        }
+        return NULL;
 }
-static void ll_tgt_seq_stop(struct seq_file *p, void *v)
-{
 
+static void lov_tgt_seq_stop(struct seq_file *p, void *v)
+{
 }
 
-static void *ll_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos)
+static void *lov_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos)
 {
         struct obd_device *dev = p->private;
         struct lov_obd *lov = &dev->u.lov;
 
-        ++*pos;
-        return (*pos >=lov->desc.ld_tgt_count) ? NULL : &(lov->tgts[*pos]);
+        while (++*pos < lov->desc.ld_tgt_count) {
+                if (lov->lov_tgts[*pos])
+                        return lov->lov_tgts[*pos];
+        }
+        return NULL;
 }
 
-static int ll_tgt_seq_show(struct seq_file *p, void *v)
+static int lov_tgt_seq_show(struct seq_file *p, void *v)
 {
         struct lov_tgt_desc *tgt = v;
-        struct obd_device *dev = p->private;
-        struct lov_obd *lov = &dev->u.lov;
-        int idx = tgt - &(lov->tgts[0]);
-        return seq_printf(p, "%d: %s %sACTIVE\n", idx+1, tgt->uuid.uuid,
-                          tgt->active ? "" : "IN");
+       seq_printf(p, "%d: %s %sACTIVE\n", tgt->ltd_index,
+                  obd_uuid2str(&tgt->ltd_uuid),
+                  tgt->ltd_active ? "" : "IN");
+       return 0;
 }
 
-struct seq_operations ll_tgt_sops = {
-        .start = ll_tgt_seq_start,
-        .stop = ll_tgt_seq_stop,
-        .next = ll_tgt_seq_next,
-        .show = ll_tgt_seq_show,
+static const struct seq_operations lov_tgt_sops = {
+        .start = lov_tgt_seq_start,
+        .stop = lov_tgt_seq_stop,
+        .next = lov_tgt_seq_next,
+        .show = lov_tgt_seq_show,
 };
 
-static int ll_target_seq_open(struct inode *inode, struct file *file)
+static int lov_target_seq_open(struct inode *inode, struct file *file)
 {
-        struct proc_dir_entry *dp = inode->u.generic_ip;
-        struct seq_file *seq;
-        int rc = seq_open(file, &ll_tgt_sops);
+       struct seq_file *seq;
+       int rc;
 
-        if (rc)
-                return rc;
+       rc = LPROCFS_ENTRY_CHECK(inode);
+       if (rc < 0)
+               return rc;
 
-        seq = file->private_data;
-        seq->private = dp->data;
+       rc = seq_open(file, &lov_tgt_sops);
+       if (rc)
+               return rc;
 
-        return 0;
+       seq = file->private_data;
+       seq->private = PDE_DATA(inode);
+       return 0;
 }
-struct lprocfs_vars lprocfs_obd_vars[] = {
-        { "uuid",         lprocfs_rd_uuid, 0, 0 },
-        { "stripesize",   rd_stripesize,   0, 0 },
-        { "stripeoffset", rd_stripeoffset, 0, 0 },
-        { "stripecount",  rd_stripecount,  0, 0 },
-        { "stripetype",   rd_stripetype,   0, 0 },
-        { "numobd",       rd_numobd,       0, 0 },
-        { "activeobd",    rd_activeobd,    0, 0 },
-        { "filestotal",   rd_filestotal,   0, 0 },
-        { "filesfree",    rd_filesfree,    0, 0 },
-        { "filegroups",   rd_filegroups,   0, 0 },
-        { "blocksize",    rd_blksize,      0, 0 },
-        { "kbytestotal",  rd_kbytestotal,  0, 0 },
-        { "kbytesfree",   rd_kbytesfree,   0, 0 },
-        { "target_mdc",   rd_mdc,          0, 0 },
-        { 0 }
-};
 
-struct lprocfs_vars lprocfs_module_vars[] = {
-        { "num_refs",     lprocfs_rd_numrefs, 0, 0 },
-        { 0 }
+LPROC_SEQ_FOPS_RO_TYPE(lov, uuid);
+LPROC_SEQ_FOPS_RO_TYPE(lov, filestotal);
+LPROC_SEQ_FOPS_RO_TYPE(lov, filesfree);
+LPROC_SEQ_FOPS_RO_TYPE(lov, blksize);
+LPROC_SEQ_FOPS_RO_TYPE(lov, kbytestotal);
+LPROC_SEQ_FOPS_RO_TYPE(lov, kbytesfree);
+LPROC_SEQ_FOPS_RO_TYPE(lov, kbytesavail);
+
+struct lprocfs_vars lprocfs_lov_obd_vars[] = {
+       { .name =       "uuid",
+         .fops =       &lov_uuid_fops          },
+       { .name =       "stripesize",
+         .fops =       &lov_stripesize_fops    },
+       { .name =       "stripeoffset",
+         .fops =       &lov_stripeoffset_fops  },
+       { .name =       "stripecount",
+         .fops =       &lov_stripecount_fops   },
+       { .name =       "stripetype",
+         .fops =       &lov_stripetype_fops    },
+       { .name =       "numobd",
+         .fops =       &lov_numobd_fops        },
+       { .name =       "activeobd",
+         .fops =       &lov_activeobd_fops     },
+       { .name =       "filestotal",
+         .fops =       &lov_filestotal_fops    },
+       { .name =       "filesfree",
+         .fops =       &lov_filesfree_fops     },
+       { .name =       "blocksize",
+         .fops =       &lov_blksize_fops       },
+       { .name =       "kbytestotal",
+         .fops =       &lov_kbytestotal_fops   },
+       { .name =       "kbytesfree",
+         .fops =       &lov_kbytesfree_fops    },
+       { .name =       "kbytesavail",
+         .fops =       &lov_kbytesavail_fops   },
+       { .name =       "desc_uuid",
+         .fops =       &lov_desc_uuid_fops     },
+       { NULL }
 };
 
-struct file_operations ll_proc_target_fops = {
-        .open = ll_target_seq_open,
-        .read = seq_read,
-        .llseek = seq_lseek,
-        .release = seq_release,
+struct file_operations lov_proc_target_fops = {
+        .owner   = THIS_MODULE,
+        .open    = lov_target_seq_open,
+        .read    = seq_read,
+        .llseek  = seq_lseek,
+        .release = lprocfs_seq_release,
 };
-
-#endif /* LPROCFS */
-LPROCFS_INIT_VARS(lprocfs_module_vars, lprocfs_obd_vars)
+#endif /* CONFIG_PROC_FS */