From 1e90b9db5f5f389d7ebbb2b10da0b903b0b9196e Mon Sep 17 00:00:00 2001 From: Landen Date: Mon, 22 Feb 2010 11:19:38 +0800 Subject: [PATCH] b=21869 improve filter_fid2dentry() error message i=landen i=girish --- 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 7823464..ec22359 100644 --- a/lustre/obdfilter/filter.c +++ b/lustre/obdfilter/filter.c @@ -1433,8 +1433,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