与Linux内核有关,“内核”页面是否会被换出?此外,用户空间页面是否会驻留在ZONE_NORMAL?
答案 0 :(得分:11)
不,内核内存不可逆。
答案 1 :(得分:5)
内核页面无法交换。但它可以被释放。
UserSpace Pages可以驻留在ZONE_NORMAL中。 Linux系统可以配置为使用HIGHMEM。 如果配置了ZONE_HIGHMEM,那么用户空间进程将从HIGHMEM获取其内存,否则用户空间进程将从ZONE_NORMAL获取内存。
答案 2 :(得分:2)
是的,在正常情况下,内核页面(即驻留在内核中用于内核使用的内存)是不可交换的,事实上,一旦检测到(参见pagefault处理程序源代码),内核将自行崩溃。
见:
http://lxr.free-electrons.com/source/arch/x86/mm/fault.c
和功能:
try
{
HttpContext.Current.Trace.Write("Setup connection with connection string");
connMySql = new MySqlConnection(strConnectionString);
HttpContext.Current.Trace.Write("Open Connection");
connMySql.Open();
HttpContext.Current.Trace.Write("New SQL Command");
MySqlCommand cmdMySql = new MySqlCommand();
cmdMySql.Connection = connMySql;
HttpContext.Current.Trace.Write("Server: " + connMySql.DataSource.ToString());
string sql = "";
HttpContext.Current.Trace.Write("Setup SQL Query");
sql = "SELECT * FROM tblret";
cmdMySql.CommandText = sql;
HttpContext.Current.Trace.Write("Call DB");
MySqlDataReader dr = cmdMySql.ExecuteReader();
HttpContext.Current.Trace.Write("DB Returned");
int recordsReturned = 0;
while (dr.Read())
recordsReturned++;
HttpContext.Current.Trace.Write("Parsed " + recordsReturned.ToString() + " records");
textArea.Text = "Parsed " + recordsReturned.ToString() + " records";
}
catch (Exception ex)
{
HttpContext.Current.Trace.Write("Error: " + ex.Message);
}
在这里检测:
1205 /*
1206 * This routine handles page faults. It determines the address,
1207 * and the problem, and then passes it off to one of the appropriate
1208 * routines.
1209 *
1210 * This function must have noinline because both callers
1211 * {,trace_}do_page_fault() have notrace on. Having this an actual function
1212 * guarantees there's a function trace entry.
1213 */
1214 static noinline void
1215 __do_page_fault(struct pt_regs *regs, unsigned long error_code,
1216 unsigned long address)
1217 {
但同样的pagefault处理程序 - 可以检测由不存在的用户模式内存引起的页面故障(所有硬件页面故障检测总是在内核中完成)将显示从交换空间中检索数据(如果存在),或者启动内存分配例程到给这个过程更多的记忆。
好的,那就是说,内核会在软件挂起和休眠操作期间交换内核结构/内存/任务列表等:
https://www.kernel.org/doc/Documentation/power/swsusp.txt
在恢复阶段,它将从交换文件恢复内核内存。