From: Andrew Morton <akpm@linux-foundation.org>
To: Mark Fasheh <mfasheh@suse.com>
Cc: linux-kernel@vger.kernel.org, joel.becker@oracle.com,
ocfs2-devel@oss.oracle.com, linux-fsdevel@vger.kernel.org,
mfasheh@suse.com
Subject: Re: [PATCH 04/39] ocfs2: track local alloc state via debugfs
Date: Wed, 1 Oct 2008 23:11:53 -0700 [thread overview]
Message-ID: <20081001231153.2d19bb68.akpm@linux-foundation.org> (raw)
In-Reply-To: <1222293680-15451-5-git-send-email-mfasheh@suse.com>
> On Wed, 24 Sep 2008 15:00:45 -0700 Mark Fasheh <mfasheh@suse.com> wrote:
> A per-mount debugfs file, "local_alloc" is created which when read will
> expose live state of the nodes local alloc file. Performance impact is
> minimal, only a bit of memory overhead per mount point. Still, the code is
> hidden behind CONFIG_OCFS2_FS_STATS. This feature will help us debug
> local alloc performance problems on a live system.
>
> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
> ---
> fs/ocfs2/localalloc.c | 87 +++++++++++++++++++++++++++++++++++++++++++++++++
> fs/ocfs2/ocfs2.h | 5 +++
> 2 files changed, 92 insertions(+), 0 deletions(-)
>
> diff --git a/fs/ocfs2/localalloc.c b/fs/ocfs2/localalloc.c
> index f71658a..b889f10 100644
> --- a/fs/ocfs2/localalloc.c
> +++ b/fs/ocfs2/localalloc.c
> @@ -28,6 +28,7 @@
> #include <linux/slab.h>
> #include <linux/highmem.h>
> #include <linux/bitops.h>
> +#include <linux/debugfs.h>
>
> #define MLOG_MASK_PREFIX ML_DISK_ALLOC
> #include <cluster/masklog.h>
> @@ -73,6 +74,85 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
> static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
> struct inode *local_alloc_inode);
>
> +#ifdef CONFIG_OCFS2_FS_STATS
> +
> +DEFINE_MUTEX(la_debug_mutex);
Unless this mutex is used in a later patch, it can be made static to this file.
> +static int ocfs2_la_debug_open(struct inode *inode, struct file *file)
> +{
> + file->private_data = inode->i_private;
> + return 0;
> +}
> +
> +#define LA_DEBUG_BUF_SZ PAGE_CACHE_SIZE
> +#define LA_DEBUG_VER 1
> +static ssize_t ocfs2_la_debug_read(struct file *file, char __user *userbuf,
> + size_t count, loff_t *ppos)
> +{
> + struct ocfs2_super *osb = file->private_data;
> + int written, ret;
> + char *buf = osb->local_alloc_debug_buf;
> +
> + mutex_lock(&la_debug_mutex);
> + memset(buf, 0, LA_DEBUG_BUF_SZ);
> +
> + written = snprintf(buf, LA_DEBUG_BUF_SZ,
> + "0x%x\t0x%llx\t%u\t%u\t0x%x\n",
> + LA_DEBUG_VER,
> + (unsigned long long)osb->la_last_gd,
> + osb->local_alloc_default_bits,
> + osb->local_alloc_bits, osb->local_alloc_state);
> +
> + ret = simple_read_from_buffer(userbuf, count, ppos, buf, written);
> +
> + mutex_unlock(&la_debug_mutex);
> + return ret;
> +}
In fact it can be made static and local to this function.
> +static const struct file_operations ocfs2_la_debug_fops = {
> + .open = ocfs2_la_debug_open,
> + .read = ocfs2_la_debug_read,
> +};
> +
> +static void ocfs2_init_la_debug(struct ocfs2_super *osb)
> +{
> + osb->local_alloc_debug_buf = kmalloc(LA_DEBUG_BUF_SZ, GFP_NOFS);
> + if (!osb->local_alloc_debug_buf)
> + return;
> +
> + osb->local_alloc_debug = debugfs_create_file("local_alloc_stats",
> + S_IFREG|S_IRUSR,
> + osb->osb_debug_root,
> + osb,
> + &ocfs2_la_debug_fops);
> + if (!osb->local_alloc_debug) {
> + kfree(osb->local_alloc_debug_buf);
> + osb->local_alloc_debug_buf = NULL;
> + }
> +}
> +
> +static void ocfs2_shutdown_la_debug(struct ocfs2_super *osb)
> +{
> + if (osb->local_alloc_debug)
> + debugfs_remove(osb->local_alloc_debug);
> +
> + if (osb->local_alloc_debug_buf)
> + kfree(osb->local_alloc_debug_buf);
> +
> + osb->local_alloc_debug_buf = NULL;
> + osb->local_alloc_debug = NULL;
> +}
> +#else /* CONFIG_OCFS2_FS_STATS */
> +static void ocfs2_init_la_debug(struct ocfs2_super *osb)
> +{
> + return;
> +}
> +static void ocfs2_shutdown_la_debug(struct ocfs2_super *osb)
> +{
> + return;
> +}
> +#endif
> +
> static inline int ocfs2_la_state_enabled(struct ocfs2_super *osb)
> {
> return (osb->local_alloc_state == OCFS2_LA_THROTTLED ||
> @@ -146,6 +226,8 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb)
>
> mlog_entry_void();
>
> + ocfs2_init_la_debug(osb);
> +
> if (osb->local_alloc_bits == 0)
> goto bail;
>
> @@ -218,6 +300,9 @@ bail:
> if (inode)
> iput(inode);
>
> + if (status < 0)
> + ocfs2_shutdown_la_debug(osb);
> +
> mlog(0, "Local alloc window bits = %d\n", osb->local_alloc_bits);
>
> mlog_exit(status);
> @@ -247,6 +332,8 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
> cancel_delayed_work(&osb->la_enable_wq);
> flush_workqueue(ocfs2_wq);
>
> + ocfs2_shutdown_la_debug(osb);
> +
> if (osb->local_alloc_state == OCFS2_LA_UNUSED)
> goto out;
>
> diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h
> index 4d6e200..1282799 100644
> --- a/fs/ocfs2/ocfs2.h
> +++ b/fs/ocfs2/ocfs2.h
> @@ -272,6 +272,11 @@ struct ocfs2_super
>
> u64 la_last_gd;
>
> +#ifdef CONFIG_OCFS2_FS_STATS
> + struct dentry *local_alloc_debug;
> + char *local_alloc_debug_buf;
> +#endif
> +
> /* Next two fields are for local node slot recovery during
> * mount. */
> int dirty;
> --
> 1.5.4.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2008-10-02 6:12 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-24 22:00 [PATCH 0/39] Ocfs2 updates for 2.6.28 Mark Fasheh
2008-09-24 22:00 ` [PATCH 01/39] ocfs2: POSIX file locks support Mark Fasheh
2008-10-02 6:11 ` Andrew Morton
2008-10-07 20:09 ` Mark Fasheh
2008-09-24 22:00 ` [PATCH 02/39] ocfs2: Track local alloc bits internally Mark Fasheh
2008-09-24 22:00 ` [PATCH 03/39] ocfs2: throttle back local alloc when low on disk space Mark Fasheh
2008-10-02 6:11 ` Andrew Morton
2008-09-24 22:00 ` [PATCH 04/39] ocfs2: track local alloc state via debugfs Mark Fasheh
2008-10-02 6:11 ` Andrew Morton [this message]
2008-10-07 20:10 ` Mark Fasheh
2008-09-24 22:00 ` [PATCH 05/39] ocfs2: Modify ocfs2_num_free_extents for future xattr usage Mark Fasheh
2008-09-24 22:00 ` [PATCH 06/39] ocfs2: Use ocfs2_extent_list instead of ocfs2_dinode Mark Fasheh
2008-09-24 22:00 ` [PATCH 07/39] ocfs2: Abstract ocfs2_extent_tree in b-tree operations Mark Fasheh
2008-09-24 22:00 ` [PATCH 08/39] ocfs2: Make high level btree extend code generic Mark Fasheh
2008-09-24 22:00 ` [PATCH 09/39] ocfs2: Add the basic xattr disk layout in ocfs2_fs.h Mark Fasheh
2008-09-24 22:00 ` [PATCH 10/39] ocfs2: Add helper function in uptodate.c for removing xattr clusters Mark Fasheh
2008-10-02 6:11 ` Andrew Morton
2008-10-07 20:18 ` Mark Fasheh
2008-09-24 22:00 ` [PATCH 11/39] ocfs2: Add extent tree operation for xattr value btrees Mark Fasheh
2008-10-02 6:12 ` Andrew Morton
2008-10-07 20:19 ` Mark Fasheh
2008-10-02 6:12 ` Andrew Morton
2008-10-07 21:19 ` Mark Fasheh
2008-09-24 22:00 ` [PATCH 12/39] ocfs2: reserve inline space for extended attribute Mark Fasheh
2008-09-24 22:00 ` [PATCH 13/39] ocfs2: Add extended attribute support Mark Fasheh
2008-10-02 6:12 ` Andrew Morton
2008-10-07 20:22 ` Mark Fasheh
2008-10-02 8:16 ` [Ocfs2-devel] " Christoph Hellwig
2008-10-07 22:08 ` Mark Fasheh
2008-10-08 1:56 ` Tiger Yang
2008-10-08 13:16 ` Christoph Hellwig
2008-10-08 13:34 ` Christoph Hellwig
2008-10-08 14:04 ` Tao Ma
2008-10-09 0:38 ` Mark Fasheh
2008-10-08 13:22 ` Christoph Hellwig
2008-09-24 22:00 ` [PATCH 14/39] ocfs2: Add xattr index tree operations Mark Fasheh
2008-09-24 22:00 ` [PATCH 15/39] ocfs2: Add xattr bucket iteration for large numbers of EAs Mark Fasheh
2008-09-24 22:00 ` [PATCH 16/39] ocfs2: Add xattr lookup code xattr btrees Mark Fasheh
2008-09-24 22:00 ` [PATCH 17/39] ocfs2: Optionally limit extent size in ocfs2_insert_extent() Mark Fasheh
2008-09-24 22:00 ` [PATCH 18/39] ocfs2: Enable xattr set in index btree Mark Fasheh
2008-09-24 22:01 ` [PATCH 19/39] ocfs2: Delete all xattr buckets during inode removal Mark Fasheh
2008-09-24 22:01 ` [PATCH 20/39] ocfs2: Add incompatible flag for extended attribute Mark Fasheh
2008-09-24 22:01 ` [PATCH 21/39] ocfs2: fix printk format warnings Mark Fasheh
2008-09-24 22:01 ` [PATCH 22/39] ocfs2: Prefix the extent tree operations structure Mark Fasheh
2008-09-24 22:01 ` [PATCH 23/39] ocfs2: Prefix the ocfs2_extent_tree structure Mark Fasheh
2008-09-24 22:01 ` [PATCH 24/39] ocfs2: Make ocfs2_extent_tree get/put instead of alloc Mark Fasheh
2008-09-24 22:01 ` [PATCH 25/39] ocfs2: Make 'private' into 'object' on ocfs2_extent_tree Mark Fasheh
2008-09-24 22:01 ` [PATCH 26/39] ocfs2: Provide the get_root_el() method to ocfs2_extent_tree_operations Mark Fasheh
2008-09-24 22:01 ` [PATCH 27/39] ocfs2: Use struct ocfs2_extent_tree in ocfs2_num_free_extents() Mark Fasheh
2008-09-24 22:01 ` [PATCH 28/39] ocfs2: Determine an extent tree's max_leaf_clusters in an et_op Mark Fasheh
2008-09-24 22:01 ` [PATCH 29/39] ocfs2: Create specific get_extent_tree functions Mark Fasheh
2008-09-24 22:01 ` [PATCH 30/39] ocfs2: Add an insertion check to ocfs2_extent_tree_operations Mark Fasheh
2008-09-24 22:01 ` [PATCH 31/39] ocfs2: Make ocfs2_extent_tree the first-class representation of a tree Mark Fasheh
2008-09-24 22:01 ` [PATCH 32/39] ocfs2: Comment struct ocfs2_extent_tree_operations Mark Fasheh
2008-09-24 22:01 ` [PATCH 33/39] ocfs2: Change ocfs2_get_*_extent_tree() to ocfs2_init_*_extent_tree() Mark Fasheh
2008-09-24 22:01 ` [PATCH 34/39] ocfs2: bug-fix for journal extend in xattr Mark Fasheh
2008-09-24 22:01 ` [PATCH 35/39] ocfs2: Resolve deadlock in ocfs2_xattr_free_block Mark Fasheh
2008-09-24 22:01 ` [PATCH 36/39] ocfs2: Limit inode allocation to 32bits Mark Fasheh
2008-09-24 22:01 ` [PATCH 37/39] ocfs2: Add the 'inode64' mount option Mark Fasheh
2008-09-24 22:01 ` [PATCH 38/39] ocfs2: Switch over to JBD2 Mark Fasheh
2008-09-24 22:01 ` [PATCH 39/39] ocfs2: Add xattr mount option in ocfs2_show_options() Mark Fasheh
2008-09-28 5:16 ` [PATCH 0/39] Ocfs2 updates for 2.6.28 Tao Ma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081001231153.2d19bb68.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=joel.becker@oracle.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mfasheh@suse.com \
--cc=ocfs2-devel@oss.oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).