]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
ocfs2: Add xattr lookup code xattr btrees
authorTao Ma <tao.ma@oracle.com>
Mon, 18 Aug 2008 09:38:51 +0000 (17:38 +0800)
committerMark Fasheh <mfasheh@suse.com>
Mon, 13 Oct 2008 23:57:03 +0000 (16:57 -0700)
commit589dc2602f2a1b7fa5e59b90f548af189f128d77
tree0a87e16146aa06c72de8db0aed1215c8be72b5fc
parent0c044f0b24b9128ba8c297149d88bd81f2e36af3
ocfs2: Add xattr lookup code xattr btrees

Add code to lookup a given extended attribute in the xattr btree. Lookup
follows this general scheme:

1. Use ocfs2_xattr_get_rec to find the xattr extent record

2. Find the xattr bucket within the extent which may contain this xattr

3. Iterate the bucket to find the xattr. In ocfs2_xattr_block_get(), we need
   to recalcuate the block offset and name offset for the right position of
   name/value.

Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/ocfs2/xattr.c