Whamcloud - gitweb
LU-4585 out: remove OBJECT_UPDATE_PER_RPC_MAX limit.
[fs/lustre-release.git] / lustre / mdd / mdd_trans.c
index 8c2b74e..96d7c88 100644 (file)
@@ -60,9 +60,9 @@ int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
         return mdd_child_ops(mdd)->dt_trans_start(env, mdd->mdd_child, th);
 }
 
-void mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
-                    int result, struct thandle *handle)
+int mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
+                  int result, struct thandle *handle)
 {
        handle->th_result = result;
-       mdd_child_ops(mdd)->dt_trans_stop(env, mdd->mdd_child, handle);
+       return mdd_child_ops(mdd)->dt_trans_stop(env, mdd->mdd_child, handle);
 }