Commit 03e4970c authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2

* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2: (39 commits)
  Treat writes as new when holes span across page boundaries
  fs,ocfs2: Move o2net_get_func_run_time under CONFIG_OCFS2_FS_STATS.
  ocfs2/dlm: Move kmalloc() outside the spinlock
  ocfs2: Make the left masklogs compat.
  ocfs2: Remove masklog ML_AIO.
  ocfs2: Remove masklog ML_UPTODATE.
  ocfs2: Remove masklog ML_BH_IO.
  ocfs2: Remove masklog ML_JOURNAL.
  ocfs2: Remove masklog ML_EXPORT.
  ocfs2: Remove masklog ML_DCACHE.
  ocfs2: Remove masklog ML_NAMEI.
  ocfs2: Remove mlog(0) from fs/ocfs2/dir.c
  ocfs2: remove NAMEI from symlink.c
  ocfs2: Remove masklog ML_QUOTA.
  ocfs2: Remove mlog(0) from quota_local.c.
  ocfs2: Remove masklog ML_RESERVATIONS.
  ocfs2: Remove masklog ML_XATTR.
  ocfs2: Remove masklog ML_SUPER.
  ocfs2: Remove mlog(0) from fs/ocfs2/heartbeat.c
  ocfs2: Remove mlog(0) from fs/ocfs2/slot_map.c
  ...

Fix up trivial conflict in fs/ocfs2/super.c
parents 1788c208 272b62c1
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/string.h> #include <linux/string.h>
#define MLOG_MASK_PREFIX ML_INODE
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
......
This diff is collapsed.
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
#include <linux/mpage.h> #include <linux/mpage.h>
#include <linux/quotaops.h> #include <linux/quotaops.h>
#define MLOG_MASK_PREFIX ML_FILE_IO
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -45,6 +44,7 @@ ...@@ -45,6 +44,7 @@
#include "super.h" #include "super.h"
#include "symlink.h" #include "symlink.h"
#include "refcounttree.h" #include "refcounttree.h"
#include "ocfs2_trace.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
...@@ -59,7 +59,8 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock, ...@@ -59,7 +59,8 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
void *kaddr; void *kaddr;
mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode, trace_ocfs2_symlink_get_block(
(unsigned long long)OCFS2_I(inode)->ip_blkno,
(unsigned long long)iblock, bh_result, create); (unsigned long long)iblock, bh_result, create);
BUG_ON(ocfs2_inode_is_fast_symlink(inode)); BUG_ON(ocfs2_inode_is_fast_symlink(inode));
...@@ -123,7 +124,6 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock, ...@@ -123,7 +124,6 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
bail: bail:
brelse(bh); brelse(bh);
mlog_exit(err);
return err; return err;
} }
...@@ -136,7 +136,7 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock, ...@@ -136,7 +136,7 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock,
u64 p_blkno, count, past_eof; u64 p_blkno, count, past_eof;
struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode, trace_ocfs2_get_block((unsigned long long)OCFS2_I(inode)->ip_blkno,
(unsigned long long)iblock, bh_result, create); (unsigned long long)iblock, bh_result, create);
if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE) if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
...@@ -199,7 +199,8 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock, ...@@ -199,7 +199,8 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock,
} }
past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode)); past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
mlog(0, "Inode %lu, past_eof = %llu\n", inode->i_ino,
trace_ocfs2_get_block_end((unsigned long long)OCFS2_I(inode)->ip_blkno,
(unsigned long long)past_eof); (unsigned long long)past_eof);
if (create && (iblock >= past_eof)) if (create && (iblock >= past_eof))
set_buffer_new(bh_result); set_buffer_new(bh_result);
...@@ -208,7 +209,6 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock, ...@@ -208,7 +209,6 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock,
if (err < 0) if (err < 0)
err = -EIO; err = -EIO;
mlog_exit(err);
return err; return err;
} }
...@@ -278,7 +278,8 @@ static int ocfs2_readpage(struct file *file, struct page *page) ...@@ -278,7 +278,8 @@ static int ocfs2_readpage(struct file *file, struct page *page)
loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT; loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
int ret, unlock = 1; int ret, unlock = 1;
mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0)); trace_ocfs2_readpage((unsigned long long)oi->ip_blkno,
(page ? page->index : 0));
ret = ocfs2_inode_lock_with_page(inode, NULL, 0, page); ret = ocfs2_inode_lock_with_page(inode, NULL, 0, page);
if (ret != 0) { if (ret != 0) {
...@@ -323,7 +324,6 @@ static int ocfs2_readpage(struct file *file, struct page *page) ...@@ -323,7 +324,6 @@ static int ocfs2_readpage(struct file *file, struct page *page)
out: out:
if (unlock) if (unlock)
unlock_page(page); unlock_page(page);
mlog_exit(ret);
return ret; return ret;
} }
...@@ -396,15 +396,11 @@ static int ocfs2_readpages(struct file *filp, struct address_space *mapping, ...@@ -396,15 +396,11 @@ static int ocfs2_readpages(struct file *filp, struct address_space *mapping,
*/ */
static int ocfs2_writepage(struct page *page, struct writeback_control *wbc) static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
{ {
int ret; trace_ocfs2_writepage(
(unsigned long long)OCFS2_I(page->mapping->host)->ip_blkno,
mlog_entry("(0x%p)\n", page); page->index);
ret = block_write_full_page(page, ocfs2_get_block, wbc);
mlog_exit(ret);
return ret; return block_write_full_page(page, ocfs2_get_block, wbc);
} }
/* Taken from ext3. We don't necessarily need the full blown /* Taken from ext3. We don't necessarily need the full blown
...@@ -450,7 +446,8 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) ...@@ -450,7 +446,8 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
int err = 0; int err = 0;
struct inode *inode = mapping->host; struct inode *inode = mapping->host;
mlog_entry("(block = %llu)\n", (unsigned long long)block); trace_ocfs2_bmap((unsigned long long)OCFS2_I(inode)->ip_blkno,
(unsigned long long)block);
/* We don't need to lock journal system files, since they aren't /* We don't need to lock journal system files, since they aren't
* accessed concurrently from multiple nodes. * accessed concurrently from multiple nodes.
...@@ -484,8 +481,6 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) ...@@ -484,8 +481,6 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
bail: bail:
status = err ? 0 : p_blkno; status = err ? 0 : p_blkno;
mlog_exit((int)status);
return status; return status;
} }
...@@ -616,9 +611,6 @@ static ssize_t ocfs2_direct_IO(int rw, ...@@ -616,9 +611,6 @@ static ssize_t ocfs2_direct_IO(int rw,
{ {
struct file *file = iocb->ki_filp; struct file *file = iocb->ki_filp;
struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host; struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host;
int ret;
mlog_entry_void();
/* /*
* Fallback to buffered I/O if we see an inode without * Fallback to buffered I/O if we see an inode without
...@@ -631,13 +623,10 @@ static ssize_t ocfs2_direct_IO(int rw, ...@@ -631,13 +623,10 @@ static ssize_t ocfs2_direct_IO(int rw,
if (i_size_read(inode) <= offset) if (i_size_read(inode) <= offset)
return 0; return 0;
ret = __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, return __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev,
iov, offset, nr_segs, iov, offset, nr_segs,
ocfs2_direct_IO_get_blocks, ocfs2_direct_IO_get_blocks,
ocfs2_dio_end_io, NULL, 0); ocfs2_dio_end_io, NULL, 0);
mlog_exit(ret);
return ret;
} }
static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb, static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb,
...@@ -1026,6 +1015,12 @@ static int ocfs2_prepare_page_for_write(struct inode *inode, u64 *p_blkno, ...@@ -1026,6 +1015,12 @@ static int ocfs2_prepare_page_for_write(struct inode *inode, u64 *p_blkno,
ocfs2_figure_cluster_boundaries(OCFS2_SB(inode->i_sb), cpos, ocfs2_figure_cluster_boundaries(OCFS2_SB(inode->i_sb), cpos,
&cluster_start, &cluster_end); &cluster_start, &cluster_end);
/* treat the write as new if the a hole/lseek spanned across
* the page boundary.
*/
new = new | ((i_size_read(inode) <= page_offset(page)) &&
(page_offset(page) <= user_pos));
if (page == wc->w_target_page) { if (page == wc->w_target_page) {
map_from = user_pos & (PAGE_CACHE_SIZE - 1); map_from = user_pos & (PAGE_CACHE_SIZE - 1);
map_to = map_from + user_len; map_to = map_from + user_len;
...@@ -1534,8 +1529,8 @@ static int ocfs2_try_to_write_inline_data(struct address_space *mapping, ...@@ -1534,8 +1529,8 @@ static int ocfs2_try_to_write_inline_data(struct address_space *mapping,
struct ocfs2_inode_info *oi = OCFS2_I(inode); struct ocfs2_inode_info *oi = OCFS2_I(inode);
struct ocfs2_dinode *di = NULL; struct ocfs2_dinode *di = NULL;
mlog(0, "Inode %llu, write of %u bytes at off %llu. features: 0x%x\n", trace_ocfs2_try_to_write_inline_data((unsigned long long)oi->ip_blkno,
(unsigned long long)oi->ip_blkno, len, (unsigned long long)pos, len, (unsigned long long)pos,
oi->ip_dyn_features); oi->ip_dyn_features);
/* /*
...@@ -1739,6 +1734,13 @@ int ocfs2_write_begin_nolock(struct file *filp, ...@@ -1739,6 +1734,13 @@ int ocfs2_write_begin_nolock(struct file *filp,
di = (struct ocfs2_dinode *)wc->w_di_bh->b_data; di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
trace_ocfs2_write_begin_nolock(
(unsigned long long)OCFS2_I(inode)->ip_blkno,
(long long)i_size_read(inode),
le32_to_cpu(di->i_clusters),
pos, len, flags, mmap_page,
clusters_to_alloc, extents_to_split);
/* /*
* We set w_target_from, w_target_to here so that * We set w_target_from, w_target_to here so that
* ocfs2_write_end() knows which range in the target page to * ocfs2_write_end() knows which range in the target page to
...@@ -1751,12 +1753,6 @@ int ocfs2_write_begin_nolock(struct file *filp, ...@@ -1751,12 +1753,6 @@ int ocfs2_write_begin_nolock(struct file *filp,
* ocfs2_lock_allocators(). It greatly over-estimates * ocfs2_lock_allocators(). It greatly over-estimates
* the work to be done. * the work to be done.
*/ */
mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u,"
" clusters_to_add = %u, extents_to_split = %u\n",
(unsigned long long)OCFS2_I(inode)->ip_blkno,
(long long)i_size_read(inode), le32_to_cpu(di->i_clusters),
clusters_to_alloc, extents_to_split);
ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode),
wc->w_di_bh); wc->w_di_bh);
ret = ocfs2_lock_allocators(inode, &et, ret = ocfs2_lock_allocators(inode, &et,
...@@ -1938,8 +1934,8 @@ static void ocfs2_write_end_inline(struct inode *inode, loff_t pos, ...@@ -1938,8 +1934,8 @@ static void ocfs2_write_end_inline(struct inode *inode, loff_t pos,
memcpy(di->id2.i_data.id_data + pos, kaddr + pos, *copied); memcpy(di->id2.i_data.id_data + pos, kaddr + pos, *copied);
kunmap_atomic(kaddr, KM_USER0); kunmap_atomic(kaddr, KM_USER0);
mlog(0, "Data written to inode at offset %llu. " trace_ocfs2_write_end_inline(
"id_count = %u, copied = %u, i_dyn_features = 0x%x\n", (unsigned long long)OCFS2_I(inode)->ip_blkno,
(unsigned long long)pos, *copied, (unsigned long long)pos, *copied,
le16_to_cpu(di->id2.i_data.id_count), le16_to_cpu(di->id2.i_data.id_count),
le16_to_cpu(di->i_dyn_features)); le16_to_cpu(di->i_dyn_features));
......
...@@ -35,8 +35,8 @@ ...@@ -35,8 +35,8 @@
#include "inode.h" #include "inode.h"
#include "journal.h" #include "journal.h"
#include "uptodate.h" #include "uptodate.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
#include "ocfs2_trace.h"
/* /*
* Bits on bh->b_state used by ocfs2. * Bits on bh->b_state used by ocfs2.
...@@ -55,8 +55,7 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh, ...@@ -55,8 +55,7 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh,
{ {
int ret = 0; int ret = 0;
mlog_entry("(bh->b_blocknr = %llu, ci=%p)\n", trace_ocfs2_write_block((unsigned long long)bh->b_blocknr, ci);
(unsigned long long)bh->b_blocknr, ci);
BUG_ON(bh->b_blocknr < OCFS2_SUPER_BLOCK_BLKNO); BUG_ON(bh->b_blocknr < OCFS2_SUPER_BLOCK_BLKNO);
BUG_ON(buffer_jbd(bh)); BUG_ON(buffer_jbd(bh));
...@@ -66,6 +65,7 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh, ...@@ -66,6 +65,7 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh,
* can get modified during recovery even if read-only. */ * can get modified during recovery even if read-only. */
if (ocfs2_is_hard_readonly(osb)) { if (ocfs2_is_hard_readonly(osb)) {
ret = -EROFS; ret = -EROFS;
mlog_errno(ret);
goto out; goto out;
} }
...@@ -91,11 +91,11 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh, ...@@ -91,11 +91,11 @@ int ocfs2_write_block(struct ocfs2_super *osb, struct buffer_head *bh,
* uptodate. */ * uptodate. */
ret = -EIO; ret = -EIO;
put_bh(bh); put_bh(bh);
mlog_errno(ret);
} }
ocfs2_metadata_cache_io_unlock(ci); ocfs2_metadata_cache_io_unlock(ci);
out: out:
mlog_exit(ret);
return ret; return ret;
} }
...@@ -106,10 +106,10 @@ int ocfs2_read_blocks_sync(struct ocfs2_super *osb, u64 block, ...@@ -106,10 +106,10 @@ int ocfs2_read_blocks_sync(struct ocfs2_super *osb, u64 block,
unsigned int i; unsigned int i;
struct buffer_head *bh; struct buffer_head *bh;
if (!nr) { trace_ocfs2_read_blocks_sync((unsigned long long)block, nr);
mlog(ML_BH_IO, "No buffers will be read!\n");
if (!nr)
goto bail; goto bail;
}
for (i = 0 ; i < nr ; i++) { for (i = 0 ; i < nr ; i++) {
if (bhs[i] == NULL) { if (bhs[i] == NULL) {
...@@ -123,9 +123,7 @@ int ocfs2_read_blocks_sync(struct ocfs2_super *osb, u64 block, ...@@ -123,9 +123,7 @@ int ocfs2_read_blocks_sync(struct ocfs2_super *osb, u64 block,
bh = bhs[i]; bh = bhs[i];
if (buffer_jbd(bh)) { if (buffer_jbd(bh)) {
mlog(ML_BH_IO, trace_ocfs2_read_blocks_sync_jbd(
"trying to sync read a jbd "
"managed bh (blocknr = %llu), skipping\n",
(unsigned long long)bh->b_blocknr); (unsigned long long)bh->b_blocknr);
continue; continue;
} }
...@@ -186,8 +184,7 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -186,8 +184,7 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
struct buffer_head *bh; struct buffer_head *bh;
struct super_block *sb = ocfs2_metadata_cache_get_super(ci); struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
mlog_entry("(ci=%p, block=(%llu), nr=(%d), flags=%d)\n", trace_ocfs2_read_blocks_begin(ci, (unsigned long long)block, nr, flags);
ci, (unsigned long long)block, nr, flags);
BUG_ON(!ci); BUG_ON(!ci);
BUG_ON((flags & OCFS2_BH_READAHEAD) && BUG_ON((flags & OCFS2_BH_READAHEAD) &&
...@@ -207,7 +204,6 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -207,7 +204,6 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
} }
if (nr == 0) { if (nr == 0) {
mlog(ML_BH_IO, "No buffers will be read!\n");
status = 0; status = 0;
goto bail; goto bail;
} }
...@@ -251,8 +247,7 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -251,8 +247,7 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
*/ */
if (!ignore_cache && !ocfs2_buffer_uptodate(ci, bh)) { if (!ignore_cache && !ocfs2_buffer_uptodate(ci, bh)) {
mlog(ML_UPTODATE, trace_ocfs2_read_blocks_from_disk(
"bh (%llu), owner %llu not uptodate\n",
(unsigned long long)bh->b_blocknr, (unsigned long long)bh->b_blocknr,
(unsigned long long)ocfs2_metadata_cache_owner(ci)); (unsigned long long)ocfs2_metadata_cache_owner(ci));
/* We're using ignore_cache here to say /* We're using ignore_cache here to say
...@@ -260,11 +255,10 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -260,11 +255,10 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
ignore_cache = 1; ignore_cache = 1;
} }
trace_ocfs2_read_blocks_bh((unsigned long long)bh->b_blocknr,
ignore_cache, buffer_jbd(bh), buffer_dirty(bh));
if (buffer_jbd(bh)) { if (buffer_jbd(bh)) {
if (ignore_cache)
mlog(ML_BH_IO, "trying to sync read a jbd "
"managed bh (blocknr = %llu)\n",
(unsigned long long)bh->b_blocknr);
continue; continue;
} }
...@@ -272,9 +266,6 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -272,9 +266,6 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
if (buffer_dirty(bh)) { if (buffer_dirty(bh)) {
/* This should probably be a BUG, or /* This should probably be a BUG, or
* at least return an error. */ * at least return an error. */
mlog(ML_BH_IO, "asking me to sync read a dirty "
"buffer! (blocknr = %llu)\n",
(unsigned long long)bh->b_blocknr);
continue; continue;
} }
...@@ -367,14 +358,11 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr, ...@@ -367,14 +358,11 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
} }
ocfs2_metadata_cache_io_unlock(ci); ocfs2_metadata_cache_io_unlock(ci);
mlog(ML_BH_IO, "block=(%llu), nr=(%d), cached=%s, flags=0x%x\n", trace_ocfs2_read_blocks_end((unsigned long long)block, nr,
(unsigned long long)block, nr, flags, ignore_cache);
((flags & OCFS2_BH_IGNORE_CACHE) || ignore_cache) ? "no" : "yes",
flags);
bail: bail:
mlog_exit(status);
return status; return status;
} }
...@@ -408,13 +396,12 @@ int ocfs2_write_super_or_backup(struct ocfs2_super *osb, ...@@ -408,13 +396,12 @@ int ocfs2_write_super_or_backup(struct ocfs2_super *osb,
int ret = 0; int ret = 0;
struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data; struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
mlog_entry_void();
BUG_ON(buffer_jbd(bh)); BUG_ON(buffer_jbd(bh));
ocfs2_check_super_or_backup(osb->sb, bh->b_blocknr); ocfs2_check_super_or_backup(osb->sb, bh->b_blocknr);
if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb)) { if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb)) {
ret = -EROFS; ret = -EROFS;
mlog_errno(ret);
goto out; goto out;
} }
...@@ -434,9 +421,9 @@ int ocfs2_write_super_or_backup(struct ocfs2_super *osb, ...@@ -434,9 +421,9 @@ int ocfs2_write_super_or_backup(struct ocfs2_super *osb,
if (!buffer_uptodate(bh)) { if (!buffer_uptodate(bh)) {
ret = -EIO; ret = -EIO;
put_bh(bh); put_bh(bh);
mlog_errno(ret);
} }
out: out:
mlog_exit(ret);
return ret; return ret;
} }
...@@ -1654,8 +1654,6 @@ static int o2hb_populate_slot_data(struct o2hb_region *reg) ...@@ -1654,8 +1654,6 @@ static int o2hb_populate_slot_data(struct o2hb_region *reg)
struct o2hb_disk_slot *slot; struct o2hb_disk_slot *slot;
struct o2hb_disk_heartbeat_block *hb_block; struct o2hb_disk_heartbeat_block *hb_block;
mlog_entry_void();
ret = o2hb_read_slots(reg, reg->hr_blocks); ret = o2hb_read_slots(reg, reg->hr_blocks);
if (ret) { if (ret) {
mlog_errno(ret); mlog_errno(ret);
...@@ -1677,7 +1675,6 @@ static int o2hb_populate_slot_data(struct o2hb_region *reg) ...@@ -1677,7 +1675,6 @@ static int o2hb_populate_slot_data(struct o2hb_region *reg)
} }
out: out:
mlog_exit(ret);
return ret; return ret;
} }
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
struct mlog_bits mlog_and_bits = MLOG_BITS_RHS(MLOG_INITIAL_AND_MASK); struct mlog_bits mlog_and_bits = MLOG_BITS_RHS(MLOG_INITIAL_AND_MASK);
EXPORT_SYMBOL_GPL(mlog_and_bits); EXPORT_SYMBOL_GPL(mlog_and_bits);
struct mlog_bits mlog_not_bits = MLOG_BITS_RHS(MLOG_INITIAL_NOT_MASK); struct mlog_bits mlog_not_bits = MLOG_BITS_RHS(0);
EXPORT_SYMBOL_GPL(mlog_not_bits); EXPORT_SYMBOL_GPL(mlog_not_bits);
static ssize_t mlog_mask_show(u64 mask, char *buf) static ssize_t mlog_mask_show(u64 mask, char *buf)
...@@ -80,8 +80,6 @@ struct mlog_attribute { ...@@ -80,8 +80,6 @@ struct mlog_attribute {
} }
static struct mlog_attribute mlog_attrs[MLOG_MAX_BITS] = { static struct mlog_attribute mlog_attrs[MLOG_MAX_BITS] = {
define_mask(ENTRY),
define_mask(EXIT),
define_mask(TCP), define_mask(TCP),
define_mask(MSG), define_mask(MSG),
define_mask(SOCKET), define_mask(SOCKET),
...@@ -93,27 +91,11 @@ static struct mlog_attribute mlog_attrs[MLOG_MAX_BITS] = { ...@@ -93,27 +91,11 @@ static struct mlog_attribute mlog_attrs[MLOG_MAX_BITS] = {
define_mask(DLM_THREAD), define_mask(DLM_THREAD),
define_mask(DLM_MASTER), define_mask(DLM_MASTER),
define_mask(DLM_RECOVERY), define_mask(DLM_RECOVERY),
define_mask(AIO),
define_mask(JOURNAL),
define_mask(DISK_ALLOC),
define_mask(SUPER),
define_mask(FILE_IO),
define_mask(EXTENT_MAP),
define_mask(DLM_GLUE), define_mask(DLM_GLUE),
define_mask(BH_IO),
define_mask(UPTODATE),
define_mask(NAMEI),
define_mask(INODE),
define_mask(VOTE), define_mask(VOTE),
define_mask(DCACHE),
define_mask(CONN), define_mask(CONN),
define_mask(QUORUM), define_mask(QUORUM),
define_mask(EXPORT),
define_mask(XATTR),
define_mask(QUOTA),
define_mask(REFCOUNT),
define_mask(BASTS), define_mask(BASTS),
define_mask(RESERVATIONS),
define_mask(CLUSTER), define_mask(CLUSTER),
define_mask(ERROR), define_mask(ERROR),
define_mask(NOTICE), define_mask(NOTICE),
......
...@@ -82,41 +82,23 @@ ...@@ -82,41 +82,23 @@
/* bits that are frequently given and infrequently matched in the low word */ /* bits that are frequently given and infrequently matched in the low word */
/* NOTE: If you add a flag, you need to also update masklog.c! */ /* NOTE: If you add a flag, you need to also update masklog.c! */
#define ML_ENTRY 0x0000000000000001ULL /* func call entry */ #define ML_TCP 0x0000000000000001ULL /* net cluster/tcp.c */
#define ML_EXIT 0x0000000000000002ULL /* func call exit */ #define ML_MSG 0x0000000000000002ULL /* net network messages */
#define ML_TCP 0x0000000000000004ULL /* net cluster/tcp.c */ #define ML_SOCKET 0x0000000000000004ULL /* net socket lifetime */
#define ML_MSG 0x0000000000000008ULL /* net network messages */ #define ML_HEARTBEAT 0x0000000000000008ULL /* hb all heartbeat tracking */
#define ML_SOCKET 0x0000000000000010ULL /* net socket lifetime */ #define ML_HB_BIO 0x0000000000000010ULL /* hb io tracing */
#define ML_HEARTBEAT 0x0000000000000020ULL /* hb all heartbeat tracking */ #define ML_DLMFS 0x0000000000000020ULL /* dlm user dlmfs */
#define ML_HB_BIO 0x0000000000000040ULL /* hb io tracing */ #define ML_DLM 0x0000000000000040ULL /* dlm general debugging */
#define ML_DLMFS 0x0000000000000080ULL /* dlm user dlmfs */ #define ML_DLM_DOMAIN 0x0000000000000080ULL /* dlm domain debugging */
#define ML_DLM 0x0000000000000100ULL /* dlm general debugging */ #define ML_DLM_THREAD 0x0000000000000100ULL /* dlm domain thread */
#define ML_DLM_DOMAIN 0x0000000000000200ULL /* dlm domain debugging */ #define ML_DLM_MASTER 0x0000000000000200ULL /* dlm master functions */
#define ML_DLM_THREAD 0x0000000000000400ULL /* dlm domain thread */ #define ML_DLM_RECOVERY 0x0000000000000400ULL /* dlm master functions */
#define ML_DLM_MASTER 0x0000000000000800ULL /* dlm master functions */ #define ML_DLM_GLUE 0x0000000000000800ULL /* ocfs2 dlm glue layer */
#define ML_DLM_RECOVERY 0x0000000000001000ULL /* dlm master functions */ #define ML_VOTE 0x0000000000001000ULL /* ocfs2 node messaging */
#define ML_AIO 0x0000000000002000ULL /* ocfs2 aio read and write */ #define ML_CONN 0x0000000000002000ULL /* net connection management */
#define ML_JOURNAL 0x0000000000004000ULL /* ocfs2 journalling functions */ #define ML_QUORUM 0x0000000000004000ULL /* net connection quorum */
#define ML_DISK_ALLOC 0x0000000000008000ULL /* ocfs2 disk allocation */ #define ML_BASTS 0x0000000000008000ULL /* dlmglue asts and basts */
#define ML_SUPER 0x0000000000010000ULL /* ocfs2 mount / umount */ #define ML_CLUSTER 0x0000000000010000ULL /* cluster stack */
#define ML_FILE_IO 0x0000000000020000ULL /* ocfs2 file I/O */
#define ML_EXTENT_MAP 0x0000000000040000ULL /* ocfs2 extent map caching */
#define ML_DLM_GLUE 0x0000000000080000ULL /* ocfs2 dlm glue layer */
#define ML_BH_IO 0x0000000000100000ULL /* ocfs2 buffer I/O */
#define ML_UPTODATE 0x0000000000200000ULL /* ocfs2 caching sequence #'s */
#define ML_NAMEI 0x0000000000400000ULL /* ocfs2 directory / namespace */
#define ML_INODE 0x0000000000800000ULL /* ocfs2 inode manipulation */
#define ML_VOTE 0x0000000001000000ULL /* ocfs2 node messaging */
#define ML_DCACHE 0x0000000002000000ULL /* ocfs2 dcache operations */
#define ML_CONN 0x0000000004000000ULL /* net connection management */
#define ML_QUORUM 0x0000000008000000ULL /* net connection quorum */
#define ML_EXPORT 0x0000000010000000ULL /* ocfs2 export operations */
#define ML_XATTR 0x0000000020000000ULL /* ocfs2 extended attributes */
#define ML_QUOTA 0x0000000040000000ULL /* ocfs2 quota operations */
#define ML_REFCOUNT 0x0000000080000000ULL /* refcount tree operations */
#define ML_BASTS 0x0000000100000000ULL /* dlmglue asts and basts */
#define ML_RESERVATIONS 0x0000000200000000ULL /* ocfs2 alloc reservations */
#define ML_CLUSTER 0x0000000400000000ULL /* cluster stack */
/* bits that are infrequently given and frequently matched in the high word */ /* bits that are infrequently given and frequently matched in the high word */
#define ML_ERROR 0x1000000000000000ULL /* sent to KERN_ERR */ #define ML_ERROR 0x1000000000000000ULL /* sent to KERN_ERR */
...@@ -124,7 +106,6 @@ ...@@ -124,7 +106,6 @@
#define ML_KTHREAD 0x4000000000000000ULL /* kernel thread activity */ #define ML_KTHREAD 0x4000000000000000ULL /* kernel thread activity */
#define MLOG_INITIAL_AND_MASK (ML_ERROR|ML_NOTICE) #define MLOG_INITIAL_AND_MASK (ML_ERROR|ML_NOTICE)
#define MLOG_INITIAL_NOT_MASK (ML_ENTRY|ML_EXIT)
#ifndef MLOG_MASK_PREFIX #ifndef MLOG_MASK_PREFIX
#define MLOG_MASK_PREFIX 0 #define MLOG_MASK_PREFIX 0
#endif #endif
...@@ -222,58 +203,6 @@ extern struct mlog_bits mlog_and_bits, mlog_not_bits; ...@@ -222,58 +203,6 @@ extern struct mlog_bits mlog_and_bits, mlog_not_bits;
mlog(ML_ERROR, "status = %lld\n", (long long)_st); \ mlog(ML_ERROR, "status = %lld\n", (long long)_st); \
} while (0) } while (0)
#if defined(CONFIG_OCFS2_DEBUG_MASKLOG)
#define mlog_entry(fmt, args...) do { \
mlog(ML_ENTRY, "ENTRY:" fmt , ##args); \
} while (0)
#define mlog_entry_void() do { \
mlog(ML_ENTRY, "ENTRY:\n"); \
} while (0)
/*
* We disable this for sparse.
*/
#if !defined(__CHECKER__)
#define mlog_exit(st) do { \
if (__builtin_types_compatible_p(typeof(st), unsigned long)) \
mlog(ML_EXIT, "EXIT: %lu\n", (unsigned long) (st)); \
else if (__builtin_types_compatible_p(typeof(st), signed long)) \
mlog(ML_EXIT, "EXIT: %ld\n", (signed long) (st)); \
else if (__builtin_types_compatible_p(typeof(st), unsigned int) \
|| __builtin_types_compatible_p(typeof(st), unsigned short) \
|| __builtin_types_compatible_p(typeof(st), unsigned char)) \
mlog(ML_EXIT, "EXIT: %u\n", (unsigned int) (st)); \
else if (__builtin_types_compatible_p(typeof(st), signed int) \
|| __builtin_types_compatible_p(typeof(st), signed short) \
|| __builtin_types_compatible_p(typeof(st), signed char)) \
mlog(ML_EXIT, "EXIT: %d\n", (signed int) (st)); \
else if (__builtin_types_compatible_p(typeof(st), long long)) \
mlog(ML_EXIT, "EXIT: %lld\n", (long long) (st)); \
else \
mlog(ML_EXIT, "EXIT: %llu\n", (unsigned long long) (st)); \
} while (0)
#else
#define mlog_exit(st) do { \
mlog(ML_EXIT, "EXIT: %lld\n", (long long) (st)); \
} while (0)
#endif
#define mlog_exit_ptr(ptr) do { \
mlog(ML_EXIT, "EXIT: %p\n", ptr); \
} while (0)
#define mlog_exit_void() do { \
mlog(ML_EXIT, "EXIT\n"); \
} while (0)
#else
#define mlog_entry(...) do { } while (0)
#define mlog_entry_void(...) do { } while (0)
#define mlog_exit(...) do { } while (0)
#define mlog_exit_ptr(...) do { } while (0)
#define mlog_exit_void(...) do { } while (0)
#endif /* defined(CONFIG_OCFS2_DEBUG_MASKLOG) */
#define mlog_bug_on_msg(cond, fmt, args...) do { \ #define mlog_bug_on_msg(cond, fmt, args...) do { \
if (cond) { \ if (cond) { \
mlog(ML_ERROR, "bug expression: " #cond "\n"); \ mlog(ML_ERROR, "bug expression: " #cond "\n"); \
......
...@@ -210,10 +210,6 @@ static inline void o2net_set_func_stop_time(struct o2net_sock_container *sc) ...@@ -210,10 +210,6 @@ static inline void o2net_set_func_stop_time(struct o2net_sock_container *sc)
sc->sc_tv_func_stop = ktime_get(); sc->sc_tv_func_stop = ktime_get();
} }
static ktime_t o2net_get_func_run_time(struct o2net_sock_container *sc)
{
return ktime_sub(sc->sc_tv_func_stop, sc->sc_tv_func_start);
}
#else /* CONFIG_DEBUG_FS */ #else /* CONFIG_DEBUG_FS */
# define o2net_init_nst(a, b, c, d, e) # define o2net_init_nst(a, b, c, d, e)
# define o2net_set_nst_sock_time(a) # define o2net_set_nst_sock_time(a)
...@@ -227,10 +223,14 @@ static ktime_t o2net_get_func_run_time(struct o2net_sock_container *sc) ...@@ -227,10 +223,14 @@ static ktime_t o2net_get_func_run_time(struct o2net_sock_container *sc)
# define o2net_set_advance_stop_time(a) # define o2net_set_advance_stop_time(a)
# define o2net_set_func_start_time(a) # define o2net_set_func_start_time(a)
# define o2net_set_func_stop_time(a) # define o2net_set_func_stop_time(a)
# define o2net_get_func_run_time(a) (ktime_t)0
#endif /* CONFIG_DEBUG_FS */ #endif /* CONFIG_DEBUG_FS */
#ifdef CONFIG_OCFS2_FS_STATS #ifdef CONFIG_OCFS2_FS_STATS
static ktime_t o2net_get_func_run_time(struct o2net_sock_container *sc)
{
return ktime_sub(sc->sc_tv_func_stop, sc->sc_tv_func_start);
}
static void o2net_update_send_stats(struct o2net_send_tracking *nst, static void o2net_update_send_stats(struct o2net_send_tracking *nst,
struct o2net_sock_container *sc) struct o2net_sock_container *sc)
{ {
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/namei.h> #include <linux/namei.h>
#define MLOG_MASK_PREFIX ML_DCACHE
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -39,6 +38,7 @@ ...@@ -39,6 +38,7 @@
#include "file.h" #include "file.h"
#include "inode.h" #include "inode.h"
#include "super.h" #include "super.h"
#include "ocfs2_trace.h"
void ocfs2_dentry_attach_gen(struct dentry *dentry) void ocfs2_dentry_attach_gen(struct dentry *dentry)
{ {
...@@ -62,8 +62,8 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -62,8 +62,8 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
inode = dentry->d_inode; inode = dentry->d_inode;
osb = OCFS2_SB(dentry->d_sb); osb = OCFS2_SB(dentry->d_sb);
mlog_entry("(0x%p, '%.*s')\n", dentry, trace_ocfs2_dentry_revalidate(dentry, dentry->d_name.len,
dentry->d_name.len, dentry->d_name.name); dentry->d_name.name);
/* For a negative dentry - /* For a negative dentry -
* check the generation number of the parent and compare with the * check the generation number of the parent and compare with the
...@@ -73,9 +73,10 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -73,9 +73,10 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
unsigned long gen = (unsigned long) dentry->d_fsdata; unsigned long gen = (unsigned long) dentry->d_fsdata;
unsigned long pgen = unsigned long pgen =
OCFS2_I(dentry->d_parent->d_inode)->ip_dir_lock_gen; OCFS2_I(dentry->d_parent->d_inode)->ip_dir_lock_gen;
mlog(0, "negative dentry: %.*s parent gen: %lu "
"dentry gen: %lu\n", trace_ocfs2_dentry_revalidate_negative(dentry->d_name.len,
dentry->d_name.len, dentry->d_name.name, pgen, gen); dentry->d_name.name,
pgen, gen);
if (gen != pgen) if (gen != pgen)
goto bail; goto bail;
goto valid; goto valid;
...@@ -90,7 +91,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -90,7 +91,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
/* did we or someone else delete this inode? */ /* did we or someone else delete this inode? */
if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) { if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
spin_unlock(&OCFS2_I(inode)->ip_lock); spin_unlock(&OCFS2_I(inode)->ip_lock);
mlog(0, "inode (%llu) deleted, returning false\n", trace_ocfs2_dentry_revalidate_delete(
(unsigned long long)OCFS2_I(inode)->ip_blkno); (unsigned long long)OCFS2_I(inode)->ip_blkno);
goto bail; goto bail;
} }
...@@ -101,8 +102,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -101,8 +102,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
* inode nlink hits zero, it never goes back. * inode nlink hits zero, it never goes back.
*/ */
if (inode->i_nlink == 0) { if (inode->i_nlink == 0) {
mlog(0, "Inode %llu orphaned, returning false " trace_ocfs2_dentry_revalidate_orphaned(
"dir = %d\n",
(unsigned long long)OCFS2_I(inode)->ip_blkno, (unsigned long long)OCFS2_I(inode)->ip_blkno,
S_ISDIR(inode->i_mode)); S_ISDIR(inode->i_mode));
goto bail; goto bail;
...@@ -113,8 +113,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -113,8 +113,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
* redo it. * redo it.
*/ */
if (!dentry->d_fsdata) { if (!dentry->d_fsdata) {
mlog(0, "Inode %llu doesn't have dentry lock, " trace_ocfs2_dentry_revalidate_nofsdata(
"returning false\n",
(unsigned long long)OCFS2_I(inode)->ip_blkno); (unsigned long long)OCFS2_I(inode)->ip_blkno);
goto bail; goto bail;
} }
...@@ -123,8 +122,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry, ...@@ -123,8 +122,7 @@ static int ocfs2_dentry_revalidate(struct dentry *dentry,
ret = 1; ret = 1;
bail: bail:
mlog_exit(ret); trace_ocfs2_dentry_revalidate_ret(ret);
return ret; return ret;
} }
...@@ -181,8 +179,8 @@ struct dentry *ocfs2_find_local_alias(struct inode *inode, ...@@ -181,8 +179,8 @@ struct dentry *ocfs2_find_local_alias(struct inode *inode,
spin_lock(&dentry->d_lock); spin_lock(&dentry->d_lock);
if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) { if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) {
mlog(0, "dentry found: %.*s\n", trace_ocfs2_find_local_alias(dentry->d_name.len,
dentry->d_name.len, dentry->d_name.name); dentry->d_name.name);
dget_dlock(dentry); dget_dlock(dentry);
spin_unlock(&dentry->d_lock); spin_unlock(&dentry->d_lock);
...@@ -240,8 +238,7 @@ int ocfs2_dentry_attach_lock(struct dentry *dentry, ...@@ -240,8 +238,7 @@ int ocfs2_dentry_attach_lock(struct dentry *dentry,
struct dentry *alias; struct dentry *alias;
struct ocfs2_dentry_lock *dl = dentry->d_fsdata; struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
mlog(0, "Attach \"%.*s\", parent %llu, fsdata: %p\n", trace_ocfs2_dentry_attach_lock(dentry->d_name.len, dentry->d_name.name,
dentry->d_name.len, dentry->d_name.name,
(unsigned long long)parent_blkno, dl); (unsigned long long)parent_blkno, dl);
/* /*
...@@ -292,7 +289,9 @@ int ocfs2_dentry_attach_lock(struct dentry *dentry, ...@@ -292,7 +289,9 @@ int ocfs2_dentry_attach_lock(struct dentry *dentry,
(unsigned long long)parent_blkno, (unsigned long long)parent_blkno,
(unsigned long long)dl->dl_parent_blkno); (unsigned long long)dl->dl_parent_blkno);
mlog(0, "Found: %s\n", dl->dl_lockres.l_name); trace_ocfs2_dentry_attach_lock_found(dl->dl_lockres.l_name,
(unsigned long long)parent_blkno,
(unsigned long long)OCFS2_I(inode)->ip_blkno);
goto out_attach; goto out_attach;
} }
......
This diff is collapsed.
...@@ -128,7 +128,7 @@ static enum dlm_status __dlmconvert_master(struct dlm_ctxt *dlm, ...@@ -128,7 +128,7 @@ static enum dlm_status __dlmconvert_master(struct dlm_ctxt *dlm,
assert_spin_locked(&res->spinlock); assert_spin_locked(&res->spinlock);
mlog_entry("type=%d, convert_type=%d, new convert_type=%d\n", mlog(0, "type=%d, convert_type=%d, new convert_type=%d\n",
lock->ml.type, lock->ml.convert_type, type); lock->ml.type, lock->ml.convert_type, type);
spin_lock(&lock->spinlock); spin_lock(&lock->spinlock);
...@@ -353,7 +353,7 @@ static enum dlm_status dlm_send_remote_convert_request(struct dlm_ctxt *dlm, ...@@ -353,7 +353,7 @@ static enum dlm_status dlm_send_remote_convert_request(struct dlm_ctxt *dlm,
struct kvec vec[2]; struct kvec vec[2];
size_t veclen = 1; size_t veclen = 1;
mlog_entry("%.*s\n", res->lockname.len, res->lockname.name); mlog(0, "%.*s\n", res->lockname.len, res->lockname.name);
memset(&convert, 0, sizeof(struct dlm_convert_lock)); memset(&convert, 0, sizeof(struct dlm_convert_lock));
convert.node_idx = dlm->node_num; convert.node_idx = dlm->node_num;
......
...@@ -188,7 +188,7 @@ struct dlm_lock_resource * __dlm_lookup_lockres_full(struct dlm_ctxt *dlm, ...@@ -188,7 +188,7 @@ struct dlm_lock_resource * __dlm_lookup_lockres_full(struct dlm_ctxt *dlm,
struct hlist_head *bucket; struct hlist_head *bucket;
struct hlist_node *list; struct hlist_node *list;
mlog_entry("%.*s\n", len, name); mlog(0, "%.*s\n", len, name);
assert_spin_locked(&dlm->spinlock); assert_spin_locked(&dlm->spinlock);
...@@ -222,7 +222,7 @@ struct dlm_lock_resource * __dlm_lookup_lockres(struct dlm_ctxt *dlm, ...@@ -222,7 +222,7 @@ struct dlm_lock_resource * __dlm_lookup_lockres(struct dlm_ctxt *dlm,
{ {
struct dlm_lock_resource *res = NULL; struct dlm_lock_resource *res = NULL;
mlog_entry("%.*s\n", len, name); mlog(0, "%.*s\n", len, name);
assert_spin_locked(&dlm->spinlock); assert_spin_locked(&dlm->spinlock);
...@@ -531,7 +531,7 @@ static int dlm_exit_domain_handler(struct o2net_msg *msg, u32 len, void *data, ...@@ -531,7 +531,7 @@ static int dlm_exit_domain_handler(struct o2net_msg *msg, u32 len, void *data,
unsigned int node; unsigned int node;
struct dlm_exit_domain *exit_msg = (struct dlm_exit_domain *) msg->buf; struct dlm_exit_domain *exit_msg = (struct dlm_exit_domain *) msg->buf;
mlog_entry("%p %u %p", msg, len, data); mlog(0, "%p %u %p", msg, len, data);
if (!dlm_grab(dlm)) if (!dlm_grab(dlm))
return 0; return 0;
...@@ -926,9 +926,10 @@ static int dlm_assert_joined_handler(struct o2net_msg *msg, u32 len, void *data, ...@@ -926,9 +926,10 @@ static int dlm_assert_joined_handler(struct o2net_msg *msg, u32 len, void *data,
} }
static int dlm_match_regions(struct dlm_ctxt *dlm, static int dlm_match_regions(struct dlm_ctxt *dlm,
struct dlm_query_region *qr) struct dlm_query_region *qr,
char *local, int locallen)
{ {
char *local = NULL, *remote = qr->qr_regions; char *remote = qr->qr_regions;
char *l, *r; char *l, *r;
int localnr, i, j, foundit; int localnr, i, j, foundit;
int status = 0; int status = 0;
...@@ -957,13 +958,8 @@ static int dlm_match_regions(struct dlm_ctxt *dlm, ...@@ -957,13 +958,8 @@ static int dlm_match_regions(struct dlm_ctxt *dlm,
r += O2HB_MAX_REGION_NAME_LEN; r += O2HB_MAX_REGION_NAME_LEN;
} }
local = kmalloc(sizeof(qr->qr_regions), GFP_ATOMIC); localnr = min(O2NM_MAX_REGIONS, locallen/O2HB_MAX_REGION_NAME_LEN);
if (!local) { localnr = o2hb_get_all_regions(local, (u8)localnr);
status = -ENOMEM;
goto bail;
}
localnr = o2hb_get_all_regions(local, O2NM_MAX_REGIONS);
/* compare local regions with remote */ /* compare local regions with remote */
l = local; l = local;
...@@ -1012,8 +1008,6 @@ static int dlm_match_regions(struct dlm_ctxt *dlm, ...@@ -1012,8 +1008,6 @@ static int dlm_match_regions(struct dlm_ctxt *dlm,
} }
bail: bail:
kfree(local);
return status; return status;
} }
...@@ -1075,6 +1069,7 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len, ...@@ -1075,6 +1069,7 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len,
{ {
struct dlm_query_region *qr; struct dlm_query_region *qr;
struct dlm_ctxt *dlm = NULL; struct dlm_ctxt *dlm = NULL;
char *local = NULL;
int status = 0; int status = 0;
int locked = 0; int locked = 0;
...@@ -1083,6 +1078,13 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len, ...@@ -1083,6 +1078,13 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len,
mlog(0, "Node %u queries hb regions on domain %s\n", qr->qr_node, mlog(0, "Node %u queries hb regions on domain %s\n", qr->qr_node,
qr->qr_domain); qr->qr_domain);
/* buffer used in dlm_mast_regions() */
local = kmalloc(sizeof(qr->qr_regions), GFP_KERNEL);
if (!local) {
status = -ENOMEM;
goto bail;
}
status = -EINVAL; status = -EINVAL;
spin_lock(&dlm_domain_lock); spin_lock(&dlm_domain_lock);
...@@ -1112,13 +1114,15 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len, ...@@ -1112,13 +1114,15 @@ static int dlm_query_region_handler(struct o2net_msg *msg, u32 len,
goto bail; goto bail;
} }
status = dlm_match_regions(dlm, qr); status = dlm_match_regions(dlm, qr, local, sizeof(qr->qr_regions));
bail: bail:
if (locked) if (locked)
spin_unlock(&dlm->spinlock); spin_unlock(&dlm->spinlock);
spin_unlock(&dlm_domain_lock); spin_unlock(&dlm_domain_lock);
kfree(local);
return status; return status;
} }
...@@ -1553,7 +1557,7 @@ static int dlm_try_to_join_domain(struct dlm_ctxt *dlm) ...@@ -1553,7 +1557,7 @@ static int dlm_try_to_join_domain(struct dlm_ctxt *dlm)
struct domain_join_ctxt *ctxt; struct domain_join_ctxt *ctxt;
enum dlm_query_join_response_code response = JOIN_DISALLOW; enum dlm_query_join_response_code response = JOIN_DISALLOW;
mlog_entry("%p", dlm); mlog(0, "%p", dlm);
ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
if (!ctxt) { if (!ctxt) {
......
...@@ -128,7 +128,7 @@ static enum dlm_status dlmlock_master(struct dlm_ctxt *dlm, ...@@ -128,7 +128,7 @@ static enum dlm_status dlmlock_master(struct dlm_ctxt *dlm,
int call_ast = 0, kick_thread = 0; int call_ast = 0, kick_thread = 0;
enum dlm_status status = DLM_NORMAL; enum dlm_status status = DLM_NORMAL;
mlog_entry("type=%d\n", lock->ml.type); mlog(0, "type=%d\n", lock->ml.type);
spin_lock(&res->spinlock); spin_lock(&res->spinlock);
/* if called from dlm_create_lock_handler, need to /* if called from dlm_create_lock_handler, need to
...@@ -227,8 +227,8 @@ static enum dlm_status dlmlock_remote(struct dlm_ctxt *dlm, ...@@ -227,8 +227,8 @@ static enum dlm_status dlmlock_remote(struct dlm_ctxt *dlm,
enum dlm_status status = DLM_DENIED; enum dlm_status status = DLM_DENIED;
int lockres_changed = 1; int lockres_changed = 1;
mlog_entry("type=%d\n", lock->ml.type); mlog(0, "type=%d, lockres %.*s, flags = 0x%x\n",
mlog(0, "lockres %.*s, flags = 0x%x\n", res->lockname.len, lock->ml.type, res->lockname.len,
res->lockname.name, flags); res->lockname.name, flags);
spin_lock(&res->spinlock); spin_lock(&res->spinlock);
...@@ -308,8 +308,6 @@ static enum dlm_status dlm_send_remote_lock_request(struct dlm_ctxt *dlm, ...@@ -308,8 +308,6 @@ static enum dlm_status dlm_send_remote_lock_request(struct dlm_ctxt *dlm,
int tmpret, status = 0; int tmpret, status = 0;
enum dlm_status ret; enum dlm_status ret;
mlog_entry_void();
memset(&create, 0, sizeof(create)); memset(&create, 0, sizeof(create));
create.node_idx = dlm->node_num; create.node_idx = dlm->node_num;
create.requested_type = lock->ml.type; create.requested_type = lock->ml.type;
...@@ -477,8 +475,6 @@ int dlm_create_lock_handler(struct o2net_msg *msg, u32 len, void *data, ...@@ -477,8 +475,6 @@ int dlm_create_lock_handler(struct o2net_msg *msg, u32 len, void *data,
BUG_ON(!dlm); BUG_ON(!dlm);
mlog_entry_void();
if (!dlm_grab(dlm)) if (!dlm_grab(dlm))
return DLM_REJECTED; return DLM_REJECTED;
......
...@@ -426,8 +426,6 @@ static void dlm_mle_release(struct kref *kref) ...@@ -426,8 +426,6 @@ static void dlm_mle_release(struct kref *kref)
struct dlm_master_list_entry *mle; struct dlm_master_list_entry *mle;
struct dlm_ctxt *dlm; struct dlm_ctxt *dlm;
mlog_entry_void();
mle = container_of(kref, struct dlm_master_list_entry, mle_refs); mle = container_of(kref, struct dlm_master_list_entry, mle_refs);
dlm = mle->dlm; dlm = mle->dlm;
...@@ -3120,8 +3118,6 @@ static int dlm_add_migration_mle(struct dlm_ctxt *dlm, ...@@ -3120,8 +3118,6 @@ static int dlm_add_migration_mle(struct dlm_ctxt *dlm,
*oldmle = NULL; *oldmle = NULL;
mlog_entry_void();
assert_spin_locked(&dlm->spinlock); assert_spin_locked(&dlm->spinlock);
assert_spin_locked(&dlm->master_lock); assert_spin_locked(&dlm->master_lock);
...@@ -3261,7 +3257,7 @@ void dlm_clean_master_list(struct dlm_ctxt *dlm, u8 dead_node) ...@@ -3261,7 +3257,7 @@ void dlm_clean_master_list(struct dlm_ctxt *dlm, u8 dead_node)
struct hlist_node *list; struct hlist_node *list;
unsigned int i; unsigned int i;
mlog_entry("dlm=%s, dead node=%u\n", dlm->name, dead_node); mlog(0, "dlm=%s, dead node=%u\n", dlm->name, dead_node);
top: top:
assert_spin_locked(&dlm->spinlock); assert_spin_locked(&dlm->spinlock);
......
...@@ -727,7 +727,6 @@ static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node) ...@@ -727,7 +727,6 @@ static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node)
if (destroy) if (destroy)
dlm_destroy_recovery_area(dlm, dead_node); dlm_destroy_recovery_area(dlm, dead_node);
mlog_exit(status);
return status; return status;
} }
...@@ -1496,9 +1495,9 @@ int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data, ...@@ -1496,9 +1495,9 @@ int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
kfree(buf); kfree(buf);
if (item) if (item)
kfree(item); kfree(item);
mlog_errno(ret);
} }
mlog_exit(ret);
return ret; return ret;
} }
...@@ -1567,7 +1566,6 @@ static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data) ...@@ -1567,7 +1566,6 @@ static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data)
dlm_lockres_put(res); dlm_lockres_put(res);
} }
kfree(data); kfree(data);
mlog_exit(ret);
} }
...@@ -1986,7 +1984,6 @@ static int dlm_process_recovery_data(struct dlm_ctxt *dlm, ...@@ -1986,7 +1984,6 @@ static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
dlm_lock_put(newlock); dlm_lock_put(newlock);
} }
mlog_exit(ret);
return ret; return ret;
} }
...@@ -2083,8 +2080,6 @@ static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm, ...@@ -2083,8 +2080,6 @@ static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
struct hlist_head *bucket; struct hlist_head *bucket;
struct dlm_lock_resource *res, *next; struct dlm_lock_resource *res, *next;
mlog_entry_void();
assert_spin_locked(&dlm->spinlock); assert_spin_locked(&dlm->spinlock);
list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) { list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) {
...@@ -2607,8 +2602,6 @@ static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node) ...@@ -2607,8 +2602,6 @@ static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node)
int nodenum; int nodenum;
int status; int status;
mlog_entry("%u\n", dead_node);
mlog(0, "%s: dead node is %u\n", dlm->name, dead_node); mlog(0, "%s: dead node is %u\n", dlm->name, dead_node);
spin_lock(&dlm->spinlock); spin_lock(&dlm->spinlock);
......
...@@ -317,7 +317,7 @@ static enum dlm_status dlm_send_remote_unlock_request(struct dlm_ctxt *dlm, ...@@ -317,7 +317,7 @@ static enum dlm_status dlm_send_remote_unlock_request(struct dlm_ctxt *dlm,
struct kvec vec[2]; struct kvec vec[2];
size_t veclen = 1; size_t veclen = 1;
mlog_entry("%.*s\n", res->lockname.len, res->lockname.name); mlog(0, "%.*s\n", res->lockname.len, res->lockname.name);
if (owner == dlm->node_num) { if (owner == dlm->node_num) {
/* ended up trying to contact ourself. this means /* ended up trying to contact ourself. this means
...@@ -588,8 +588,6 @@ enum dlm_status dlmunlock(struct dlm_ctxt *dlm, struct dlm_lockstatus *lksb, ...@@ -588,8 +588,6 @@ enum dlm_status dlmunlock(struct dlm_ctxt *dlm, struct dlm_lockstatus *lksb,
struct dlm_lock *lock = NULL; struct dlm_lock *lock = NULL;
int call_ast, is_master; int call_ast, is_master;
mlog_entry_void();
if (!lksb) { if (!lksb) {
dlm_error(DLM_BADARGS); dlm_error(DLM_BADARGS);
return DLM_BADARGS; return DLM_BADARGS;
......
This diff is collapsed.
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/types.h> #include <linux/types.h>
#define MLOG_MASK_PREFIX ML_EXPORT
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -40,6 +39,7 @@ ...@@ -40,6 +39,7 @@
#include "buffer_head_io.h" #include "buffer_head_io.h"
#include "suballoc.h" #include "suballoc.h"
#include "ocfs2_trace.h"
struct ocfs2_inode_handle struct ocfs2_inode_handle
{ {
...@@ -56,10 +56,9 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -56,10 +56,9 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
int status, set; int status, set;
struct dentry *result; struct dentry *result;
mlog_entry("(0x%p, 0x%p)\n", sb, handle); trace_ocfs2_get_dentry_begin(sb, handle, (unsigned long long)blkno);
if (blkno == 0) { if (blkno == 0) {
mlog(0, "nfs wants inode with blkno: 0\n");
result = ERR_PTR(-ESTALE); result = ERR_PTR(-ESTALE);
goto bail; goto bail;
} }
...@@ -83,6 +82,7 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -83,6 +82,7 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
} }
status = ocfs2_test_inode_bit(osb, blkno, &set); status = ocfs2_test_inode_bit(osb, blkno, &set);
trace_ocfs2_get_dentry_test_bit(status, set);
if (status < 0) { if (status < 0) {
if (status == -EINVAL) { if (status == -EINVAL) {
/* /*
...@@ -90,18 +90,14 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -90,18 +90,14 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
* as an inode, we return -ESTALE to be * as an inode, we return -ESTALE to be
* nice * nice
*/ */
mlog(0, "test inode bit failed %d\n", status);
status = -ESTALE; status = -ESTALE;
} else { } else
mlog(ML_ERROR, "test inode bit failed %d\n", status); mlog(ML_ERROR, "test inode bit failed %d\n", status);
}
goto unlock_nfs_sync; goto unlock_nfs_sync;
} }
/* If the inode allocator bit is clear, this inode must be stale */ /* If the inode allocator bit is clear, this inode must be stale */
if (!set) { if (!set) {
mlog(0, "inode %llu suballoc bit is clear\n",
(unsigned long long)blkno);
status = -ESTALE; status = -ESTALE;
goto unlock_nfs_sync; goto unlock_nfs_sync;
} }
...@@ -114,8 +110,8 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -114,8 +110,8 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
check_err: check_err:
if (status < 0) { if (status < 0) {
if (status == -ESTALE) { if (status == -ESTALE) {
mlog(0, "stale inode ino: %llu generation: %u\n", trace_ocfs2_get_dentry_stale((unsigned long long)blkno,
(unsigned long long)blkno, handle->ih_generation); handle->ih_generation);
} }
result = ERR_PTR(status); result = ERR_PTR(status);
goto bail; goto bail;
...@@ -130,8 +126,9 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -130,8 +126,9 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
check_gen: check_gen:
if (handle->ih_generation != inode->i_generation) { if (handle->ih_generation != inode->i_generation) {
iput(inode); iput(inode);
mlog(0, "stale inode ino: %llu generation: %u\n", trace_ocfs2_get_dentry_generation((unsigned long long)blkno,
(unsigned long long)blkno, handle->ih_generation); handle->ih_generation,
inode->i_generation);
result = ERR_PTR(-ESTALE); result = ERR_PTR(-ESTALE);
goto bail; goto bail;
} }
...@@ -141,7 +138,7 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb, ...@@ -141,7 +138,7 @@ static struct dentry *ocfs2_get_dentry(struct super_block *sb,
mlog_errno(PTR_ERR(result)); mlog_errno(PTR_ERR(result));
bail: bail:
mlog_exit_ptr(result); trace_ocfs2_get_dentry_end(result);
return result; return result;
} }
...@@ -152,10 +149,7 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) ...@@ -152,10 +149,7 @@ static struct dentry *ocfs2_get_parent(struct dentry *child)
struct dentry *parent; struct dentry *parent;
struct inode *dir = child->d_inode; struct inode *dir = child->d_inode;
mlog_entry("(0x%p, '%.*s')\n", child, trace_ocfs2_get_parent(child, child->d_name.len, child->d_name.name,
child->d_name.len, child->d_name.name);
mlog(0, "find parent of directory %llu\n",
(unsigned long long)OCFS2_I(dir)->ip_blkno); (unsigned long long)OCFS2_I(dir)->ip_blkno);
status = ocfs2_inode_lock(dir, NULL, 0); status = ocfs2_inode_lock(dir, NULL, 0);
...@@ -178,7 +172,7 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) ...@@ -178,7 +172,7 @@ static struct dentry *ocfs2_get_parent(struct dentry *child)
ocfs2_inode_unlock(dir, 0); ocfs2_inode_unlock(dir, 0);
bail: bail:
mlog_exit_ptr(parent); trace_ocfs2_get_parent_end(parent);
return parent; return parent;
} }
...@@ -193,8 +187,8 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len, ...@@ -193,8 +187,8 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len,
u32 generation; u32 generation;
__le32 *fh = (__force __le32 *) fh_in; __le32 *fh = (__force __le32 *) fh_in;
mlog_entry("(0x%p, '%.*s', 0x%p, %d, %d)\n", dentry, trace_ocfs2_encode_fh_begin(dentry, dentry->d_name.len,
dentry->d_name.len, dentry->d_name.name, dentry->d_name.name,
fh, len, connectable); fh, len, connectable);
if (connectable && (len < 6)) { if (connectable && (len < 6)) {
...@@ -210,8 +204,7 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len, ...@@ -210,8 +204,7 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len,
blkno = OCFS2_I(inode)->ip_blkno; blkno = OCFS2_I(inode)->ip_blkno;
generation = inode->i_generation; generation = inode->i_generation;
mlog(0, "Encoding fh: blkno: %llu, generation: %u\n", trace_ocfs2_encode_fh_self((unsigned long long)blkno, generation);
(unsigned long long)blkno, generation);
len = 3; len = 3;
fh[0] = cpu_to_le32((u32)(blkno >> 32)); fh[0] = cpu_to_le32((u32)(blkno >> 32));
...@@ -236,14 +229,14 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len, ...@@ -236,14 +229,14 @@ static int ocfs2_encode_fh(struct dentry *dentry, u32 *fh_in, int *max_len,
len = 6; len = 6;
type = 2; type = 2;
mlog(0, "Encoding parent: blkno: %llu, generation: %u\n", trace_ocfs2_encode_fh_parent((unsigned long long)blkno,
(unsigned long long)blkno, generation); generation);
} }
*max_len = len; *max_len = len;
bail: bail:
mlog_exit(type); trace_ocfs2_encode_fh_type(type);
return type; return type;
} }
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/fiemap.h> #include <linux/fiemap.h>
#define MLOG_MASK_PREFIX ML_EXTENT_MAP
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -39,6 +38,7 @@ ...@@ -39,6 +38,7 @@
#include "inode.h" #include "inode.h"
#include "super.h" #include "super.h"
#include "symlink.h" #include "symlink.h"
#include "ocfs2_trace.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
...@@ -841,8 +841,7 @@ int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr, ...@@ -841,8 +841,7 @@ int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr,
u64 p_block, p_count; u64 p_block, p_count;
int i, count, done = 0; int i, count, done = 0;
mlog_entry("(inode = %p, v_block = %llu, nr = %d, bhs = %p, " trace_ocfs2_read_virt_blocks(
"flags = %x, validate = %p)\n",
inode, (unsigned long long)v_block, nr, bhs, flags, inode, (unsigned long long)v_block, nr, bhs, flags,
validate); validate);
...@@ -897,7 +896,6 @@ int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr, ...@@ -897,7 +896,6 @@ int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr,
} }
out: out:
mlog_exit(rc);
return rc; return rc;
} }
......
This diff is collapsed.
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/highmem.h> #include <linux/highmem.h>
#define MLOG_MASK_PREFIX ML_SUPER
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -37,6 +36,7 @@ ...@@ -37,6 +36,7 @@
#include "heartbeat.h" #include "heartbeat.h"
#include "inode.h" #include "inode.h"
#include "journal.h" #include "journal.h"
#include "ocfs2_trace.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
...@@ -66,7 +66,7 @@ void ocfs2_do_node_down(int node_num, void *data) ...@@ -66,7 +66,7 @@ void ocfs2_do_node_down(int node_num, void *data)
BUG_ON(osb->node_num == node_num); BUG_ON(osb->node_num == node_num);
mlog(0, "ocfs2: node down event for %d\n", node_num); trace_ocfs2_do_node_down(node_num);
if (!osb->cconn) { if (!osb->cconn) {
/* /*
......
This diff is collapsed.
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <linux/mount.h> #include <linux/mount.h>
#include <linux/compat.h> #include <linux/compat.h>
#define MLOG_MASK_PREFIX ML_INODE
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -46,6 +45,22 @@ static inline void __o2info_set_request_error(struct ocfs2_info_request *kreq, ...@@ -46,6 +45,22 @@ static inline void __o2info_set_request_error(struct ocfs2_info_request *kreq,
#define o2info_set_request_error(a, b) \ #define o2info_set_request_error(a, b) \
__o2info_set_request_error((struct ocfs2_info_request *)&(a), b) __o2info_set_request_error((struct ocfs2_info_request *)&(a), b)
static inline void __o2info_set_request_filled(struct ocfs2_info_request *req)
{
req->ir_flags |= OCFS2_INFO_FL_FILLED;
}
#define o2info_set_request_filled(a) \
__o2info_set_request_filled((struct ocfs2_info_request *)&(a))
static inline void __o2info_clear_request_filled(struct ocfs2_info_request *req)
{
req->ir_flags &= ~OCFS2_INFO_FL_FILLED;
}
#define o2info_clear_request_filled(a) \
__o2info_clear_request_filled((struct ocfs2_info_request *)&(a))
static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags) static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags)
{ {
int status; int status;
...@@ -59,7 +74,6 @@ static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags) ...@@ -59,7 +74,6 @@ static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags)
*flags = OCFS2_I(inode)->ip_attr; *flags = OCFS2_I(inode)->ip_attr;
ocfs2_inode_unlock(inode, 0); ocfs2_inode_unlock(inode, 0);
mlog_exit(status);
return status; return status;
} }
...@@ -125,7 +139,6 @@ static int ocfs2_set_inode_attr(struct inode *inode, unsigned flags, ...@@ -125,7 +139,6 @@ static int ocfs2_set_inode_attr(struct inode *inode, unsigned flags,
brelse(bh); brelse(bh);
mlog_exit(status);
return status; return status;
} }
...@@ -139,7 +152,8 @@ int ocfs2_info_handle_blocksize(struct inode *inode, ...@@ -139,7 +152,8 @@ int ocfs2_info_handle_blocksize(struct inode *inode,
goto bail; goto bail;
oib.ib_blocksize = inode->i_sb->s_blocksize; oib.ib_blocksize = inode->i_sb->s_blocksize;
oib.ib_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oib);
if (o2info_to_user(oib, req)) if (o2info_to_user(oib, req))
goto bail; goto bail;
...@@ -163,7 +177,8 @@ int ocfs2_info_handle_clustersize(struct inode *inode, ...@@ -163,7 +177,8 @@ int ocfs2_info_handle_clustersize(struct inode *inode,
goto bail; goto bail;
oic.ic_clustersize = osb->s_clustersize; oic.ic_clustersize = osb->s_clustersize;
oic.ic_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oic);
if (o2info_to_user(oic, req)) if (o2info_to_user(oic, req))
goto bail; goto bail;
...@@ -187,7 +202,8 @@ int ocfs2_info_handle_maxslots(struct inode *inode, ...@@ -187,7 +202,8 @@ int ocfs2_info_handle_maxslots(struct inode *inode,
goto bail; goto bail;
oim.im_max_slots = osb->max_slots; oim.im_max_slots = osb->max_slots;
oim.im_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oim);
if (o2info_to_user(oim, req)) if (o2info_to_user(oim, req))
goto bail; goto bail;
...@@ -211,7 +227,8 @@ int ocfs2_info_handle_label(struct inode *inode, ...@@ -211,7 +227,8 @@ int ocfs2_info_handle_label(struct inode *inode,
goto bail; goto bail;
memcpy(oil.il_label, osb->vol_label, OCFS2_MAX_VOL_LABEL_LEN); memcpy(oil.il_label, osb->vol_label, OCFS2_MAX_VOL_LABEL_LEN);
oil.il_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oil);
if (o2info_to_user(oil, req)) if (o2info_to_user(oil, req))
goto bail; goto bail;
...@@ -235,7 +252,8 @@ int ocfs2_info_handle_uuid(struct inode *inode, ...@@ -235,7 +252,8 @@ int ocfs2_info_handle_uuid(struct inode *inode,
goto bail; goto bail;
memcpy(oiu.iu_uuid_str, osb->uuid_str, OCFS2_TEXT_UUID_LEN + 1); memcpy(oiu.iu_uuid_str, osb->uuid_str, OCFS2_TEXT_UUID_LEN + 1);
oiu.iu_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oiu);
if (o2info_to_user(oiu, req)) if (o2info_to_user(oiu, req))
goto bail; goto bail;
...@@ -261,7 +279,8 @@ int ocfs2_info_handle_fs_features(struct inode *inode, ...@@ -261,7 +279,8 @@ int ocfs2_info_handle_fs_features(struct inode *inode,
oif.if_compat_features = osb->s_feature_compat; oif.if_compat_features = osb->s_feature_compat;
oif.if_incompat_features = osb->s_feature_incompat; oif.if_incompat_features = osb->s_feature_incompat;
oif.if_ro_compat_features = osb->s_feature_ro_compat; oif.if_ro_compat_features = osb->s_feature_ro_compat;
oif.if_req.ir_flags |= OCFS2_INFO_FL_FILLED;
o2info_set_request_filled(oif);
if (o2info_to_user(oif, req)) if (o2info_to_user(oif, req))
goto bail; goto bail;
...@@ -286,7 +305,7 @@ int ocfs2_info_handle_journal_size(struct inode *inode, ...@@ -286,7 +305,7 @@ int ocfs2_info_handle_journal_size(struct inode *inode,
oij.ij_journal_size = osb->journal->j_inode->i_size; oij.ij_journal_size = osb->journal->j_inode->i_size;
oij.ij_req.ir_flags |= OCFS2_INFO_FL_FILLED; o2info_set_request_filled(oij);
if (o2info_to_user(oij, req)) if (o2info_to_user(oij, req))
goto bail; goto bail;
...@@ -308,7 +327,7 @@ int ocfs2_info_handle_unknown(struct inode *inode, ...@@ -308,7 +327,7 @@ int ocfs2_info_handle_unknown(struct inode *inode,
if (o2info_from_user(oir, req)) if (o2info_from_user(oir, req))
goto bail; goto bail;
oir.ir_flags &= ~OCFS2_INFO_FL_FILLED; o2info_clear_request_filled(oir);
if (o2info_to_user(oir, req)) if (o2info_to_user(oir, req))
goto bail; goto bail;
......
This diff is collapsed.
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
#include <linux/highmem.h> #include <linux/highmem.h>
#include <linux/bitops.h> #include <linux/bitops.h>
#define MLOG_MASK_PREFIX ML_DISK_ALLOC
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -43,6 +42,7 @@ ...@@ -43,6 +42,7 @@
#include "suballoc.h" #include "suballoc.h"
#include "super.h" #include "super.h"
#include "sysfile.h" #include "sysfile.h"
#include "ocfs2_trace.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
...@@ -201,8 +201,7 @@ void ocfs2_la_set_sizes(struct ocfs2_super *osb, int requested_mb) ...@@ -201,8 +201,7 @@ void ocfs2_la_set_sizes(struct ocfs2_super *osb, int requested_mb)
la_max_mb = ocfs2_clusters_to_megabytes(sb, la_max_mb = ocfs2_clusters_to_megabytes(sb,
ocfs2_local_alloc_size(sb) * 8); ocfs2_local_alloc_size(sb) * 8);
mlog(0, "requested: %dM, max: %uM, default: %uM\n", trace_ocfs2_la_set_sizes(requested_mb, la_max_mb, la_default_mb);
requested_mb, la_max_mb, la_default_mb);
if (requested_mb == -1) { if (requested_mb == -1) {
/* No user request - use defaults */ /* No user request - use defaults */
...@@ -276,8 +275,8 @@ int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits) ...@@ -276,8 +275,8 @@ int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
ret = 1; ret = 1;
bail: bail:
mlog(0, "state=%d, bits=%llu, la_bits=%d, ret=%d\n", trace_ocfs2_alloc_should_use_local(
osb->local_alloc_state, (unsigned long long)bits, la_bits, ret); (unsigned long long)bits, osb->local_alloc_state, la_bits, ret);
spin_unlock(&osb->osb_lock); spin_unlock(&osb->osb_lock);
return ret; return ret;
} }
...@@ -291,8 +290,6 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb) ...@@ -291,8 +290,6 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb)
struct inode *inode = NULL; struct inode *inode = NULL;
struct ocfs2_local_alloc *la; struct ocfs2_local_alloc *la;
mlog_entry_void();
if (osb->local_alloc_bits == 0) if (osb->local_alloc_bits == 0)
goto bail; goto bail;
...@@ -364,9 +361,10 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb) ...@@ -364,9 +361,10 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb)
if (inode) if (inode)
iput(inode); iput(inode);
mlog(0, "Local alloc window bits = %d\n", osb->local_alloc_bits); trace_ocfs2_load_local_alloc(osb->local_alloc_bits);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -388,8 +386,6 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb) ...@@ -388,8 +386,6 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
struct ocfs2_dinode *alloc_copy = NULL; struct ocfs2_dinode *alloc_copy = NULL;
struct ocfs2_dinode *alloc = NULL; struct ocfs2_dinode *alloc = NULL;
mlog_entry_void();
cancel_delayed_work(&osb->la_enable_wq); cancel_delayed_work(&osb->la_enable_wq);
flush_workqueue(ocfs2_wq); flush_workqueue(ocfs2_wq);
...@@ -482,8 +478,6 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb) ...@@ -482,8 +478,6 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
if (alloc_copy) if (alloc_copy)
kfree(alloc_copy); kfree(alloc_copy);
mlog_exit_void();
} }
/* /*
...@@ -502,7 +496,7 @@ int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb, ...@@ -502,7 +496,7 @@ int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb,
struct inode *inode = NULL; struct inode *inode = NULL;
struct ocfs2_dinode *alloc; struct ocfs2_dinode *alloc;
mlog_entry("(slot_num = %d)\n", slot_num); trace_ocfs2_begin_local_alloc_recovery(slot_num);
*alloc_copy = NULL; *alloc_copy = NULL;
...@@ -552,7 +546,8 @@ int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb, ...@@ -552,7 +546,8 @@ int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb,
iput(inode); iput(inode);
} }
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -570,8 +565,6 @@ int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb, ...@@ -570,8 +565,6 @@ int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb,
struct buffer_head *main_bm_bh = NULL; struct buffer_head *main_bm_bh = NULL;
struct inode *main_bm_inode; struct inode *main_bm_inode;
mlog_entry_void();
main_bm_inode = ocfs2_get_system_file_inode(osb, main_bm_inode = ocfs2_get_system_file_inode(osb,
GLOBAL_BITMAP_SYSTEM_INODE, GLOBAL_BITMAP_SYSTEM_INODE,
OCFS2_INVALID_SLOT); OCFS2_INVALID_SLOT);
...@@ -620,7 +613,8 @@ int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb, ...@@ -620,7 +613,8 @@ int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb,
out: out:
if (!status) if (!status)
ocfs2_init_steal_slots(osb); ocfs2_init_steal_slots(osb);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -640,8 +634,6 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb, ...@@ -640,8 +634,6 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
struct inode *local_alloc_inode; struct inode *local_alloc_inode;
unsigned int free_bits; unsigned int free_bits;
mlog_entry_void();
BUG_ON(!ac); BUG_ON(!ac);
local_alloc_inode = local_alloc_inode =
...@@ -712,10 +704,6 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb, ...@@ -712,10 +704,6 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
goto bail; goto bail;
} }
if (ac->ac_max_block)
mlog(0, "Calling in_range for max block %llu\n",
(unsigned long long)ac->ac_max_block);
ac->ac_inode = local_alloc_inode; ac->ac_inode = local_alloc_inode;
/* We should never use localalloc from another slot */ /* We should never use localalloc from another slot */
ac->ac_alloc_slot = osb->slot_num; ac->ac_alloc_slot = osb->slot_num;
...@@ -729,10 +717,12 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb, ...@@ -729,10 +717,12 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
iput(local_alloc_inode); iput(local_alloc_inode);
} }
mlog(0, "bits=%d, slot=%d, ret=%d\n", bits_wanted, osb->slot_num, trace_ocfs2_reserve_local_alloc_bits(
status); (unsigned long long)ac->ac_max_block,
bits_wanted, osb->slot_num, status);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -749,7 +739,6 @@ int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb, ...@@ -749,7 +739,6 @@ int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
struct ocfs2_dinode *alloc; struct ocfs2_dinode *alloc;
struct ocfs2_local_alloc *la; struct ocfs2_local_alloc *la;
mlog_entry_void();
BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL); BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL);
local_alloc_inode = ac->ac_inode; local_alloc_inode = ac->ac_inode;
...@@ -788,7 +777,8 @@ int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb, ...@@ -788,7 +777,8 @@ int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
ocfs2_journal_dirty(handle, osb->local_alloc_bh); ocfs2_journal_dirty(handle, osb->local_alloc_bh);
bail: bail:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -799,13 +789,11 @@ static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc) ...@@ -799,13 +789,11 @@ static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc)
u32 count = 0; u32 count = 0;
struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc); struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
mlog_entry_void();
buffer = la->la_bitmap; buffer = la->la_bitmap;
for (i = 0; i < le16_to_cpu(la->la_size); i++) for (i = 0; i < le16_to_cpu(la->la_size); i++)
count += hweight8(buffer[i]); count += hweight8(buffer[i]);
mlog_exit(count); trace_ocfs2_local_alloc_count_bits(count);
return count; return count;
} }
...@@ -820,10 +808,7 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb, ...@@ -820,10 +808,7 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
void *bitmap = NULL; void *bitmap = NULL;
struct ocfs2_reservation_map *resmap = &osb->osb_la_resmap; struct ocfs2_reservation_map *resmap = &osb->osb_la_resmap;
mlog_entry("(numbits wanted = %u)\n", *numbits);
if (!alloc->id1.bitmap1.i_total) { if (!alloc->id1.bitmap1.i_total) {
mlog(0, "No bits in my window!\n");
bitoff = -1; bitoff = -1;
goto bail; goto bail;
} }
...@@ -883,8 +868,7 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb, ...@@ -883,8 +868,7 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
} }
} }
mlog(0, "Exiting loop, bitoff = %d, numfound = %d\n", bitoff, trace_ocfs2_local_alloc_find_clear_bits_search_bitmap(bitoff, numfound);
numfound);
if (numfound == *numbits) if (numfound == *numbits)
bitoff = startoff - numfound; bitoff = startoff - numfound;
...@@ -895,7 +879,10 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb, ...@@ -895,7 +879,10 @@ static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
if (local_resv) if (local_resv)
ocfs2_resv_discard(resmap, resv); ocfs2_resv_discard(resmap, resv);
mlog_exit(bitoff); trace_ocfs2_local_alloc_find_clear_bits(*numbits,
le32_to_cpu(alloc->id1.bitmap1.i_total),
bitoff, numfound);
return bitoff; return bitoff;
} }
...@@ -903,15 +890,12 @@ static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc) ...@@ -903,15 +890,12 @@ static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc)
{ {
struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc); struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
int i; int i;
mlog_entry_void();
alloc->id1.bitmap1.i_total = 0; alloc->id1.bitmap1.i_total = 0;
alloc->id1.bitmap1.i_used = 0; alloc->id1.bitmap1.i_used = 0;
la->la_bm_off = 0; la->la_bm_off = 0;
for(i = 0; i < le16_to_cpu(la->la_size); i++) for(i = 0; i < le16_to_cpu(la->la_size); i++)
la->la_bitmap[i] = 0; la->la_bitmap[i] = 0;
mlog_exit_void();
} }
#if 0 #if 0
...@@ -952,18 +936,16 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb, ...@@ -952,18 +936,16 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
void *bitmap; void *bitmap;
struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc); struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
mlog_entry("total = %u, used = %u\n", trace_ocfs2_sync_local_to_main(
le32_to_cpu(alloc->id1.bitmap1.i_total), le32_to_cpu(alloc->id1.bitmap1.i_total),
le32_to_cpu(alloc->id1.bitmap1.i_used)); le32_to_cpu(alloc->id1.bitmap1.i_used));
if (!alloc->id1.bitmap1.i_total) { if (!alloc->id1.bitmap1.i_total) {
mlog(0, "nothing to sync!\n");
goto bail; goto bail;
} }
if (le32_to_cpu(alloc->id1.bitmap1.i_used) == if (le32_to_cpu(alloc->id1.bitmap1.i_used) ==
le32_to_cpu(alloc->id1.bitmap1.i_total)) { le32_to_cpu(alloc->id1.bitmap1.i_total)) {
mlog(0, "all bits were taken!\n");
goto bail; goto bail;
} }
...@@ -985,8 +967,7 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb, ...@@ -985,8 +967,7 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
ocfs2_clusters_to_blocks(osb->sb, ocfs2_clusters_to_blocks(osb->sb,
start - count); start - count);
mlog(0, "freeing %u bits starting at local alloc bit " trace_ocfs2_sync_local_to_main_free(
"%u (la_start_blk = %llu, blkno = %llu)\n",
count, start - count, count, start - count,
(unsigned long long)la_start_blk, (unsigned long long)la_start_blk,
(unsigned long long)blkno); (unsigned long long)blkno);
...@@ -1007,7 +988,8 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb, ...@@ -1007,7 +988,8 @@ static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
} }
bail: bail:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -1132,7 +1114,8 @@ static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb, ...@@ -1132,7 +1114,8 @@ static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
*ac = NULL; *ac = NULL;
} }
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -1148,16 +1131,11 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb, ...@@ -1148,16 +1131,11 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
struct ocfs2_dinode *alloc = NULL; struct ocfs2_dinode *alloc = NULL;
struct ocfs2_local_alloc *la; struct ocfs2_local_alloc *la;
mlog_entry_void();
alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data; alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
la = OCFS2_LOCAL_ALLOC(alloc); la = OCFS2_LOCAL_ALLOC(alloc);
if (alloc->id1.bitmap1.i_total) trace_ocfs2_local_alloc_new_window(
mlog(0, "asking me to alloc a new window over a non-empty " le32_to_cpu(alloc->id1.bitmap1.i_total),
"one\n");
mlog(0, "Allocating %u clusters for a new window.\n",
osb->local_alloc_bits); osb->local_alloc_bits);
/* Instruct the allocation code to try the most recently used /* Instruct the allocation code to try the most recently used
...@@ -1220,13 +1198,13 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb, ...@@ -1220,13 +1198,13 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
ocfs2_resmap_restart(&osb->osb_la_resmap, cluster_count, ocfs2_resmap_restart(&osb->osb_la_resmap, cluster_count,
OCFS2_LOCAL_ALLOC(alloc)->la_bitmap); OCFS2_LOCAL_ALLOC(alloc)->la_bitmap);
mlog(0, "New window allocated:\n"); trace_ocfs2_local_alloc_new_window_result(
mlog(0, "window la_bm_off = %u\n", OCFS2_LOCAL_ALLOC(alloc)->la_bm_off,
OCFS2_LOCAL_ALLOC(alloc)->la_bm_off); le32_to_cpu(alloc->id1.bitmap1.i_total));
mlog(0, "window bits = %u\n", le32_to_cpu(alloc->id1.bitmap1.i_total));
bail: bail:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -1243,8 +1221,6 @@ static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb, ...@@ -1243,8 +1221,6 @@ static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
struct ocfs2_dinode *alloc_copy = NULL; struct ocfs2_dinode *alloc_copy = NULL;
struct ocfs2_alloc_context *ac = NULL; struct ocfs2_alloc_context *ac = NULL;
mlog_entry_void();
ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_SLIDE); ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_SLIDE);
/* This will lock the main bitmap for us. */ /* This will lock the main bitmap for us. */
...@@ -1324,7 +1300,8 @@ static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb, ...@@ -1324,7 +1300,8 @@ static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
if (ac) if (ac)
ocfs2_free_alloc_context(ac); ocfs2_free_alloc_context(ac);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/fcntl.h> #include <linux/fcntl.h>
#define MLOG_MASK_PREFIX ML_INODE
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <linux/signal.h> #include <linux/signal.h>
#include <linux/rbtree.h> #include <linux/rbtree.h>
#define MLOG_MASK_PREFIX ML_FILE_IO
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
...@@ -42,6 +41,7 @@ ...@@ -42,6 +41,7 @@
#include "inode.h" #include "inode.h"
#include "mmap.h" #include "mmap.h"
#include "super.h" #include "super.h"
#include "ocfs2_trace.h"
static int ocfs2_fault(struct vm_area_struct *area, struct vm_fault *vmf) static int ocfs2_fault(struct vm_area_struct *area, struct vm_fault *vmf)
...@@ -49,13 +49,12 @@ static int ocfs2_fault(struct vm_area_struct *area, struct vm_fault *vmf) ...@@ -49,13 +49,12 @@ static int ocfs2_fault(struct vm_area_struct *area, struct vm_fault *vmf)
sigset_t oldset; sigset_t oldset;
int ret; int ret;
mlog_entry("(area=%p, page offset=%lu)\n", area, vmf->pgoff);
ocfs2_block_signals(&oldset); ocfs2_block_signals(&oldset);
ret = filemap_fault(area, vmf); ret = filemap_fault(area, vmf);
ocfs2_unblock_signals(&oldset); ocfs2_unblock_signals(&oldset);
mlog_exit_ptr(vmf->page); trace_ocfs2_fault(OCFS2_I(area->vm_file->f_mapping->host)->ip_blkno,
area, vmf->page, vmf->pgoff);
return ret; return ret;
} }
......
This diff is collapsed.
...@@ -147,6 +147,17 @@ struct ocfs2_lock_res_ops; ...@@ -147,6 +147,17 @@ struct ocfs2_lock_res_ops;
typedef void (*ocfs2_lock_callback)(int status, unsigned long data); typedef void (*ocfs2_lock_callback)(int status, unsigned long data);
#ifdef CONFIG_OCFS2_FS_STATS
struct ocfs2_lock_stats {
u64 ls_total; /* Total wait in NSEC */
u32 ls_gets; /* Num acquires */
u32 ls_fail; /* Num failed acquires */
/* Storing max wait in usecs saves 24 bytes per inode */
u32 ls_max; /* Max wait in USEC */
};
#endif
struct ocfs2_lock_res { struct ocfs2_lock_res {
void *l_priv; void *l_priv;
struct ocfs2_lock_res_ops *l_ops; struct ocfs2_lock_res_ops *l_ops;
...@@ -182,15 +193,9 @@ struct ocfs2_lock_res { ...@@ -182,15 +193,9 @@ struct ocfs2_lock_res {
struct list_head l_debug_list; struct list_head l_debug_list;
#ifdef CONFIG_OCFS2_FS_STATS #ifdef CONFIG_OCFS2_FS_STATS
unsigned long long l_lock_num_prmode; /* PR acquires */ struct ocfs2_lock_stats l_lock_prmode; /* PR mode stats */
unsigned long long l_lock_num_exmode; /* EX acquires */ u32 l_lock_refresh; /* Disk refreshes */
unsigned int l_lock_num_prmode_failed; /* Failed PR gets */ struct ocfs2_lock_stats l_lock_exmode; /* EX mode stats */
unsigned int l_lock_num_exmode_failed; /* Failed EX gets */
unsigned long long l_lock_total_prmode; /* Tot wait for PR */
unsigned long long l_lock_total_exmode; /* Tot wait for EX */
unsigned int l_lock_max_prmode; /* Max wait for PR */
unsigned int l_lock_max_exmode; /* Max wait for EX */
unsigned int l_lock_refresh; /* Disk refreshes */
#endif #endif
#ifdef CONFIG_DEBUG_LOCK_ALLOC #ifdef CONFIG_DEBUG_LOCK_ALLOC
struct lockdep_map l_lockdep_map; struct lockdep_map l_lockdep_map;
......
This diff is collapsed.
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
#include <linux/writeback.h> #include <linux/writeback.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#define MLOG_MASK_PREFIX ML_QUOTA
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2_fs.h" #include "ocfs2_fs.h"
...@@ -27,6 +26,7 @@ ...@@ -27,6 +26,7 @@
#include "super.h" #include "super.h"
#include "buffer_head_io.h" #include "buffer_head_io.h"
#include "quota.h" #include "quota.h"
#include "ocfs2_trace.h"
/* /*
* Locking of quotas with OCFS2 is rather complex. Here are rules that * Locking of quotas with OCFS2 is rather complex. Here are rules that
...@@ -130,8 +130,7 @@ int ocfs2_validate_quota_block(struct super_block *sb, struct buffer_head *bh) ...@@ -130,8 +130,7 @@ int ocfs2_validate_quota_block(struct super_block *sb, struct buffer_head *bh)
struct ocfs2_disk_dqtrailer *dqt = struct ocfs2_disk_dqtrailer *dqt =
ocfs2_block_dqtrailer(sb->s_blocksize, bh->b_data); ocfs2_block_dqtrailer(sb->s_blocksize, bh->b_data);
mlog(0, "Validating quota block %llu\n", trace_ocfs2_validate_quota_block((unsigned long long)bh->b_blocknr);
(unsigned long long)bh->b_blocknr);
BUG_ON(!buffer_uptodate(bh)); BUG_ON(!buffer_uptodate(bh));
...@@ -341,8 +340,6 @@ int ocfs2_global_read_info(struct super_block *sb, int type) ...@@ -341,8 +340,6 @@ int ocfs2_global_read_info(struct super_block *sb, int type)
u64 pcount; u64 pcount;
int status; int status;
mlog_entry_void();
/* Read global header */ /* Read global header */
gqinode = ocfs2_get_system_file_inode(OCFS2_SB(sb), ino[type], gqinode = ocfs2_get_system_file_inode(OCFS2_SB(sb), ino[type],
OCFS2_INVALID_SLOT); OCFS2_INVALID_SLOT);
...@@ -402,7 +399,8 @@ int ocfs2_global_read_info(struct super_block *sb, int type) ...@@ -402,7 +399,8 @@ int ocfs2_global_read_info(struct super_block *sb, int type)
msecs_to_jiffies(oinfo->dqi_syncms)); msecs_to_jiffies(oinfo->dqi_syncms));
out_err: out_err:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
out_unlock: out_unlock:
ocfs2_unlock_global_qf(oinfo, 0); ocfs2_unlock_global_qf(oinfo, 0);
...@@ -508,9 +506,10 @@ int __ocfs2_sync_dquot(struct dquot *dquot, int freeing) ...@@ -508,9 +506,10 @@ int __ocfs2_sync_dquot(struct dquot *dquot, int freeing)
olditime = dquot->dq_dqb.dqb_itime; olditime = dquot->dq_dqb.dqb_itime;
oldbtime = dquot->dq_dqb.dqb_btime; oldbtime = dquot->dq_dqb.dqb_btime;
ocfs2_global_disk2memdqb(dquot, &dqblk); ocfs2_global_disk2memdqb(dquot, &dqblk);
mlog(0, "Syncing global dquot %u space %lld+%lld, inodes %lld+%lld\n", trace_ocfs2_sync_dquot(dquot->dq_id, dquot->dq_dqb.dqb_curspace,
dquot->dq_id, dquot->dq_dqb.dqb_curspace, (long long)spacechange, (long long)spacechange,
dquot->dq_dqb.dqb_curinodes, (long long)inodechange); dquot->dq_dqb.dqb_curinodes,
(long long)inodechange);
if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags)) if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags))
dquot->dq_dqb.dqb_curspace += spacechange; dquot->dq_dqb.dqb_curspace += spacechange;
if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags)) if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags))
...@@ -594,8 +593,8 @@ static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type) ...@@ -594,8 +593,8 @@ static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type)
struct ocfs2_super *osb = OCFS2_SB(sb); struct ocfs2_super *osb = OCFS2_SB(sb);
int status = 0; int status = 0;
mlog_entry("id=%u qtype=%u type=%lu device=%s\n", dquot->dq_id, trace_ocfs2_sync_dquot_helper(dquot->dq_id, dquot->dq_type,
dquot->dq_type, type, sb->s_id); type, sb->s_id);
if (type != dquot->dq_type) if (type != dquot->dq_type)
goto out; goto out;
status = ocfs2_lock_global_qf(oinfo, 1); status = ocfs2_lock_global_qf(oinfo, 1);
...@@ -621,7 +620,6 @@ static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type) ...@@ -621,7 +620,6 @@ static int ocfs2_sync_dquot_helper(struct dquot *dquot, unsigned long type)
out_ilock: out_ilock:
ocfs2_unlock_global_qf(oinfo, 1); ocfs2_unlock_global_qf(oinfo, 1);
out: out:
mlog_exit(status);
return status; return status;
} }
...@@ -647,7 +645,7 @@ static int ocfs2_write_dquot(struct dquot *dquot) ...@@ -647,7 +645,7 @@ static int ocfs2_write_dquot(struct dquot *dquot)
struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb); struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
int status = 0; int status = 0;
mlog_entry("id=%u, type=%d", dquot->dq_id, dquot->dq_type); trace_ocfs2_write_dquot(dquot->dq_id, dquot->dq_type);
handle = ocfs2_start_trans(osb, OCFS2_QWRITE_CREDITS); handle = ocfs2_start_trans(osb, OCFS2_QWRITE_CREDITS);
if (IS_ERR(handle)) { if (IS_ERR(handle)) {
...@@ -660,7 +658,6 @@ static int ocfs2_write_dquot(struct dquot *dquot) ...@@ -660,7 +658,6 @@ static int ocfs2_write_dquot(struct dquot *dquot)
mutex_unlock(&sb_dqopt(dquot->dq_sb)->dqio_mutex); mutex_unlock(&sb_dqopt(dquot->dq_sb)->dqio_mutex);
ocfs2_commit_trans(osb, handle); ocfs2_commit_trans(osb, handle);
out: out:
mlog_exit(status);
return status; return status;
} }
...@@ -686,7 +683,7 @@ static int ocfs2_release_dquot(struct dquot *dquot) ...@@ -686,7 +683,7 @@ static int ocfs2_release_dquot(struct dquot *dquot)
struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb); struct ocfs2_super *osb = OCFS2_SB(dquot->dq_sb);
int status = 0; int status = 0;
mlog_entry("id=%u, type=%d", dquot->dq_id, dquot->dq_type); trace_ocfs2_release_dquot(dquot->dq_id, dquot->dq_type);
mutex_lock(&dquot->dq_lock); mutex_lock(&dquot->dq_lock);
/* Check whether we are not racing with some other dqget() */ /* Check whether we are not racing with some other dqget() */
...@@ -722,7 +719,8 @@ static int ocfs2_release_dquot(struct dquot *dquot) ...@@ -722,7 +719,8 @@ static int ocfs2_release_dquot(struct dquot *dquot)
ocfs2_unlock_global_qf(oinfo, 1); ocfs2_unlock_global_qf(oinfo, 1);
out: out:
mutex_unlock(&dquot->dq_lock); mutex_unlock(&dquot->dq_lock);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -743,7 +741,7 @@ static int ocfs2_acquire_dquot(struct dquot *dquot) ...@@ -743,7 +741,7 @@ static int ocfs2_acquire_dquot(struct dquot *dquot)
int need_alloc = ocfs2_global_qinit_alloc(sb, type); int need_alloc = ocfs2_global_qinit_alloc(sb, type);
handle_t *handle; handle_t *handle;
mlog_entry("id=%u, type=%d", dquot->dq_id, type); trace_ocfs2_acquire_dquot(dquot->dq_id, type);
mutex_lock(&dquot->dq_lock); mutex_lock(&dquot->dq_lock);
/* /*
* We need an exclusive lock, because we're going to update use count * We need an exclusive lock, because we're going to update use count
...@@ -809,7 +807,8 @@ static int ocfs2_acquire_dquot(struct dquot *dquot) ...@@ -809,7 +807,8 @@ static int ocfs2_acquire_dquot(struct dquot *dquot)
set_bit(DQ_ACTIVE_B, &dquot->dq_flags); set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
out: out:
mutex_unlock(&dquot->dq_lock); mutex_unlock(&dquot->dq_lock);
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -829,7 +828,7 @@ static int ocfs2_mark_dquot_dirty(struct dquot *dquot) ...@@ -829,7 +828,7 @@ static int ocfs2_mark_dquot_dirty(struct dquot *dquot)
handle_t *handle; handle_t *handle;
struct ocfs2_super *osb = OCFS2_SB(sb); struct ocfs2_super *osb = OCFS2_SB(sb);
mlog_entry("id=%u, type=%d", dquot->dq_id, type); trace_ocfs2_mark_dquot_dirty(dquot->dq_id, type);
/* In case user set some limits, sync dquot immediately to global /* In case user set some limits, sync dquot immediately to global
* quota file so that information propagates quicker */ * quota file so that information propagates quicker */
...@@ -866,7 +865,8 @@ static int ocfs2_mark_dquot_dirty(struct dquot *dquot) ...@@ -866,7 +865,8 @@ static int ocfs2_mark_dquot_dirty(struct dquot *dquot)
out_ilock: out_ilock:
ocfs2_unlock_global_qf(oinfo, 1); ocfs2_unlock_global_qf(oinfo, 1);
out: out:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -877,8 +877,6 @@ static int ocfs2_write_info(struct super_block *sb, int type) ...@@ -877,8 +877,6 @@ static int ocfs2_write_info(struct super_block *sb, int type)
int status = 0; int status = 0;
struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv; struct ocfs2_mem_dqinfo *oinfo = sb_dqinfo(sb, type)->dqi_priv;
mlog_entry_void();
status = ocfs2_lock_global_qf(oinfo, 1); status = ocfs2_lock_global_qf(oinfo, 1);
if (status < 0) if (status < 0)
goto out; goto out;
...@@ -893,7 +891,8 @@ static int ocfs2_write_info(struct super_block *sb, int type) ...@@ -893,7 +891,8 @@ static int ocfs2_write_info(struct super_block *sb, int type)
out_ilock: out_ilock:
ocfs2_unlock_global_qf(oinfo, 1); ocfs2_unlock_global_qf(oinfo, 1);
out: out:
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
#include <linux/quotaops.h> #include <linux/quotaops.h>
#include <linux/module.h> #include <linux/module.h>
#define MLOG_MASK_PREFIX ML_QUOTA
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2_fs.h" #include "ocfs2_fs.h"
...@@ -23,6 +22,7 @@ ...@@ -23,6 +22,7 @@
#include "quota.h" #include "quota.h"
#include "uptodate.h" #include "uptodate.h"
#include "super.h" #include "super.h"
#include "ocfs2_trace.h"
/* Number of local quota structures per block */ /* Number of local quota structures per block */
static inline unsigned int ol_quota_entries_per_block(struct super_block *sb) static inline unsigned int ol_quota_entries_per_block(struct super_block *sb)
...@@ -475,7 +475,7 @@ static int ocfs2_recover_local_quota_file(struct inode *lqinode, ...@@ -475,7 +475,7 @@ static int ocfs2_recover_local_quota_file(struct inode *lqinode,
struct ocfs2_recovery_chunk *rchunk, *next; struct ocfs2_recovery_chunk *rchunk, *next;
qsize_t spacechange, inodechange; qsize_t spacechange, inodechange;
mlog_entry("ino=%lu type=%u", (unsigned long)lqinode->i_ino, type); trace_ocfs2_recover_local_quota_file((unsigned long)lqinode->i_ino, type);
list_for_each_entry_safe(rchunk, next, &(rec->r_list[type]), rc_list) { list_for_each_entry_safe(rchunk, next, &(rec->r_list[type]), rc_list) {
chunk = rchunk->rc_chunk; chunk = rchunk->rc_chunk;
...@@ -575,7 +575,8 @@ static int ocfs2_recover_local_quota_file(struct inode *lqinode, ...@@ -575,7 +575,8 @@ static int ocfs2_recover_local_quota_file(struct inode *lqinode,
} }
if (status < 0) if (status < 0)
free_recovery_list(&(rec->r_list[type])); free_recovery_list(&(rec->r_list[type]));
mlog_exit(status); if (status)
mlog_errno(status);
return status; return status;
} }
...@@ -600,7 +601,7 @@ int ocfs2_finish_quota_recovery(struct ocfs2_super *osb, ...@@ -600,7 +601,7 @@ int ocfs2_finish_quota_recovery(struct ocfs2_super *osb,
for (type = 0; type < MAXQUOTAS; type++) { for (type = 0; type < MAXQUOTAS; type++) {
if (list_empty(&(rec->r_list[type]))) if (list_empty(&(rec->r_list[type])))
continue; continue;
mlog(0, "Recovering quota in slot %d\n", slot_num); trace_ocfs2_finish_quota_recovery(slot_num);
lqinode = ocfs2_get_system_file_inode(osb, ino[type], slot_num); lqinode = ocfs2_get_system_file_inode(osb, ino[type], slot_num);
if (!lqinode) { if (!lqinode) {
status = -ENOENT; status = -ENOENT;
...@@ -882,9 +883,10 @@ static void olq_set_dquot(struct buffer_head *bh, void *private) ...@@ -882,9 +883,10 @@ static void olq_set_dquot(struct buffer_head *bh, void *private)
dqblk->dqb_inodemod = cpu_to_le64(od->dq_dquot.dq_dqb.dqb_curinodes - dqblk->dqb_inodemod = cpu_to_le64(od->dq_dquot.dq_dqb.dqb_curinodes -
od->dq_originodes); od->dq_originodes);
spin_unlock(&dq_data_lock); spin_unlock(&dq_data_lock);
mlog(0, "Writing local dquot %u space %lld inodes %lld\n", trace_olq_set_dquot(
od->dq_dquot.dq_id, (long long)le64_to_cpu(dqblk->dqb_spacemod), (unsigned long long)le64_to_cpu(dqblk->dqb_spacemod),
(long long)le64_to_cpu(dqblk->dqb_inodemod)); (unsigned long long)le64_to_cpu(dqblk->dqb_inodemod),
od->dq_dquot.dq_id);
} }
/* Write dquot to local quota file */ /* Write dquot to local quota file */
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/highmem.h> #include <linux/highmem.h>
#define MLOG_MASK_PREFIX ML_INODE
#include <cluster/masklog.h> #include <cluster/masklog.h>
#include "ocfs2.h" #include "ocfs2.h"
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment