linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/46] nfs41 sessions infrastructure
@ 2009-03-03 23:28 Benny Halevy
  2009-03-03 23:51 ` [PATCH 02/46] nfs41: Add Kconfig symbols for NFSv4.1 Benny Halevy
                   ` (44 more replies)
  0 siblings, 45 replies; 63+ messages in thread
From: Benny Halevy @ 2009-03-03 23:28 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: NFS list, pNFS Mailing List

Trond,

The following patchset implements infrastructure for nfs41 sessions
in the kernel's nfs client.  The patches are based on v2.6.29-rc6
are are supposed to be fully bisactable and ready for review
and, hopefully, submission upstream.

(To see the whole context, see the full tree for nfs41 and pnfs:
git://linux-nfs.org/~bhalevy/linux-pnfs.git
The nfs41-for-2.6.30 branch holds this patchset
nfs41-latest and pnfs-all-latest are shortcuts for
the latest nfs41 and pnfs patches, respectively)

"TOC"

Misc:
[PATCH 01/46] nfs41: common protocol definitions
[PATCH 02/46] nfs41: Add Kconfig symbols for NFSv4.1

Implement the minorversion mount option:
[PATCH 03/46] nfs41: define NFS4_MAX_MINOR_VERSION based on CONFIG_NFS_V4_1
[PATCH 04/46] nfs41: nfs_client.cl_minorversion
[PATCH 05/46] nfs41: add mount command option minorversion
[PATCH 06/46] nfs41: Use mount minorversion option
[PATCH 07/46] nfs41: translate NFS4ERR_MINOR_VERS_MISMATCH to EPROTONOSUPPORT


Set the stage for adding nfs41 sequence args and res to xdr ops
args and res data structures:
[PATCH 08/46] nfs41: client xdr definitions
[PATCH 09/46] nfs41: sessions client infrastructure
[PATCH 10/46] nfs41: find slot
[PATCH 11/46] nfs41: free slot
[PATCH 12/46] nfs41: use nfs4_server_caps_arg
[PATCH 13/46] nfs41: use nfs4_readlink_res
[PATCH 14/46] nfs41: use nfs4_statfs_res
[PATCH 15/46] nfs41: use nfs4_fsinfo_res
[PATCH 16/46] nfs41: use nfs4_pathconf_res
[PATCH 17/46] nfs41: use nfs4_getaclres
[PATCH 18/46] NFS: get rid of unused xdr decode_setattr(, res) argument
[PATCH 19/46] nfs41: use nfs4_setaclres
[PATCH 20/46] nfs41: use nfs4_fs_locations_res

Encode minorversion in compound header:
[PATCH 21/46] sunrpc: add cl_private field to struct rpc_clnt
[PATCH 22/46] nfs41: sunrpc: use private void pointer in rpc_clnt
[PATCH 23/46] nfs41: encode minorversion in compound header


xdr scaffolding for sequence x-coding:
[PATCH 24/46] NFS: fix decode_fs_locations_maxsz
[PATCH 25/46] NFS: use decode_change_info_maxsz for xdr maxsz calculations
[PATCH 26/46] NFS: define and initialize compound_hdr.replen
[PATCH 27/46] NFS: update hdr->replen for every encode op
[PATCH 28/46] NFS: use dynamically computed compound_hdr.replen for xdr_inline_pages offset
[PATCH 29/46] nfs41: xdr {encode,decode}_sequence

rpc level support for session:
[PATCH 30/46] nfs41: stubs for nfs41 procedures
[PATCH 31/46] nfs41: introduce nfs4_call_sync
[PATCH 32/46] nfs41: set up seq_res.sr_slotid
[PATCH 33/46] nfs41: nfs4_setup_sequence
[PATCH 34/46] nfs41: setup_sequence method
[PATCH 35/46] nfs41: nfs41_sequence_free_slot
[PATCH 36/46] nfs41: nfs41_sequence_done
[PATCH 37/46] nfs41: nfs41_call_sync_done
[PATCH 38/46] nfs41: close sequence setup/done support
[PATCH 39/46] nfs41: open sequence setup/done support
[PATCH 40/46] nfs41: lock sequence setup/done support
[PATCH 41/46] nfs41: locku sequence setup/done support
[PATCH 42/46] nfs41: unlink sequence setup/done support
[PATCH 43/46] nfs41: read sequence setup/done support
[PATCH 44/46] nfs41 write sequence setup done support
[PATCH 45/46] nfs41 commit sequence setup done support
[PATCH 46/46] nfs41 delegreturn sequence setup done support

^ permalink raw reply	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2009-03-30 12:40 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-03 23:28 [PATCH 0/46] nfs41 sessions infrastructure Benny Halevy
2009-03-03 23:51 ` [PATCH 02/46] nfs41: Add Kconfig symbols for NFSv4.1 Benny Halevy
2009-03-03 23:52 ` [PATCH 03/46] nfs41: define NFS4_MAX_MINOR_VERSION based on CONFIG_NFS_V4_1 Benny Halevy
2009-03-03 23:52 ` [PATCH 04/46] nfs41: nfs_client.cl_minorversion Benny Halevy
2009-03-29 16:02   ` Trond Myklebust
     [not found]     ` <1238342562.10999.0.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-29 16:57       ` Benny Halevy
2009-03-03 23:52 ` [PATCH 05/46] nfs41: add mount command option minorversion Benny Halevy
2009-03-29 16:18   ` Trond Myklebust
     [not found]     ` <1238343501.10999.6.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-30  8:01       ` Benny Halevy
2009-03-03 23:52 ` [PATCH 06/46] nfs41: Use mount minorversion option Benny Halevy
2009-03-29 16:16   ` Trond Myklebust
2009-03-03 23:52 ` [PATCH 07/46] nfs41: translate NFS4ERR_MINOR_VERS_MISMATCH to EPROTONOSUPPORT Benny Halevy
2009-03-03 23:53 ` [PATCH 08/46] nfs41: client xdr definitions Benny Halevy
2009-03-03 23:53 ` [PATCH 09/46] nfs41: sessions client infrastructure Benny Halevy
2009-03-29 16:31   ` Trond Myklebust
     [not found]     ` <1238344265.10999.14.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-30  8:30       ` Benny Halevy
2009-03-03 23:53 ` [PATCH 10/46] nfs41: find slot Benny Halevy
2009-03-03 23:53 ` [PATCH 11/46] nfs41: free slot Benny Halevy
2009-03-03 23:53 ` [PATCH 12/46] nfs41: use nfs4_server_caps_arg Benny Halevy
2009-03-03 23:54 ` [PATCH 13/46] nfs41: use nfs4_readlink_res Benny Halevy
2009-03-03 23:54 ` [PATCH 14/46] nfs41: use nfs4_statfs_res Benny Halevy
2009-03-03 23:54 ` [PATCH 15/46] nfs41: use nfs4_fsinfo_res Benny Halevy
2009-03-03 23:54 ` [PATCH 16/46] nfs41: use nfs4_pathconf_res Benny Halevy
2009-03-03 23:54 ` [PATCH 17/46] nfs41: use nfs4_getaclres Benny Halevy
2009-03-29 17:28   ` Trond Myklebust
     [not found]     ` <1238347692.10999.16.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-30  8:47       ` Benny Halevy
2009-03-03 23:55 ` [PATCH 18/46] NFS: get rid of unused xdr decode_setattr(, res) argument Benny Halevy
2009-03-03 23:55 ` [PATCH 19/46] nfs41: use nfs4_setaclres Benny Halevy
2009-03-29 17:30   ` Trond Myklebust
     [not found]     ` <1238347823.10999.17.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-29 17:48       ` Benny Halevy
2009-03-03 23:55 ` [PATCH 20/46] nfs41: use nfs4_fs_locations_res Benny Halevy
2009-03-03 23:55 ` [PATCH 21/46] sunrpc: add cl_private field to struct rpc_clnt Benny Halevy
2009-03-03 23:55 ` [PATCH 22/46] nfs41: sunrpc: use private void pointer in rpc_clnt Benny Halevy
2009-03-03 23:57 ` [PATCH 23/46] nfs41: encode minorversion in compound header Benny Halevy
2009-03-03 23:57 ` [PATCH 24/46] NFS: fix decode_fs_locations_maxsz Benny Halevy
2009-03-29 17:40   ` Trond Myklebust
     [not found]     ` <1238348417.23986.1.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-30 11:32       ` Benny Halevy
2009-03-03 23:58 ` [PATCH 25/46] NFS: use decode_change_info_maxsz for xdr maxsz calculations Benny Halevy
2009-03-03 23:58 ` [PATCH 26/46] NFS: define and initialize compound_hdr.replen Benny Halevy
2009-03-03 23:58 ` [PATCH 27/46] NFS: update hdr->replen for every encode op Benny Halevy
2009-03-29 17:46   ` Trond Myklebust
     [not found]     ` <1238348809.23986.4.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-03-29 19:25       ` Benny Halevy
2009-03-03 23:58 ` [PATCH 28/46] NFS: use dynamically computed compound_hdr.replen for xdr_inline_pages offset Benny Halevy
2009-03-29 19:30   ` [pnfs] " Benny Halevy
2009-03-30 12:40   ` Benny Halevy
2009-03-03 23:58 ` [PATCH 29/46] nfs41: xdr {encode,decode}_sequence Benny Halevy
2009-03-03 23:59 ` [PATCH 30/46] nfs41: stubs for nfs41 procedures Benny Halevy
2009-03-03 23:59 ` [PATCH 31/46] nfs41: introduce nfs4_call_sync Benny Halevy
2009-03-03 23:59 ` [PATCH 32/46] nfs41: set up seq_res.sr_slotid Benny Halevy
2009-03-03 23:59 ` [PATCH 33/46] nfs41: nfs4_setup_sequence Benny Halevy
2009-03-04  0:00 ` [PATCH 34/46] nfs41: setup_sequence method Benny Halevy
2009-03-04  0:00 ` [PATCH 35/46] nfs41: nfs41_sequence_free_slot Benny Halevy
2009-03-04  0:00 ` [PATCH 36/46] nfs41: nfs41_sequence_done Benny Halevy
2009-03-04  0:00 ` [PATCH 37/46] nfs41: nfs41_call_sync_done Benny Halevy
2009-03-04  0:00 ` [PATCH 38/46] nfs41: close sequence setup/done support Benny Halevy
2009-03-04  0:01 ` [PATCH 39/46] nfs41: open " Benny Halevy
2009-03-04  0:01 ` [PATCH 40/46] nfs41: lock " Benny Halevy
2009-03-04  0:01 ` [PATCH 41/46] nfs41: locku " Benny Halevy
2009-03-04  0:01 ` [PATCH 42/46] nfs41: unlink " Benny Halevy
2009-03-04  0:01 ` [PATCH 43/46] nfs41: read " Benny Halevy
2009-03-04  0:01 ` [PATCH 44/46] nfs41 write sequence setup done support Benny Halevy
2009-03-04  0:02 ` [PATCH 45/46] nfs41 commit " Benny Halevy
2009-03-04  0:02 ` [PATCH 46/46] nfs41 delegreturn " Benny Halevy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).