From: Trond Myklebust Date: Mon, 30 Apr 2012 22:39:20 +0000 (-0400) Subject: NFS: Fix a compile issue when CONFIG_NFS_V4_1 is undefined X-Git-Tag: v3.5-rc1~52^2~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f97615d19c370d1d907ef37f8bcd9c3672851ca;p=profile%2Fcommon%2Fkernel-common.git NFS: Fix a compile issue when CONFIG_NFS_V4_1 is undefined struct nfs_direct_req can't compile when struct pnfs_ds_commit_info is undefined. Reported-by: Bryan Schumaker Signed-off-by: Trond Myklebust Cc: Fred Isaman --- diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index c940d46..6deb8f0 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -1176,6 +1176,11 @@ struct nfs41_free_stateid_res { struct nfs4_sequence_res seq_res; }; +#else + +struct pnfs_ds_commit_info { +}; + #endif /* CONFIG_NFS_V4_1 */ struct nfs_page;