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;
}
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,