sync_completed_fd handler has to be closed when array is closing. This is in pair to open handler code. Signed-off-by: Adam Kwolek <adam.kwolek@xxxxxxxxx> --- managemon.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/managemon.c b/managemon.c index 12a3792..df491ba 100644 --- a/managemon.c +++ b/managemon.c @@ -120,6 +120,7 @@ static void close_aa(struct active_array *aa) close(aa->action_fd); close(aa->info.state_fd); close(aa->resync_start_fd); + close(aa->sync_completed_fd); } static void free_aa(struct active_array *aa) -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html