From: Andrew Deason Date: Tue, 10 May 2011 18:45:26 +0000 (-0500) Subject: libafs: GiveUpAllCallBacks at shutdown again X-Git-Tag: upstream/1.8.0_pre1^2~3753 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=330cc7c83bf8470e1e63f6e6d514f1e82008f167;p=packages%2Fo%2Fopenafs.git libafs: GiveUpAllCallBacks at shutdown again Commit cee2c677d7de66a510d05978e3b41dcd5d8aca78 caused the cache manager to give up all callbacks at shutdown. But 76158df491f47de56d1febe1d1d2d17d316c9a74 removed the call to afs_FlushVCBs in afs_shutdown. Put it back. Change-Id: I74b815af485482ab83b9115772e4f4221a731f3e Reviewed-on: http://gerrit.openafs.org/4640 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/afs/afs_call.c b/src/afs/afs_call.c index f82d4cd54..74002368f 100644 --- a/src/afs/afs_call.c +++ b/src/afs/afs_call.c @@ -1367,7 +1367,13 @@ afs_shutdown(void) if (afs_shuttingdown) return; + /* Give up all of our callbacks if we can. This must be done before setting + * afs_shuttingdown, since it calls afs_InitReq, which will fail if + * afs_shuttingdown is set. */ + afs_FlushVCBs(2); + afs_shuttingdown = 1; + if (afs_cold_shutdown) afs_warn("afs: COLD "); else