From 7069325477ae9a3cd3c6600d9040342dfc577837 Mon Sep 17 00:00:00 2001 From: nikita Date: Wed, 31 May 2006 11:10:30 +0000 Subject: [PATCH] lu_object_find(): fix site->ls_busy accouting bug, found by Huang Hua --- lustre/obdclass/lu_object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lustre/obdclass/lu_object.c b/lustre/obdclass/lu_object.c index dd661f1..7c2f25c 100644 --- a/lustre/obdclass/lu_object.c +++ b/lustre/obdclass/lu_object.c @@ -324,6 +324,7 @@ struct lu_object *lu_object_find(const struct lu_context *ctxt, if (shadow == NULL) { hlist_add_head(&o->lo_header->loh_hash, bucket); list_add_tail(&s->ls_lru, &o->lo_header->loh_lru); + ++ s->ls_busy; shadow = o; o = NULL; } else -- 1.8.3.1