[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAEH94LhP02Z2kLi-HfpoiL8=tHWuCZ-cWt7VR3TznFj+wpQ-gQ@mail.gmail.com>
Date: Mon, 15 Oct 2012 16:47:51 +0800
From: Zhi Yong Wu <zwu.kernel@...il.com>
To: Dave Chinner <david@...morbit.com>
Cc: linux-fsdevel@...r.kernel.org, linux-ext4@...r.kernel.org,
linux-btrfs@...r.kernel.org, linux-kernel@...r.kernel.org,
linuxram@...ux.vnet.ibm.com, viro@...iv.linux.org.uk,
dave@...os.cz, tytso@....edu, cmm@...ibm.com,
Zhi Yong Wu <wuzhy@...ux.vnet.ibm.com>
Subject: Re: [RFC v3 12/13] vfs: add debugfs support
On Mon, Oct 15, 2012 at 4:04 PM, Dave Chinner <david@...morbit.com> wrote:
> On Wed, Oct 10, 2012 at 06:07:34PM +0800, zwu.kernel@...il.com wrote:
>> From: Zhi Yong Wu <wuzhy@...ux.vnet.ibm.com>
>>
>> Add a /sys/kernel/debug/hot_track/<device_name>/ directory for each
>> volume that contains two files. The first, `inode_data', contains the
>> heat information for inodes that have been brought into the hot data map
>> structures. The second, `range_data', contains similar information for
>> subfile ranges.
>>
>> Signed-off-by: Zhi Yong Wu <wuzhy@...ux.vnet.ibm.com>
>> ---
>> fs/hot_tracking.c | 462 +++++++++++++++++++++++++++++++++++++++++++++++++++++
>> fs/hot_tracking.h | 43 +++++
>> 2 files changed, 505 insertions(+), 0 deletions(-)
> .....
>> +static int hot_debugfs_copy(struct debugfs_vol_data *data, char *msg, int len)
>> +{
>> + struct lstring *debugfs_log = data->debugfs_log;
>> + uint new_log_alloc_size;
>> + char *new_log;
>> + static char err_msg[] = "No more memory!\n";
>> +
>> + if (len >= data->log_alloc_size - debugfs_log->len) {
> ......
>> + }
>> +
>> + memcpy(debugfs_log->str + debugfs_log->len, data->log_work_buff, len);
>> + debugfs_log->len += (unsigned long) len;
>> +
>> + return len;
>> +}
>> +
>> +/* Returns the number of bytes written to the log. */
>> +static int hot_debugfs_log(struct debugfs_vol_data *data, const char *fmt, ...)
>> +{
>> + struct lstring *debugfs_log = data->debugfs_log;
>> + va_list args;
>> + int len;
>> + static char trunc_msg[] =
>> + "The next message has been truncated.\n";
>> +
>> + if (debugfs_log->str == NULL)
>> + return -1;
>> +
>> + spin_lock(&data->log_lock);
>> +
>> + va_start(args, fmt);
>> + len = vsnprintf(data->log_work_buff,
>> + sizeof(data->log_work_buff), fmt, args);
>> + va_end(args);
>> +
>> + if (len >= sizeof(data->log_work_buff)) {
>> + hot_debugfs_copy(data, trunc_msg, sizeof(trunc_msg));
>> + }
>> +
>> + len = hot_debugfs_copy(data, data->log_work_buff, len);
>> + spin_unlock(&data->log_lock);
>> +
>> + return len;
>> +}
>
> Aren't you just recreating seq_printf() here? i.e. can't you replace
> all this complexity with generic seq_file/seq_operations constructs?
It seems to be a good suggestion, let me try it. thanks.
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> david@...morbit.com
--
Regards,
Zhi Yong Wu
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists