search for: user_pos

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

Did you mean: user&pos
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
...to unsigned int block_start, block_end; struct buffer_head *head, *bh; + mlog(0, "(%lu, %u, %u)\n", page->index, from, to); + BUG_ON(!PageLocked(page)); if (!page_has_buffers(page)) return; @@ -1054,6 +1134,9 @@ static void ocfs2_write_failure(struct inode *inode, to = user_pos + user_len; struct page *tmppage; + mlog(0, "(%llu, 0x%p, %lld, %u)\n", + OCFS2_I(inode)->ip_blkno, wc, user_pos, user_len); + ocfs2_zero_new_buffers(wc->w_target_page, from, to); for(i = 0; i < wc->w_num_pages; i++) { @@ -1079,6 +1162,10 @@ static int ocfs2_pre...
2009 Jul 21
1
(no subject)
...to unsigned int block_start, block_end; struct buffer_head *head, *bh; + mlog(0, "(%lu, %u, %u)\n", page->index, from, to); + BUG_ON(!PageLocked(page)); if (!page_has_buffers(page)) return; @@ -1054,6 +1140,10 @@ static void ocfs2_write_failure(struct inode *inode, to = user_pos + user_len; struct page *tmppage; + mlog(0, "(%llu, 0x%p, %lld, %u)\n", + (unsigned long long)OCFS2_I(inode)->ip_blkno, wc, user_pos, + user_len); + ocfs2_zero_new_buffers(wc->w_target_page, from, to); for(i = 0; i < wc->w_num_pages; i++) { @@ -1079,6 +1169...
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
...to unsigned int block_start, block_end; struct buffer_head *head, *bh; + mlog(0, "(%lu, %u, %u)\n", page->index, from, to); + BUG_ON(!PageLocked(page)); if (!page_has_buffers(page)) return; @@ -1054,6 +1140,10 @@ static void ocfs2_write_failure(struct inode *inode, to = user_pos + user_len; struct page *tmppage; + mlog(0, "(%llu, 0x%p, %lld, %u)\n", + (unsigned long long)OCFS2_I(inode)->ip_blkno, wc, user_pos, + user_len); + ocfs2_zero_new_buffers(wc->w_target_page, from, to); for(i = 0; i < wc->w_num_pages; i++) { @@ -1079,6 +1169...
2009 Aug 02
1
Non sparse extend init issue
The patch was created against a 1.4 tree. However, it applies cleanly to mainline too. The patch has been lightly tested. I am running fill_verify_holes on a non sparse volume currently. Please review. Sunil
2009 Aug 03
1
Non sparse init fix v3
One line fix from Joel's version. Also, some comments removed. 18:58 <sunil> wc->w_first_new_cpos = 18:58 <sunil> - ocfs2_align_bytes_to_clusters(inode->i_sb, i_size_read(inode)); 18:58 <sunil> + ocfs2_clusters_for_bytes(inode->i_sb, i_size_read(inode));