lab5 深入理解进程切换

本文详细探讨了Linux内核中的上下文切换函数content_switch,该函数负责从当前进程切换到即将运行的进程。主要步骤包括:调用prepare_task_switch和arch_start_context_switch进行准备工作,根据进程类型调用enter_lazy_tlb、mmgrab、membarrier_switch_mm和switch_mm_irqs_off进行地址空间切换,最后通过switch_to和finish_task_switch完成切换。重点分析了进程地址空间的判断和切换,确保内存一致性和TLB更新。
摘要由CSDN通过智能技术生成

Linux 内核中的上下文切换函数 是content_switch 。
该函数的代码如下

static __always_inline struct rq *
context_switch(struct rq *rq, struct task_struct *prev,
         struct task_struct *next, struct rq_flags *rf)
{
  prepare_task_switch(rq, prev, next);

  /*
   * For paravirt, this is coupled with an exit in switch_to to
   * combine the page table reload and the switch backend into
   * one hypercall.
   */
  arch_start_context_switch(prev);

  /*
   * kernel -> kernel   lazy + transfer active
   *   user -> kernel   lazy + mmgrab() active
   *
   * kernel ->   user   switch + mmdrop() active
   *   user ->   user   switch
   */
  if (!next->mm) {                                // to kernel
    enter_lazy_tlb(prev->active_mm, next);

    next->active_mm = prev->active_mm;
    if (prev->mm)                           // from user
      mmgrab(prev->active_mm);
    else
      prev->active_mm = NULL;
  } else {                     
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值