# linux-rt_4.19-igc **Repository Path**: rebotee/linux-rt_4.19-igc ## Basic Information - **Project Name**: linux-rt_4.19-igc - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-05 - **Last Updated**: 2025-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Intel igc driver 和 taprio调度器 适配 Kernel 4.19-rt ## 代码解释 sch_taprio文件中的sch_taprio.c为调度器源码 cp igc/sch_taprio/sch_tarprio.c ./net/sched/sch_taprio.c ## 添加调度器编译选项 ``` ./net/sched/Makefile: obj-$(CONFIG_NET_SCH_TAPRIO) += sch_taprio.o ./net/sched/Kconfig: config NET_SCH_TAPRIO tristate "Time Aware Priority (taprio) Scheduler" help Say Y here if you want to use the Time Aware Priority (taprio) packet scheduling algorithm. See the top of for more details. To compile this code as a module, choose M here: the module will be called sch_taprio. ```