public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Support for mounting NFSv4 servers over IPv6
@ 2008-07-11 20:34 Chuck Lever
       [not found] ` <20080711203322.478.52095.stgit-lQeC5l55kZ7wdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Chuck Lever @ 2008-07-11 20:34 UTC (permalink / raw)
  To: steved; +Cc: linux-nfs

Hi Steve-

Here is the latest version of the patches that add support to the text-
based mount.nfs command for mounting NFSv4 servers over IPv6.  This set
replaces the set I sent a couple of days ago.

It was suggested that these be included in the next release of
nfs-utils, 1.1.3.  Kernel support for these features (such as handling raw
IPv6 NFS server addresses properly when mounting) is planned for 2.6.27, so
inclusion of these patches would allow wider testing during .27's rc period.

Mounting NFSv2/v3 servers over IPv6 is more complex.  It requires support
for a scalable rpcbind/portmap client built into nfs-utils, thus it is not
included in the present patch series.  Anyone interested in looking at my
current prototype for this can check out:

  http://git.linux-nfs.org/?p=cel/nfs-utils.git;a=summary

It includes all the patches in this series and the patches I posted last
week for nfs-utils 1.1.3, client-side support for NFSv2/v3 mounting and
unmounting over IPv6, a prototype IPv6-enabled sm-notify command, and
updates to nfs(5) describing IPv6 support for the NFS client.

For what it's worth, I'll be on holiday next week, but I can field any
questions or comments before this Saturday, or when I return.

---

Chuck Lever (14):
      mount command: Remove RPC headers from network.h
      text-based mount command: remove unnecessary headers from stropts.c
      text-based mount options: rename functions in stropts.c
      text-based mount command: Remove unused IPv4-only functions
      text-based mount command: Support raw IPv6 address hostnames
      text-based mount command: Add IPv6 support to set_mandatory_options
      text-based mount command: "mounthost=" option support for IPv6 addresses
      text-based mount command: "clientaddr=" option support for IPv6 addresses
      text-based mount command: "addr=" option support for IPv6 addresses
      text-based mount command: Add helper to construct network addresses
      text-based mount command:  get_client_address support for IPv6
      mount command: Add functions to manage addresses in string form
      text-based mount command: Add headers needed for IPv6 support
      nfs-utils: Introduce new ./configure option: "--enable-ipv6"


 configure.ac            |   29 ++++++
 utils/mount/Makefile.am |    6 +
 utils/mount/error.c     |    2 
 utils/mount/mount.c     |    1 
 utils/mount/network.c   |  237 +++++++++++++++++++++++++++++++++++++++++------
 utils/mount/network.h   |   17 +--
 utils/mount/nfs4mount.c |    2 
 utils/mount/nfsmount.c  |    7 +
 utils/mount/nfsumount.c |   35 +++----
 utils/mount/parse_dev.c |  230 ++++++++++++++++++++++++++++++++++++++++++++++
 utils/mount/parse_dev.h |   28 ++++++
 utils/mount/stropts.c   |  229 ++++++++++++++++++---------------------------
 12 files changed, 617 insertions(+), 206 deletions(-)
 create mode 100644 utils/mount/parse_dev.c
 create mode 100644 utils/mount/parse_dev.h

-- 
Signature

-- 
corporate:    <chuck dot lever at oracle dot com>

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 00/14] Support for mounting NFSv4 servers over IPv6
@ 2008-07-10  0:37 Chuck Lever
       [not found] ` <20080710001725.6137.83845.stgit-lQeC5l55kZ7wdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Chuck Lever @ 2008-07-10  0:37 UTC (permalink / raw)
  To: steved; +Cc: linux-nfs

Hi Steve-

Just for fun, here is the latest version of the patches that add support to
the text-based mount.nfs command for mounting NFSv4 servers over IPv6.  This
patch set applies on top of the patches I posted here last week.

It was suggested that these be included in the next release of
nfs-utils, 1.1.3.  Kernel support for these features (such as handling raw
IPv6 NFS server addresses properly when mounting) is planned for 2.6.27, so
inclusion of these patches would allow wider testing during .27's rc period.

Mounting NFSv2/v3 servers over IPv6 is more complex.  It requires support
for a scalable rpcbind/portmap client built into nfs-utils, thus it is not
included in the present patch series.  Anyone interested in looking at my
current prototype for this can check out:

  http://git.linux-nfs.org/?p=cel/nfs-utils.git;a=summary

It includes all the patches in this series and the patches I posted last
week for nfs-utils 1.1.3, client-side support for NFSv2/v3 mounting and
unmounting over IPv6, a prototype IPv6-enabled sm-notify command, and
updates to nfs(5) describing IPv6 support for the NFS client.

For what it's worth, I'll be on holiday next week, but I can field any
questions or comments before this Saturday, or when I return.

---

Chuck Lever (14):
      mount command: Remove RPC headers from network.h
      text-based mount command: remove unnecessary headers from stropts.c
      text-based mount options: rename functions in stropts.c
      text-based mount command: Remove unused IPv4-only functions
      text-based mount command: Support raw IPv6 address hostnames
      text-based mount command: Add IPv6 support to set_mandatory_options
      text-based mount command: "mounthost=" option support for IPv6 addresses
      text-based mount command: "clientaddr=" option support for IPv6 addresses
      text-based mount command: "addr=" option support for IPv6 addresses
      text-based mount command: Add helper to construct network addresses
      text-based mount command:  get_client_address support for IPv6
      mount command: Add functions to manage addresses in string form
      text-based mount command: Add headers needed for IPv6 support
      nfs-utils: Introduce new ./configure option: "--enable-ipv6"


 configure.ac            |   29 ++++++
 utils/mount/Makefile.am |    6 +
 utils/mount/error.c     |    2 
 utils/mount/mount.c     |    1 
 utils/mount/network.c   |  237 +++++++++++++++++++++++++++++++++++++++++------
 utils/mount/network.h   |   17 +--
 utils/mount/nfs4mount.c |    2 
 utils/mount/nfsmount.c  |    7 +
 utils/mount/nfsumount.c |   35 +++----
 utils/mount/parse_dev.c |  230 ++++++++++++++++++++++++++++++++++++++++++++++
 utils/mount/parse_dev.h |   28 ++++++
 utils/mount/stropts.c   |  229 ++++++++++++++++++---------------------------
 12 files changed, 617 insertions(+), 206 deletions(-)
 create mode 100644 utils/mount/parse_dev.c
 create mode 100644 utils/mount/parse_dev.h

-- 
Signature

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

end of thread, other threads:[~2008-07-15 19:32 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-11 20:34 [PATCH 00/14] Support for mounting NFSv4 servers over IPv6 Chuck Lever
     [not found] ` <20080711203322.478.52095.stgit-lQeC5l55kZ7wdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
2008-07-11 20:34   ` [PATCH 01/14] nfs-utils: Introduce new ./configure option: "--enable-ipv6" Chuck Lever
2008-07-11 20:34   ` [PATCH 02/14] text-based mount command: Add headers needed for IPv6 support Chuck Lever
2008-07-11 20:34   ` [PATCH 03/14] mount command: Add functions to manage addresses in string form Chuck Lever
2008-07-11 20:34   ` [PATCH 04/14] text-based mount command: get_client_address support for IPv6 Chuck Lever
2008-07-11 20:34   ` [PATCH 05/14] text-based mount command: Add helper to construct network addresses Chuck Lever
2008-07-11 20:34   ` [PATCH 06/14] text-based mount command: "addr=" option support for IPv6 addresses Chuck Lever
2008-07-11 20:34   ` [PATCH 07/14] text-based mount command: "clientaddr=" " Chuck Lever
2008-07-11 20:34   ` [PATCH 08/14] text-based mount command: "mounthost=" " Chuck Lever
2008-07-11 20:35   ` [PATCH 09/14] text-based mount command: Add IPv6 support to set_mandatory_options Chuck Lever
2008-07-11 20:35   ` [PATCH 10/14] text-based mount command: Support raw IPv6 address hostnames Chuck Lever
2008-07-11 20:35   ` [PATCH 11/14] text-based mount command: Remove unused IPv4-only functions Chuck Lever
2008-07-11 20:35   ` [PATCH 12/14] text-based mount options: rename functions in stropts.c Chuck Lever
2008-07-11 20:35   ` [PATCH 13/14] text-based mount command: remove unnecessary headers from stropts.c Chuck Lever
2008-07-11 20:35   ` [PATCH 14/14] mount command: Remove RPC headers from network.h Chuck Lever
2008-07-15 19:31   ` [PATCH 00/14] Support for mounting NFSv4 servers over IPv6 Steve Dickson
  -- strict thread matches above, loose matches on Subject: below --
2008-07-10  0:37 Chuck Lever
     [not found] ` <20080710001725.6137.83845.stgit-lQeC5l55kZ7wdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
2008-07-10  0:37   ` [PATCH 01/14] nfs-utils: Introduce new ./configure option: "--enable-ipv6" Chuck Lever

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox