On Mon, Dec 14, 2020 at 6:59 AM Carlos O'Donell wrote: > > On 12/13/20 9:51 AM, H.J. Lu via Libc-alpha wrote: > > Since the default REP MOVSB threshold is 2048 * (vector size / 16), > > remove its default tunable value so that the correct default value > > will be set correctly by init_cacheinfo (). > > This is a failure in the tunables framework. We should have internal > APIs to detect: > * Set by user. > * Still set to default. > I've run into this before when we were looking at some of the other > tunables for x86. Please file an enhancement request for this and > then we can look at implementing this and adding back the defaults. https://sourceware.org/bugzilla/show_bug.cgi?id=27069 > OK with the typo fix and upstream bug reference. Fixed. > Reviewed-by: Carlos O'Donell > > > --- > > sysdeps/x86/dl-tunables.list | 5 +++-- > > 1 file changed, 3 insertions(+), 2 deletions(-) > > > > diff --git a/sysdeps/x86/dl-tunables.list b/sysdeps/x86/dl-tunables.list > > index 1a4a93a070..348616fb69 100644 > > --- a/sysdeps/x86/dl-tunables.list > > +++ b/sysdeps/x86/dl-tunables.list > > @@ -39,9 +39,10 @@ glibc { > > # REP MOVSB. Since larger register size can move more data with a > > # single load and store, the threshold is higher with larger register > > # size. Note: Since the REP MOVSB threshold must be greater than 8 > > - # times of vector size, the minium value must be updated at run-time. > > + # times of vector size and the default value is 2048 * (vector size > > + # / 16), the default value and the minium value must be updated at > > s/minium/minimum/g > > Please add references to upstream bug. Fixed. > > + # run-time. > > minval: 1 > > - default: 2048 > > } > > x86_rep_stosb_threshold { > > type: SIZE_T > > > > > -- > Cheers, > Carlos. > Here is the patch I am checking in. Thanks. -- H.J.