Whamcloud - gitweb
LU-12616 obclass: fix MDS start/stop race
[fs/lustre-release.git] / lustre / ofd / ofd_trans.c
index 70d5218..41e0971 100644 (file)
@@ -23,7 +23,7 @@
  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2012, 2014 Intel Corporation.
+ * Copyright (c) 2012, 2014, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -106,10 +106,13 @@ int ofd_trans_start(const struct lu_env *env, struct ofd_device *ofd,
  * \param[in] ofd      OFD device
  * \param[in] th       transaction handle
  * \param[in] rc       result code of whole operation
+ *
+ * \retval             0 if successful
+ * \retval             negative value if case of error
  */
-void ofd_trans_stop(const struct lu_env *env, struct ofd_device *ofd,
+int ofd_trans_stop(const struct lu_env *env, struct ofd_device *ofd,
                    struct thandle *th, int rc)
 {
        th->th_result = rc;
-       dt_trans_stop(env, ofd->ofd_osd, th);
+       return dt_trans_stop(env, ofd->ofd_osd, th);
 }