Mi Jinlong 写道: > At cltsetup(), for address checking, it should use clp's naddr for index, > not cltarg's naddr(and it's always zero here). After sending this patch, I find this problem was introduced by 6299a. -- ---- thanks Mi Jinlong > > Signed-off-by: Mi Jinlong <mijinlong@xxxxxxxxxxxxxx> > --- > support/export/nfsctl.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/support/export/nfsctl.c b/support/export/nfsctl.c > index f89c644..2950a90 100644 > --- a/support/export/nfsctl.c > +++ b/support/export/nfsctl.c > @@ -78,7 +78,7 @@ cltsetup(struct nfsctl_client *cltarg, nfs_client *clp) > str_tolower(cltarg->cl_ident); > > j = 0; > - for (i = 0; i < cltarg->cl_naddr && i < NFSCLNT_ADDRMAX; i++) { > + for (i = 0; i < clp->m_naddr && i < NFSCLNT_ADDRMAX; i++) { > const struct sockaddr_in *sin = get_addrlist_in(clp, i); > if (sin->sin_family == AF_INET) > cltarg->cl_addrlist[j++] = sin->sin_addr; -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html