summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2012-11-28 14:32:00 -0500
committerSteve Dickson <steved@redhat.com>2012-11-28 14:48:01 -0500
commitc889e30a376e18fdef8ec74ade9897aa9e3d803a (patch)
tree29336165bfe303b5f3389b4d85b51a72a11de0ec
parenta56989b6658c3555d965f51ff636754dec440e87 (diff)
downloadnfs-utils-c889e30a376e18fdef8ec74ade9897aa9e3d803a.tar.gz
nfs-utils-c889e30a376e18fdef8ec74ade9897aa9e3d803a.tar.xz
nfs-utils-c889e30a376e18fdef8ec74ade9897aa9e3d803a.zip
gssd_proc: use pollsize, not FD_ALLOC_BLOCK, in get_poll_index()
get_poll_index wants to walk the entire "pollarray", but uses the constant FD_ALLOC_BLOCK, rather than the variable pollsize (which has the same value). If we want to make the size of the array variable, it is best not to use the constant. As pollsize is 'unsigned long', 'i' should be too. Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--utils/gssd/gssd_proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c
index 2fba7de..ba118d7 100644
--- a/utils/gssd/gssd_proc.c
+++ b/utils/gssd/gssd_proc.c
@@ -387,10 +387,10 @@ process_clnt_dir_files(struct clnt_info * clp)
static int
get_poll_index(int *ind)
{
- int i;
+ unsigned int i;
*ind = -1;
- for (i=0; i<FD_ALLOC_BLOCK; i++) {
+ for (i=0; i<pollsize; i++) {
if (pollarray[i].events == 0) {
*ind = i;
break;