unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Florian Weimer <fw@deneb.enyo.de>
To: Adhemerval Zanella via Libc-alpha <libc-alpha@sourceware.org>
Cc: Florian Weimer <fweimer@redhat.com>
Subject: Re: [PATCH 05/13] string: Remove old TLS usage on strsignal
Date: Mon, 01 Jun 2020 20:13:57 +0200	[thread overview]
Message-ID: <87tuzuwt5m.fsf@mid.deneb.enyo.de> (raw)
In-Reply-To: <4ead5141-c6ba-3fde-d30c-872a1024dfd1@linaro.org> (Adhemerval Zanella via Libc-alpha's message of "Mon, 1 Jun 2020 15:08:50 -0300")

* Adhemerval Zanella via Libc-alpha:

>>> diff --git a/malloc/thread-freeres.c b/malloc/thread-freeres.c
>>> index c71ca4fc33..d42eea770b 100644
>>> --- a/malloc/thread-freeres.c
>>> +++ b/malloc/thread-freeres.c
>>> @@ -32,6 +32,7 @@ __libc_thread_freeres (void)
>>>    call_function_static_weak (__rpc_thread_destroy);
>>>    call_function_static_weak (__res_thread_freeres);
>>>    call_function_static_weak (__strerror_thread_freeres);
>>> +  call_function_static_weak (__strsignal_thread_freeres);
>> 
>> I think you can call free directly.  I doubt it increases binary
>> size—the data is in the thread descriptor, so nothing needs to be pulled
>> into the link for this.
>
> Don't we need it to deallocate the memory in the case of a libc
> loaded in a different namespace? 

Right, but using call_function_static_weak does not achieve that.
This is a general problem with using TLS that needs separate
deallocation.  We don't have per-namespace thread exit hooks, but we
probably need them.

  reply	other threads:[~2020-06-01 18:14 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-19 18:05 [PATCH 00/13] Signal and error list refactoring Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH v2 01/13] signal: Add signum-{generic,arch}.h Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH v3 02/13] signal: Move sys_siglist to a compat symbol Adhemerval Zanella via Libc-alpha
2020-05-28 14:50   ` Florian Weimer via Libc-alpha
2020-05-19 18:05 ` [PATCH v3 03/13] signal: Move sys_errlist " Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 04/13] linux: Fix __NSIG_WORDS and add __NSIG_BYTES Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 05/13] string: Remove old TLS usage on strsignal Adhemerval Zanella via Libc-alpha
2020-05-28 11:38   ` Florian Weimer via Libc-alpha
2020-06-01 18:08     ` Adhemerval Zanella via Libc-alpha
2020-06-01 18:13       ` Florian Weimer [this message]
2020-06-01 18:39         ` Adhemerval Zanella via Libc-alpha
2020-06-01 18:43           ` Florian Weimer
2020-05-19 18:05 ` [PATCH 06/13] string: Implement strerror in terms of strerror_l Adhemerval Zanella via Libc-alpha
2020-05-28 11:41   ` Florian Weimer via Libc-alpha
2020-06-01 18:28     ` Adhemerval Zanella via Libc-alpha
2020-06-03  8:24       ` Florian Weimer via Libc-alpha
2020-06-03 15:13         ` Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 07/13] string: Use tls-internal on strerror_l Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 08/13] string: Simplify strerror_r Adhemerval Zanella via Libc-alpha
2020-05-28 11:56   ` Florian Weimer via Libc-alpha
2020-06-01 18:31     ` Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 09/13] string: Add strsignal test Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 10/13] string: Add strerror, strerror_r, and strerror_l test Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 11/13] string: Add strerror_l on test-strerror-errno Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 12/13] string: Add sigabbrev_np and sigdescr_np Adhemerval Zanella via Libc-alpha
2020-05-19 18:47   ` Joseph Myers
2020-05-28 12:31   ` Florian Weimer via Libc-alpha
2020-06-03 16:39     ` Adhemerval Zanella via Libc-alpha
2020-05-19 18:05 ` [PATCH 13/13] string: Add errname_np and errdesc_np Adhemerval Zanella via Libc-alpha
2020-05-28 12:28   ` Florian Weimer via Libc-alpha
2020-06-01 20:52     ` Adhemerval Zanella via Libc-alpha
2020-06-02 17:13     ` Adhemerval Zanella via Libc-alpha
2020-06-02 17:19       ` Florian Weimer via Libc-alpha
2020-06-02 17:20         ` Adhemerval Zanella via Libc-alpha

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

  List information: https://www.gnu.org/software/libc/involved.html

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

  git send-email \
    --in-reply-to=87tuzuwt5m.fsf@mid.deneb.enyo.de \
    --to=fw@deneb.enyo.de \
    --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).