linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
@ 2020-01-13 16:29 Giulio Benetti
  2020-01-13 16:29 ` [nfs-utils PATCH 2/3] rpcgen: rpc_cout: silence format-nonliteral Giulio Benetti
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Giulio Benetti @ 2020-01-13 16:29 UTC (permalink / raw)
  To: Steve Dickson; +Cc: linux-nfs, Giulio Benetti

Giulio Benetti (3):
  rpcgen: bump to latest version
  rpcgen: rpc_cout: silence format-nonliteral
  support: nfs: rpc_socket: silence unused parameter warning on salen

 support/nfs/rpc_socket.c   |    2 +
 tools/rpcgen/Makefile.am   |   24 +-
 tools/rpcgen/proto.h       |   65 ++
 tools/rpcgen/rpc_clntout.c |  458 +++++---
 tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
 tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
 tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
 tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
 tools/rpcgen/rpc_parse.h   |  103 +-
 tools/rpcgen/rpc_sample.c  |  465 ++++----
 tools/rpcgen/rpc_scan.c    |  812 +++++++-------
 tools/rpcgen/rpc_scan.h    |   91 +-
 tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
 tools/rpcgen/rpc_tblout.c  |  265 ++---
 tools/rpcgen/rpc_util.c    |  656 ++++++------
 tools/rpcgen/rpc_util.h    |  170 ++-
 tools/rpcgen/rpcgen.1      |  442 ++++++++
 17 files changed, 6123 insertions(+), 4399 deletions(-)
 create mode 100644 tools/rpcgen/proto.h
 create mode 100644 tools/rpcgen/rpcgen.1

-- 
2.20.1


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

* [nfs-utils PATCH 2/3] rpcgen: rpc_cout: silence format-nonliteral
  2020-01-13 16:29 [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Giulio Benetti
@ 2020-01-13 16:29 ` Giulio Benetti
  2020-01-13 16:29 ` [nfs-utils PATCH 3/3] support: nfs: rpc_socket: silence unused parameter warning on salen Giulio Benetti
  2020-01-16 20:37 ` [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Steve Dickson
  2 siblings, 0 replies; 10+ messages in thread
From: Giulio Benetti @ 2020-01-13 16:29 UTC (permalink / raw)
  To: Steve Dickson; +Cc: linux-nfs, Giulio Benetti

Silence format-nonliteral warning with #pragma GCC diagnostic ignored.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 tools/rpcgen/rpc_cout.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/rpcgen/rpc_cout.c b/tools/rpcgen/rpc_cout.c
index db7b571b..4627110d 100644
--- a/tools/rpcgen/rpc_cout.c
+++ b/tools/rpcgen/rpc_cout.c
@@ -353,6 +353,7 @@ emit_program (const definition * def)
       }
 }
 
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
 static void
 emit_union (const definition * def)
 {
@@ -430,6 +431,7 @@ emit_union (const definition * def)
 
   f_print (fout, "\t}\n");
 }
+#pragma GCC diagnostic warning "-Wformat-nonliteral"
 
 static void
 inline_struct (definition *def, int flag)
-- 
2.20.1


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

* [nfs-utils PATCH 3/3] support: nfs: rpc_socket: silence unused parameter warning on salen
  2020-01-13 16:29 [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Giulio Benetti
  2020-01-13 16:29 ` [nfs-utils PATCH 2/3] rpcgen: rpc_cout: silence format-nonliteral Giulio Benetti
@ 2020-01-13 16:29 ` Giulio Benetti
  2020-01-16 20:37 ` [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Steve Dickson
  2 siblings, 0 replies; 10+ messages in thread
From: Giulio Benetti @ 2020-01-13 16:29 UTC (permalink / raw)
  To: Steve Dickson; +Cc: linux-nfs, Giulio Benetti

If HAVE_LIBTIRPC is not defined salen parameter is unused and not taken
into account, so compiler emits warning. Add a (void) salen; in that
case.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 support/nfs/rpc_socket.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/support/nfs/rpc_socket.c b/support/nfs/rpc_socket.c
index bdf6d2f6..5fabf5a1 100644
--- a/support/nfs/rpc_socket.c
+++ b/support/nfs/rpc_socket.c
@@ -77,6 +77,8 @@ static CLIENT *nfs_get_localclient(const struct sockaddr *sap,
 		.len		= (size_t)salen,
 		.buf		= &address,
 	};
+#else
+	(void) salen;
 #endif	/* HAVE_LIBTIRPC */
 	CLIENT *client;
 	int sock;
-- 
2.20.1


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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-13 16:29 [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Giulio Benetti
  2020-01-13 16:29 ` [nfs-utils PATCH 2/3] rpcgen: rpc_cout: silence format-nonliteral Giulio Benetti
  2020-01-13 16:29 ` [nfs-utils PATCH 3/3] support: nfs: rpc_socket: silence unused parameter warning on salen Giulio Benetti
@ 2020-01-16 20:37 ` Steve Dickson
  2020-01-16 20:41   ` Giulio Benetti
  2 siblings, 1 reply; 10+ messages in thread
From: Steve Dickson @ 2020-01-16 20:37 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: linux-nfs



On 1/13/20 11:29 AM, Giulio Benetti wrote:
> Giulio Benetti (3):
>   rpcgen: bump to latest version
>   rpcgen: rpc_cout: silence format-nonliteral
>   support: nfs: rpc_socket: silence unused parameter warning on salen
> 
>  support/nfs/rpc_socket.c   |    2 +
>  tools/rpcgen/Makefile.am   |   24 +-
>  tools/rpcgen/proto.h       |   65 ++
>  tools/rpcgen/rpc_clntout.c |  458 +++++---
>  tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
>  tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
>  tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
>  tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
>  tools/rpcgen/rpc_parse.h   |  103 +-
>  tools/rpcgen/rpc_sample.c  |  465 ++++----
>  tools/rpcgen/rpc_scan.c    |  812 +++++++-------
>  tools/rpcgen/rpc_scan.h    |   91 +-
>  tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
>  tools/rpcgen/rpc_tblout.c  |  265 ++---
>  tools/rpcgen/rpc_util.c    |  656 ++++++------
>  tools/rpcgen/rpc_util.h    |  170 ++-
>  tools/rpcgen/rpcgen.1      |  442 ++++++++
>  17 files changed, 6123 insertions(+), 4399 deletions(-)
>  create mode 100644 tools/rpcgen/proto.h
>  create mode 100644 tools/rpcgen/rpcgen.1
> 
Committed... (tag nfs-utils-2-4-3-rc5)... Nice work!!!

steved.


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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-16 20:37 ` [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Steve Dickson
@ 2020-01-16 20:41   ` Giulio Benetti
  2020-01-16 20:44     ` Giulio Benetti
  0 siblings, 1 reply; 10+ messages in thread
From: Giulio Benetti @ 2020-01-16 20:41 UTC (permalink / raw)
  To: Steve Dickson; +Cc: linux-nfs

On 1/16/20 9:37 PM, Steve Dickson wrote:
> 
> 
> On 1/13/20 11:29 AM, Giulio Benetti wrote:
>> Giulio Benetti (3):
>>    rpcgen: bump to latest version
>>    rpcgen: rpc_cout: silence format-nonliteral
>>    support: nfs: rpc_socket: silence unused parameter warning on salen
>>
>>   support/nfs/rpc_socket.c   |    2 +
>>   tools/rpcgen/Makefile.am   |   24 +-
>>   tools/rpcgen/proto.h       |   65 ++
>>   tools/rpcgen/rpc_clntout.c |  458 +++++---
>>   tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
>>   tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
>>   tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
>>   tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
>>   tools/rpcgen/rpc_parse.h   |  103 +-
>>   tools/rpcgen/rpc_sample.c  |  465 ++++----
>>   tools/rpcgen/rpc_scan.c    |  812 +++++++-------
>>   tools/rpcgen/rpc_scan.h    |   91 +-
>>   tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
>>   tools/rpcgen/rpc_tblout.c  |  265 ++---
>>   tools/rpcgen/rpc_util.c    |  656 ++++++------
>>   tools/rpcgen/rpc_util.h    |  170 ++-
>>   tools/rpcgen/rpcgen.1      |  442 ++++++++
>>   17 files changed, 6123 insertions(+), 4399 deletions(-)
>>   create mode 100644 tools/rpcgen/proto.h
>>   create mode 100644 tools/rpcgen/rpcgen.1
>>
> Committed... (tag nfs-utils-2-4-3-rc5)... Nice work!!!

Wooho! Thank you :-)

As soon as you release version 2.4.3 I'm going to bump version in 
Buildroot too, at the moment it's still 1.3.4.

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-16 20:41   ` Giulio Benetti
@ 2020-01-16 20:44     ` Giulio Benetti
  2020-01-16 21:08       ` Steve Dickson
  0 siblings, 1 reply; 10+ messages in thread
From: Giulio Benetti @ 2020-01-16 20:44 UTC (permalink / raw)
  To: Steve Dickson; +Cc: linux-nfs

On 1/16/20 9:41 PM, Giulio Benetti wrote:
> On 1/16/20 9:37 PM, Steve Dickson wrote:
>>
>>
>> On 1/13/20 11:29 AM, Giulio Benetti wrote:
>>> Giulio Benetti (3):
>>>     rpcgen: bump to latest version
>>>     rpcgen: rpc_cout: silence format-nonliteral
>>>     support: nfs: rpc_socket: silence unused parameter warning on salen
>>>
>>>    support/nfs/rpc_socket.c   |    2 +
>>>    tools/rpcgen/Makefile.am   |   24 +-
>>>    tools/rpcgen/proto.h       |   65 ++
>>>    tools/rpcgen/rpc_clntout.c |  458 +++++---
>>>    tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
>>>    tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
>>>    tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
>>>    tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
>>>    tools/rpcgen/rpc_parse.h   |  103 +-
>>>    tools/rpcgen/rpc_sample.c  |  465 ++++----
>>>    tools/rpcgen/rpc_scan.c    |  812 +++++++-------
>>>    tools/rpcgen/rpc_scan.h    |   91 +-
>>>    tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
>>>    tools/rpcgen/rpc_tblout.c  |  265 ++---
>>>    tools/rpcgen/rpc_util.c    |  656 ++++++------
>>>    tools/rpcgen/rpc_util.h    |  170 ++-
>>>    tools/rpcgen/rpcgen.1      |  442 ++++++++
>>>    17 files changed, 6123 insertions(+), 4399 deletions(-)
>>>    create mode 100644 tools/rpcgen/proto.h
>>>    create mode 100644 tools/rpcgen/rpcgen.1
>>>
>> Committed... (tag nfs-utils-2-4-3-rc5)... Nice work!!!
> 
> Wooho! Thank you :-)
> 
> As soon as you release version 2.4.3 I'm going to bump version in
> Buildroot too, at the moment it's still 1.3.4.

Ah, I've forgot that on xtensa it fails building and need this patch to 
be applied to:
https://patchwork.kernel.org/patch/11335261/

If you have the chance to commit before releasing version it would be great!

Kind regards
-- 
Giulio Benetti
Benetti Engineering sas

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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-16 20:44     ` Giulio Benetti
@ 2020-01-16 21:08       ` Steve Dickson
  2020-01-17  6:30         ` Petr Vorel
  0 siblings, 1 reply; 10+ messages in thread
From: Steve Dickson @ 2020-01-16 21:08 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: linux-nfs, Petr Vorel



On 1/16/20 3:44 PM, Giulio Benetti wrote:
> On 1/16/20 9:41 PM, Giulio Benetti wrote:
>> On 1/16/20 9:37 PM, Steve Dickson wrote:
>>>
>>>
>>> On 1/13/20 11:29 AM, Giulio Benetti wrote:
>>>> Giulio Benetti (3):
>>>>     rpcgen: bump to latest version
>>>>     rpcgen: rpc_cout: silence format-nonliteral
>>>>     support: nfs: rpc_socket: silence unused parameter warning on salen
>>>>
>>>>    support/nfs/rpc_socket.c   |    2 +
>>>>    tools/rpcgen/Makefile.am   |   24 +-
>>>>    tools/rpcgen/proto.h       |   65 ++
>>>>    tools/rpcgen/rpc_clntout.c |  458 +++++---
>>>>    tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
>>>>    tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
>>>>    tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
>>>>    tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
>>>>    tools/rpcgen/rpc_parse.h   |  103 +-
>>>>    tools/rpcgen/rpc_sample.c  |  465 ++++----
>>>>    tools/rpcgen/rpc_scan.c    |  812 +++++++-------
>>>>    tools/rpcgen/rpc_scan.h    |   91 +-
>>>>    tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
>>>>    tools/rpcgen/rpc_tblout.c  |  265 ++---
>>>>    tools/rpcgen/rpc_util.c    |  656 ++++++------
>>>>    tools/rpcgen/rpc_util.h    |  170 ++-
>>>>    tools/rpcgen/rpcgen.1      |  442 ++++++++
>>>>    17 files changed, 6123 insertions(+), 4399 deletions(-)
>>>>    create mode 100644 tools/rpcgen/proto.h
>>>>    create mode 100644 tools/rpcgen/rpcgen.1
>>>>
>>> Committed... (tag nfs-utils-2-4-3-rc5)... Nice work!!!
>>
>> Wooho! Thank you :-)
>>
>> As soon as you release version 2.4.3 I'm going to bump version in
>> Buildroot too, at the moment it's still 1.3.4.
> 
> Ah, I've forgot that on xtensa it fails building and need this patch to be applied to:
> https://patchwork.kernel.org/patch/11335261/
> 
> If you have the chance to commit before releasing version it would be great!
Your patch on my radar... but... conflicts  with Petr's cross-compilation patch
https://lore.kernel.org/linux-nfs/20200114183603.GA24556@dell5510/T/#t

That patch causes an automake warnings which is something I'm trying to avoid.

No worries... I will not do a release w/out your patch.... or something close to it. 

steved.


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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-16 21:08       ` Steve Dickson
@ 2020-01-17  6:30         ` Petr Vorel
  2020-01-17 14:32           ` Steve Dickson
  0 siblings, 1 reply; 10+ messages in thread
From: Petr Vorel @ 2020-01-17  6:30 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Giulio Benetti, linux-nfs, Mike Frysinger

Hi Steve, Giulio,

[Cc: Mike]

> On 1/16/20 3:44 PM, Giulio Benetti wrote:
> > On 1/16/20 9:41 PM, Giulio Benetti wrote:
> >> On 1/16/20 9:37 PM, Steve Dickson wrote:


> >>> On 1/13/20 11:29 AM, Giulio Benetti wrote:
> >>>> Giulio Benetti (3):
> >>>>     rpcgen: bump to latest version
> >>>>     rpcgen: rpc_cout: silence format-nonliteral
> >>>>     support: nfs: rpc_socket: silence unused parameter warning on salen

> >>>>    support/nfs/rpc_socket.c   |    2 +
> >>>>    tools/rpcgen/Makefile.am   |   24 +-
> >>>>    tools/rpcgen/proto.h       |   65 ++
> >>>>    tools/rpcgen/rpc_clntout.c |  458 +++++---
> >>>>    tools/rpcgen/rpc_cout.c    | 1269 ++++++++++++----------
> >>>>    tools/rpcgen/rpc_hout.c    |  915 +++++++++-------
> >>>>    tools/rpcgen/rpc_main.c    | 2083 +++++++++++++++++++++---------------
> >>>>    tools/rpcgen/rpc_parse.c   | 1055 +++++++++---------
> >>>>    tools/rpcgen/rpc_parse.h   |  103 +-
> >>>>    tools/rpcgen/rpc_sample.c  |  465 ++++----
> >>>>    tools/rpcgen/rpc_scan.c    |  812 +++++++-------
> >>>>    tools/rpcgen/rpc_scan.h    |   91 +-
> >>>>    tools/rpcgen/rpc_svcout.c  | 1647 +++++++++++++++-------------
> >>>>    tools/rpcgen/rpc_tblout.c  |  265 ++---
> >>>>    tools/rpcgen/rpc_util.c    |  656 ++++++------
> >>>>    tools/rpcgen/rpc_util.h    |  170 ++-
> >>>>    tools/rpcgen/rpcgen.1      |  442 ++++++++
> >>>>    17 files changed, 6123 insertions(+), 4399 deletions(-)
> >>>>    create mode 100644 tools/rpcgen/proto.h
> >>>>    create mode 100644 tools/rpcgen/rpcgen.1

> >>> Committed... (tag nfs-utils-2-4-3-rc5)... Nice work!!!

> >> Wooho! Thank you :-)

> >> As soon as you release version 2.4.3 I'm going to bump version in
> >> Buildroot too, at the moment it's still 1.3.4.

> > Ah, I've forgot that on xtensa it fails building and need this patch to be applied to:
> > https://patchwork.kernel.org/patch/11335261/

> > If you have the chance to commit before releasing version it would be great!
> Your patch on my radar... but... conflicts  with Petr's cross-compilation patch
> https://lore.kernel.org/linux-nfs/20200114183603.GA24556@dell5510/T/#t

> That patch causes an automake warnings which is something I'm trying to avoid.

> No worries... I will not do a release w/out your patch.... or something close to it. 

Giulio, thanks for your patch. I'll have a look on it over a weekend.
Maybe Mike's cross-compilation patch is really not needed.

> steved.

Kind regards,
Petr

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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-17  6:30         ` Petr Vorel
@ 2020-01-17 14:32           ` Steve Dickson
  2020-01-19 18:45             ` Petr Vorel
  0 siblings, 1 reply; 10+ messages in thread
From: Steve Dickson @ 2020-01-17 14:32 UTC (permalink / raw)
  To: Petr Vorel; +Cc: Giulio Benetti, linux-nfs, Mike Frysinger

Hey Petr,

On 1/17/20 1:30 AM, Petr Vorel wrote:
>>> If you have the chance to commit before releasing version it would be great!
>> Your patch on my radar... but... conflicts  with Petr's cross-compilation patch
>> https://lore.kernel.org/linux-nfs/20200114183603.GA24556@dell5510/T/#t
> 
>> That patch causes an automake warnings which is something I'm trying to avoid.
> 
>> No worries... I will not do a release w/out your patch.... or something close to it. 
> 
> Giulio, thanks for your patch. I'll have a look on it over a weekend.
> Maybe Mike's cross-compilation patch is really not needed.
> 
Thanks... for taking a second look!!

steved.


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

* Re: [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning
  2020-01-17 14:32           ` Steve Dickson
@ 2020-01-19 18:45             ` Petr Vorel
  0 siblings, 0 replies; 10+ messages in thread
From: Petr Vorel @ 2020-01-19 18:45 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Giulio Benetti, linux-nfs, Mike Frysinger

Hi all,

> On 1/17/20 1:30 AM, Petr Vorel wrote:
> >>> If you have the chance to commit before releasing version it would be great!
> >> Your patch on my radar... but... conflicts  with Petr's cross-compilation patch
> >> https://lore.kernel.org/linux-nfs/20200114183603.GA24556@dell5510/T/#t

> >> That patch causes an automake warnings which is something I'm trying to avoid.

> >> No worries... I will not do a release w/out your patch.... or something close to it. 

> > Giulio, thanks for your patch. I'll have a look on it over a weekend.
> > Maybe Mike's cross-compilation patch is really not needed.

Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
Tested-by: Petr Vorel <petr.vorel@gmail.com>
NOTE: as I understand it's a compilation issue of a tool, so I didn't run
rpcgen, I just test various compilation variants.

Considering recently merged Giulio's change in tools/rpcgen/Makefile.am
e61775d1 ("rpcgen: bump to latest version") I'm for trying this one.

I tested buildroot compilation of Giulio's changes [1] [2] and it works.
Notable change is to move from nfs-utils' internal rpcgen to external one from system
(replace --with-rpcgen=internal with --with-rpcgen=$(HOST_DIR)/bin/rpcgen in [2]).
IMHO Mike's patch is not needed for buildroot.

@Mike, could you please test it for Gentoo?

Looking at Gentoo package history, all packages [3] [4] [5] use rpcgen from system
(--with-rpcgen). This change was added 2 years ago for, nfs-utils 2.3.x [6];
but Mike's patch was here at least 5 years ago [7], for nfs-utils 1.2.x and
1.3.x (actually sent to ML in 2013-03-25 [8], so for 1.2.x?), so the patch might
not be needed any more since then anyway.

BTW NEWS file for nfs-utils 1.1.0 states that by default use rpcgen from system,
so it looks to me that at the time of Mike's patch needed for Gentoo it was also
using internal rpcgen, but maybe I'm wrong.

Kind regards,
Petr

[1] https://github.com/giuliobenetti/nfs-utils/commit/c45edd7a5d5aa51c735017a7fd4fd89948ad05b2
[2] https://github.com/giuliobenetti/buildroot/commit/e4ae0d0e33e61858701bfe44e9777f7c69584706
[3] https://gitweb.gentoo.org/repo/gentoo.git/tree/net-fs/nfs-utils/nfs-utils-2.3.4.ebuild
[4] https://gitweb.gentoo.org/repo/gentoo.git/tree/net-fs/nfs-utils/nfs-utils-2.4.1-r4.ebuild
[5] https://gitweb.gentoo.org/repo/gentoo.git/tree/net-fs/nfs-utils/nfs-utils-2.4.2-r1.ebuild
[6] https://gitweb.gentoo.org/repo/gentoo.git/commit/net-fs/nfs-utils?id=d3c1580e4b5e583a457055f1a01818269e65459f
[7] https://gitweb.gentoo.org/repo/gentoo.git/commit/net-fs/nfs-utils?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d
[8] https://lore.kernel.org/linux-nfs/1364163668-15490-1-git-send-email-vapier@gentoo.org/

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

end of thread, other threads:[~2020-01-19 18:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13 16:29 [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Giulio Benetti
2020-01-13 16:29 ` [nfs-utils PATCH 2/3] rpcgen: rpc_cout: silence format-nonliteral Giulio Benetti
2020-01-13 16:29 ` [nfs-utils PATCH 3/3] support: nfs: rpc_socket: silence unused parameter warning on salen Giulio Benetti
2020-01-16 20:37 ` [nfs-utils PATCH 0/3] bump rpcgen version and silence some warning Steve Dickson
2020-01-16 20:41   ` Giulio Benetti
2020-01-16 20:44     ` Giulio Benetti
2020-01-16 21:08       ` Steve Dickson
2020-01-17  6:30         ` Petr Vorel
2020-01-17 14:32           ` Steve Dickson
2020-01-19 18:45             ` Petr Vorel

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