diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-06-24 20:01:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-24 20:01:49 +0200 |
| commit | 932a4a827b876fcc420dc56a7fb6bbc41887b82a (patch) | |
| tree | 62487ac411c6bbc7fa0e868d648b02ee2696bf28 /scripts/package-build/linux-kernel/patches | |
| parent | 67f7e546477b4f73df8687434a9923b5f465cb4e (diff) | |
| parent | 8e245f0baa6dfb0c4f19b2af75b79d5acc52a709 (diff) | |
| download | vyos-build-932a4a827b876fcc420dc56a7fb6bbc41887b82a.tar.gz vyos-build-932a4a827b876fcc420dc56a7fb6bbc41887b82a.zip | |
Merge pull request #1224 from c-po/kernel-update-6.18
T9010: Update Linux Kernel to 6.18.36 and re-fresh Intel OOT driver versions
Diffstat (limited to 'scripts/package-build/linux-kernel/patches')
| -rw-r--r-- | scripts/package-build/linux-kernel/patches/i40e/0004-i40e_client-use-ida_alloc-ida_free.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/scripts/package-build/linux-kernel/patches/i40e/0004-i40e_client-use-ida_alloc-ida_free.patch b/scripts/package-build/linux-kernel/patches/i40e/0004-i40e_client-use-ida_alloc-ida_free.patch deleted file mode 100644 index 2dbdc5a7..00000000 --- a/scripts/package-build/linux-kernel/patches/i40e/0004-i40e_client-use-ida_alloc-ida_free.patch +++ /dev/null @@ -1,37 +0,0 @@ -From: Christian Breunig <christian@breunig.cc> -Date: Sun, 3 May 2026 20:18:00 +0000 -Subject: [PATCH 2/3] i40e_client: use ida_alloc and ida_free - ---- - src/i40e_client.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - ---- a/src/i40e_client.c -+++ b/src/i40e_client.c -@@ -288,7 +288,7 @@ static void i40e_auxiliary_dev_release(struct device *dev) - struct i40e_auxiliary_device *i40e_aux_dev = - container_of(aux_dev, struct i40e_auxiliary_device, aux_dev); - -- ida_simple_remove(&i40e_client_ida, aux_dev->id); -+ ida_free(&i40e_client_ida, aux_dev->id); - kfree(i40e_aux_dev); - } - -@@ -311,7 +311,7 @@ static int i40e_register_auxiliary_dev(struct i40e_info *ldev, const char *name) - aux_dev->dev.release = i40e_auxiliary_dev_release; - ldev->aux_dev = aux_dev; - -- ret = ida_simple_get(&i40e_client_ida, 0, 0, GFP_KERNEL); -+ ret = ida_alloc(&i40e_client_ida, GFP_KERNEL); - if (ret < 0) { - kfree(i40e_aux_dev); - return ret; -@@ -321,7 +321,7 @@ static int i40e_register_auxiliary_dev(struct i40e_info *ldev, const char *name) - - ret = auxiliary_device_init(aux_dev); - if (ret < 0) { -- ida_simple_remove(&i40e_client_ida, aux_dev->id); -+ ida_free(&i40e_client_ida, aux_dev->id); - kfree(i40e_aux_dev); - return ret; - } |
