X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Finclude%2Flinux%2Fobd_class.h;h=6a2a682275f63ea2bcb7c8a590ac8ef2fbddaa0f;hb=6826bff7ea95ad56076b81a786374917f1069768;hp=dd05896adfeefc12845b74828d2d2182f01ad5c1;hpb=cda2e3e20281a67830b6a4556317fe4b38f218d7;p=fs%2Flustre-release.git diff --git a/lustre/include/linux/obd_class.h b/lustre/include/linux/obd_class.h index dd05896..6a2a682 100644 --- a/lustre/include/linux/obd_class.h +++ b/lustre/include/linux/obd_class.h @@ -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); }