search for: ocfs2_bmap

Displaying 5 results from an estimated 5 matches for "ocfs2_bmap".

2009 Mar 05
1
[PATCH] OCFS2: Pagecache usage optimization on OCFS2
...00 @@ -1953,15 +1953,16 @@ static int ocfs2_write_end(struct file * } const struct address_space_operations ocfs2_aops = { - .readpage = ocfs2_readpage, - .readpages = ocfs2_readpages, - .writepage = ocfs2_writepage, - .write_begin = ocfs2_write_begin, - .write_end = ocfs2_write_end, - .bmap = ocfs2_bmap, - .sync_page = block_sync_page, - .direct_IO = ocfs2_direct_IO, - .invalidatepage = ocfs2_invalidatepage, - .releasepage = ocfs2_releasepage, - .migratepage = buffer_migrate_page, + .readpage = ocfs2_readpage, + .readpages = ocfs2_readpages, + .writepage = ocfs2_writepage, + .write_begin = ocf...
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
...age, from, to); + handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); if (IS_ERR(handle)) { ret = -ENOMEM; @@ -484,6 +513,8 @@ out: ocfs2_commit_trans(osb, handle); handle = ERR_PTR(ret); } + + mlog_exit_ptr(handle); return handle; } @@ -494,7 +525,7 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) int err = 0; struct inode *inode = mapping->host; - mlog_entry("(block = %llu)\n", (unsigned long long)block); + mlog_entry("(0x%p, %llu)\n", mapping, (unsigned long long)block); /* We don't need to lock journal sys...
2009 Jul 21
1
(no subject)
...age, from, to); + handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); if (IS_ERR(handle)) { ret = -ENOMEM; @@ -484,6 +516,8 @@ out: ocfs2_commit_trans(osb, handle); handle = ERR_PTR(ret); } + + mlog_exit_ptr(handle); return handle; } @@ -494,7 +528,7 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) int err = 0; struct inode *inode = mapping->host; - mlog_entry("(block = %llu)\n", (unsigned long long)block); + mlog_entry("(0x%p, %llu)\n", mapping, (unsigned long long)block); /* We don't need to lock journal sys...
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
...age, from, to); + handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); if (IS_ERR(handle)) { ret = -ENOMEM; @@ -484,6 +516,8 @@ out: ocfs2_commit_trans(osb, handle); handle = ERR_PTR(ret); } + + mlog_exit_ptr(handle); return handle; } @@ -494,7 +528,7 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) int err = 0; struct inode *inode = mapping->host; - mlog_entry("(block = %llu)\n", (unsigned long long)block); + mlog_entry("(0x%p, %llu)\n", mapping, (unsigned long long)block); /* We don't need to lock journal sys...
2009 Mar 17
33
[git patches] Ocfs2 updates for 2.6.30
Hi, The following patches comprise the bulk of Ocfs2 updates for the 2.6.30 merge window. Aside from larger, more involved fixes, we're adding the following features, which I will describe in the order their patches are mailed. Sunil's exported some more state to our debugfs files, and consolidated some other aspects of our debugfs infrastructure. This will further aid us in debugging