};
static struct obd_export *
-fld_client_get_export(struct lu_client_fld *fld, __u64 seq)
+fld_client_get_target(struct lu_client_fld *fld, __u64 seq)
{
struct obd_export *fld_exp;
int count = 0, hash;
/* add export to FLD. This is usually done by CMM and LMV as they are main users
* of FLD module. */
int
-fld_client_add_export(struct lu_client_fld *fld,
+fld_client_add_target(struct lu_client_fld *fld,
struct obd_export *exp)
{
struct client_obd *cli = &exp->exp_obd->u.cli;
RETURN(0);
}
-EXPORT_SYMBOL(fld_client_add_export);
+EXPORT_SYMBOL(fld_client_add_target);
/* remove export from FLD */
int
-fld_client_del_export(struct lu_client_fld *fld,
+fld_client_del_target(struct lu_client_fld *fld,
struct obd_export *exp)
{
struct obd_export *fld_exp;
spin_unlock(&fld->fld_lock);
RETURN(-ENOENT);
}
-EXPORT_SYMBOL(fld_client_del_export);
+EXPORT_SYMBOL(fld_client_del_target);
#ifdef LPROCFS
static int
__u32 rc;
ENTRY;
- fld_exp = fld_client_get_export(fld, seq);
+ fld_exp = fld_client_get_target(fld, seq);
if (!fld_exp)
RETURN(-EINVAL);
md_fld.mf_seq = seq;
fld_cache_delete(fld_cache, seq);
#endif
- fld_exp = fld_client_get_export(fld, seq);
+ fld_exp = fld_client_get_target(fld, seq);
if (!fld_exp)
RETURN(-EINVAL);
int rc;
ENTRY;
- fld_exp = fld_client_get_export(fld, seq);
+ fld_exp = fld_client_get_target(fld, seq);
if (!fld_exp)
RETURN(-EINVAL);
int fld_client_delete(struct lu_client_fld *fld,
__u64 seq);
-int fld_client_add_export(struct lu_client_fld *fld,
+int fld_client_add_target(struct lu_client_fld *fld,
struct obd_export *exp);
-int fld_client_del_export(struct lu_client_fld *fld,
+int fld_client_del_target(struct lu_client_fld *fld,
struct obd_export *exp);
#endif