From: Nathaniel Clark Date: Wed, 5 Nov 2014 18:05:22 +0000 (-0500) Subject: LU-3573 osd-zfs: Only advance zap cursor as needed X-Git-Tag: 2.6.92~64 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F12904%2F2;p=fs%2Flustre-release.git LU-3573 osd-zfs: Only advance zap cursor as needed Only advance the zap cursor when ozi_pos is not advanced, otherwise occasionally the a file could get "lost" because the zap_cursor would advance over it before the retrieve happened. Handle '..' like '.' when retrieving ZAP values. Test-Parameters: mdtfilesystemtype=zfs mdsfilesystemtype=zfs ostfilesystemtype=zfs testlist=conf-sanity,conf-sanity,conf-sanity,conf-sanity Signed-off-by: Nathaniel Clark Reviewed-by: Isaac Huang Reviewed-by: Alex Zhuravlev Reviewed-by: Oleg Drokin Change-Id: I916573c70c8828bed6905b5eda9344b4a49b7f11 Reviewed-on: http://review.whamcloud.com/12904 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger --- diff --git a/lustre/osd-zfs/osd_index.c b/lustre/osd-zfs/osd_index.c index dbc8f30..d14efbb 100644 --- a/lustre/osd-zfs/osd_index.c +++ b/lustre/osd-zfs/osd_index.c @@ -865,6 +865,8 @@ static int osd_dir_it_next(const struct lu_env *env, struct dt_it *di) zap_attribute_t *za = &osd_oti_get(env)->oti_za; int rc; + ENTRY; + /* temp. storage should be enough for any key supported by ZFS */ CLASSERT(sizeof(za->za_name) <= sizeof(it->ozi_name)); @@ -877,9 +879,10 @@ static int osd_dir_it_next(const struct lu_env *env, struct dt_it *di) it->ozi_pos++; if (it->ozi_pos <=2) RETURN(0); - } - zap_cursor_advance(it->ozi_zc); + } else { + zap_cursor_advance(it->ozi_zc); + } /* * According to current API we need to return error if its last entry. @@ -969,14 +972,11 @@ static int osd_dir_it_rec(const struct lu_env *env, const struct dt_it *di, osd_it_append_attrs(lde, attr, 2, IFTODT(S_IFDIR)); lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(2, attr)); rc = osd_find_parent_fid(env, &it->ozi_obj->oo_dt, &lde->lde_fid); - /* - * early Orion code was not setting LinkEA, so it's possible - * some setups still have objects with no LinkEA set. - * but at that time .. was a real record in the directory - * so we should try to lookup .. in ZAP - */ - if (rc != -ENOENT) - GOTO(out, rc); + + /* ENOENT happens at the root of filesystem so ignore it */ + if (rc == -ENOENT) + rc = 0; + GOTO(out, rc); } LASSERT(lde);