ジフィーはいつ増えますか?プロセスはどのようにすばやく実行されますか?

ジフィーはいつ増えますか?プロセスはどのようにすばやく実行されますか?

jiffiesの長さはカーネルのコンパイル時に選択され、デフォルトは250(4ms)であることがわかります。
源泉:man 7 time - ソフトウェアクロック、HZ、Jiffies

一瞬で何が起こるのか気になりますね。utimeそれとも、stimein値が増加する条件は何ですか/proc/pid/stat?いつ発生しますか?

いくつかのアイデアがありますが、それが正しいかどうかはわかりません。

  • プロセスが実行される時間が経過すると、jiffyの数はすぐに増加します。
  • Linuxは、1分以内にどのくらいの作業が行われたかを知りません。
  • さらに、Linuxは現在、プロセスが1 jiffyにどれだけの時間を費やしたかを知る方法がありません。 (4ミリ秒をすべて使用しましたか、それともそれ以下ですか?)
  • 現在のプロセスはすぐに開始され、後で開始されません。
  • プロセスが完了し、現在の瞬間から残り時間がある場合、何も起こりません(nop)。
  • より高い優先順位プロセスが表示された場合、現在のジフィには影響しません。

これを理解すると、多くの役に立ちます。

ベストアンサー1

jiffyの数が増えると、プロセスが実行される時間があります。 jiffies はタイマ割り込みによって増加し、スケジューラにスケジュールを変更するよう指示します。 jiffyは、スケジュールを変更せずにプロセスを実行できる最大期間を定義します。たとえば、プロセスがまたはをyield()呼び出すと、スケジューリングがすぐに発生します。sleep()したがって、次の使用可能な実行プロセスへのコンテキスト遷移が必ずしも短い境界で発生するわけではない。

ただし、実際のカーネルの動作は、カーネルがコンパイルされるとき(linux/kernel/Kconfig.preempt)で定義されます。

choice
    prompt "Preemption Model"
    default PREEMPT_NONE

config PREEMPT_NONE
    bool "No Forced Preemption (Server)"
    help
      This is the traditional Linux preemption model, geared towards
      throughput. It will still provide good latencies most of the
      time, but there are no guarantees and occasional longer delays
      are possible.

      Select this option if you are building a kernel for a server or
      scientific/computation system, or if you want to maximize the
      raw processing power of the kernel, irrespective of scheduling
      latencies.

config PREEMPT_VOLUNTARY
    bool "Voluntary Kernel Preemption (Desktop)"
    help
      This option reduces the latency of the kernel by adding more
      "explicit preemption points" to the kernel code. These new
      preemption points have been selected to reduce the maximum
      latency of rescheduling, providing faster application reactions,
      at the cost of slightly lower throughput.

      This allows reaction to interactive events by allowing a
      low priority process to voluntarily preempt itself even if it
      is in kernel mode executing a system call. This allows
      applications to run more 'smoothly' even when the system is
      under load.

      Select this if you are building a kernel for a desktop system.

config PREEMPT
    bool "Preemptible Kernel (Low-Latency Desktop)"
    select PREEMPT_COUNT
    select UNINLINE_SPIN_UNLOCK if !ARCH_INLINE_SPIN_UNLOCK
    help
      This option reduces the latency of the kernel by making
      all kernel code (that is not executing in a critical section)
      preemptible.  This allows reaction to interactive events by
      permitting a low priority process to be preempted involuntarily
      even if it is in kernel mode executing a system call and would
      otherwise not be about to reach a natural preemption point.
      This allows applications to run more 'smoothly' even when the
      system is under load, at the cost of slightly lower throughput
      and a slight runtime overhead to kernel code.

      Select this if you are building a kernel for a desktop or
      embedded system with latency requirements in the milliseconds
      range.

endchoice

はい、Linuxは1フィート以内に実行される操作の数を決定できません。これは、命令ごとに実行時間が異なり、命令パイプラインが単位時間あたりに実行される命令の数に影響を与えるためです。

おすすめ記事