From 85df3e3d43e033b1c25c33e4a74d4b7b59b567b5 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Sun, 21 Jul 2019 18:55:49 -0500 Subject: [PATCH 1/1] afs: Free rx/rxevent resources during shutdown Call shutdown_rx() and shutdown_rxevent() near the end of our shutdown sequence, in order to free various Rx resources and avoid memory leaks. Change-Id: Id2e912295cf760b5ad83057487e6c4c4fadda11b Reviewed-on: https://gerrit.openafs.org/13719 Reviewed-by: Benjamin Kaduk Tested-by: BuildBot --- src/afs/afs_init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/afs/afs_init.c b/src/afs/afs_init.c index 277eb66..f2414f7 100644 --- a/src/afs/afs_init.c +++ b/src/afs/afs_init.c @@ -881,4 +881,6 @@ shutdown_AFS(void) } shutdown_cell(); shutdown_server(); + shutdown_rx(); + shutdown_rxevent(); } -- 1.9.4