search for: w_cpos

Displaying 8 results from an estimated 8 matches for "w_cpos".

Did you mean: e_cpos
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));
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
...cend; struct ocfs2_write_ctxt *wc; + mlog_entry("(.., 0x%p, %lld, %u, %llu)\n", + osb, pos, len, (unsigned long long)di_bh->b_blocknr); + wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS); - if (!wc) + if (!wc) { + mlog_exit(-ENOMEM); return -ENOMEM; + } wc->w_cpos = pos >> osb->s_clustersize_bits; cend = (pos + len - 1) >> osb->s_clustersize_bits; @@ -997,6 +1074,7 @@ static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp, *wcp = wc; + mlog_exit(0); return 0; } @@ -1010,6 +1088,8 @@ static void ocfs2_zero_new_buffers(s...
2009 Jul 21
1
(no subject)
...cend; struct ocfs2_write_ctxt *wc; + mlog_entry("(.., 0x%p, %lld, %u, %llu)\n", + osb, pos, len, (unsigned long long)di_bh->b_blocknr); + wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS); - if (!wc) + if (!wc) { + mlog_exit(-ENOMEM); return -ENOMEM; + } wc->w_cpos = pos >> osb->s_clustersize_bits; cend = (pos + len - 1) >> osb->s_clustersize_bits; @@ -997,6 +1080,7 @@ static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp, *wcp = wc; + mlog_exit(0); return 0; } @@ -1010,6 +1094,8 @@ static void ocfs2_zero_new_buffers(s...
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
...cend; struct ocfs2_write_ctxt *wc; + mlog_entry("(.., 0x%p, %lld, %u, %llu)\n", + osb, pos, len, (unsigned long long)di_bh->b_blocknr); + wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS); - if (!wc) + if (!wc) { + mlog_exit(-ENOMEM); return -ENOMEM; + } wc->w_cpos = pos >> osb->s_clustersize_bits; cend = (pos + len - 1) >> osb->s_clustersize_bits; @@ -997,6 +1080,7 @@ static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp, *wcp = wc; + mlog_exit(0); return 0; } @@ -1010,6 +1094,8 @@ static void ocfs2_zero_new_buffers(s...
2009 Mar 27
42
[PATCH 00/42] ocfs2: Add reflink file support. V1
Hi all, So I have finally finished the v1 of reflink for ocfs2. It has some bugs that I am still investigating, but the schema is almost there. So I'd like to send it out first for review. And Tristan and I will continue to work on the stability of the code. The general information for reflink, please see http://oss.oracle.com/osswiki/OCFS2/DesignDocs/Reflink. For the design doc, please
2009 Apr 03
42
[PATCH 00/42] ocfs2: Add reflink file support. V2
Hi all, Change from v1 to v2: bug fix and metadata/credits reservation improvement. The general information for reflink, please see http://oss.oracle.com/osswiki/OCFS2/DesignDocs/Reflink. For the design doc, please see http://oss.oracle.com/osswiki/OCFS2/DesignDocs/RefcountTrees http://oss.oracle.com/osswiki/OCFS2/DesignDocs/ReflinkOperation
2009 Apr 30
42
[PATCH 00/39] ocfs2: Add reflink file support. V3
Hi all, So I have finally finished the v3 of reflink for ocfs2. The biggest change is that we support 64bit cluster offset now(Thank Mark and Joel for it). [View] http://oss.oracle.com/git/?p=tma/linux-2.6.git;a=shortlog;h=refcount [Pull] git://oss.oracle.com/git/tma/linux-2.6.git refcount The general information for reflink, please see http://oss.oracle.com/osswiki/OCFS2/DesignDocs/Reflink.