public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: Florian Weimer <fweimer@redhat.com>, libc-alpha@sourceware.org
Subject: Re: [PATCH v5 1/2] Linux: Introduce __brk_call for invoking the brk system call
Date: Thu, 12 May 2022 10:01:19 -0300	[thread overview]
Message-ID: <38fd6825-2b79-0350-2de4-3c87c97fdd48@linaro.org> (raw)
In-Reply-To: <e949598e0707c34efcee0c61239eec1291579c41.1652120250.git.fweimer@redhat.com>



On 09/05/2022 15:18, Florian Weimer via Libc-alpha wrote:
> Alpha and sparc can now use the generic implementation.

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

> ---
>  sysdeps/unix/sysv/linux/alpha/brk_call.h      | 28 +++++++++
>  sysdeps/unix/sysv/linux/brk.c                 |  3 +-
>  sysdeps/unix/sysv/linux/brk_call.h            | 25 ++++++++
>  sysdeps/unix/sysv/linux/sparc/brk.c           | 58 -------------------
>  .../linux/{alpha/brk.c => sparc/brk_call.h}   | 35 +++++------
>  5 files changed, 71 insertions(+), 78 deletions(-)
>  create mode 100644 sysdeps/unix/sysv/linux/alpha/brk_call.h
>  create mode 100644 sysdeps/unix/sysv/linux/brk_call.h
>  delete mode 100644 sysdeps/unix/sysv/linux/sparc/brk.c
>  rename sysdeps/unix/sysv/linux/{alpha/brk.c => sparc/brk_call.h} (61%)
> 
> diff --git a/sysdeps/unix/sysv/linux/alpha/brk_call.h b/sysdeps/unix/sysv/linux/alpha/brk_call.h
> new file mode 100644
> index 0000000000..b8088cf13f
> --- /dev/null
> +++ b/sysdeps/unix/sysv/linux/alpha/brk_call.h
> @@ -0,0 +1,28 @@
> +/* Invoke the brk system call.  Alpha version.
> +   Copyright (C) 2022 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library.  If not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +static inline void *
> +__brk_call (void *addr)
> +{
> +  unsigned long int result = INTERNAL_SYSCALL_CALL (brk, addr);
> +  if (result == -ENOMEM)
> +    /* Mimic the default error reporting behavior.  */
> +    return addr;
> +  else
> +    return (void *) result;
> +}
> diff --git a/sysdeps/unix/sysv/linux/brk.c b/sysdeps/unix/sysv/linux/brk.c
> index abbabc9e8b..9264a5a4a2 100644
> --- a/sysdeps/unix/sysv/linux/brk.c
> +++ b/sysdeps/unix/sysv/linux/brk.c
> @@ -19,6 +19,7 @@
>  #include <errno.h>
>  #include <unistd.h>
>  #include <sysdep.h>
> +#include <brk_call.h>
>  
>  /* This must be initialized data because commons can't have aliases.  */
>  void *__curbrk = 0;
> @@ -33,7 +34,7 @@ weak_alias (__curbrk, ___brk_addr)
>  int
>  __brk (void *addr)
>  {
> -  __curbrk = (void *) INTERNAL_SYSCALL_CALL (brk, addr);
> +  __curbrk = __brk_call (addr);
>    if (__curbrk < addr)
>      {
>        __set_errno (ENOMEM);
> diff --git a/sysdeps/unix/sysv/linux/brk_call.h b/sysdeps/unix/sysv/linux/brk_call.h
> new file mode 100644
> index 0000000000..72370c25d7
> --- /dev/null
> +++ b/sysdeps/unix/sysv/linux/brk_call.h
> @@ -0,0 +1,25 @@
> +/* Invoke the brk system call.  Generic Linux version.
> +   Copyright (C) 2022 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library.  If not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +static inline void *
> +__brk_call (void *addr)
> +{
> +  /* The default implementation reports errors through an unchanged
> +     break.  */
> +  return (void *) INTERNAL_SYSCALL_CALL (brk, addr);
> +}
> diff --git a/sysdeps/unix/sysv/linux/sparc/brk.c b/sysdeps/unix/sysv/linux/sparc/brk.c
> deleted file mode 100644
> index c5c1ee0282..0000000000
> --- a/sysdeps/unix/sysv/linux/sparc/brk.c
> +++ /dev/null
> @@ -1,58 +0,0 @@
> -/* Change data segment.  Linux SPARC version.
> -   Copyright (C) 2021-2022 Free Software Foundation, Inc.
> -   This file is part of the GNU C Library.
> -
> -   The GNU C Library is free software; you can redistribute it and/or
> -   modify it under the terms of the GNU Lesser General Public
> -   License as published by the Free Software Foundation; either
> -   version 2.1 of the License, or (at your option) any later version.
> -
> -   The GNU C Library is distributed in the hope that it will be useful,
> -   but WITHOUT ANY WARRANTY; without even the implied warranty of
> -   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> -   Lesser General Public License for more details.
> -
> -   You should have received a copy of the GNU Lesser General Public
> -   License along with the GNU C Library.  If not, see
> -   <https://www.gnu.org/licenses/>.  */
> -
> -#include <errno.h>
> -#include <unistd.h>
> -#include <sysdep.h>
> -
> -/* This must be initialized data because commons can't have aliases.  */
> -void *__curbrk = 0;
> -
> -#if HAVE_INTERNAL_BRK_ADDR_SYMBOL
> -/* Old braindamage in GCC's crtstuff.c requires this symbol in an attempt
> -   to work around different old braindamage in the old Linux ELF dynamic
> -   linker.  */
> -weak_alias (__curbrk, ___brk_addr)
> -#endif
> -
> -#ifdef __arch64__
> -# define SYSCALL_NUM "0x6d"
> -#else
> -# define SYSCALL_NUM "0x10"
> -#endif
> -
> -int
> -__brk (void *addr)
> -{
> -  register long int g1 asm ("g1") = __NR_brk;
> -  register long int o0 asm ("o0") = (long int) addr;
> -  asm volatile ("ta " SYSCALL_NUM
> -		: "=r"(o0)
> -		: "r"(g1), "0"(o0)
> -		: "cc");
> -  __curbrk = (void *) o0;
> -
> -  if (__curbrk < addr)
> -    {
> -      __set_errno (ENOMEM);
> -      return -1;
> -    }
> -
> -  return 0;
> -}
> -weak_alias (__brk, brk)
> diff --git a/sysdeps/unix/sysv/linux/alpha/brk.c b/sysdeps/unix/sysv/linux/sparc/brk_call.h
> similarity index 61%
> rename from sysdeps/unix/sysv/linux/alpha/brk.c
> rename to sysdeps/unix/sysv/linux/sparc/brk_call.h
> index 32082a4fae..59ce521660 100644
> --- a/sysdeps/unix/sysv/linux/alpha/brk.c
> +++ b/sysdeps/unix/sysv/linux/sparc/brk_call.h
> @@ -1,5 +1,5 @@
> -/* Change data segment size.  Linux/Alpha.
> -   Copyright (C) 2020-2022 Free Software Foundation, Inc.
> +/* Invoke the brk system call.  Sparc version.
> +   Copyright (C) 2022 Free Software Foundation, Inc.
>     This file is part of the GNU C Library.
>  
>     The GNU C Library is free software; you can redistribute it and/or
> @@ -16,23 +16,20 @@
>     License along with the GNU C Library.  If not, see
>     <https://www.gnu.org/licenses/>.  */
>  
> -#include <errno.h>
> -#include <unistd.h>
> -#include <sysdep.h>
> +#ifdef __arch64__
> +# define SYSCALL_NUM "0x6d"
> +#else
> +# define SYSCALL_NUM "0x10"
> +#endif
>  
> -void *__curbrk = 0;
> -
> -int
> -__brk (void *addr)
> +static inline void *
> +__brk_call (void *addr)
>  {
> -  /* Alpha brk returns -ENOMEM in case of failure.  */
> -  __curbrk = (void *) INTERNAL_SYSCALL_CALL (brk, addr);
> -  if ((unsigned long) __curbrk == -ENOMEM)
> -    {
> -      __set_errno (ENOMEM);
> -      return -1;
> -    }
> -
> -  return 0;
> +  register long int g1 asm ("g1") = __NR_brk;
> +  register long int o0 asm ("o0") = (long int) addr;
> +  asm volatile ("ta " SYSCALL_NUM
> +		: "=r"(o0)
> +		: "r"(g1), "0"(o0)
> +		: "cc");
> +  return (void *) o0;
>  }
> -weak_alias (__brk, brk)
> 
> base-commit: a2a6bce7d7e52c1c34369a7da62c501cc350bc31

  parent reply	other threads:[~2022-05-12 13:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-09 18:18 Florian Weimer
2022-05-09 18:18 ` [PATCH v5 2/2] csu: Implement and use _dl_early_allocate during static startup Florian Weimer
2022-05-12 13:15   ` Adhemerval Zanella
2022-05-12 18:37     ` Florian Weimer
2022-05-16 13:04       ` Adhemerval Zanella
2022-05-12 13:01 ` Adhemerval Zanella [this message]
2022-05-12 13:25 ` [PATCH v5 1/2] Linux: Introduce __brk_call for invoking the brk system call Andreas Schwab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=38fd6825-2b79-0350-2de4-3c87c97fdd48@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).