Whamcloud - gitweb
LU-3289 gss: Return GSS major and minor status
[fs/lustre-release.git] / lustre / llite / vvp_object.c
index e7e4480..4bcfdfd 100644 (file)
@@ -27,7 +27,7 @@
  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2012, 2014, Intel Corporation.
+ * Copyright (c) 2012, 2015, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -194,6 +194,26 @@ static int vvp_object_glimpse(const struct lu_env *env,
        RETURN(0);
 }
 
+static void vvp_req_attr_set(const struct lu_env *env, struct cl_object *obj,
+                            struct cl_req_attr *attr)
+{
+       struct inode *inode;
+       struct obdo  *oa;
+       u64 valid_flags = OBD_MD_FLTYPE;
+
+       oa = attr->cra_oa;
+       inode = vvp_object_inode(obj);
+
+       if (attr->cra_type == CRT_WRITE)
+               valid_flags |= OBD_MD_FLMTIME | OBD_MD_FLCTIME |
+                              OBD_MD_FLUID | OBD_MD_FLGID;
+       obdo_from_inode(oa, inode, valid_flags & attr->cra_flags);
+       obdo_set_parent_fid(oa, &ll_i2info(inode)->lli_fid);
+       if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_INVALID_PFID))
+               oa->o_parent_oid++;
+       memcpy(attr->cra_jobid, ll_i2info(inode)->lli_jobid, LUSTRE_JOBID_SIZE);
+}
+
 static const struct cl_object_operations vvp_ops = {
        .coo_page_init    = vvp_page_init,
        .coo_lock_init    = vvp_lock_init,
@@ -202,7 +222,8 @@ static const struct cl_object_operations vvp_ops = {
        .coo_attr_update  = vvp_attr_update,
        .coo_conf_set     = vvp_conf_set,
        .coo_prune        = vvp_prune,
-       .coo_glimpse      = vvp_object_glimpse
+       .coo_glimpse      = vvp_object_glimpse,
+       .coo_req_attr_set = vvp_req_attr_set
 };
 
 static int vvp_object_init0(const struct lu_env *env,