All of lore.kernel.org
 help / color / mirror / Atom feed
* Build failure on RHEL 7.4
@ 2018-04-11 19:09 Andrew Rybchenko
  2018-04-11 19:40 ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Rybchenko @ 2018-04-11 19:09 UTC (permalink / raw)
  To: dev, Anatoly Burakov

Hello,

build fails on RHEL 7.4. I've not tried to dig it.


lib/librte_eal/linuxapp/eal/eal_memalloc.c: In function ‘resize_hugefile’:
librte_eal/linuxapp/eal/eal_memalloc.c:343:27: error: 
‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)
     int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |
                            ^
lib/librte_eal/linuxapp/eal/eal_memalloc.c:343:27: note: each undeclared 
identifier is reported only once for each function it appears in
lib/librte_eal/linuxapp/eal/eal_memalloc.c:344:6: error: 
‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)
       FALLOC_FL_KEEP_SIZE;
       ^
make[6]: *** [eal_memalloc.o] Error 1
make[6]: *** Waiting for unfinished jobs....
make[5]: *** [eal] Error 2
make[4]: *** [linuxapp] Error 2
make[3]: *** [librte_eal] Error 2
make[2]: *** [lib] Error 2
make[1]: *** [all] Error 2
make: *** [all] Error 2

$ gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ uname -r
3.10.0-693.el7.x86_64

Andrew.

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

* Re: Build failure on RHEL 7.4
  2018-04-11 19:09 Build failure on RHEL 7.4 Andrew Rybchenko
@ 2018-04-11 19:40 ` Thomas Monjalon
  2018-04-11 19:46   ` Pavan Nikhilesh
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2018-04-11 19:40 UTC (permalink / raw)
  To: Andrew Rybchenko, Anatoly Burakov; +Cc: dev

11/04/2018 21:09, Andrew Rybchenko:
> Hello,
> 
> build fails on RHEL 7.4. I've not tried to dig it.

Thanks for reporting.

[...]
> ‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)
[...]
> ‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)

These constants were defined in Linux 2.6.23 and 2.6.38.

[...]
> $ uname -r
> 3.10.0-693.el7.x86_64

It should be OK.

I think we are just missing
	#include <linux/falloc.h>

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

* Re: Build failure on RHEL 7.4
  2018-04-11 19:40 ` Thomas Monjalon
@ 2018-04-11 19:46   ` Pavan Nikhilesh
  2018-04-11 19:56     ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Pavan Nikhilesh @ 2018-04-11 19:46 UTC (permalink / raw)
  To: Thomas Monjalon, Andrew Rybchenko, Anatoly Burakov; +Cc: dev

On Wed, Apr 11, 2018 at 09:40:30PM +0200, Thomas Monjalon wrote:
> 11/04/2018 21:09, Andrew Rybchenko:
> > Hello,
> >
> > build fails on RHEL 7.4. I've not tried to dig it.
>
> Thanks for reporting.
>
> [...]
> > ‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)
> [...]
> > ‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)
>
> These constants were defined in Linux 2.6.23 and 2.6.38.
>
> [...]
> > $ uname -r
> > 3.10.0-693.el7.x86_64
>
> It should be OK.
>
> I think we are just missing
> 	#include <linux/falloc.h>

Currently there is a bug filed in glibc here for the exact same kernel version.
https://bugzilla.redhat.com/show_bug.cgi?id=1476120


>
>

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

* Re: Build failure on RHEL 7.4
  2018-04-11 19:46   ` Pavan Nikhilesh
@ 2018-04-11 19:56     ` Thomas Monjalon
  2018-04-11 20:14       ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2018-04-11 19:56 UTC (permalink / raw)
  To: Pavan Nikhilesh, Andrew Rybchenko, Anatoly Burakov; +Cc: dev

11/04/2018 21:46, Pavan Nikhilesh:
> On Wed, Apr 11, 2018 at 09:40:30PM +0200, Thomas Monjalon wrote:
> > 11/04/2018 21:09, Andrew Rybchenko:
> > > Hello,
> > >
> > > build fails on RHEL 7.4. I've not tried to dig it.
> >
> > Thanks for reporting.
> >
> > [...]
> > > ‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)
> > [...]
> > > ‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)
> >
> > These constants were defined in Linux 2.6.23 and 2.6.38.
> >
> > [...]
> > > $ uname -r
> > > 3.10.0-693.el7.x86_64
> >
> > It should be OK.
> >
> > I think we are just missing
> > 	#include <linux/falloc.h>
> 
> Currently there is a bug filed in glibc here for the exact same kernel version.
> https://bugzilla.redhat.com/show_bug.cgi?id=1476120

The man page says: "The FALLOC_FL_* flags are defined in glibc headers
only since version 2.18."

I guess we can workaround with a direct include.

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

* Re: Build failure on RHEL 7.4
  2018-04-11 19:56     ` Thomas Monjalon
@ 2018-04-11 20:14       ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-04-11 20:14 UTC (permalink / raw)
  To: Anatoly Burakov; +Cc: dev, Pavan Nikhilesh, Andrew Rybchenko, david.marchand

11/04/2018 21:56, Thomas Monjalon:
> 11/04/2018 21:46, Pavan Nikhilesh:
> > On Wed, Apr 11, 2018 at 09:40:30PM +0200, Thomas Monjalon wrote:
> > > 11/04/2018 21:09, Andrew Rybchenko:
> > > > Hello,
> > > >
> > > > build fails on RHEL 7.4. I've not tried to dig it.
> > >
> > > Thanks for reporting.
> > >
> > > [...]
> > > > ‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)
> > > [...]
> > > > ‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)
> > >
> > > These constants were defined in Linux 2.6.23 and 2.6.38.
> > >
> > > [...]
> > > > $ uname -r
> > > > 3.10.0-693.el7.x86_64
> > >
> > > It should be OK.
> > >
> > > I think we are just missing
> > > 	#include <linux/falloc.h>
> > 
> > Currently there is a bug filed in glibc here for the exact same kernel version.
> > https://bugzilla.redhat.com/show_bug.cgi?id=1476120
> 
> The man page says: "The FALLOC_FL_* flags are defined in glibc headers
> only since version 2.18."
> 
> I guess we can workaround with a direct include.

Fixed and rebased
Tested by David, thanks

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

end of thread, other threads:[~2018-04-11 20:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-11 19:09 Build failure on RHEL 7.4 Andrew Rybchenko
2018-04-11 19:40 ` Thomas Monjalon
2018-04-11 19:46   ` Pavan Nikhilesh
2018-04-11 19:56     ` Thomas Monjalon
2018-04-11 20:14       ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.