diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-06-26 23:02:55 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-06-26 23:02:55 +0300 |
commit | 4b3e3810738376b3292d1bf29996640843fbd9a0 (patch) | |
tree | db86e4cc1d78810e458528cd652ae74ed3418e31 /lib | |
parent | 9d65ab6050d25f17c13f4195aa8e160c6ac638f6 (diff) | |
parent | 68f97fe330e01450ace63da0ce5cab676fc97f9a (diff) | |
download | linux-4b3e3810738376b3292d1bf29996640843fbd9a0.tar.xz |
Merge tag 'asoc-fix-v6.10-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.10
A relatively large batch of updates, largely due to the long interval
since I last sent fixes due to various travel and holidays. There's a
lot of driver specific fixes and quirks in here, none of them too major,
and also some fixes for recently introduced memory safety issues in the
topology code.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fortify_kunit.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/fortify_kunit.c b/lib/fortify_kunit.c index 39da5b3bc649..f9cc467334ce 100644 --- a/lib/fortify_kunit.c +++ b/lib/fortify_kunit.c @@ -236,9 +236,6 @@ static void fortify_test_alloc_size_##allocator##_dynamic(struct kunit *test) \ kfree(p)); \ checker(expected_size, __kmalloc(alloc_size, gfp), \ kfree(p)); \ - checker(expected_size, \ - __kmalloc_node(alloc_size, gfp, NUMA_NO_NODE), \ - kfree(p)); \ \ orig = kmalloc(alloc_size, gfp); \ KUNIT_EXPECT_TRUE(test, orig != NULL); \ |