Message ID | 20230324-regmap-kunit-v2-0-b208801dc2c8@kernel.org |
---|---|
Headers | show |
Series | regmap: Initial KUnit coverage | expand |
On Sun, 26 Mar 2023 15:11:11 +0100, Mark Brown wrote: > This series provides some initial KUnit coverage for regmap, > covering most of the interfaces that operate at the register > level using an instrumented RAM backed bus type. > > Without the current regmap tree the paging tests will fail as the > RAM backed regmap doesn't support the required operations. > > [...] Applied to broonie/regmap.git for-next Thanks! [1/2] regmap: Add RAM backed register map commit: f6352424e37e7bf72291ceab87dc620172be0999 [2/2] regmap: Add some basic kunit tests commit: 2238959b6ad27040275439edd6893e309bc729a3 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
This series provides some initial KUnit coverage for regmap, covering most of the interfaces that operate at the register level using an instrumented RAM backed bus type. Without the current regmap tree the paging tests will fail as the RAM backed regmap doesn't support the required operations. Changes in v2: - Add a test for regcache_drop_region(). - Add a stress test for inserting registers into a sparse cache. - Link to v1: https://lore.kernel.org/r/20230324-regmap-kunit-v1-0-62ef9cfa9b89@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org> --- Mark Brown (2): regmap: Add RAM backed register map regmap: Add some basic kunit tests drivers/base/regmap/Kconfig | 10 + drivers/base/regmap/Makefile | 2 + drivers/base/regmap/internal.h | 19 + drivers/base/regmap/regmap-kunit.c | 736 +++++++++++++++++++++++++++++++++++++ drivers/base/regmap/regmap-ram.c | 85 +++++ 5 files changed, 852 insertions(+) --- base-commit: e8d018dd0257f744ca50a729e3d042cf2ec9da65 change-id: 20230324-regmap-kunit-bb3c3e81e35c Best regards,