| lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
|
Open Source and information security mailing list archives
| ||
|
Message-ID: <CAOVs6YUBwoSEL+h88O6z1uHrOu-QiFN7ATY-MkG1M9sk2uii_g@mail.gmail.com>
Date: Wed, 7 Jun 2017 13:24:11 +0800
From: meng chen <cmhanjey@...il.com>
To: linux 内核邮件列表
<linux-kernel@...r.kernel.org>
Subject: page table questions
hello ,how to know wheather a pmd maps a 2M physical page or not??
if(pmd_trans_huge(*pmd)){
if(pte_present(*pmd)){
/*page is in ram?*/
}
}
can I judge it according the above codes??
thanks a lot!!