├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile.oot ├── README.md ├── dkms.conf ├── google ├── Kconfig ├── Makefile └── gve │ ├── Makefile │ ├── gve.h │ ├── gve_adminq.c │ ├── gve_adminq.h │ ├── gve_buffer_mgmt_dqo.c │ ├── gve_desc.h │ ├── gve_desc_dqo.h │ ├── gve_dqo.h │ ├── gve_ethtool.c │ ├── gve_flow_rule.c │ ├── gve_main.c │ ├── gve_ptp.c │ ├── gve_register.h │ ├── gve_rx.c │ ├── gve_rx_dqo.c │ ├── gve_size_assert.h │ ├── gve_tx.c │ ├── gve_tx_dqo.c │ ├── gve_utils.c │ └── gve_utils.h └── patches ├── 1_include-version.cocci ├── array_size.cocci ├── clock.cocci ├── cpumask.cocci ├── csum_replace_by_diff.cocci ├── dev_consume_skb_any.cocci ├── dma_rmb.cocci ├── dma_wb.cocci ├── ether_addr_copy.cocci ├── ethtool-rxfh-param.cocci ├── ethtool_cpy.cocci ├── ethtool_get_stats.cocci ├── ethtool_link_ksettings.cocci ├── ethtool_ntuple.cocci ├── ethtool_string_manipulation.cocci ├── ethtool_supported_coalesce_params.cocci ├── fallthrough.cocci ├── header └── gve_linux_version.h ├── header_split_ethool_flag.cocci ├── ipv6_hopopt_jumbo_remove.cocci ├── kvzalloc.cocci ├── napi_alloc_skb.cocci ├── napi_complete_done.cocci ├── napi_consume_skb.cocci ├── napi_reschedule.cocci ├── napi_schedule_irqoff.cocci ├── ndo_change_mtu.cocci ├── ndo_coalesce.cocci ├── ndo_get_stats64.cocci ├── ndo_hw_ts_config.cocci ├── ndo_ringparam.cocci ├── ndo_tx_timeout.cocci ├── netdev_enable_lock.cocci ├── netdev_genl_api.cocci ├── netif_napi_add.cocci ├── netif_napi_del.cocci ├── netmem_conversion.cocci ├── page_cache_drain.cocci ├── page_pool_helpers.cocci ├── page_ref.cocci ├── patch_home_cpu.cocci ├── patch_netdev_queue_api.cocci ├── patch_netdev_queue_stats_api.cocci ├── patch_xdp1.cocci ├── patch_xdp2.cocci ├── pci_enable_msix.cocci ├── pci_msix_vec_count.cocci ├── read_once.cocci ├── repick.cocci ├── secs_to_jiffies.cocci ├── sk_buff_sender_cpu.cocci ├── sk_buff_xmit_more.cocci ├── sk_fullsock.cocci ├── skb_set_hash.cocci ├── skb_tcp_all_headers.cocci ├── smp_load_acquire.cocci ├── static_assert.cocci └── timer_setup.cocci /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.oot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/Makefile.oot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/README.md -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/dkms.conf -------------------------------------------------------------------------------- /google/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/Kconfig -------------------------------------------------------------------------------- /google/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile for the Google network device drivers. 3 | # 4 | 5 | obj-$(CONFIG_GVE) += gve/ 6 | -------------------------------------------------------------------------------- /google/gve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/Makefile -------------------------------------------------------------------------------- /google/gve/gve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve.h -------------------------------------------------------------------------------- /google/gve/gve_adminq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_adminq.c -------------------------------------------------------------------------------- /google/gve/gve_adminq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_adminq.h -------------------------------------------------------------------------------- /google/gve/gve_buffer_mgmt_dqo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_buffer_mgmt_dqo.c -------------------------------------------------------------------------------- /google/gve/gve_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_desc.h -------------------------------------------------------------------------------- /google/gve/gve_desc_dqo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_desc_dqo.h -------------------------------------------------------------------------------- /google/gve/gve_dqo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_dqo.h -------------------------------------------------------------------------------- /google/gve/gve_ethtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_ethtool.c -------------------------------------------------------------------------------- /google/gve/gve_flow_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_flow_rule.c -------------------------------------------------------------------------------- /google/gve/gve_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_main.c -------------------------------------------------------------------------------- /google/gve/gve_ptp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_ptp.c -------------------------------------------------------------------------------- /google/gve/gve_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_register.h -------------------------------------------------------------------------------- /google/gve/gve_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_rx.c -------------------------------------------------------------------------------- /google/gve/gve_rx_dqo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_rx_dqo.c -------------------------------------------------------------------------------- /google/gve/gve_size_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_size_assert.h -------------------------------------------------------------------------------- /google/gve/gve_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_tx.c -------------------------------------------------------------------------------- /google/gve/gve_tx_dqo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_tx_dqo.c -------------------------------------------------------------------------------- /google/gve/gve_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_utils.c -------------------------------------------------------------------------------- /google/gve/gve_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/google/gve/gve_utils.h -------------------------------------------------------------------------------- /patches/1_include-version.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/1_include-version.cocci -------------------------------------------------------------------------------- /patches/array_size.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/array_size.cocci -------------------------------------------------------------------------------- /patches/clock.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/clock.cocci -------------------------------------------------------------------------------- /patches/cpumask.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/cpumask.cocci -------------------------------------------------------------------------------- /patches/csum_replace_by_diff.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/csum_replace_by_diff.cocci -------------------------------------------------------------------------------- /patches/dev_consume_skb_any.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/dev_consume_skb_any.cocci -------------------------------------------------------------------------------- /patches/dma_rmb.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/dma_rmb.cocci -------------------------------------------------------------------------------- /patches/dma_wb.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/dma_wb.cocci -------------------------------------------------------------------------------- /patches/ether_addr_copy.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ether_addr_copy.cocci -------------------------------------------------------------------------------- /patches/ethtool-rxfh-param.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool-rxfh-param.cocci -------------------------------------------------------------------------------- /patches/ethtool_cpy.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_cpy.cocci -------------------------------------------------------------------------------- /patches/ethtool_get_stats.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_get_stats.cocci -------------------------------------------------------------------------------- /patches/ethtool_link_ksettings.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_link_ksettings.cocci -------------------------------------------------------------------------------- /patches/ethtool_ntuple.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_ntuple.cocci -------------------------------------------------------------------------------- /patches/ethtool_string_manipulation.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_string_manipulation.cocci -------------------------------------------------------------------------------- /patches/ethtool_supported_coalesce_params.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ethtool_supported_coalesce_params.cocci -------------------------------------------------------------------------------- /patches/fallthrough.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/fallthrough.cocci -------------------------------------------------------------------------------- /patches/header/gve_linux_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/header/gve_linux_version.h -------------------------------------------------------------------------------- /patches/header_split_ethool_flag.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/header_split_ethool_flag.cocci -------------------------------------------------------------------------------- /patches/ipv6_hopopt_jumbo_remove.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ipv6_hopopt_jumbo_remove.cocci -------------------------------------------------------------------------------- /patches/kvzalloc.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/kvzalloc.cocci -------------------------------------------------------------------------------- /patches/napi_alloc_skb.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/napi_alloc_skb.cocci -------------------------------------------------------------------------------- /patches/napi_complete_done.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/napi_complete_done.cocci -------------------------------------------------------------------------------- /patches/napi_consume_skb.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/napi_consume_skb.cocci -------------------------------------------------------------------------------- /patches/napi_reschedule.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/napi_reschedule.cocci -------------------------------------------------------------------------------- /patches/napi_schedule_irqoff.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/napi_schedule_irqoff.cocci -------------------------------------------------------------------------------- /patches/ndo_change_mtu.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_change_mtu.cocci -------------------------------------------------------------------------------- /patches/ndo_coalesce.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_coalesce.cocci -------------------------------------------------------------------------------- /patches/ndo_get_stats64.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_get_stats64.cocci -------------------------------------------------------------------------------- /patches/ndo_hw_ts_config.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_hw_ts_config.cocci -------------------------------------------------------------------------------- /patches/ndo_ringparam.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_ringparam.cocci -------------------------------------------------------------------------------- /patches/ndo_tx_timeout.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/ndo_tx_timeout.cocci -------------------------------------------------------------------------------- /patches/netdev_enable_lock.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/netdev_enable_lock.cocci -------------------------------------------------------------------------------- /patches/netdev_genl_api.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/netdev_genl_api.cocci -------------------------------------------------------------------------------- /patches/netif_napi_add.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/netif_napi_add.cocci -------------------------------------------------------------------------------- /patches/netif_napi_del.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/netif_napi_del.cocci -------------------------------------------------------------------------------- /patches/netmem_conversion.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/netmem_conversion.cocci -------------------------------------------------------------------------------- /patches/page_cache_drain.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/page_cache_drain.cocci -------------------------------------------------------------------------------- /patches/page_pool_helpers.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/page_pool_helpers.cocci -------------------------------------------------------------------------------- /patches/page_ref.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/page_ref.cocci -------------------------------------------------------------------------------- /patches/patch_home_cpu.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/patch_home_cpu.cocci -------------------------------------------------------------------------------- /patches/patch_netdev_queue_api.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/patch_netdev_queue_api.cocci -------------------------------------------------------------------------------- /patches/patch_netdev_queue_stats_api.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/patch_netdev_queue_stats_api.cocci -------------------------------------------------------------------------------- /patches/patch_xdp1.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/patch_xdp1.cocci -------------------------------------------------------------------------------- /patches/patch_xdp2.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/patch_xdp2.cocci -------------------------------------------------------------------------------- /patches/pci_enable_msix.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/pci_enable_msix.cocci -------------------------------------------------------------------------------- /patches/pci_msix_vec_count.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/pci_msix_vec_count.cocci -------------------------------------------------------------------------------- /patches/read_once.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/read_once.cocci -------------------------------------------------------------------------------- /patches/repick.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/repick.cocci -------------------------------------------------------------------------------- /patches/secs_to_jiffies.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/secs_to_jiffies.cocci -------------------------------------------------------------------------------- /patches/sk_buff_sender_cpu.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/sk_buff_sender_cpu.cocci -------------------------------------------------------------------------------- /patches/sk_buff_xmit_more.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/sk_buff_xmit_more.cocci -------------------------------------------------------------------------------- /patches/sk_fullsock.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/sk_fullsock.cocci -------------------------------------------------------------------------------- /patches/skb_set_hash.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/skb_set_hash.cocci -------------------------------------------------------------------------------- /patches/skb_tcp_all_headers.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/skb_tcp_all_headers.cocci -------------------------------------------------------------------------------- /patches/smp_load_acquire.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/smp_load_acquire.cocci -------------------------------------------------------------------------------- /patches/static_assert.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/static_assert.cocci -------------------------------------------------------------------------------- /patches/timer_setup.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-virtual-ethernet-linux/HEAD/patches/timer_setup.cocci --------------------------------------------------------------------------------