Re: [PATCH] powerpc/code-patching: Disable KASAN in __patch_instructions()

2024-02-18 Thread Christophe Leroy
Le 13/02/2024 à 05:36, Benjamin Gray a écrit : > The memset/memcpy functions are by default instrumented by KASAN, which > complains about user memory access when using a poking page in > userspace. > > Using a userspace address is expected though, so don't instrument with > KASAN for this

Re: [kvm-unit-tests PATCH v4 8/8] migration: add a migration selftest

2024-02-18 Thread Thomas Huth
On 17/02/2024 08.19, Nicholas Piggin wrote: On Fri Feb 16, 2024 at 9:15 PM AEST, Thomas Huth wrote: On 09/02/2024 10.11, Nicholas Piggin wrote: Add a selftest for migration support in guest library and test harness code. It performs migrations in a tight loop to irritate races and bugs in the

Re: [PATCH v12 07/15] media: v4l2: Add audio capture and output support

2024-02-18 Thread Shengjiu Wang
Hi Mauro, Hans On Sat, Feb 17, 2024 at 5:42 PM Mauro Carvalho Chehab wrote: > > Em Thu, 18 Jan 2024 20:32:00 +0800 > Shengjiu Wang escreveu: > > > Audio signal processing has the requirement for memory to > > memory similar as Video. > > > > This patch is to add this support in v4l2 framework,

Re: [PATCH v12 10/15] media: uapi: Add audio rate controls support

2024-02-18 Thread Shengjiu Wang
On Sat, Feb 17, 2024 at 5:57 PM Mauro Carvalho Chehab wrote: > > Em Thu, 18 Jan 2024 20:32:03 +0800 > Shengjiu Wang escreveu: > > > Add V4L2_CID_M2M_AUDIO_SOURCE_RATE and V4L2_CID_M2M_AUDIO_DEST_RATE > > new IDs for rate control. > > > > Add V4L2_CID_M2M_AUDIO_SOURCE_RATE_OFFSET and > >

Re: [PATCH] selftests: powerpc: Add header symlinks for building papr character device tests

2024-02-18 Thread Michael Ellerman
Michal Suchánek writes: > On Thu, Feb 15, 2024 at 01:39:27PM -0600, Nathan Lynch wrote: >> Michal Suchánek writes: >> > On Thu, Feb 15, 2024 at 01:13:34PM -0600, Nathan Lynch wrote: >> >> Michal Suchanek writes: >> >> > >> >> > Without the headers the tests don't build. >> >> > >> >> > Fixes:

Re: [PATCH v12 08/15] media: uapi: Define audio sample format fourcc type

2024-02-18 Thread Shengjiu Wang
Hi Mauro On Sat, Feb 17, 2024 at 5:19 PM Mauro Carvalho Chehab wrote: > > Em Thu, 18 Jan 2024 20:32:01 +0800 > Shengjiu Wang escreveu: > > > The audio sample format definition is from alsa, > > the header file is include/uapi/sound/asound.h, but > > don't include this header file directly,

[powerpc:merge] BUILD SUCCESS d7a009087fa074f0362c1f6333a619873f9c74c6

2024-02-18 Thread kernel test robot
-001-20240218 gcc arc randconfig-001-20240219 gcc arc randconfig-002-20240218 gcc arc randconfig-002-20240219 gcc arm allmodconfig gcc arm allnoconfig clang arm

[PATCH 0/3] tty: Convert to platform remove callback returning void

2024-02-18 Thread Uwe Kleine-König
Hello, this series converts all remaining (three) drivers below drivers/tty to struct platform_driver::remove_new(). See commit 5c5a7680e67b ("platform: Provide a remove callback that returns no value") for an extended explanation and the eventual goal. Two conversations are trivial, because

[PATCH 3/3] serial: pmac_zilog: Convert to platform remove callback returning void

2024-02-18 Thread Uwe Kleine-König
The .remove() callback for a platform driver returns an int which makes many driver authors wrongly assume it's possible to do error handling by returning an error code. However the value returned is ignored (apart from emitting a warning) and this typically results in resource leaks. To improve