linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ANNOUNCE: nfs-utils-1.2.3 released.
@ 2010-09-28 12:56 Steve Dickson
  2010-09-29 10:55 ` Benny Halevy
  2010-09-30 17:28 ` Jan Rękorajski
  0 siblings, 2 replies; 5+ messages in thread
From: Steve Dickson @ 2010-09-28 12:56 UTC (permalink / raw)
  To: Linux NFS Mailing list

New Features in this release:

   * Both Client and server IPv6 support is available with the 
     --enable-ipv6 configuration flag (which is on by default)

   * NFSoverRDMA mount support.

   * A large number of bug fixes.

The tarball can be found at:

  http://www.kernel.org/pub/linux/utils/nfs/
  http://sourceforge.net/projects/nfs

The git tree is at:
   git://linux-nfs.org/nfs-utils

The change log:

http://www.kernel.org/pub/linux/utils/nfs/ChangeLog-nfs-utils-1.2.3

steved.

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

* Re: ANNOUNCE: nfs-utils-1.2.3 released.
  2010-09-28 12:56 ANNOUNCE: nfs-utils-1.2.3 released Steve Dickson
@ 2010-09-29 10:55 ` Benny Halevy
  2010-09-30 17:28 ` Jan Rękorajski
  1 sibling, 0 replies; 5+ messages in thread
From: Benny Halevy @ 2010-09-29 10:55 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Linux NFS Mailing list

git://linux-nfs.org/~bhalevy/pnfs-nfs-utils.git
was rebased accordingly at tag pnfs-nfs-utils-1-2-3

Benny

On 2010-09-28 14:56, Steve Dickson wrote:
> New Features in this release:
> 
>    * Both Client and server IPv6 support is available with the 
>      --enable-ipv6 configuration flag (which is on by default)
> 
>    * NFSoverRDMA mount support.
> 
>    * A large number of bug fixes.
> 
> The tarball can be found at:
> 
>   http://www.kernel.org/pub/linux/utils/nfs/
>   http://sourceforge.net/projects/nfs
> 
> The git tree is at:
>    git://linux-nfs.org/nfs-utils
> 
> The change log:
> 
> http://www.kernel.org/pub/linux/utils/nfs/ChangeLog-nfs-utils-1.2.3
> 
> steved.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: ANNOUNCE: nfs-utils-1.2.3 released.
  2010-09-28 12:56 ANNOUNCE: nfs-utils-1.2.3 released Steve Dickson
  2010-09-29 10:55 ` Benny Halevy
@ 2010-09-30 17:28 ` Jan Rękorajski
  2010-09-30 17:31   ` Chuck Lever
  1 sibling, 1 reply; 5+ messages in thread
From: Jan Rękorajski @ 2010-09-30 17:28 UTC (permalink / raw)
  To: Linux NFS Mailing list; +Cc: Steve Dickson, Chuck Lever

On Tue, 28 Sep 2010, Steve Dickson wrote:

> New Features in this release:
> 
>    * Both Client and server IPv6 support is available with the 
>      --enable-ipv6 configuration flag (which is on by default)
> 
>    * NFSoverRDMA mount support.
> 
>    * A large number of bug fixes.

Unfortunately there is a new misfeature in rpc.mountd that crept in
with IPv6 support.
Option '-p <port>' is no longer working, mountd succesfully registers
MNT1 and then fails with -EADDRINUSE for MNT2 and MNT3 on ip4/tcp,udp and
ip6/tcp,udp transports.

[root@home ~]# rpc.mountd -d all -F -p 4444
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 2, udp)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 2, tcp)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 2, udp6)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 2, tcp6)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 3, udp)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 3, tcp)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 3, udp6)
rpc.mountd: svc_tli_create: could not bind to requested address
rpc.mountd: Failed to create listener xprt (mountd, 3, tcp6)
rpc.mountd: Kernel does not have pseudo root support.
rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
rpc.mountd: is specfied in /etc/exports file.
rpc.mountd: Version 1.2.3 starting

[root@home ~]# rpcinfo -t localhost 100005
program 100005 version 1 ready and waiting

If I start mountd without '-p' it succesfully registers all versions
on random ports.

[root@home ~]# rpc.mountd -d all -F 
rpc.mountd: Kernel does not have pseudo root support.
rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
rpc.mountd: is specfied in /etc/exports file.
rpc.mountd: Version 1.2.3 starting

[root@home ~]# rpcinfo -t localhost 100005
program 100005 version 1 ready and waiting
program 100005 version 2 ready and waiting
program 100005 version 3 ready and waiting

Reverting b551b1fd0052de9b8c674b30c39d9f2a1e9d79cc cures the problem.
but I guess it's not the right thing to do.

-- 
Jan Rękorajski            |  ALL SUSPECTS ARE GUILTY. PERIOD!
baggins<at>mimuw.edu.pl   |  OTHERWISE THEY WOULDN'T BE SUSPECTS, WOULD THEY?
BOFH, MANIAC              |                   -- TROOPS by Kevin Rubio

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

* Re: ANNOUNCE: nfs-utils-1.2.3 released.
  2010-09-30 17:28 ` Jan Rękorajski
@ 2010-09-30 17:31   ` Chuck Lever
  2010-09-30 17:40     ` Jan Rękorajski
  0 siblings, 1 reply; 5+ messages in thread
From: Chuck Lever @ 2010-09-30 17:31 UTC (permalink / raw)
  To: Jan Rękorajski; +Cc: Linux NFS Mailing list, Steve Dickson

Hi Jan-

Can you file this on bugzilla.linux-nfs.org and assign it to me?  It's likely that this feature isn't working for statd either.  I'll try to get right to it.

On Sep 30, 2010, at 1:28 PM, Jan Rękorajski wrote:

> On Tue, 28 Sep 2010, Steve Dickson wrote:
> 
>> New Features in this release:
>> 
>>   * Both Client and server IPv6 support is available with the 
>>     --enable-ipv6 configuration flag (which is on by default)
>> 
>>   * NFSoverRDMA mount support.
>> 
>>   * A large number of bug fixes.
> 
> Unfortunately there is a new misfeature in rpc.mountd that crept in
> with IPv6 support.
> Option '-p <port>' is no longer working, mountd succesfully registers
> MNT1 and then fails with -EADDRINUSE for MNT2 and MNT3 on ip4/tcp,udp and
> ip6/tcp,udp transports.
> 
> [root@home ~]# rpc.mountd -d all -F -p 4444
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 2, udp)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 2, tcp)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 2, udp6)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 2, tcp6)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 3, udp)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 3, tcp)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 3, udp6)
> rpc.mountd: svc_tli_create: could not bind to requested address
> rpc.mountd: Failed to create listener xprt (mountd, 3, tcp6)
> rpc.mountd: Kernel does not have pseudo root support.
> rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
> rpc.mountd: is specfied in /etc/exports file.
> rpc.mountd: Version 1.2.3 starting
> 
> [root@home ~]# rpcinfo -t localhost 100005
> program 100005 version 1 ready and waiting
> 
> If I start mountd without '-p' it succesfully registers all versions
> on random ports.
> 
> [root@home ~]# rpc.mountd -d all -F 
> rpc.mountd: Kernel does not have pseudo root support.
> rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
> rpc.mountd: is specfied in /etc/exports file.
> rpc.mountd: Version 1.2.3 starting
> 
> [root@home ~]# rpcinfo -t localhost 100005
> program 100005 version 1 ready and waiting
> program 100005 version 2 ready and waiting
> program 100005 version 3 ready and waiting
> 
> Reverting b551b1fd0052de9b8c674b30c39d9f2a1e9d79cc cures the problem.
> but I guess it's not the right thing to do.
> 
> -- 
> Jan Rękorajski            |  ALL SUSPECTS ARE GUILTY. PERIOD!
> baggins<at>mimuw.edu.pl   |  OTHERWISE THEY WOULDN'T BE SUSPECTS, WOULD THEY?
> BOFH, MANIAC              |                   -- TROOPS by Kevin Rubio

-- 
chuck[dot]lever[at]oracle[dot]com





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

* Re: ANNOUNCE: nfs-utils-1.2.3 released.
  2010-09-30 17:31   ` Chuck Lever
@ 2010-09-30 17:40     ` Jan Rękorajski
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Rękorajski @ 2010-09-30 17:40 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Linux NFS Mailing list, Steve Dickson

On Thu, 30 Sep 2010, Chuck Lever wrote:

> Hi Jan-
> 
> Can you file this on bugzilla.linux-nfs.org and assign it to me?  It's
> likely that this feature isn't working for statd either.  I'll try to
> get right to it.

Done.
https://bugzilla.linux-nfs.org/show_bug.cgi?id=190
 
> On Sep 30, 2010, at 1:28 PM, Jan Rękorajski wrote:
> 
> > On Tue, 28 Sep 2010, Steve Dickson wrote:
> > 
> >> New Features in this release:
> >> 
> >>   * Both Client and server IPv6 support is available with the 
> >>     --enable-ipv6 configuration flag (which is on by default)
> >> 
> >>   * NFSoverRDMA mount support.
> >> 
> >>   * A large number of bug fixes.
> > 
> > Unfortunately there is a new misfeature in rpc.mountd that crept in
> > with IPv6 support.
> > Option '-p <port>' is no longer working, mountd succesfully registers
> > MNT1 and then fails with -EADDRINUSE for MNT2 and MNT3 on ip4/tcp,udp and
> > ip6/tcp,udp transports.
> > 
> > [root@home ~]# rpc.mountd -d all -F -p 4444
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 2, udp)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 2, tcp)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 2, udp6)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 2, tcp6)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 3, udp)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 3, tcp)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 3, udp6)
> > rpc.mountd: svc_tli_create: could not bind to requested address
> > rpc.mountd: Failed to create listener xprt (mountd, 3, tcp6)
> > rpc.mountd: Kernel does not have pseudo root support.
> > rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
> > rpc.mountd: is specfied in /etc/exports file.
> > rpc.mountd: Version 1.2.3 starting
> > 
> > [root@home ~]# rpcinfo -t localhost 100005
> > program 100005 version 1 ready and waiting
> > 
> > If I start mountd without '-p' it succesfully registers all versions
> > on random ports.
> > 
> > [root@home ~]# rpc.mountd -d all -F 
> > rpc.mountd: Kernel does not have pseudo root support.
> > rpc.mountd: NFS v4 mounts will be disabled unless fsid=0
> > rpc.mountd: is specfied in /etc/exports file.
> > rpc.mountd: Version 1.2.3 starting
> > 
> > [root@home ~]# rpcinfo -t localhost 100005
> > program 100005 version 1 ready and waiting
> > program 100005 version 2 ready and waiting
> > program 100005 version 3 ready and waiting
> > 
> > Reverting b551b1fd0052de9b8c674b30c39d9f2a1e9d79cc cures the problem.
> > but I guess it's not the right thing to do.
> > 
> > -- 
> > Jan Rękorajski            |  ALL SUSPECTS ARE GUILTY. PERIOD!
> > baggins<at>mimuw.edu.pl   |  OTHERWISE THEY WOULDN'T BE SUSPECTS, WOULD THEY?
> > BOFH, MANIAC              |                   -- TROOPS by Kevin Rubio
> 
> -- 
> chuck[dot]lever[at]oracle[dot]com
> 
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Jan Rękorajski            |  ALL SUSPECTS ARE GUILTY. PERIOD!
baggins<at>mimuw.edu.pl   |  OTHERWISE THEY WOULDN'T BE SUSPECTS, WOULD THEY?
BOFH, MANIAC              |                   -- TROOPS by Kevin Rubio

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

end of thread, other threads:[~2010-09-30 17:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-28 12:56 ANNOUNCE: nfs-utils-1.2.3 released Steve Dickson
2010-09-29 10:55 ` Benny Halevy
2010-09-30 17:28 ` Jan Rękorajski
2010-09-30 17:31   ` Chuck Lever
2010-09-30 17:40     ` Jan Rękorajski

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