responsive and enforced interrupt handling
play

Responsive and Enforced Interrupt Handling for Real-Time System - PowerPoint PPT Presentation

RTCSA 2015 Responsive and Enforced Interrupt Handling for Real-Time System Virtualization Hyoseung Kim * Shige Wang Raj Rajkumar * * General Motors R&D RTCSA 2015 Workload Consolidation Multi-core CPUs for embedded real-time


  1. RTCSA 2015 Responsive and Enforced Interrupt Handling for Real-Time System Virtualization Hyoseung Kim * Shige Wang † Raj Rajkumar * * † General Motors R&D

  2. RTCSA 2015 Workload Consolidation • Multi-core CPUs for embedded real-time systems • Automotive: – Freescale i.MX6 4-core CPU – NVIDIA Tegra K1 platform • Avionics and defense: – Rugged Intel i7 single board computers – Freescale P4080 8-core CPU • Consolidation of real-time applications onto a single hardware platform – Reduces the number of CPUs and wiring harness among them – Leads to a significant reduction in cost and space requirements 2/26

  3. RTCSA 2015 Benefits of Real-Time Virtualization • Barrier to consolidation – Each app. could have been developed independently by different vendors • Heterogeneous S/W infrastructure • Bare-metal / Proprietary OS • Linux / Android – Different license issues • Consolidation via virtualization Virtualization – Each application can maintain its own implementation – Minimizes re-certification process – IP protection, license segregation Real-Time Hypervisor – Fault isolation Multi-core CPU 3/26

  4. RTCSA 2015 Scheduling in Virtualization • Two-level hierarchical scheduling structure – Task scheduling and VCPU scheduling VM 1 VM 2 Task Task Task Task Task Task Task Task Task Scheduler Task Scheduler VCPU VCPU VCPU VCPU Hypervisor Real-time hierarchical scheduling • VCPU Scheduler Budget and replenishment period for each VCPU • Various budget replenishment policies PCPU PCPU (e.g., deferrable server) 4/26

  5. RTCSA 2015 Interrupt Handling in Virtualization Interrupt-triggered task VM 1 VM 2 Task Task Task Task Task Task Task Task Guest OS Guest OS Task Scheduler Task Scheduler Interrupt Service Routine Interrupt Service Routine VCPU VCPU VCPU VCPU Virtual interrupt Hypervisor VCPU Scheduler Interrupt Service Routine I/O device (e.g., sensor) PCPU PCPU Physical interrupt 5/26

  6. RTCSA 2015 Requirements for Interrupt Handling • R1: Responsive and bounded interrupt handling time – Timing penalties to interrupt handling in virtualization • R2: Protect real-time tasks from interrupt storms – Task schedulability should be guaranteed • R3: Support unmodified guest OSs – Many commercial RTOSs are closed-source 6/26

  7. RTCSA 2015 Previous Work R1 R2 R3 Priority VCPU Bounded Interrupt Task Unmodified based temporal Interrupt storm sched. guest sched. isolation handling protection guarantee OSs [1] [2] [3] [4] Ours [1] M. Beckert et al. Sufficient temporal independence and improved interrupt latencies in a real-time hypervisor. In DAC, 2014. [2] J. Kiszka. Towards Linux as a real-time hypervisor. In RTLWS, 2009. [3] A. Lackorzy´nski, A. Warg, M. Volp, and H. H¨artig. Flattening hierarchical scheduling. In EMSOFT, 2012. [4] R. Ma et al. Performance tuning towards a KVM-based embedded real-time virtualization system. J. Inf. Sci. Eng., 29(5):1021 – 1035, 2013. 7/26

  8. RTCSA 2015 Our Approach • vINT : an analyzable interrupt handling framework for real-time system virtualization – Provides responsive, bounded, and enforced interrupt handling – Does not require any change to the guest OS code • Easily applicable to virtualizing proprietary, closed-source RTOSs • Contributions – vINT framework design – Analysis on interrupt handling time and VCPU/task schedulability – Implementation and case study on the KVM hypervisor of Linux/RK 8/26

  9. RTCSA 2015 Outline • Introduction • vINT Framework – System model – Problems with interrupt handling – vINT details – Analysis • Evaluation • Conclusion 9/26

  10. RTCSA 2015 System Model (1) • Partitioned fixed-priority scheduling for both VCPUs and tasks – Widely supported in many real-time OSs and hypervisors – e.g., OKL4, PikeOS , … 𝑤 , 𝑈 𝑤 ) VCPU 𝑤 𝑗 : (𝐷 𝑗 • Any task or OS code can execute 𝑗 𝑤 : Maximum execution budget – 𝐷 𝑗 only if the corresponding VCPU has a non-zero remaining budget 𝑤 : Budget replenishment period – 𝑈 𝑗 • VCPU budget replenishment policies – Deferrable server & sporadic server Task 𝜐 𝑗 : 𝐷 𝑗 , 𝑈 • 𝑗 – 𝐷 𝑗 : Worst-case execution time (WCET) – 𝑈 𝑗 : Minimum inter-arrival time 10/26

  11. RTCSA 2015 System Model (2) Min. inter-arrival time expected at design time 𝑞𝑗 : (𝐷 𝑗 𝑞𝑗 , 𝑈 𝑞𝑗 ) Physical interrupt 𝐽 𝑗 •  Interrupt storms may happen at runtime 𝑗 – A signal issued from a hardware device to a PCPU – Handled by the corresponding ISR of the hypervisor 𝑤𝑗 : (𝐷 𝑗 𝑤𝑗 , 𝑈 𝑤𝑗 ) Virtual interrupt 𝐽 • 𝑘 𝑗 – A software signal from the hypervisor to a VCPU – Handled by the ISR of the guest OS while consuming the VCPU budget Physical Intr. ① ③ Trap EOI ISR Hypervisor VM VM VM VM Enter Enter Exit Exit PCPU 1 ② ④ Virtual Intr. Interrupt-triggered task VCPU 𝑤 1 Task 𝜐 1 Task 𝜐 2 ISR Interrupt-triggered execution flow 11/26

  12. RTCSA 2015 Problems with Virtual Interrupts (1) • Virtual interrupt – Main difference between interrupt handling in virtualized and non- virtualized environments • Problem 1: Timing penalties to virtual interrupt handling – VCPU budget depletion and VCPU preemption Physical Intr. Physical Intr. ① ① ③ Trap ISR ISR EOI Hypervisor Hypervisor VM VM VM VM VM VM Enter Enter Exit Exit Enter Exit PCPU 1 PCPU 1 ② ② ④ Virtual Intr. Virtual Intr. Interrupt-triggered task VCPU 𝑤 1 VCPU 𝑤 1 Task 𝜐 1 Task 𝜐 1 Task 𝜐 2 ISR ISR ISR budget depleted Next replenishment Interrupt handling delay 12/26

  13. RTCSA 2015 Problems with Virtual Interrupts (2) • Problem 2: Virtual interrupt storms – VCPU typically has a fraction of physical CPU time as its budget – Negative impact of virtual interrupt storm can be much significant than physical interrupt storms • Prior work developed for non-virtualized systems – Cannot address virtual interrupt storms due to the unawareness of the passage of physical time within a VM 13/26

  14. RTCSA 2015 vINT Overview • Conceptually splits virtual interrupt handling from the VCPU of regular tasks in an analyzable way – Used pseudo-VCPU abstraction – Prioritizes virtual interrupt handling – Does not require any guest OS modification VM1 VM1 Time-triggered Interrupt-triggered Time-triggered Interrupt-triggered Task Task Task Task Task Task Task Task vINT Task Scheduler Task Scheduler ISR ISR VCPU VCPU Pseudo-VCPU 14/26

  15. RTCSA 2015 Pseudo-VCPU Parameters 𝑤 , 𝑈 𝑤 ) • Same types of parameters as a regular VCPU: (𝐷 𝑞 𝑞 𝑤 • Budget replenishment period 𝑈 𝑞 – Equal to or greater than the minimum inter-arrival time of the associated interrupt 𝑤 • Execution budget 𝐷 𝑞 Sum of execution times of Extra budget to reduce ISR and interrupt-triggered task blocking time on interrupt handling 15/26

  16. RTCSA 2015 Pseudo-VCPU Realization • Pseudo-VCPU does not have an execution context – vINT handles a virtual interrupt as if it was handled in its pseudo-VCPU vINT checks the remaining budget of the corresponding pseudo-VCPU Physical Intr. ① ③ Trap EOI ISR Hypervisor VM VM VM VM Enter Exit Exit Enter PCPU 1 ④ ② Virtual Intr. Interrupt-triggered task VCPU 𝑤 1 Task 𝜐 1 Task 𝜐 2 ISR vINT let VCPU 𝑤 1 override the budget vINT supports nested interrupt handling by and priority of the pseudo-VCPU using an EOI signal 16/26

  17. RTCSA 2015 Analysis • Scope of our analysis – Interrupt handling time – VCPU schedulability – Task schedulability • Considers four different use cases VCPU budget With vINT Without vINT replenish policies Deferrable server YES YES Sporadic server YES YES 17/26

  18. RTCSA 2015 Interrupt Handling Time Analysis • Interrupt handling time – Sum of physical and virtual interrupt response times • Physical interrupt response time Similar to interrupt handling time in a non-virtualized environment • Virtual interrupt response time [ without vINT ] [ vINT ] Delay from higher-priority Delay from Delay from interrupt handling time-triggered tasks VCPU budget depletion 18/26

  19. RTCSA 2015 Outline • Introduction • vINT Framework • Evaluation – Performance characteristics of vINT – Implementation – Case study • Conclusion 19/26

  20. RTCSA 2015 Performance Characteristics of vINT • Purpose : Empirically investigate the performance characteristics and benefits of vINT DSbase Deferrable Server without vINT (baseline) SSbase Sporadic Server without vINT (baseline) DSvINT Deferrable Server with vINT SSvINT Sporadic Server with vINT • Experimental setup – Used randomly-generated task sets and interrupt sets – Metrics Percentage of schedulable task sets Percentage of serviceable interrupt sets 20/26

  21. RTCSA 2015 Experimental Results (1) • Interrupts with short inter-arrival times – Task schedulability vINT has benefits in both task scheduling and interrupt handling – Interrupt service rate 21/26

  22. RTCSA 2015 Experimental Results (2) • WCET of interrupt handlers – Task schedulability vINT shows slightly lower task schedulability – Interrupt service rate But vINT provides significantly higher interrupt service rates 22/26

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend