ocfs2: Dirty the entire first bucket in ocfs2_cp_xattr_cluster().
authorJoel Becker <joel.becker@oracle.com>
Wed, 26 Nov 2008 02:36:42 +0000 (18:36 -0800)
committerMark Fasheh <mfasheh@suse.com>
Mon, 5 Jan 2009 16:40:27 +0000 (08:40 -0800)
commit15d609293d1954465a4788b9b182214323c6a2a1
tree3a044a10a8c09397703964c23bc7156baf12747d
parent92de109ade7999084fb0bfcc65d603252504e0d0
ocfs2: Dirty the entire first bucket in ocfs2_cp_xattr_cluster().

ocfs2_cp_xattr_cluster() takes the last bucket of a full extent and
copies it over to a new extent.  It then updates the headers of both
extents to reflect the new state.  It is passed the first bh of
the first bucket in order to update that first extent's bucket count.
It reads and dirties the first bh of the new extent for the same reason.

However, future code wants to always dirty the entire bucket when it
is changed.  So it is changed to read the entire bucket it is updating
for both extents.

Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/ocfs2/xattr.c