From: Songmao Tian <tiansm@lemote.com>
To: linux-mips <linux-mips@linux-mips.org>,
Ralf Baechle <ralf@linux-mips.org>
Subject: [RFC] Calculate exactly how many ptr is needed for pgd
Date: Tue, 31 Jul 2007 22:38:57 +0800 [thread overview]
Message-ID: <46AF4981.1090601@lemote.com> (raw)
Under 32-bit kernel with 4k page, a page is needed for a pgd,
but when page size > 4k, a page will be too much.
diff --git a/include/asm-mips/pgtable-32.h b/include/asm-mips/pgtable-32.h
index 2fbd47e..2a16240 100644
--- a/include/asm-mips/pgtable-32.h
+++ b/include/asm-mips/pgtable-32.h
@@ -67,7 +67,8 @@ extern int add_temporary_entry(unsigned long entrylo0,
unsigned long entrylo1,
#define PTE_ORDER 0
#endif
-#define PTRS_PER_PGD ((PAGE_SIZE << PGD_ORDER) / sizeof(pgd_t))
+/* Using a page for pgd will be a waste when page size > 4k */
+#define PTRS_PER_PGD (1 << (32 - PGDIR_SHIFT))
#define PTRS_PER_PTE ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
#define USER_PTRS_PER_PGD (0x80000000UL/PGDIR_SIZE)
next reply other threads:[~2007-07-31 14:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-31 14:38 Songmao Tian [this message]
[not found] ` <5861a7880708012054u404c9b02s7141d1811d4a7fdf@mail.gmail.com>
2007-08-02 3:55 ` Fwd: [RFC] Calculate exactly how many ptr is needed for pgd Dajie Tan
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=46AF4981.1090601@lemote.com \
--to=tiansm@lemote.com \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.