On Nov. 10, 2008, 22:43 +0200, Benny Halevy <bhalevy@xxxxxxxxxxx> wrote: > From: Marc Eshel <eshel@xxxxxxxxxxxxxxx> > > Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxx> > --- > fs/nfsd/nfs4state.c | 3 +++ > include/linux/nfsd/state.h | 3 +++ > 2 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c > index 8c1b5d9..7406826 100644 > --- a/fs/nfsd/nfs4state.c > +++ b/fs/nfsd/nfs4state.c > @@ -457,6 +457,9 @@ static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir) > INIT_LIST_HEAD(&clp->cl_strhash); > INIT_LIST_HEAD(&clp->cl_openowners); > INIT_LIST_HEAD(&clp->cl_delegations); > +#if defined(CONFIG_NFSD_V4_1) > + INIT_LIST_HEAD(&clp->cl_sessions); > +#endif /* CONFIG_NFSD_V4_1 */ > INIT_LIST_HEAD(&clp->cl_lru); > return clp; > } > diff --git a/include/linux/nfsd/state.h b/include/linux/nfsd/state.h > index 2f28ad4..28c42ea 100644 > --- a/include/linux/nfsd/state.h > +++ b/include/linux/nfsd/state.h > @@ -187,6 +187,9 @@ struct nfs4_client { > struct list_head cl_strhash; /* hash by cl_name */ > struct list_head cl_openowners; > struct list_head cl_delegations; > +#if defined(CONFIG_NFSD_V4_1) > + struct list_head cl_sessions; > +#endif /* CONFIG_NFSD_V4_1 */ review 11-12: move this ifdef down and unify with cl_exchange_flags et-al. > struct list_head cl_lru; /* tail queue */ > struct xdr_netobj cl_name; /* id generated by client */ > char cl_recdir[HEXDIR_LEN]; /* recovery dir */ -- 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