diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-23 10:50:31 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-23 11:59:23 +0000 |
commit | d13733c166b71ac05056f553f0afdc8a363b2820 (patch) | |
tree | d3404db5f0dda5e2bc994a0108806a74d0d144d6 /sysdeps/unix/sysv/linux/powerpc | |
parent | 1e9d5987fd94b88bdf4ebfb9f13d4a472d529cdd (diff) | |
download | glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.gz glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.bz2 glibc-d13733c166b71ac05056f553f0afdc8a363b2820.zip |
Fix misspellings in sysdeps/unix -- BZ 25337
Applying this commit results in bit-identical rebuild of
libc.so.6 math/libm.so.6 elf/ld-linux-x86-64.so.2 mathvec/libmvec.so.1
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/elision-conf.c | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/elision-conf.c b/sysdeps/unix/sysv/linux/powerpc/elision-conf.c index 7c98dbd0d0..61eaf89868 100644 --- a/sysdeps/unix/sysv/linux/powerpc/elision-conf.c +++ b/sysdeps/unix/sysv/linux/powerpc/elision-conf.c @@ -53,7 +53,7 @@ static inline void __always_inline do_set_elision_enable (int32_t elision_enable) { - /* Enable elision if it's avaliable in hardware. It's not necessary to check + /* Enable elision if it's available in hardware. It's not necessary to check if __libc_enable_secure isn't enabled since elision_enable will be set according to the default, which is disabled. */ if (elision_enable == 1) @@ -126,7 +126,7 @@ __lll_elision_init (void) syscalls which makes the glibc workaround superflours. Worse, glibc transaction abortions leads to a performance issues on recent kernels. - So Lock Elision is just enabled when it has been explict set (either + So Lock Elision is just enabled when it has been explicitly set (either by tunables of by a configure switch) and if kernel aborts HTM transactions on syscalls (PPC_FEATURE2_HTM_NOSC) */ diff --git a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c index 754e94b26d..af6eb34435 100644 --- a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c +++ b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c @@ -57,7 +57,7 @@ get_timebase_freq_fallback (void) the last 512 bytes of cpuinfo, so two 512 byte half_bufs will be sufficient to contain the timebase and will handle the case where the timebase spans the half_buf - boundry. */ + boundary. */ const ssize_t half_buf = sizeof (buf) / 2; while (n >= half_buf) { |