├── .gitignore ├── .gitmodules ├── Makefile ├── README ├── abi-blacklist ├── abi-prev-6.17.4-1-pve ├── debian ├── certs │ ├── proxmox-uefi-ca.pem │ └── proxmox-uefi-signer-2023.pem ├── changelog ├── control.in ├── copyright ├── proxmox-headers.postinst.in ├── proxmox-kernel-meta.postinst.in ├── proxmox-kernel-meta.postrm.in ├── proxmox-kernel.postinst.in ├── proxmox-kernel.postrm.in ├── proxmox-kernel.prerm.in ├── rules ├── rules.d │ └── amd64.mk ├── scripts │ ├── abi-check │ ├── abi-generate │ ├── export-patchqueue │ ├── find-firmware.pl │ ├── import-patchqueue │ └── import-upstream-tag ├── signing-template │ ├── control.in │ ├── files.json.in │ ├── rules.in │ └── source │ │ └── format └── source │ └── lintian-overrides ├── fwlist-previous └── patches └── kernel ├── 0001-Make-mkcompile_h-accept-an-alternate-timestamp-strin.patch ├── 0002-wireless-Add-Debian-wireless-regdb-certificates.patch ├── 0003-bridge-keep-MAC-of-first-assigned-port.patch ├── 0004-pci-Enable-overrides-for-missing-ACS-capabilities-4..patch ├── 0005-kvm-disable-default-dynamic-halt-polling-growth.patch ├── 0006-net-core-downgrade-unregister_netdevice-refcount-lea.patch ├── 0007-Revert-fortify-Do-not-cast-to-unsigned-char.patch ├── 0008-kvm-xsave-set-mask-out-PKRU-bit-in-xfeatures-if-vCPU.patch ├── 0009-allow-opt-in-to-allow-pass-through-on-broken-hardwar.patch ├── 0010-revert-memfd-improve-userspace-warnings-for-missing-.patch ├── 0011-apparmor-expect-msg_namelen-0-for-recvmsg-calls.patch ├── 0012-Revert-UBUNTU-SAUCE-iommu-intel-disable-DMAR-for-SKL.patch ├── 0013-net-bonding-update-the-slave-array-for-broadcast-mod.patch └── 0014-apparmor-avoid-null-deref-when-checking-socket-acces.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/README -------------------------------------------------------------------------------- /abi-blacklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /abi-prev-6.17.4-1-pve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/abi-prev-6.17.4-1-pve -------------------------------------------------------------------------------- /debian/certs/proxmox-uefi-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/certs/proxmox-uefi-ca.pem -------------------------------------------------------------------------------- /debian/certs/proxmox-uefi-signer-2023.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/certs/proxmox-uefi-signer-2023.pem -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/proxmox-headers.postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-headers.postinst.in -------------------------------------------------------------------------------- /debian/proxmox-kernel-meta.postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-kernel-meta.postinst.in -------------------------------------------------------------------------------- /debian/proxmox-kernel-meta.postrm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-kernel-meta.postrm.in -------------------------------------------------------------------------------- /debian/proxmox-kernel.postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-kernel.postinst.in -------------------------------------------------------------------------------- /debian/proxmox-kernel.postrm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-kernel.postrm.in -------------------------------------------------------------------------------- /debian/proxmox-kernel.prerm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/proxmox-kernel.prerm.in -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/rules.d/amd64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/rules.d/amd64.mk -------------------------------------------------------------------------------- /debian/scripts/abi-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/abi-check -------------------------------------------------------------------------------- /debian/scripts/abi-generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/abi-generate -------------------------------------------------------------------------------- /debian/scripts/export-patchqueue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/export-patchqueue -------------------------------------------------------------------------------- /debian/scripts/find-firmware.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/find-firmware.pl -------------------------------------------------------------------------------- /debian/scripts/import-patchqueue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/import-patchqueue -------------------------------------------------------------------------------- /debian/scripts/import-upstream-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/scripts/import-upstream-tag -------------------------------------------------------------------------------- /debian/signing-template/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/signing-template/control.in -------------------------------------------------------------------------------- /debian/signing-template/files.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/signing-template/files.json.in -------------------------------------------------------------------------------- /debian/signing-template/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/signing-template/rules.in -------------------------------------------------------------------------------- /debian/signing-template/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /fwlist-previous: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/fwlist-previous -------------------------------------------------------------------------------- /patches/kernel/0001-Make-mkcompile_h-accept-an-alternate-timestamp-strin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0001-Make-mkcompile_h-accept-an-alternate-timestamp-strin.patch -------------------------------------------------------------------------------- /patches/kernel/0002-wireless-Add-Debian-wireless-regdb-certificates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0002-wireless-Add-Debian-wireless-regdb-certificates.patch -------------------------------------------------------------------------------- /patches/kernel/0003-bridge-keep-MAC-of-first-assigned-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0003-bridge-keep-MAC-of-first-assigned-port.patch -------------------------------------------------------------------------------- /patches/kernel/0004-pci-Enable-overrides-for-missing-ACS-capabilities-4..patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0004-pci-Enable-overrides-for-missing-ACS-capabilities-4..patch -------------------------------------------------------------------------------- /patches/kernel/0005-kvm-disable-default-dynamic-halt-polling-growth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0005-kvm-disable-default-dynamic-halt-polling-growth.patch -------------------------------------------------------------------------------- /patches/kernel/0006-net-core-downgrade-unregister_netdevice-refcount-lea.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0006-net-core-downgrade-unregister_netdevice-refcount-lea.patch -------------------------------------------------------------------------------- /patches/kernel/0007-Revert-fortify-Do-not-cast-to-unsigned-char.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0007-Revert-fortify-Do-not-cast-to-unsigned-char.patch -------------------------------------------------------------------------------- /patches/kernel/0008-kvm-xsave-set-mask-out-PKRU-bit-in-xfeatures-if-vCPU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0008-kvm-xsave-set-mask-out-PKRU-bit-in-xfeatures-if-vCPU.patch -------------------------------------------------------------------------------- /patches/kernel/0009-allow-opt-in-to-allow-pass-through-on-broken-hardwar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0009-allow-opt-in-to-allow-pass-through-on-broken-hardwar.patch -------------------------------------------------------------------------------- /patches/kernel/0010-revert-memfd-improve-userspace-warnings-for-missing-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0010-revert-memfd-improve-userspace-warnings-for-missing-.patch -------------------------------------------------------------------------------- /patches/kernel/0011-apparmor-expect-msg_namelen-0-for-recvmsg-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0011-apparmor-expect-msg_namelen-0-for-recvmsg-calls.patch -------------------------------------------------------------------------------- /patches/kernel/0012-Revert-UBUNTU-SAUCE-iommu-intel-disable-DMAR-for-SKL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0012-Revert-UBUNTU-SAUCE-iommu-intel-disable-DMAR-for-SKL.patch -------------------------------------------------------------------------------- /patches/kernel/0013-net-bonding-update-the-slave-array-for-broadcast-mod.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0013-net-bonding-update-the-slave-array-for-broadcast-mod.patch -------------------------------------------------------------------------------- /patches/kernel/0014-apparmor-avoid-null-deref-when-checking-socket-acces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxmox/pve-kernel/HEAD/patches/kernel/0014-apparmor-avoid-null-deref-when-checking-socket-acces.patch --------------------------------------------------------------------------------