Whamcloud - gitweb
land v0.9.1 on HEAD, in preparation for a 1.0.x branch
[fs/lustre-release.git] / lustre / osc / lproc_osc.c
index e9affd0..d394a47 100644 (file)
 #endif
 #include <linux/obd_class.h>
 #include <linux/lprocfs_status.h>
+#include <linux/seq_file.h>
+#include "osc_internal.h"
 
 #ifndef LPROCFS
 static struct lprocfs_vars lprocfs_obd_vars[]  = { {0} };
 static struct lprocfs_vars lprocfs_module_vars[] = { {0} };
 #else
+
+#define OSC_MAX_RIF_MAX 32
+#define OSC_MAX_DIRTY_MB_MAX 4096 /* totally arbitrary */
+
+int osc_rd_max_pages_per_rpc(char *page, char **start, off_t off, int count,
+                             int *eof, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int rc;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        rc = snprintf(page, count, "%d\n", cli->cl_max_pages_per_rpc);
+        spin_unlock(&cli->cl_loi_list_lock);
+        return rc;
+}
+
+int osc_wr_max_pages_per_rpc(struct file *file, const char *buffer,
+                             unsigned long count, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int val, rc;
+
+        rc = lprocfs_write_helper(buffer, count, &val);
+        if (rc)
+                return rc;
+
+        if (val < 1 || val > PTL_MD_MAX_PAGES)
+                return -ERANGE;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        cli->cl_max_pages_per_rpc = val;
+        spin_unlock(&cli->cl_loi_list_lock);
+
+        return count;
+}
+
+int osc_rd_max_rpcs_in_flight(char *page, char **start, off_t off, int count,
+                              int *eof, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int rc;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        rc = snprintf(page, count, "%d\n", cli->cl_max_rpcs_in_flight);
+        spin_unlock(&cli->cl_loi_list_lock);
+        return rc;
+}
+
+int osc_wr_max_rpcs_in_flight(struct file *file, const char *buffer,
+                              unsigned long count, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int val, rc;
+
+        rc = lprocfs_write_helper(buffer, count, &val);
+        if (rc)
+                return rc;
+
+        if (val < 1 || val > OSC_MAX_RIF_MAX)
+                return -ERANGE;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        cli->cl_max_rpcs_in_flight = val;
+        spin_unlock(&cli->cl_loi_list_lock);
+
+        return count;
+}
+
+int osc_rd_max_dirty_mb(char *page, char **start, off_t off, int count,
+                        int *eof, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int val;
+        int rc;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        val = cli->cl_dirty_max >> 20;
+        rc = snprintf(page, count, "%d\n", val);
+        spin_unlock(&cli->cl_loi_list_lock);
+        return rc;
+}
+
+int osc_wr_max_dirty_mb(struct file *file, const char *buffer,
+                        unsigned long count, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int val, rc;
+
+        rc = lprocfs_write_helper(buffer, count, &val);
+        if (rc)
+                return rc;
+
+        if (val < 0 || val > OSC_MAX_DIRTY_MB_MAX)
+                return -ERANGE;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        cli->cl_dirty_max = (obd_count)val * 1024 * 1024;
+        spin_unlock(&cli->cl_loi_list_lock);
+
+        return count;
+}
+
+int osc_rd_cur_dirty_bytes(char *page, char **start, off_t off, int count,
+                           int *eof, void *data)
+{
+        struct obd_device *dev = data;
+        struct client_obd *cli = &dev->u.cli;
+        int rc;
+
+        spin_lock(&cli->cl_loi_list_lock);
+        rc = snprintf(page, count, LPU64"\n", cli->cl_dirty);
+        spin_unlock(&cli->cl_loi_list_lock);
+        return rc;
+}
+
+int osc_rd_create_low_wm(char *page, char **start, off_t off, int count,
+                         int *eof, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        spin_unlock(&obd->obd_dev_lock);
+
+        return snprintf(page, count, "%d\n",
+                        exp->exp_osc_data.oed_oscc.oscc_kick_barrier);
+}
+
+int osc_wr_create_low_wm(struct file *file, const char *buffer,
+                         unsigned long count, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+        int val, rc;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        rc = lprocfs_write_helper(buffer, count, &val);
+        if (rc)
+                return rc;
+
+        if (val < 0)
+                return -ERANGE;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        exp->exp_osc_data.oed_oscc.oscc_kick_barrier = val;
+        spin_unlock(&obd->obd_dev_lock);
+
+        return count;
+}
+
+int osc_rd_create_count(char *page, char **start, off_t off, int count,
+                        int *eof, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        spin_unlock(&obd->obd_dev_lock);
+
+        return snprintf(page, count, "%d\n",
+                        exp->exp_osc_data.oed_oscc.oscc_grow_count);
+}
+
+int osc_wr_create_count(struct file *file, const char *buffer,
+                        unsigned long count, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+        int val, rc;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        rc = lprocfs_write_helper(buffer, count, &val);
+        if (rc)
+                return rc;
+
+        if (val < 0)
+                return -ERANGE;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        exp->exp_osc_data.oed_oscc.oscc_grow_count = val;
+        spin_unlock(&obd->obd_dev_lock);
+
+        return count;
+}
+
+int osc_rd_prealloc_next_id(char *page, char **start, off_t off, int count,
+                            int *eof, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        spin_unlock(&obd->obd_dev_lock);
+
+        return snprintf(page, count, LPU64"\n",
+                        exp->exp_osc_data.oed_oscc.oscc_next_id);
+}
+
+int osc_rd_prealloc_last_id(char *page, char **start, off_t off, int count,
+                            int *eof, void *data)
+{
+        struct obd_device *obd = data;
+        struct obd_export *exp;
+
+        if (obd == NULL || list_empty(&obd->obd_exports))
+                return 0;
+
+        spin_lock(&obd->obd_dev_lock);
+        exp = list_entry(obd->obd_exports.next, struct obd_export,
+                         exp_obd_chain);
+        spin_unlock(&obd->obd_dev_lock);
+
+        return snprintf(page, count, LPU64"\n",
+                        exp->exp_osc_data.oed_oscc.oscc_last_id);
+}
+
 static struct lprocfs_vars lprocfs_obd_vars[] = {
         { "uuid",            lprocfs_rd_uuid,        0, 0 },
         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
@@ -41,7 +288,17 @@ static struct lprocfs_vars lprocfs_obd_vars[] = {
         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
         //{ "filegroups",      lprocfs_rd_filegroups,  0, 0 },
         { "ost_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
-        { "ost_conn_uuid",   lprocfs_rd_conn_uuid,   0, 0 },
+        { "ost_conn_uuid",   lprocfs_rd_conn_uuid, 0, 0 },
+        { "max_pages_per_rpc", osc_rd_max_pages_per_rpc, 
+                               osc_wr_max_pages_per_rpc, 0 },
+        { "max_rpcs_in_flight", osc_rd_max_rpcs_in_flight, 
+                                osc_wr_max_rpcs_in_flight, 0 },
+        { "max_dirty_mb", osc_rd_max_dirty_mb, osc_wr_max_dirty_mb, 0 },
+        { "cur_dirty_bytes", osc_rd_cur_dirty_bytes, 0, 0 },
+        {"create_low_watermark", osc_rd_create_low_wm, osc_wr_create_low_wm, 0},
+        { "create_count", osc_rd_create_count, osc_wr_create_count, 0 },
+        { "prealloc_next_id", osc_rd_prealloc_next_id, 0, 0 },
+        { "prealloc_last_id", osc_rd_prealloc_last_id, 0, 0 },
         { 0 }
 };
 
@@ -50,5 +307,195 @@ static struct lprocfs_vars lprocfs_module_vars[] = {
         { 0 }
 };
 
+void lproc_osc_hist(struct osc_histogram *oh, unsigned int value)
+{
+        unsigned long flags;
+
+        if (value >= OSC_HIST_MAX)
+                value = OSC_HIST_MAX - 1;
+
+        spin_lock_irqsave(&oh->oh_lock, flags);
+        oh->oh_buckets[value]++;
+        spin_unlock_irqrestore(&oh->oh_lock, flags);
+}
+
+void lproc_osc_hist_pow2(struct osc_histogram *oh, unsigned int value)
+{
+        unsigned int pow;
+
+        for (pow = 0; ((1 << pow) < value) && (pow <= OSC_HIST_MAX); pow++)
+                ;
+
+        lproc_osc_hist(oh, pow);
+}
+
+static unsigned long lproc_oh_sum(struct osc_histogram *oh)
+{
+        unsigned long ret = 0;
+        int i;
+
+        for (i = 0; i < OSC_HIST_MAX; i++)
+                ret +=  oh->oh_buckets[i];
+        return ret;
+}
+
+static void lproc_clear_oh(struct osc_histogram *oh)
+{
+        unsigned long flags;
+        spin_lock_irqsave(&oh->oh_lock, flags);
+        memset(oh->oh_buckets, 0, sizeof(oh->oh_buckets));
+        spin_unlock_irqrestore(&oh->oh_lock, flags);
+}
+
+#define pct(a,b) (b ? a * 100 / b : 0)
+
+static int osc_rpc_stats_seq_show(struct seq_file *seq, void *v)
+{
+        struct timeval now;
+        struct obd_device *dev = seq->private;
+        struct client_obd *cli = &dev->u.cli;
+        unsigned long flags;
+        unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
+        int i, rpcs, r, w;
+
+        do_gettimeofday(&now);
+
+        spin_lock_irqsave(&cli->cl_loi_list_lock, flags);
+
+        rpcs = cli->cl_brw_in_flight;
+        r = cli->cl_pending_r_pages;
+        w = cli->cl_pending_w_pages;
+                                                                                
+        seq_printf(seq, "snapshot_time:         %lu:%lu (secs:usecs)\n",
+                   now.tv_sec, now.tv_usec);
+        seq_printf(seq, "RPCs in flight:        %d\n", rpcs);
+        seq_printf(seq, "pending write pages:   %d\n", w);
+        seq_printf(seq, "pending read pages:   %d\n", r);
+
+        seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
+        seq_printf(seq, "pages per rpc         rpcs   %% cum %% |");
+        seq_printf(seq, "       rpcs   %% cum %%\n");
+
+        read_tot = lproc_oh_sum(&cli->cl_read_page_hist);
+        write_tot = lproc_oh_sum(&cli->cl_write_page_hist);
+
+        read_cum = 0;
+        write_cum = 0;
+        for (i = 0; i < OSC_HIST_MAX; i++) {
+                unsigned long r = cli->cl_read_page_hist.oh_buckets[i];
+                unsigned long w = cli->cl_write_page_hist.oh_buckets[i];
+                read_cum += r;
+                write_cum += w;
+                seq_printf(seq, "%d:\t\t%10lu %3lu %3lu   | %10lu %3lu %3lu\n", 
+                                 1 << i, r, pct(r, read_tot), 
+                                 pct(read_cum, read_tot), w, 
+                                 pct(w, write_tot),
+                                 pct(write_cum, write_tot));
+                if (read_cum == read_tot && write_cum == write_tot)
+                        break;
+        }
+
+        seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
+        seq_printf(seq, "rpcs in flight        rpcs   %% cum %% |");
+        seq_printf(seq, "       rpcs   %% cum %%\n");
+
+        read_tot = lproc_oh_sum(&cli->cl_read_rpc_hist);
+        write_tot = lproc_oh_sum(&cli->cl_write_rpc_hist);
+
+        read_cum = 0;
+        write_cum = 0;
+        for (i = 0; i < OSC_HIST_MAX; i++) {
+                unsigned long r = cli->cl_read_rpc_hist.oh_buckets[i];
+                unsigned long w = cli->cl_write_rpc_hist.oh_buckets[i];
+                read_cum += r;
+                write_cum += w;
+                seq_printf(seq, "%d:\t\t%10lu %3lu %3lu   | %10lu %3lu %3lu\n", 
+                                 i, r, pct(r, read_tot), 
+                                 pct(read_cum, read_tot), w, 
+                                 pct(w, write_tot),
+                                 pct(write_cum, write_tot));
+                if (read_cum == read_tot && write_cum == write_tot)
+                        break;
+        }
+
+        spin_unlock_irqrestore(&cli->cl_loi_list_lock, flags);
+
+        return 0;
+}
+#undef pct
+
+static void *osc_rpc_stats_seq_start(struct seq_file *p, loff_t *pos)
+{
+        if (*pos == 0)
+                return (void *)1;
+        return NULL;
+}
+static void *osc_rpc_stats_seq_next(struct seq_file *p, void *v, loff_t *pos)
+{
+        ++*pos;
+        return NULL;
+}
+static void osc_rpc_stats_seq_stop(struct seq_file *p, void *v)
+{
+}
+struct seq_operations osc_rpc_stats_seq_sops = {
+        .start = osc_rpc_stats_seq_start,
+        .stop = osc_rpc_stats_seq_stop,
+        .next = osc_rpc_stats_seq_next,
+        .show = osc_rpc_stats_seq_show,
+};
+
+static int osc_rpc_stats_seq_open(struct inode *inode, struct file *file)
+{
+        struct proc_dir_entry *dp = inode->u.generic_ip;
+        struct seq_file *seq;
+        int rc;
+        rc = seq_open(file, &osc_rpc_stats_seq_sops);
+        if (rc)
+                return rc;
+        seq = file->private_data;
+        seq->private = dp->data;
+        return 0;
+}
+
+static ssize_t osc_rpc_stats_seq_write(struct file *file, const char *buf,
+                                       size_t len, loff_t *off)
+{
+        struct seq_file *seq = file->private_data;
+        struct obd_device *dev = seq->private;
+        struct client_obd *cli = &dev->u.cli;
+
+        lproc_clear_oh(&cli->cl_read_rpc_hist);
+        lproc_clear_oh(&cli->cl_write_rpc_hist);
+        lproc_clear_oh(&cli->cl_read_page_hist);
+        lproc_clear_oh(&cli->cl_write_page_hist);
+
+        return len;
+}
+
+struct file_operations osc_rpc_stats_fops = {
+        .open    = osc_rpc_stats_seq_open,
+        .read    = seq_read,
+        .write   = osc_rpc_stats_seq_write,
+        .llseek  = seq_lseek,
+        .release = seq_release,
+};
+
+int lproc_osc_attach_seqstat(struct obd_device *dev)
+{
+        struct proc_dir_entry *entry;
+        ENTRY;
+
+        entry = create_proc_entry("rpc_stats", 0444, dev->obd_proc_entry);
+        if (entry == NULL)
+                RETURN(-ENOMEM);
+        entry->proc_fops = &osc_rpc_stats_fops;
+        entry->data = dev;
+
+        RETURN(0);
+}
+
+
 #endif /* LPROCFS */
 LPROCFS_INIT_VARS(osc,lprocfs_module_vars, lprocfs_obd_vars)