linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] NFS v4.2 support to both the server and client (take 3)
@ 2013-02-22 14:34 Steve Dickson
  2013-02-22 14:34 ` [PATCH 1/2] NFSv4.2: Added NFS v4.2 support to the NFS client Steve Dickson
  2013-02-22 14:34 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
  0 siblings, 2 replies; 17+ messages in thread
From: Steve Dickson @ 2013-02-22 14:34 UTC (permalink / raw)
  To: Trond Myklebust, J. Bruce Fields; +Cc: Linux NFS Mailing list

Changes:
  * fixed typo in Kconfig 

These patches add v4.2 support to both the server and client. 
The v4.1 code is reused to support this new version. Main reason
for this new version is to enable features like Label NFS.

Note, these patches apply on top of the lNFS: 3.8-rc3 release
patches. Although the only conflict, if applied without those 
patches, would be in the Kconfig files 

Steve Dickson (2):
  NFSv4.2: Added NFS v4.2 support to the NFS client
  NFSDv4.2: Added NFS v4.2 support to the NFS server

 fs/nfs/Kconfig       | 12 +++++++++++-
 fs/nfs/callback.c    |  3 +++
 fs/nfs/nfs4client.c  |  5 +++++
 fs/nfs/nfs4proc.c    |  3 +++
 fs/nfs/super.c       |  7 ++++++-
 fs/nfsd/nfs4xdr.c    |  1 +
 fs/nfsd/nfsd.h       |  2 +-
 include/linux/nfs4.h |  4 ++++
 8 files changed, 34 insertions(+), 3 deletions(-)

-- 
1.8.1.2


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/2]  NFS v4.2 support to both the server and client (take 4)
@ 2013-02-22 17:09 Steve Dickson
  2013-02-22 17:09 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Dickson @ 2013-02-22 17:09 UTC (permalink / raw)
  To: Trond Myklebust, J. Bruce Fields; +Cc: Linux NFS Mailing list

Changes:
  * fixed typo in Kconfig 
  * Reworked verbiage in Kconfig file
  * Merged cases in nfs_callback_up_net()
  * Created a new nfs4_minor_version_ops structure for minor version 2
  * Correctly initialized minor number in nfsd_exchange_id()
  * Correct a comment in the nfs4_cb_conn structure.

These patches add v4.2 support to both the server and client. 
The v4.1 code is reused to support this new version. Main reason
for this new version is to enable features like Label NFS.

Note, these patches apply on top of the lNFS: 3.8-rc3 release
patches. Although the only conflict, if applied without those 
patches, would be in the Kconfig files 

Steve Dickson (2):
  NFSv4.2: Added NFS v4.2 support to the NFS client
  NFSDv4.2: Added NFS v4.2 support to the NFS server

 fs/nfs/Kconfig       | 33 +++++++++++++++++++--------------
 fs/nfs/callback.c    |  1 +
 fs/nfs/nfs4client.c  |  5 +++++
 fs/nfs/nfs4proc.c    | 15 +++++++++++++++
 fs/nfs/super.c       |  7 ++++++-
 fs/nfsd/nfs4state.c  |  2 +-
 fs/nfsd/nfs4xdr.c    |  1 +
 fs/nfsd/nfsd.h       |  2 +-
 fs/nfsd/state.h      |  2 +-
 include/linux/nfs4.h |  4 ++++
 10 files changed, 54 insertions(+), 18 deletions(-)

-- 
1.8.1.2


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/2] NFS v4.2 support to both the server and client (take 2)
@ 2013-02-22  8:47 Steve Dickson
  2013-02-22  8:47 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Dickson @ 2013-02-22  8:47 UTC (permalink / raw)
  To: Trond Myklebust, J. Bruce Fields; +Cc: Linux NFS Mailing list

These patche added v4.2 support to both the server and client. 
Basically the v4.1 code is reused, but the minor version is 
needed to enable features like label NFS.

Note, these patch apply on top of the lNFS: 3.8-rc3 release
patches. Although the only conflict if applied without those patches
would be in the Kconfig files 

Steve Dickson (2):
  NFSv4.2: Added NFS v4.2 support to the NFS client
  NFSDv4.2: Added NFS v4.2 support to the NFS server

 fs/nfs/Kconfig       | 12 +++++++++++-
 fs/nfs/callback.c    |  3 +++
 fs/nfs/nfs4client.c  |  5 +++++
 fs/nfs/nfs4proc.c    |  3 +++
 fs/nfs/super.c       |  7 ++++++-
 fs/nfsd/nfs4xdr.c    |  1 +
 fs/nfsd/nfsd.h       |  2 +-
 include/linux/nfs4.h |  4 ++++
 8 files changed, 34 insertions(+), 3 deletions(-)

-- 
1.8.1.2


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/2] NFS v4.2 support to both the server and client
@ 2013-02-21 22:15 Steve Dickson
  2013-02-21 22:15 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Dickson @ 2013-02-21 22:15 UTC (permalink / raw)
  To: Trond Myklebust, J. Bruce Fields; +Cc: Linux NFS Mailing list

This is the first attempt to added v4.2 support to both
the server and client. Basically the v4.1 code is reused,
but the minor version is needed to enable features like
label NFS.

Steve Dickson (2):
  NFSv4.2: Added NFS v4.2 support to the NFS client
  NFSDv4.2: Added NFS v4.2 support to the NFS server

 fs/nfs/Kconfig       | 11 ++++++++++-
 fs/nfs/callback.c    |  3 +++
 fs/nfs/nfs4client.c  |  5 +++++
 fs/nfs/nfs4proc.c    |  3 +++
 fs/nfs/super.c       |  7 ++++++-
 fs/nfsd/nfs4xdr.c    |  1 +
 fs/nfsd/nfsd.h       |  2 +-
 include/linux/nfs4.h |  4 ++++
 8 files changed, 33 insertions(+), 3 deletions(-)

-- 
1.8.1.2


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

end of thread, other threads:[~2013-02-23 14:50 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-22 14:34 [PATCH 0/2] NFS v4.2 support to both the server and client (take 3) Steve Dickson
2013-02-22 14:34 ` [PATCH 1/2] NFSv4.2: Added NFS v4.2 support to the NFS client Steve Dickson
2013-02-22 14:41   ` Myklebust, Trond
2013-02-22 15:32     ` Steve Dickson
2013-02-22 14:34 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
  -- strict thread matches above, loose matches on Subject: below --
2013-02-22 17:09 [PATCH 0/2] NFS v4.2 support to both the server and client (take 4) Steve Dickson
2013-02-22 17:09 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
2013-02-22 18:05   ` J. Bruce Fields
2013-02-22 18:10     ` J. Bruce Fields
2013-02-23 14:49       ` Steve Dickson
2013-02-23 12:43     ` Steve Dickson
2013-02-23 13:00       ` J. Bruce Fields
2013-02-23 13:01         ` J. Bruce Fields
2013-02-22  8:47 [PATCH 0/2] NFS v4.2 support to both the server and client (take 2) Steve Dickson
2013-02-22  8:47 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
2013-02-21 22:15 [PATCH 0/2] NFS v4.2 support to both the server and client Steve Dickson
2013-02-21 22:15 ` [PATCH 2/2] NFSDv4.2: Added NFS v4.2 support to the NFS server Steve Dickson
2013-02-22 15:26   ` J. Bruce Fields
2013-02-22 15:30     ` Myklebust, Trond
2013-02-22 15:38       ` J. Bruce Fields

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).