2011-09-24 12:55:58

by Steve Dickson

[permalink] [raw]
Subject: ANNOUNCE: nfs-utils-1.2.5 released.

New Features in this release:

* With the addition of the blkmapd daemon, the client
now supports every pNFS layout type.

* The usual assorted bug fixes.

The tarball can only be found at Sourceforge.net since
master.kernel.org is still down:

http://sourceforge.net/projects/nfs

[ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]

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

The change log is also only on Sourceforge.net:

http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download

steved.


2011-09-26 10:40:22

by Steve Dickson

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.



On 09/25/2011 04:39 AM, NeilBrown wrote:
> On Sat, 24 Sep 2011 08:55:57 -0400 Steve Dickson <[email protected]> wrote:
>
>> New Features in this release:
>>
>> * With the addition of the blkmapd daemon, the client
>> now supports every pNFS layout type.
>>
>> * The usual assorted bug fixes.
>>
>> The tarball can only be found at Sourceforge.net since
>> master.kernel.org is still down:
>>
>> http://sourceforge.net/projects/nfs
>>
>> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>>
>> The git tree is at:
>> git://linux-nfs.org/nfs-utils
>>
>> The change log is also only on Sourceforge.net:
>>
>> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>>
>
> I've packaged this up for openSUSE so it should appear in openSUSE:Factory
> and probably openSUSE:Tumbleweed in a day or two.
>
> Only oddity I noticed is that the configure script doesn't check for
> libdevmapper.h so I get a complaint when compiling instead of when
> configuring. I don't know if that is a good thing or a bad thing, but I
> thought I would mention it.
I notice this myself... I guess a AC_CHECK_HEADER is needed when
nfsv41 is enabled...

>
> If my archaeology is right, this is now 4 years and 11 releases
> that you have presided over nfs-utils. Thanks for the ongoing efforts!
You are welcome! 8-)

steved.


2011-09-25 16:56:48

by Jim Rees

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

Steve Dickson wrote:

New Features in this release:

* With the addition of the blkmapd daemon, the client
now supports every pNFS layout type.

* The usual assorted bug fixes.

The tarball can only be found at Sourceforge.net since
master.kernel.org is still down:

http://sourceforge.net/projects/nfs

[ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]

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

The change log is also only on Sourceforge.net:

http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download

I can't get it to configure. I re-ran autogen then:

configure --prefix=/usr --sysconfdir=/etc --enable-nfsv41 --enable-ipv6 --disable-gss --disable-uuid --enable-tirpc --without-tcp-wrappers --disable-libmount-mount

The test for _doprnt seems to be failing and I end up with this in conftest.c:

...
#define HAVE_VPRINTF 1
#define 1

where I think I should have something like "#define HAVE_DOPRNT 1". All
subsequent tests fail.

I put the config log here:
http://www.citi.umich.edu/projects/nfsv4/pnfs/block/download/config.log

2011-09-26 11:45:15

by Steve Dickson

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

Hey Jim,

On 09/25/2011 12:56 PM, Jim Rees wrote:
> Steve Dickson wrote:
>
> New Features in this release:
>
> * With the addition of the blkmapd daemon, the client
> now supports every pNFS layout type.
>
> * The usual assorted bug fixes.
>
> The tarball can only be found at Sourceforge.net since
> master.kernel.org is still down:
>
> http://sourceforge.net/projects/nfs
>
> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>
> The git tree is at:
> git://linux-nfs.org/nfs-utils
>
> The change log is also only on Sourceforge.net:
>
> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>
> I can't get it to configure. I re-ran autogen then:
>
> configure --prefix=/usr --sysconfdir=/etc --enable-nfsv41 --enable-ipv6 --disable-gss --disable-uuid --enable-tirpc --without-tcp-wrappers --disable-libmount-mount
>
> The test for _doprnt seems to be failing and I end up with this in conftest.c:
>
> ...
> #define HAVE_VPRINTF 1
> #define 1
>
> where I think I should have something like "#define HAVE_DOPRNT 1". All
> subsequent tests fail.
>
> I put the config log here:
> http://www.citi.umich.edu/projects/nfsv4/pnfs/block/download/config.log
I'm not seeing this problem... I've run the configs on both F15 and F16

Try runing ./autogen.sh before running the ./configure script.

steved.

2011-09-25 08:39:39

by NeilBrown

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

On Sat, 24 Sep 2011 08:55:57 -0400 Steve Dickson <[email protected]> wrote:

> New Features in this release:
>
> * With the addition of the blkmapd daemon, the client
> now supports every pNFS layout type.
>
> * The usual assorted bug fixes.
>
> The tarball can only be found at Sourceforge.net since
> master.kernel.org is still down:
>
> http://sourceforge.net/projects/nfs
>
> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>
> The git tree is at:
> git://linux-nfs.org/nfs-utils
>
> The change log is also only on Sourceforge.net:
>
> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>

I've packaged this up for openSUSE so it should appear in openSUSE:Factory
and probably openSUSE:Tumbleweed in a day or two.

Only oddity I noticed is that the configure script doesn't check for
libdevmapper.h so I get a complaint when compiling instead of when
configuring. I don't know if that is a good thing or a bad thing, but I
thought I would mention it.

If my archaeology is right, this is now 4 years and 11 releases
that you have presided over nfs-utils. Thanks for the ongoing efforts!

Thanks,
NeilBrown


Attachments:
signature.asc (190.00 B)

2011-09-25 14:23:51

by Jim Rees

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

NeilBrown wrote:

On Sat, 24 Sep 2011 08:55:57 -0400 Steve Dickson <[email protected]> wrote:

> New Features in this release:
>
> * With the addition of the blkmapd daemon, the client
> now supports every pNFS layout type.
>
> * The usual assorted bug fixes.
>
> The tarball can only be found at Sourceforge.net since
> master.kernel.org is still down:
>
> http://sourceforge.net/projects/nfs
>
> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>
> The git tree is at:
> git://linux-nfs.org/nfs-utils
>
> The change log is also only on Sourceforge.net:
>
> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>

I've packaged this up for openSUSE so it should appear in openSUSE:Factory
and probably openSUSE:Tumbleweed in a day or two.

Only oddity I noticed is that the configure script doesn't check for
libdevmapper.h so I get a complaint when compiling instead of when
configuring. I don't know if that is a good thing or a bad thing, but I
thought I would mention it.

Sorry, I'm not good with automake. The dependency is from blkmapd on
libdevmapper so there should be a check on both the header and the library,
contingent on nfsv41. I'll see if I can cook up a patch. Thanks for
catching this.

2011-09-25 05:10:44

by Benny Halevy

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

Steve, I updated git://linux-nfs.org/~bhalevy/pnfs-nfs-utils
rebased onto 1.2.5.

It looks like you forgot to add/publish the tag nfs-utils-1-2-5.

Benny

On 2011-09-24 15:55, Steve Dickson wrote:
> New Features in this release:
>
> * With the addition of the blkmapd daemon, the client
> now supports every pNFS layout type.
>
> * The usual assorted bug fixes.
>
> The tarball can only be found at Sourceforge.net since
> master.kernel.org is still down:
>
> http://sourceforge.net/projects/nfs
>
> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>
> The git tree is at:
> git://linux-nfs.org/nfs-utils
>
> The change log is also only on Sourceforge.net:
>
> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>
> steved.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html

2011-09-26 12:16:19

by Jim Rees

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.

Steve Dickson wrote:

I'm not seeing this problem... I've run the configs on both F15 and F16

Try runing ./autogen.sh before running the ./configure script.

I did that and it didn't help. But it fixed itself after a few more tries
so I'm set now.

2011-09-26 10:28:46

by Steve Dickson

[permalink] [raw]
Subject: Re: ANNOUNCE: nfs-utils-1.2.5 released.



On 09/25/2011 01:10 AM, Benny Halevy wrote:
> Steve, I updated git://linux-nfs.org/~bhalevy/pnfs-nfs-utils
> rebased onto 1.2.5.
>
> It looks like you forgot to add/publish the tag nfs-utils-1-2-5.
It appears you correct.. Sorry about that...

The nfs-utils-1-2-5 tag has been pushed.

steved.

>
> Benny
>
> On 2011-09-24 15:55, Steve Dickson wrote:
>> New Features in this release:
>>
>> * With the addition of the blkmapd daemon, the client
>> now supports every pNFS layout type.
>>
>> * The usual assorted bug fixes.
>>
>> The tarball can only be found at Sourceforge.net since
>> master.kernel.org is still down:
>>
>> http://sourceforge.net/projects/nfs
>>
>> [ Maybe we should start thinking about putting the rpms on linux-nfs.org?? ]
>>
>> The git tree is at:
>> git://linux-nfs.org/nfs-utils
>>
>> The change log is also only on Sourceforge.net:
>>
>> http://sourceforge.net/projects/nfs/files/nfs-utils/1.2.5/Changelog-1.2.5/download
>>
>> steved.
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>> the body of a message to [email protected]
>> More majordomo info at http://vger.kernel.org/majordomo-info.html