Whamcloud - gitweb
b=5150
[fs/lustre-release.git] / lustre / include / linux / obd_class.h
index dd05896..6a2a682 100644 (file)
@@ -673,7 +673,7 @@ static inline int obd_connect(struct lustre_handle *conn,
         RETURN(rc);
 }
 
-static inline int obd_connect_post(struct obd_export *exp)
+static inline int obd_connect_post(struct obd_export *exp, unsigned long flags)
 {
         int rc;
         ENTRY;
@@ -682,7 +682,7 @@ static inline int obd_connect_post(struct obd_export *exp)
         if (!OBT(exp->exp_obd) || !OBP((exp->exp_obd), connect_post))
                 RETURN(0);
         OBD_COUNTER_INCREMENT(exp->exp_obd, connect_post);
-        rc = OBP(exp->exp_obd, connect_post)(exp);
+        rc = OBP(exp->exp_obd, connect_post)(exp, flags);
         RETURN(rc);
 }