From 75660c121925212073b0bf6848ee2268104d80ef Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 11 Oct 2002 10:46:06 +0000 Subject: [PATCH] Rename obd_punch() parameters to what they should be. --- lustre/include/linux/obd_class.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/include/linux/obd_class.h b/lustre/include/linux/obd_class.h index fdeed1c..d9f2610 100644 --- a/lustre/include/linux/obd_class.h +++ b/lustre/include/linux/obd_class.h @@ -310,7 +310,7 @@ static inline int obd_statfs(struct lustre_handle *conn,struct obd_statfs *osfs) static inline int obd_punch(struct lustre_handle *conn, struct obdo *oa, struct lov_stripe_md *ea, - obd_size count, obd_off offset) + obd_size start, obd_size end) { struct obd_export *exp; int rc; @@ -318,7 +318,7 @@ static inline int obd_punch(struct lustre_handle *conn, struct obdo *oa, OBD_CHECK_SETUP(conn, exp); OBD_CHECK_OP(exp->exp_obd, punch); - rc = OBP(exp->exp_obd, punch)(conn, oa, ea, count, offset); + rc = OBP(exp->exp_obd, punch)(conn, oa, ea, start, end); RETURN(rc); } -- 1.8.3.1