lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20190114230409.2193B1127AD1@debutante.sirena.org.uk> Date: Mon, 14 Jan 2019 23:04:09 +0000 (GMT) From: Mark Brown <broonie@...nel.org> To: Mark Zhang <markz@...dia.com> Cc: Laxman Dewangan <ldewangan@...dia.com>, Jinyoung Park <jinyoungp@...dia.com>, Venkat Reddy Talla <vreddytalla@...dia.com>, Mark Brown <broonie@...nel.org>, linux-kernel@...r.kernel.org Subject: Applied "regmap-irq: do not write mask register if mask_base is zero" to the regmap tree The patch regmap-irq: do not write mask register if mask_base is zero has been applied to the regmap tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git 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 >From 7151449fe7fa5962c6153355f9779d6be99e8e97 Mon Sep 17 00:00:00 2001 From: Mark Zhang <markz@...dia.com> Date: Mon, 14 Jan 2019 17:32:58 +0800 Subject: [PATCH] regmap-irq: do not write mask register if mask_base is zero If client have not provided the mask base register then do not write into the mask register. Signed-off-by: Laxman Dewangan <ldewangan@...dia.com> Signed-off-by: Jinyoung Park <jinyoungp@...dia.com> Signed-off-by: Venkat Reddy Talla <vreddytalla@...dia.com> Signed-off-by: Mark Zhang <markz@...dia.com> Signed-off-by: Mark Brown <broonie@...nel.org> --- drivers/base/regmap/regmap-irq.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c index d2d0014b0d23..330c1f7e9665 100644 --- a/drivers/base/regmap/regmap-irq.c +++ b/drivers/base/regmap/regmap-irq.c @@ -108,6 +108,9 @@ static void regmap_irq_sync_unlock(struct irq_data *data) * suppress pointless writes. */ for (i = 0; i < d->chip->num_regs; i++) { + if (!d->chip->mask_base) + continue; + reg = d->chip->mask_base + (i * map->reg_stride * d->irq_reg_stride); if (d->chip->mask_invert) { @@ -588,6 +591,9 @@ int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags, /* Mask all the interrupts by default */ for (i = 0; i < chip->num_regs; i++) { d->mask_buf[i] = d->mask_buf_def[i]; + if (!chip->mask_base) + continue; + reg = chip->mask_base + (i * map->reg_stride * d->irq_reg_stride); if (chip->mask_invert) -- 2.20.1
Powered by blists - more mailing lists