From 405e5b91694782b498a7c6aca7fb47776306ce6e Mon Sep 17 00:00:00 2001 From: Jason King <jking@llnl.gov> Date: Wed, 6 Apr 2005 20:32:46 +0000 Subject: [PATCH] * Lowered number of SNI adapters we look for at starup to one * Increased the size of the buffer used to store libstate from 128KB to 1MB --- src/plugins/switch/federation/federation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/switch/federation/federation.h b/src/plugins/switch/federation/federation.h index bfa0919cd7f..50ca7cb2e39 100644 --- a/src/plugins/switch/federation/federation.h +++ b/src/plugins/switch/federation/federation.h @@ -63,8 +63,8 @@ enum { EUNLOAD }; -#define FED_MAXADAPTERS 2 -#define FED_LIBSTATE_LEN (1024 * 128) +#define FED_MAXADAPTERS 1 +#define FED_LIBSTATE_LEN (1024 * 1024 * 1) int fed_alloc_nodeinfo(fed_nodeinfo_t **nh); int fed_build_nodeinfo(fed_nodeinfo_t *np, char *hostname); -- GitLab