From: adilger Date: Wed, 4 Jun 2003 22:46:46 +0000 (+0000) Subject: Add matching "starting handle" message in the fsfilt_brw_start() path. X-Git-Tag: v1_7_100~1^368~90 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=9133e9a41b96a21571b334eaa97b726a5b7fe9f4;p=fs%2Flustre-release.git Add matching "starting handle" message in the fsfilt_brw_start() path. --- diff --git a/lustre/include/linux/lustre_fsfilt.h b/lustre/include/linux/lustre_fsfilt.h index 1dd9339..f736d4b 100644 --- a/lustre/include/linux/lustre_fsfilt.h +++ b/lustre/include/linux/lustre_fsfilt.h @@ -79,8 +79,7 @@ extern void fsfilt_put_ops(struct fsfilt_operations *fs_ops); static inline void *fsfilt_start(struct obd_device *obd, struct inode *inode, int op) { - void *handle; - handle = obd->obd_fsops->fs_start(inode, op); + void *handle = obd->obd_fsops->fs_start(inode, op); CDEBUG(D_HA, "starting handle %p\n", handle); return handle; } @@ -89,7 +88,9 @@ static inline void *fsfilt_brw_start(struct obd_device *obd, int objcount, struct fsfilt_objinfo *fso, int niocount, struct niobuf_remote *nb) { - return obd->obd_fsops->fs_brw_start(objcount, fso, niocount, nb); + void *handle = obd->obd_fsops->fs_brw_start(objcount, fso, niocount,nb); + CDEBUG(D_HA, "starting handle %p\n", handle); + return handle; } static inline int fsfilt_commit(struct obd_device *obd, struct inode *inode,