public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Florian Weimer <fweimer@redhat.com>
To: libc-alpha@sourceware.org
Cc: Joseph Myers <josmyers@redhat.com>
Subject: [PATCH v3 12/29] mips: Add <bits/pagesize.h>
Date: Sun, 29 Sep 2024 18:20:56 +0200	[thread overview]
Message-ID: <e8cd2a53433fd235d4a3e141053928edaf782688.1727624528.git.fweimer@redhat.com> (raw)
In-Reply-To: <cover.1727624528.git.fweimer@redhat.com>

According to arch/mips/Kconfig in the Linux sources, MIPS supports
4 KiB, 8 KiB, 16 KiB, 32 KiB, 64 KiB page sizes depending on
CPU/configuration.
---
 sysdeps/mips/bits/pagesize.h | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 sysdeps/mips/bits/pagesize.h

diff --git a/sysdeps/mips/bits/pagesize.h b/sysdeps/mips/bits/pagesize.h
new file mode 100644
index 0000000000..cd688d3fb0
--- /dev/null
+++ b/sysdeps/mips/bits/pagesize.h
@@ -0,0 +1,2 @@
+#define __GLIBC_PAGE_SHIFT_MIN 12
+#define __GLIBC_PAGE_SHIFT_MAX 16
-- 
2.46.2



  parent reply	other threads:[~2024-09-29 16:21 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-29 15:47 [PATCH v3 00/29] Teach glibc about possible page sizes and handle gaps in ld.so Florian Weimer
2024-09-29 15:49 ` [PATCH v3 01/29] elf: Add tests to verify that l_contiguous reflects reality Florian Weimer
2024-09-29 15:49 ` [PATCH v3 02/29] Prepare for the addition of the <sys/pagesize.h> header Florian Weimer
2024-09-29 19:06   ` Paul Eggert
2024-09-29 19:47     ` Florian Weimer
2024-09-29 20:02       ` Paul Eggert
2024-10-01 16:29         ` Florian Weimer
2024-10-01 16:56           ` Maciej W. Rozycki
2024-10-01 17:57             ` Paul Eggert
2024-10-01 18:22               ` Maciej W. Rozycki
2024-10-01 18:38                 ` Paul Eggert
2024-10-01 22:54                   ` Florian Weimer
2024-10-02  3:46                     ` Paul Eggert
2024-10-02  8:23                       ` Florian Weimer
2024-10-02  9:47                   ` Maciej W. Rozycki
2024-10-03 23:14                     ` Paul Eggert
2024-09-29 15:53 ` [PATCH v3 03/29] aarch64: Add <bits/pagesize.h> Florian Weimer
2024-09-29 15:56 ` [PATCH v3 04/29] alpha: " Florian Weimer
2024-10-05  0:53   ` Richard Henderson
2024-10-05 18:22     ` Florian Weimer
2024-10-06 16:13       ` Richard Henderson
2024-09-29 15:59 ` [PATCH v3 05/29] arc: " Florian Weimer
2024-09-29 21:55   ` Vineet Gupta
2024-09-30  9:20     ` Florian Weimer
2024-09-29 16:00 ` [PATCH v3 06/29] arm: " Florian Weimer
2024-09-29 16:01 ` [PATCH v3 07/29] csky: " Florian Weimer
2024-09-29 16:10 ` [PATCH v3 08/29] hppa: " Florian Weimer
2024-11-03 22:40   ` John David Anglin
2024-12-23 15:02     ` John David Anglin
2024-12-23 15:18       ` Florian Weimer
2024-09-29 16:12 ` [PATCH v3 09/29] loongarch: " Florian Weimer
2024-09-29 17:35   ` Xi Ruoyao
2024-09-29 18:45     ` Florian Weimer
2024-09-29 18:54       ` Xi Ruoyao
2024-10-11  9:56   ` caiyinyu
2024-09-29 16:17 ` [PATCH v3 10/29] m68k: " Florian Weimer
2024-09-29 16:19 ` [PATCH v3 11/29] microblaze: " Florian Weimer
2024-09-29 16:20 ` Florian Weimer [this message]
2024-09-29 21:07   ` [PATCH v3 12/29] mips: " Maciej W. Rozycki
2024-09-30  9:15     ` Florian Weimer
2024-09-30 10:56       ` Maciej W. Rozycki
2024-09-30 11:43         ` Florian Weimer
2024-09-29 16:22 ` [PATCH v3 13/29] nios2: " Florian Weimer
2024-09-29 16:23 ` [PATCH v3 14/29] or1k: " Florian Weimer
2024-09-29 16:23 ` [PATCH v3 15/29] powerpc: " Florian Weimer
2024-10-03 22:13   ` Peter Bergner
2024-09-29 16:29 ` [PATCH v3 16/29] riscv: " Florian Weimer
2024-09-29 16:30 ` [PATCH v3 17/29] s390: " Florian Weimer
2024-10-08 14:28   ` Stefan Liebler
2024-09-29 16:31 ` [PATCH v3 18/29] sh: " Florian Weimer
2024-09-29 16:33 ` [PATCH v3 19/29] sparc: " Florian Weimer
2024-09-29 16:34 ` [PATCH v3 20/29] x86: " Florian Weimer
2024-10-14 14:31   ` Sunil Pandey
2024-09-29 16:34 ` [PATCH v3 21/29] misc: Add tst-getpagesize Florian Weimer
2024-09-29 16:34 ` [PATCH v3 22/29] elf: Extract rtld_setup_phdr function from dl_main Florian Weimer
2024-09-29 16:36 ` [PATCH v3 23/29] configure: Add --with-ld-relro-load-gaps configure option and test Florian Weimer
2024-11-22 20:30   ` Adhemerval Zanella Netto
2024-11-29 16:17     ` Florian Weimer
2024-12-26 11:41       ` Adhemerval Zanella Netto
2024-12-26 13:16         ` Florian Weimer
2024-12-26 17:12           ` Adhemerval Zanella Netto
2024-09-29 16:36 ` [PATCH v3 24/29] elf: Handle ld.so with LOAD segment gaps in _dl_find_object (bug 31943) Florian Weimer
2024-09-29 16:36 ` [PATCH v3 25/29] Install the <sys/pagesize.h> header file Florian Weimer
2024-09-29 16:44 ` [PATCH v3 26/29] Linux: Optimize getpagesize using <sys/pagesize.h> Florian Weimer
2024-09-29 16:45 ` [PATCH v3 27/29] malloc: Use volatile as compiler barrier in tst-memalign, tst-valloc Florian Weimer
2024-09-29 16:45 ` [PATCH v3 28/29] posix: Use <support/next_to_fault.h> in tst-fnmatch3 Florian Weimer
2024-09-29 16:45 ` [PATCH v3 29/29] Optimize various ways to obtain the page size using <bits/pagesize.h> Florian Weimer
2024-09-29 20:16 ` [PATCH v3 00/29] Teach glibc about possible page sizes and handle gaps in ld.so H.J. Lu
2024-09-30  9:19   ` 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=e8cd2a53433fd235d4a3e141053928edaf782688.1727624528.git.fweimer@redhat.com \
    --to=fweimer@redhat.com \
    --cc=josmyers@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).