summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-06-21 18:52:06 +0000
committerTredwellGit <tredwell@tutanota.com>2021-06-21 18:52:06 +0000
commit24a08441d52480cf3332a100e24fdf9b83a8351a (patch)
tree45e3aec3c2d0acf46648fbcae80f15d14a4ad393 /pkgs/os-specific/linux/kernel
parentdf60fdef552ef8a1aaaf3b63a0e7941165a2e893 (diff)
downloadnixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar.gz
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar.bz2
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar.lz
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar.xz
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.tar.zst
nixpkgs-24a08441d52480cf3332a100e24fdf9b83a8351a.zip
linux: fix regression in bridge VLAN configuration
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/patches.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index f41cedca0f6..48dd9b38d9b 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -102,4 +102,13 @@
     name = "mac_nvme_t2";
     patch = ./mac-nvme-t2.patch;
   };
+
+  rtnetlink_fix_regression_in_bridge_vlan_configuration = rec {
+    name = "rtnetlink_fix_regression_in_bridge_vlan_configuration";
+    patch = fetchpatch {
+      name = name + ".patch";
+      url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/?id=d2e381c4963663bca6f30c3b996fa4dbafe8fcb5";
+      sha256 = "0ragdi13yh5ypp9x49vrdjqx8ddh7sq7i1qjp8fyrbk3n0jdaac3";
+    };
+  };
 }