mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later
@ 2012-11-14 16:57 George McCollister
  2012-11-16 10:36 ` Michael Olbrich
  2012-12-04  9:25 ` Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: George McCollister @ 2012-11-14 16:57 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 650 bytes --]

When trying to run systemd on my arm platform I received this error:
"systemd-journald[190]: Failed to accept stdout connection: Function not 
implemented"

I was using OSELAS.Toolchain-2011.03.0. I switched to the newest and 
added this patch at the same time:
http://sourceware.org/ml/libc-ports/2012-05/msg00092.html

Can't say for sure if the patch was required since I didn't try a build 
with the new toolchain without the patch. I did look through 
glibc-2.14.1 and
glibc-ports-2.14.1 and I didn't see anywhere else where __ASSUME_ACCEPT4 
would be defined for ARM.

Regards,
George
<http://sourceware.org/ml/libc-ports/2012-05/msg00092.html>

[-- Attachment #1.2: Type: text/html, Size: 1121 bytes --]

[-- Attachment #2: Type: text/plain, Size: 48 bytes --]

-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later
  2012-11-14 16:57 [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later George McCollister
@ 2012-11-16 10:36 ` Michael Olbrich
  2012-11-26 15:28   ` George McCollister
  2012-12-04  9:25 ` Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Olbrich @ 2012-11-16 10:36 UTC (permalink / raw)
  To: ptxdist

Hi,

On Wed, Nov 14, 2012 at 10:57:05AM -0600, George McCollister wrote:
> When trying to run systemd on my arm platform I received this error:
> "systemd-journald[190]: Failed to accept stdout connection: Function
> not implemented"
> 
> I was using OSELAS.Toolchain-2011.03.0. I switched to the newest and
> added this patch at the same time:
> http://sourceware.org/ml/libc-ports/2012-05/msg00092.html
> 
> Can't say for sure if the patch was required since I didn't try a
> build with the new toolchain without the patch. I did look through
> glibc-2.14.1 and
> glibc-ports-2.14.1 and I didn't see anywhere else where
> __ASSUME_ACCEPT4 would be defined for ARM.

I don't remember if I ever used OSELAS.Toolchain-2011.03.0 with the current
systemd version, but OSELAS.Toolchain-2011.11.3 works just fine as it is.
What kernel Version are you using?

Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later
  2012-11-16 10:36 ` Michael Olbrich
@ 2012-11-26 15:28   ` George McCollister
  0 siblings, 0 replies; 4+ messages in thread
From: George McCollister @ 2012-11-26 15:28 UTC (permalink / raw)
  To: ptxdist

On 11/16/2012 04:36 AM, Michael Olbrich wrote:
> I don't remember if I ever used OSELAS.Toolchain-2011.03.0 with the current
> systemd version, but OSELAS.Toolchain-2011.11.3 works just fine as it is.
> What kernel Version are you using?
I'm using 3.2.28.

-George

-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later
  2012-11-14 16:57 [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later George McCollister
  2012-11-16 10:36 ` Michael Olbrich
@ 2012-12-04  9:25 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2012-12-04  9:25 UTC (permalink / raw)
  To: ptxdist

Hi,

On Wed, Nov 14, 2012 at 10:57:05AM -0600, George McCollister wrote:
> When trying to run systemd on my arm platform I received this error:
> "systemd-journald[190]: Failed to accept stdout connection: Function
> not implemented"
> 
> I was using OSELAS.Toolchain-2011.03.0. I switched to the newest and
> added this patch at the same time:
> http://sourceware.org/ml/libc-ports/2012-05/msg00092.html
> 
> Can't say for sure if the patch was required since I didn't try a
> build with the new toolchain without the patch. I did look through
> glibc-2.14.1 and
> glibc-ports-2.14.1 and I didn't see anywhere else where
> __ASSUME_ACCEPT4 would be defined for ARM.

I've looked at this some more. It is not necessary and des not make any
difference. Take a closer look:

[...]
+/* Support for the accept4 syscall was added in 2.6.36.  */
+#if __LINUX_KERNEL_VERSION >= 0x020624
+# define __ASSUME_ACCEPT41
+#endif
[...]

"__LINUX_KERNEL_VERSION >= 0x020624" mean the _buildtime_ _minimum_ kernel
version is >= 2.6.36. And in OSELAS.Toolchain-2011.11.x this is set to
2.6.23.
As a result glibc won't just use accept4() but uses a wrapper that checks
for its existence the first time it is called. If it gets a ENOSYS, then
the emulation code is used.

Michael


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2012-12-04  9:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-14 16:57 [ptxdist] [OSELAS.Toolchain] glibc-ports accept4 on ARM for kernels 2.6.36 and later George McCollister
2012-11-16 10:36 ` Michael Olbrich
2012-11-26 15:28   ` George McCollister
2012-12-04  9:25 ` Michael Olbrich

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