Whamcloud - gitweb
LU-1187 tests: Add DNE test cases in sanity.
[fs/lustre-release.git] / lustre / lod / lod_object.c
index 24a07d6..95d1cf8 100644 (file)
@@ -101,19 +101,140 @@ static struct dt_it *lod_it_init(const struct lu_env *env,
                                 struct dt_object *dt, __u32 attr,
                                 struct lustre_capa *capa)
 {
-       struct dt_object   *next = dt_object_child(dt);
+       struct dt_object        *next = dt_object_child(dt);
+       struct lod_it           *it = &lod_env_info(env)->lti_it;
+       struct dt_it            *it_next;
+
+
+       it_next = next->do_index_ops->dio_it.init(env, next, attr, capa);
+       if (IS_ERR(it_next))
+               return it_next;
+
+       /* currently we do not use more than one iterator per thread
+        * so we store it in thread info. if at some point we need
+        * more active iterators in a single thread, we can allocate
+        * additional ones */
+       LASSERT(it->lit_obj == NULL);
+
+       it->lit_it = it_next;
+       it->lit_obj = next;
+
+       return (struct dt_it *)it;
+}
+
+#define LOD_CHECK_IT(env, it)                                  \
+{                                                              \
+       /* IT is supposed to be in thread info always */        \
+       LASSERT((it) == &lod_env_info(env)->lti_it);            \
+       LASSERT((it)->lit_obj != NULL);                         \
+       LASSERT((it)->lit_it != NULL);                          \
+} while(0)
+
+void lod_it_fini(const struct lu_env *env, struct dt_it *di)
+{
+       struct lod_it *it = (struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       it->lit_obj->do_index_ops->dio_it.fini(env, it->lit_it);
+
+       /* the iterator not in use any more */
+       it->lit_obj = NULL;
+       it->lit_it = NULL;
+}
+
+int lod_it_get(const struct lu_env *env, struct dt_it *di,
+              const struct dt_key *key)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.get(env, it->lit_it, key);
+}
+
+void lod_it_put(const struct lu_env *env, struct dt_it *di)
+{
+       struct lod_it *it = (struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.put(env, it->lit_it);
+}
+
+int lod_it_next(const struct lu_env *env, struct dt_it *di)
+{
+       struct lod_it *it = (struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.next(env, it->lit_it);
+}
+
+struct dt_key *lod_it_key(const struct lu_env *env, const struct dt_it *di)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.key(env, it->lit_it);
+}
+
+int lod_it_key_size(const struct lu_env *env, const struct dt_it *di)
+{
+       struct lod_it *it = (struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.key_size(env, it->lit_it);
+}
+
+int lod_it_rec(const struct lu_env *env, const struct dt_it *di,
+              struct dt_rec *rec, __u32 attr)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.rec(env, it->lit_it, rec, attr);
+}
+
+__u64 lod_it_store(const struct lu_env *env, const struct dt_it *di)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.store(env, it->lit_it);
+}
+
+int lod_it_load(const struct lu_env *env, const struct dt_it *di, __u64 hash)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
 
-       return next->do_index_ops->dio_it.init(env, next, attr, capa);
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.load(env, it->lit_it, hash);
+}
+
+int lod_it_key_rec(const struct lu_env *env, const struct dt_it *di,
+                  void* key_rec)
+{
+       const struct lod_it *it = (const struct lod_it *)di;
+
+       LOD_CHECK_IT(env, it);
+       return it->lit_obj->do_index_ops->dio_it.key_rec(env, it->lit_it, key_rec);
 }
 
 static struct dt_index_operations lod_index_ops = {
-       .dio_lookup         = lod_index_lookup,
-       .dio_declare_insert = lod_declare_index_insert,
-       .dio_insert         = lod_index_insert,
-       .dio_declare_delete = lod_declare_index_delete,
-       .dio_delete         = lod_index_delete,
-       .dio_it     = {
-               .init       = lod_it_init,
+       .dio_lookup             = lod_index_lookup,
+       .dio_declare_insert     = lod_declare_index_insert,
+       .dio_insert             = lod_index_insert,
+       .dio_declare_delete     = lod_declare_index_delete,
+       .dio_delete             = lod_index_delete,
+       .dio_it = {
+               .init           = lod_it_init,
+               .fini           = lod_it_fini,
+               .get            = lod_it_get,
+               .put            = lod_it_put,
+               .next           = lod_it_next,
+               .key            = lod_it_key,
+               .key_size       = lod_it_key_size,
+               .rec            = lod_it_rec,
+               .store          = lod_it_store,
+               .load           = lod_it_load,
+               .key_rec        = lod_it_key_rec,
        }
 };
 
@@ -301,9 +422,11 @@ static int lod_declare_xattr_set(const struct lu_env *env,
         * allow to declare predefined striping on a new (!mode) object
         * which is supposed to be replay of regular file creation
         * (when LOV setting is declared)
+        * LU_XATTR_REPLACE is set to indicate a layout swap
         */
        mode = dt->do_lu.lo_header->loh_attr & S_IFMT;
-       if ((S_ISREG(mode) || !mode) && !strcmp(name, XATTR_NAME_LOV)) {
+       if ((S_ISREG(mode) || !mode) && !strcmp(name, XATTR_NAME_LOV) &&
+            !(fl & LU_XATTR_REPLACE)) {
                /*
                 * this is a request to manipulate object's striping
                 */
@@ -388,9 +511,9 @@ static int lod_xattr_set(const struct lu_env *env,
                         const char *name, int fl, struct thandle *th,
                         struct lustre_capa *capa)
 {
-       struct dt_object *next = dt_object_child(dt);
-       __u32             attr;
-       int               rc;
+       struct dt_object        *next = dt_object_child(dt);
+       __u32                    attr;
+       int                      rc;
        ENTRY;
 
        attr = dt->do_lu.lo_header->loh_attr & S_IFMT;
@@ -402,12 +525,15 @@ static int lod_xattr_set(const struct lu_env *env,
                        rc = dt_xattr_set(env, next, buf, name, fl, th, capa);
 
        } else if (S_ISREG(attr) && !strcmp(name, XATTR_NAME_LOV)) {
-               /*
-                * XXX: check striping match what we already have
-                * during req replay, declare_xattr_set() defines striping,
-                * then create() does the work
-                */
-               rc = lod_striping_create(env, dt, NULL, NULL, th);
+               /* in case of lov EA swap, just set it
+                * if not, it is a replay so check striping match what we
+                * already have during req replay, declare_xattr_set()
+                * defines striping, then create() does the work
+               */
+               if (fl & LU_XATTR_REPLACE)
+                       rc = dt_xattr_set(env, next, buf, name, fl, th, capa);
+               else
+                       rc = lod_striping_create(env, dt, NULL, NULL, th);
                RETURN(rc);
        } else {
                /*
@@ -634,6 +760,53 @@ static void lod_ah_init(const struct lu_env *env,
        EXIT;
 }
 
+#define ll_do_div64(aaa,bbb)    do_div((aaa), (bbb))
+/*
+ * this function handles a special case when truncate was done
+ * on a stripeless object and now striping is being created
+ * we can't lose that size, so we have to propagate it to newly
+ * created object
+ */
+static int lod_declare_init_size(const struct lu_env *env,
+                                struct dt_object *dt, struct thandle *th)
+{
+       struct dt_object   *next = dt_object_child(dt);
+       struct lod_object  *lo = lod_dt_obj(dt);
+       struct lu_attr     *attr = &lod_env_info(env)->lti_attr;
+       uint64_t            size, offs;
+       int                 rc, stripe;
+       ENTRY;
+
+       /* XXX: we support the simplest (RAID0) striping so far */
+       LASSERT(lo->ldo_stripe || lo->ldo_stripenr == 0);
+       LASSERT(lo->ldo_stripe_size > 0);
+
+       rc = dt_attr_get(env, next, attr, BYPASS_CAPA);
+       LASSERT(attr->la_valid & LA_SIZE);
+       if (rc)
+               RETURN(rc);
+
+       size = attr->la_size;
+       if (size == 0)
+               RETURN(0);
+
+       /* ll_do_div64(a, b) returns a % b, and a = a / b */
+       ll_do_div64(size, (__u64) lo->ldo_stripe_size);
+       stripe = ll_do_div64(size, (__u64) lo->ldo_stripenr);
+
+       size = size * lo->ldo_stripe_size;
+       offs = attr->la_size;
+       size += ll_do_div64(offs, lo->ldo_stripe_size);
+
+       attr->la_valid = LA_SIZE;
+       attr->la_size = size;
+
+       rc = dt_declare_attr_set(env, lo->ldo_stripe[stripe], attr, th);
+
+       RETURN(rc);
+}
+
+
 /**
  * Create declaration of striped object
  */
@@ -673,6 +846,14 @@ int lod_declare_striped_object(const struct lu_env *env, struct dt_object *dt,
        if (rc)
                GOTO(out, rc);
 
+       /*
+        * if striping is created with local object's size > 0,
+        * we have to propagate this size to specific object
+        * the case is possible only when local object was created previously
+        */
+       if (dt_object_exists(next))
+               rc = lod_declare_init_size(env, dt, th);
+
 out:
        RETURN(rc);
 }
@@ -852,15 +1033,8 @@ static int lod_index_try(const struct lu_env *env, struct dt_object *dt,
        LASSERT(next->do_ops->do_index_try);
 
        rc = next->do_ops->do_index_try(env, next, feat);
-       if (next->do_index_ops && dt->do_index_ops == NULL) {
+       if (next->do_index_ops && dt->do_index_ops == NULL)
                dt->do_index_ops = &lod_index_ops;
-               /* XXX: iterators don't accept device, so bypass LOD */
-               /* will be fixed with DNE */
-               if (lod_index_ops.dio_it.fini == NULL) {
-                       lod_index_ops.dio_it = next->do_index_ops->dio_it;
-                       lod_index_ops.dio_it.init = lod_it_init;
-               }
-       }
 
        RETURN(rc);
 }