From 098fdcdbe062ba1cee97cca2a9c7c375cb746687 Mon Sep 17 00:00:00 2001 From: Vitaly Fertman Date: Thu, 19 Aug 2010 00:30:04 +0400 Subject: [PATCH] bz=21869 improve filter_fid2dentry() error message o=adilger i=girish i=landen --- lustre/obdfilter/filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/obdfilter/filter.c b/lustre/obdfilter/filter.c index a731840..561872a 100644 --- a/lustre/obdfilter/filter.c +++ b/lustre/obdfilter/filter.c @@ -1487,8 +1487,8 @@ struct dentry *filter_fid2dentry(struct obd_device *obd, if (dir_dentry == NULL) filter_parent_unlock(dparent); if (IS_ERR(dchild)) { - CERROR("%s: child lookup error %ld\n", obd->obd_name, - PTR_ERR(dchild)); + CERROR("%s: object "LPU64":"LPU64" lookup error: rc %ld\n", + obd->obd_name, id, group, PTR_ERR(dchild)); RETURN(dchild); } -- 1.8.3.1