Fix memory allocation warnings at shutdown
authorMarc Dionne <marc.c.dionne@gmail.com>
Sat, 31 Oct 2009 12:54:52 +0000 (08:54 -0400)
committerDerrick Brashear <shadow|account-1000005@unknown>
Mon, 2 Nov 2009 12:43:02 +0000 (04:43 -0800)
commit5a537f071970c38881fde1ad8508775fafd7489d
treef7f8e07ae2086a00c31f934387e71fe0d371ab3a
parent8b3d2c1a3c9c430bb28e8d209d8399a9dc635f4b
Fix memory allocation warnings at shutdown

At shutdown we check for unfreed memory allocated with AllocSmallSpace
and AllocLargeSpace and complain in the syslog if there are dangling
pieces.  This patch takes care of a few cases that always showed up
as warnings, even after a simple start-stop of the client.

- The cacheInode file needs to be closed before the checks, since it
uses a large piece for its struct file.

- The ICL logging code allocates 6 small pieces that are never freed.
Add a shutdown_icl() function that releases everything.  While we're
at it, correct one place where we allocated with afs_osi_Alloc but
freed with osi_FreeSmallSpace, confusing our accounting.

Change-Id: I4c28c848f155dec9d89e6199cde34209227ca5c9
Reviewed-on: http://gerrit.openafs.org/758
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
src/afs/afs_call.c
src/afs/afs_icl.c
src/afs/afs_prototypes.h