From df2dd70e5415a5b9b3e90d7133f39157421ecc09 Mon Sep 17 00:00:00 2001 From: nikita Date: Wed, 17 May 2006 22:04:26 +0000 Subject: [PATCH] mdo_name_insert(): fid is const --- lustre/include/linux/md_object.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/include/linux/md_object.h b/lustre/include/linux/md_object.h index a24a821..fd90061 100644 --- a/lustre/include/linux/md_object.h +++ b/lustre/include/linux/md_object.h @@ -191,8 +191,8 @@ static inline int mdo_mkdir(struct lu_context *cx, struct lu_attr *at, } static inline int mdo_name_insert(struct lu_context *cx, struct md_object *p, - const char *name, struct lu_fid *f, - struct lu_attr *at) + const char *name, const struct lu_fid *f, + struct lu_attr *at) { return p->mo_dir_ops->mdo_name_insert(cx, p, name, f, at); } -- 1.8.3.1