]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/patches/suse-2.6.27.25/patches.suse/ocfs2-fix-build-error.patch
Revert "Move xen patchset to new version's subdir."
[people/teissler/ipfire-2.x.git] / src / patches / suse-2.6.27.25 / patches.suse / ocfs2-fix-build-error.patch
CommitLineData
00e5a55c
BS
1From: Mark Fasheh <mfasheh@suse.com>
2Subject: ocfs2: fix build error
3Patch-mainline: 2.6.28
4
5I merged the latest ocfs2_read_blocks() changes in xattr.c wrong. This makes
6Ocfs2 compile again.
7
8Signed-off-by: Mark Fasheh <mfasheh@suse.com>
9---
10 fs/ocfs2/xattr.c | 14 ++++++--------
11 1 files changed, 6 insertions(+), 8 deletions(-)
12
13Index: linux-2.6.27/fs/ocfs2/xattr.c
14===================================================================
15--- linux-2.6.27.orig/fs/ocfs2/xattr.c
16+++ linux-2.6.27/fs/ocfs2/xattr.c
17@@ -2365,7 +2365,7 @@ static int ocfs2_xattr_bucket_find(struc
18 */
19 ret = ocfs2_read_blocks(inode, xs->bucket.bhs[0]->b_blocknr + 1,
20 blk_per_bucket - 1, &xs->bucket.bhs[1],
21- OCFS2_BH_CACHED);
22+ 0);
23 if (ret) {
24 mlog_errno(ret);
25 goto out;
26@@ -2442,7 +2442,7 @@ static int ocfs2_iterate_xattr_buckets(s
27
28 for (i = 0; i < num_buckets; i++, blkno += blk_per_bucket) {
29 ret = ocfs2_read_blocks(inode, blkno, blk_per_bucket,
30- bucket.bhs, OCFS2_BH_CACHED);
31+ bucket.bhs, 0);
32 if (ret) {
33 mlog_errno(ret);
34 goto out;
35@@ -2710,7 +2710,7 @@ static int ocfs2_xattr_update_xattr_sear
36 ret = ocfs2_read_blocks(inode,
37 xs->bucket.bhs[0]->b_blocknr + 1,
38 blk_per_bucket - 1, &xs->bucket.bhs[1],
39- OCFS2_BH_CACHED);
40+ 0);
41 if (ret) {
42 mlog_errno(ret);
43 return ret;
44@@ -2914,8 +2914,7 @@ static int ocfs2_defrag_xattr_bucket(str
45 if (!bhs)
46 return -ENOMEM;
47
48- ret = ocfs2_read_blocks(inode, blkno, blk_per_bucket, bhs,
49- OCFS2_BH_CACHED);
50+ ret = ocfs2_read_blocks(inode, blkno, blk_per_bucket, bhs, 0);
51 if (ret)
52 goto out;
53
54@@ -3169,8 +3168,7 @@ static int ocfs2_read_xattr_bucket(struc
55
56 if (!new)
57 return ocfs2_read_blocks(inode, blkno,
58- blk_per_bucket, bhs,
59- OCFS2_BH_CACHED);
60+ blk_per_bucket, bhs, 0);
61
62 for (i = 0; i < blk_per_bucket; i++) {
63 bhs[i] = sb_getblk(inode->i_sb, blkno + i);
64@@ -4117,7 +4115,7 @@ static int ocfs2_xattr_set_entry_in_buck
65 ret = ocfs2_read_blocks(inode,
66 xs->bucket.bhs[0]->b_blocknr + 1,
67 blk_per_bucket - 1, &xs->bucket.bhs[1],
68- OCFS2_BH_CACHED);
69+ 0);
70 if (ret) {
71 mlog_errno(ret);
72 goto out;