From b04b957f2f27cf03958b456b3cec097d1e04923c Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Mon, 6 Apr 2015 12:34:55 +0530 Subject: rpc: Introduce attribute throttle for rpcsvc_t This attribute will be used to set/unset throttling for a rpcsvc_t program subsequently. Following APIs have been added to get/set throttle. int rpcsvc_set_throttle (rpcsvc_t svc, gf_boolean_t value); gf_boolean_t rpcsvc_get_throttle (rpcsvc_t svc); Change-Id: Ica8a9166cef22eb92d81fe68e48d0a5e24a1ef95 BUG: 1212385 Signed-off-by: Vijay Bellur Reviewed-on: http://review.gluster.org/10267 Tested-by: NetBSD Build System Reviewed-by: Niels de Vos Tested-by: Gluster Build System Reviewed-by: Raghavendra G Tested-by: Raghavendra G --- rpc/rpc-lib/src/rpcsvc-common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rpc/rpc-lib/src/rpcsvc-common.h') diff --git a/rpc/rpc-lib/src/rpcsvc-common.h b/rpc/rpc-lib/src/rpcsvc-common.h index 3c16abeb77a..832645bd12a 100644 --- a/rpc/rpc-lib/src/rpcsvc-common.h +++ b/rpc/rpc-lib/src/rpcsvc-common.h @@ -77,6 +77,8 @@ typedef struct rpcsvc_state { /* per-client limit of outstanding rpc requests */ int outstanding_rpc_limit; gf_boolean_t addr_namelookup; + /* determine whether throttling is needed, by default OFF */ + gf_boolean_t throttle; } rpcsvc_t; /* DRC START */ -- cgit