| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 11/9] xfs: fix remote attribute invalidation for a leaf |
| From: | Dave Chinner <david@xxxxxxxxxxxxx> |
| Date: | Wed, 29 May 2013 07:27:24 +1000 |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <1369636707-15150-1-git-send-email-david@xxxxxxxxxxxxx> |
| References: | <1369636707-15150-1-git-send-email-david@xxxxxxxxxxxxx> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
From: Dave Chinner <dchinner@xxxxxxxxxx>
When invalidating an attribute leaf block block, there might be
remote attributes that it points to. With the recent rework of the
remote attribute format, we have to make sure we calculate the
length of the attribute correctly. We aren't doing that in
xfs_attr3_leaf_inactive(), so fix it.
Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx>
---
fs/xfs/xfs_attr_leaf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/xfs/xfs_attr_leaf.c b/fs/xfs/xfs_attr_leaf.c
index d788302..31d3cd1 100644
--- a/fs/xfs/xfs_attr_leaf.c
+++ b/fs/xfs/xfs_attr_leaf.c
@@ -3258,7 +3258,7 @@ xfs_attr3_leaf_inactive(
name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
if (name_rmt->valueblk) {
lp->valueblk = be32_to_cpu(name_rmt->valueblk);
- lp->valuelen = XFS_B_TO_FSB(dp->i_mount,
+ lp->valuelen = xfs_attr3_rmt_blocks(dp->i_mount,
be32_to_cpu(name_rmt->valuelen));
lp++;
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: 3.10-rc3 xfs mount/recovery failure & ext fsck hang., Dave Jones |
|---|---|
| Next by Date: | Re: 3.10-rc3 xfs mount/recovery failure & ext fsck hang., Dave Chinner |
| Previous by Thread: | Re: [PATH 0/9] xfs: fixes for 3.10-rc4, Ben Myers |
| Next by Thread: | caulking gun&foam gun/Builders Choice Tools/Will, Will |
| Indexes: | [Date] [Thread] [Top] [All Lists] |