X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Fcmm%2Fcmm_object.c;h=3cb6962f02d7f8ffe34c37d2bd1d421769d7a8aa;hp=e6212dc6d6cc3e3bacaee61bdceafef6c8de7cdd;hb=45c1f367a1379cb7adf9e2ed79c1221913eaf2e2;hpb=905120671f436768d374037765fd4845e7f4fdc9 diff --git a/lustre/cmm/cmm_object.c b/lustre/cmm/cmm_object.c index e6212dc..3cb6962 100644 --- a/lustre/cmm/cmm_object.c +++ b/lustre/cmm/cmm_object.c @@ -258,21 +258,21 @@ static int cml_xattr_list(const struct lu_env *env, struct md_object *mo, } static int cml_xattr_set(const struct lu_env *env, struct md_object *mo, - const struct lu_buf *buf, - const char *name, int fl) + const struct lu_buf *buf, const char *name, + int fl, const struct lu_attr *la) { int rc; ENTRY; - rc = mo_xattr_set(env, md_object_next(mo), buf, name, fl); + rc = mo_xattr_set(env, md_object_next(mo), buf, name, fl, la); RETURN(rc); } static int cml_xattr_del(const struct lu_env *env, struct md_object *mo, - const char *name) + const char *name, const struct lu_attr *la) { int rc; ENTRY; - rc = mo_xattr_del(env, md_object_next(mo), name); + rc = mo_xattr_del(env, md_object_next(mo), name, la); RETURN(rc); } @@ -877,13 +877,14 @@ static int cmr_xattr_list(const struct lu_env *env, struct md_object *mo, } static int cmr_xattr_set(const struct lu_env *env, struct md_object *mo, - const struct lu_buf *buf, const char *name, int fl) + const struct lu_buf *buf, const char *name, + int fl, const struct lu_attr *la) { return -EFAULT; } static int cmr_xattr_del(const struct lu_env *env, struct md_object *mo, - const char *name) + const char *name, const struct lu_attr *la) { return -EFAULT; }