public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Siddhesh Poyarekar <siddhesh@gotplt.org>
To: libc-alpha@sourceware.org
Cc: carlos@redhat.com, adhemerval.zanella@linaro.org
Subject: [PING 4][PATCHv6 0/4] glibc tunables
Date: Mon, 05 Dec 2016 12:08:00 -0000	[thread overview]
Message-ID: <80ec2f37-0b97-08a6-db2f-a4b029870371@gotplt.org> (raw)
In-Reply-To: <1479285306-11684-1-git-send-email-siddhesh@sourceware.org>

Ping!

On Wednesday 16 November 2016 02:05 PM, Siddhesh Poyarekar wrote:
> Hi,
> 
> Here is iteration 6 of the tunables patchset, now with two patches palmed off
> to Adhemerval to worry about!  Here are changes from the previous patchset:
> 
>  - I discovered some implicit includes that broke aarch64 - shame on me for
>    missing them.
>  - I realized that __tunables_init used strncmp and strlen.  They're built into
>    ld.so too, but they are likely tunables targets and I don't want them to
>    break unintentionally in future, so off they go
>  - The patchset depends on Adhemerval's __access_noerrno patch[1] fixed up with
>    my comments on the patch.
> 
> The branch siddhesh/tunables has these patches and also Adhemerval's fixed up
> patch.  If you're watching this, please also review Adhemerval's
> __access_noerrno patch and help get that through.
> 
> Siddhesh
> 
> [1] https://sourceware.org/ml/libc-alpha/2016-11/msg00416.html
> 
> Siddhesh Poyarekar (4):
>   Add framework for tunables
>   Initialize tunable list with the GLIBC_TUNABLES environment variable
>   Enhance --enable-tunables to select tunables frontend at build time
>   User manual documentation for tunables
> 
>  INSTALL                                    |  18 ++
>  Makeconfig                                 |  16 ++
>  README.tunables                            |  84 ++++++
>  config.h.in                                |   3 +
>  config.make.in                             |   1 +
>  configure                                  |  17 ++
>  configure.ac                               |  10 +
>  csu/init-first.c                           |   2 -
>  csu/libc-start.c                           |  12 +
>  elf/Makefile                               |   7 +
>  elf/Versions                               |   3 +
>  elf/dl-support.c                           |   2 +
>  elf/dl-sysdep.c                            |   8 +
>  elf/dl-tunable-types.h                     |  46 +++
>  elf/dl-tunables.c                          | 447 +++++++++++++++++++++++++++++
>  elf/dl-tunables.h                          |  82 ++++++
>  elf/dl-tunables.list                       |  69 +++++
>  elf/rtld.c                                 |   2 +
>  malloc/Makefile                            |   6 +
>  malloc/arena.c                             |  54 ++++
>  malloc/tst-malloc-usable-static-tunables.c |   1 +
>  malloc/tst-malloc-usable-static.c          |   1 +
>  malloc/tst-malloc-usable-tunables.c        |   1 +
>  manual/Makefile                            |   3 +-
>  manual/install.texi                        |  21 ++
>  manual/probes.texi                         |   2 +-
>  manual/tunables.texi                       | 185 ++++++++++++
>  scripts/gen-tunables.awk                   | 157 ++++++++++
>  sysdeps/mach/hurd/dl-sysdep.c              |   8 +
>  29 files changed, 1264 insertions(+), 4 deletions(-)
>  create mode 100644 README.tunables
>  create mode 100644 elf/dl-tunable-types.h
>  create mode 100644 elf/dl-tunables.c
>  create mode 100644 elf/dl-tunables.h
>  create mode 100644 elf/dl-tunables.list
>  create mode 100644 malloc/tst-malloc-usable-static-tunables.c
>  create mode 100644 malloc/tst-malloc-usable-static.c
>  create mode 100644 malloc/tst-malloc-usable-tunables.c
>  create mode 100644 manual/tunables.texi
>  create mode 100644 scripts/gen-tunables.awk
> 

  parent reply	other threads:[~2016-12-05 12:08 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-16  8:35 [PATCHv6 " Siddhesh Poyarekar
2016-11-16  8:35 ` [PATCH 2/4] Initialize tunable list with the GLIBC_TUNABLES environment variable Siddhesh Poyarekar
2016-12-27 11:41   ` Florian Weimer
2016-12-27 21:35     ` Siddhesh Poyarekar
2016-11-16  8:35 ` [PATCH 4/4] User manual documentation for tunables Siddhesh Poyarekar
2016-11-16 13:49   ` Rical Jasan
2016-11-21  3:07     ` Siddhesh Poyarekar
2016-11-16  8:35 ` [PATCH 1/4] Add framework " Siddhesh Poyarekar
2016-12-27 11:08   ` Florian Weimer
2016-12-27 20:59     ` Siddhesh Poyarekar
2016-12-27 21:12       ` Florian Weimer
2016-12-27 21:25         ` Siddhesh Poyarekar
2016-12-30 13:28     ` Joseph Myers
2016-12-31 13:48       ` Siddhesh Poyarekar
2016-11-16  8:35 ` [PATCH 3/4] Enhance --enable-tunables to select tunables frontend at build time Siddhesh Poyarekar
2016-12-27 11:44   ` Florian Weimer
2016-12-27 21:10     ` Siddhesh Poyarekar
2016-12-27 21:16       ` Florian Weimer
2016-11-21  2:58 ` [ping][PATCHv6 0/4] glibc tunables Siddhesh Poyarekar
2016-11-24 13:31 ` [PING 2][PATCHv6 " Siddhesh Poyarekar
2016-11-28 11:52 ` [PING 3][PATCHv6 " Siddhesh Poyarekar
2016-12-05 12:08 ` Siddhesh Poyarekar [this message]
2016-12-05 15:10   ` [PING 4][PATCHv6 " Steven Munroe
2016-12-12 16:20 ` [PING 5][PATCHv6 " Siddhesh Poyarekar
2016-12-26 14:29 ` [PING 6][PATCHv6 " Siddhesh Poyarekar
2016-12-27  9:49 ` [PATCHv6 " Florian Weimer

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=80ec2f37-0b97-08a6-db2f-a4b029870371@gotplt.org \
    --to=siddhesh@gotplt.org \
    --cc=adhemerval.zanella@linaro.org \
    --cc=carlos@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).